:root {
  --text: #111111;
  --muted: #666666;
  --line: #d6d6d6;
  --nav-bg: #f1f1f1;
  --menu-fade: #c3d2d7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: #ffffff;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header {
  position: relative;
  z-index: 30;
}

.mobile-topbar {
  display: none;
}

.brand-header {
  padding: 46px 20px 34px;
  background: #ffffff;
  text-align: center;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.brand-mark img {
  width: 96px;
  max-width: 18vw;
  object-fit: contain;
}

.brand-mark span {
  font-size: clamp(25px, 2.95vw, 40px);
  font-weight: 300;
  letter-spacing: 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 72px;
  padding: 0 28px;
  background: var(--nav-bg);
  border-top: 1px solid #f7f7f7;
  border-bottom: 1px solid #ededed;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 42px);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 300;
}

.desktop-nav > a,
.nav-dropdown-toggle {
  line-height: 72px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  min-width: 204px;
  padding: 10px 0;
  background: #f4f4f4;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: opacity 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  padding: 16px 28px;
  font-size: 19px;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #ececec;
}

.mobile-menu {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: min(71vw, 980px);
}

.hero-image {
  width: 100%;
  min-height: min(71vw, 980px);
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  left: 15.8%;
  top: 18%;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(68px, 7.4vw, 142px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 64px 0 72px;
  font-size: clamp(28px, 2.3vw, 46px);
  font-weight: 300;
}

.hero-copy a {
  font-size: clamp(23px, 2vw, 40px);
  font-weight: 300;
}

.about-section,
.services-section,
.testimonials-section,
.contact-section {
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
}

.contact-page {
  min-height: calc(100vh - 240px);
}

.contact-page-section {
  width: min(1530px, calc(100% - 110px));
  margin: 0 auto;
  padding: 144px 0 92px;
}

.contact-page-inner h1 {
  margin: 0 0 92px;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 300;
  line-height: 1.05;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 110px;
  align-items: start;
}

.contact-info {
  padding-top: 10px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 42px;
  font-size: clamp(22px, 1.7vw, 36px);
  font-weight: 300;
}

.contact-symbol {
  width: 52px;
  text-align: center;
  font-size: 34px;
  line-height: 1;
}

.qr-image {
  width: min(100%, 310px);
  margin: 26px 0 0 82px;
}

.contact-page-form .contact-page-two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-page-form label {
  display: block;
}

.contact-page-form label + label,
.contact-page-form .contact-page-two-up + label {
  margin-top: 28px;
}

.contact-page-form span {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(18px, 1.35vw, 30px);
  font-weight: 300;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #505050;
  border-radius: 0;
  outline: none;
  background: #fff;
}

.contact-page-form input {
  height: 68px;
}

.contact-page-form textarea {
  min-height: 174px;
  resize: vertical;
}

.contact-page-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.contact-page-actions button {
  min-width: 180px;
  padding: 17px 32px;
  color: #ffffff;
  background: #bfd0d4;
  font-size: clamp(19px, 1.35vw, 28px);
  font-weight: 300;
}

.contact-note-card {
  padding: 34px 38px;
  border: 1px solid #ececec;
  background: #fafafa;
}

.contact-note-card h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 300;
}

.contact-note-card p {
  margin: 0 0 16px;
  color: #444444;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.8;
}

.contact-note-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-page {
  width: min(1280px, calc(100% - 72px));
  margin: 0 auto;
  padding: 112px 0 60px;
  text-align: center;
}

.payment-hero h1 {
  margin: 0 0 42px;
  font-size: clamp(48px, 5.3vw, 86px);
  font-weight: 300;
  line-height: 1.06;
}

.payment-hero p {
  margin: 0 0 14px;
  color: #333333;
  font-size: clamp(22px, 1.9vw, 34px);
  font-weight: 300;
  line-height: 1.6;
}

.payment-button {
  display: inline-block;
  margin-top: 34px;
  padding: 18px 34px;
  color: #ffffff;
  background: #bfd0d4;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 300;
}

.payment-image-wrap {
  margin-top: 86px;
}

.payment-image-wrap img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}

.contact-footer {
  width: min(1790px, calc(100% - 110px));
  margin: 0 auto;
  padding-top: 0;
}

.contact-footer-line {
  height: 1px;
  margin-bottom: 34px;
  background: #1f1f1f;
}

.about-section {
  padding: 66px 0 44px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-media img,
.contact-media img {
  aspect-ratio: 1.18;
  object-fit: cover;
}

.about-copy {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.about-copy h2,
.services-section h2,
.testimonials-section h2,
.contact-form-wrap h2 {
  margin: 0 0 28px;
  font-size: clamp(36px, 2.8vw, 58px);
  font-weight: 300;
  letter-spacing: 0;
}

.about-copy p,
.contact-form-wrap p {
  margin: 0 0 18px;
  color: #3c3c3c;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.95;
}

.services-section {
  padding: 20px 0 60px;
  text-align: center;
}

.services-carousel {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 20px;
}

.carousel-arrow {
  color: #858585;
  font-size: 58px;
  font-weight: 200;
}

.service-slides {
  position: relative;
  min-height: 600px;
}

.service-slide {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.service-slide img {
  width: min(66%, 620px);
  aspect-ratio: 1.72;
  object-fit: cover;
}

.service-slide h3 {
  margin: 32px 0 20px;
  font-size: clamp(21px, 1.45vw, 27px);
  font-weight: 300;
}

.service-slide h4 {
  margin: 0 0 18px;
  font-size: clamp(20px, 1.35vw, 25px);
  font-weight: 300;
}

.service-slide p {
  max-width: 760px;
  margin: 0 auto;
  color: #444444;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.8;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: #b5b5b5;
}

.dot.is-active {
  background: #111111;
}

.testimonials-section {
  padding: 18px 0 72px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  margin-top: 56px;
}

.testimonial {
  max-width: 290px;
  margin: 0 auto;
}

.quote-mark {
  margin-bottom: 24px;
  color: #454545;
  font-size: 68px;
  line-height: 1;
}

.testimonial p {
  margin: 0;
  color: #444444;
  font-size: clamp(16px, 1vw, 19px);
  font-style: italic;
  line-height: 2.05;
}

.testimonial span {
  display: block;
  margin-top: 28px;
  font-size: 18px;
  font-weight: 300;
}

.contact-section {
  padding: 28px 0 56px;
}

.contact-form-wrap {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  margin-top: 34px;
}

.contact-form label {
  display: block;
  text-align: left;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: #555555;
  font-size: 14px;
  font-weight: 300;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 0 9px;
  border: 0;
  border-bottom: 1px solid #4d4d4d;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  resize: none;
}

.contact-form label + label {
  margin-top: 12px;
}

.contact-form button {
  width: 100%;
  margin-top: 34px;
  padding: 13px 18px;
  color: #ffffff;
  background: #000000;
  font-size: 15px;
  font-weight: 300;
}

.site-footer {
  padding: 10px 0 24px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #444444;
  font-size: 11px;
  font-weight: 300;
}

@media (max-width: 860px) {
  .brand-header {
    padding: 18px 52px 16px;
  }

  .brand-mark {
    gap: 8px;
  }

  .brand-mark img {
    width: 56px;
    max-width: none;
  }

  .brand-mark span {
    font-size: 17px;
    letter-spacing: 0.01em;
  }

  .mobile-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 32px;
    padding: 0 16px;
    background: #ffffff;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 2px;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #666666;
  }

  .nav-bar {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 50;
    padding: 34px 28px 40px;
    background: rgba(255, 255, 255, 0.995);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .menu-close {
    color: #000000;
    font-size: 74px;
    font-weight: 200;
    line-height: 0.8;
  }

  .mobile-nav {
    display: grid;
    justify-items: center;
    gap: 24px;
    margin-top: 54px;
  }

  .mobile-nav > a,
  .mobile-reading-toggle {
    font-size: clamp(32px, 7.5vw, 56px);
    font-weight: 300;
  }

  .mobile-nav > a:first-child {
    color: var(--menu-fade);
  }

  .mobile-reading {
    display: grid;
    justify-items: center;
    gap: 14px;
  }

  .mobile-reading-toggle::after {
    content: "⌄";
    margin-left: 16px;
    font-size: 0.8em;
    vertical-align: middle;
  }

  .mobile-reading-menu {
    display: grid;
    gap: 12px;
    text-align: center;
  }

  .mobile-reading-menu a {
    font-size: 22px;
    font-weight: 300;
  }

  .hero-section {
    min-height: 0;
  }

  .hero-image {
    min-height: 0;
    aspect-ratio: 1.15;
  }

  .hero-copy {
    left: 3.4%;
    top: 58%;
    transform: translateY(-4%);
  }

  .hero-copy h1 {
    font-size: clamp(26px, 7vw, 40px);
    line-height: 1.05;
  }

  .hero-copy p {
    margin: 8px 0 14px;
    font-size: 11px;
  }

  .hero-copy a {
    display: none;
  }

  .about-section,
  .services-section,
  .testimonials-section,
  .contact-section {
    width: 100%;
  }

  .contact-page-section {
    width: 100%;
    padding: 38px 18px 36px;
  }

  .contact-page-inner h1 {
    margin-bottom: 34px;
    font-size: 40px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-row {
    gap: 18px;
    margin-bottom: 18px;
    font-size: 19px;
  }

  .contact-symbol {
    width: 30px;
    font-size: 22px;
  }

  .qr-image {
    width: 220px;
    margin: 18px 0 0 0;
  }

  .contact-page-form .contact-page-two-up {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-page-form label + label,
  .contact-page-form .contact-page-two-up + label {
    margin-top: 18px;
  }

  .contact-page-form span {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .contact-page-form input {
    height: 52px;
    padding: 10px 12px;
  }

  .contact-page-form textarea {
    min-height: 140px;
    padding: 10px 12px;
  }

  .contact-page-actions {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .contact-page-actions button {
    min-width: 132px;
    padding: 12px 20px;
    font-size: 17px;
  }

  .payment-page {
    width: 100%;
    padding: 40px 18px 28px;
  }

  .payment-hero h1 {
    margin-bottom: 22px;
    font-size: 42px;
  }

  .payment-hero p {
    font-size: 18px;
    line-height: 1.7;
  }

  .payment-button {
    margin-top: 22px;
    padding: 12px 22px;
    font-size: 16px;
  }

  .payment-image-wrap {
    margin-top: 38px;
  }

  .payment-image-wrap img {
    aspect-ratio: 1.24;
  }

  .contact-footer {
    width: calc(100% - 36px);
    padding-bottom: 18px;
  }

  .contact-footer-line {
    margin-bottom: 18px;
  }

  .about-section {
    padding: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    position: relative;
  }

  .about-media img {
    aspect-ratio: 0.73;
    filter: none;
  }

  .about-copy {
    position: static;
    max-width: none;
    padding: 22px 18px 12px;
    color: #1f2428;
    background: #ffffff;
    text-align: left;
  }

  .about-copy h2 {
    margin-bottom: 18px;
    color: #1f2428;
    font-size: 24px;
  }

  .about-copy p {
    color: #444444;
    font-size: 14px;
    line-height: 1.85;
  }

  .services-section {
    padding: 26px 10px 32px;
  }

  .services-section h2,
  .testimonials-section h2,
  .contact-form-wrap h2 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .services-carousel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .carousel-arrow {
    display: none;
  }

  .service-slides {
    min-height: 520px;
  }

  .service-slide img {
    width: calc(100% - 34px);
  }

  .service-slide h3 {
    margin: 18px 0 10px;
    font-size: 17px;
  }

  .service-slide h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .service-slide p {
    max-width: 330px;
    font-size: 12px;
    line-height: 1.8;
  }

  .carousel-dots {
    margin-top: 14px;
  }

  .testimonials-section {
    padding: 44px 18px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 16px;
  }

  .testimonial {
    max-width: 330px;
  }

  .quote-mark {
    margin-bottom: 12px;
    font-size: 54px;
  }

  .testimonial p {
    font-size: 12px;
    line-height: 2.1;
  }

  .testimonial span {
    margin-top: 12px;
    font-size: 14px;
  }

  .contact-section {
    padding: 6px 0 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-media {
    order: -1;
  }

  .contact-media img {
    aspect-ratio: 1.4;
  }

  .contact-form-wrap {
    max-width: 360px;
    padding: 0 16px;
  }

  .contact-form-wrap p {
    font-size: 14px;
    line-height: 1.85;
  }

  .contact-form {
    margin-top: 18px;
  }

  .contact-form button {
    margin-top: 28px;
  }

  .site-footer {
    padding-bottom: 16px;
  }
}
