:root {
  --ink: #181b1a;
  --ink-soft: #292d2b;
  --paper: #f5f2ec;
  --white: #ffffff;
  --sand: #ded5c6;
  --sand-light: #ebe5dc;
  --stone: #a79f93;
  --muted: #5d615d;
  --bronze: #a6814c;
  --gold: #f5c765;
  --line: rgba(24, 27, 26, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.wrap { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.quiet { color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.45rem;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover,
.btn:focus-visible { background: var(--ink); color: var(--white); }
.btn.dark { background: var(--ink); color: var(--white); }
.btn.dark:hover,
.btn.dark:focus-visible { background: transparent; color: var(--ink); }
.btn.light { border-color: var(--white); color: var(--white); }
.btn.light:hover,
.btn.light:focus-visible { background: var(--white); color: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.18rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.text-link::after {
  content: "";
  width: 0.82rem;
  height: 0.82rem;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 180ms ease;
}
.text-link:hover::after,
.text-link:focus-visible::after { transform: translate(2px, -2px); }

.topline {
  padding: 9px 24px;
  background: var(--ink);
  color: #eee9e0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 116px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.brand { display: block; justify-self: start; }
.logo-lockup {
  position: relative;
  display: block;
  width: 194px;
  aspect-ratio: 1186 / 624;
  overflow: hidden;
  background: var(--white);
}
.logo-lockup img {
  position: absolute;
  width: 101.18%;
  max-width: none;
  height: auto;
  transform: translate(-0.583%, -24%);
}
.links {
  display: flex;
  gap: 2rem;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.links a { position: relative; padding: 0.4rem 0; }
.links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}
.links a:hover::after,
.links a:focus-visible::after,
.links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { justify-self: end; }
.menu {
  display: none;
  border: 0;
  background: none;
  padding: 10px 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 20px 24px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 45px rgba(24, 27, 26, 0.12);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a:not(.btn) {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}
.mobile-nav .btn { width: 100%; margin-top: 20px; }

.home-hero {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 620px;
  background: #ece7de;
}
.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 118px) clamp(28px, 6vw, 92px);
}
.home-hero h1 {
  max-width: 8ch;
  margin: 0.7rem 0 1.5rem;
  font-size: clamp(3.55rem, 5.5vw, 6.4rem);
  line-height: 0.88;
}
.home-hero p { max-width: 35rem; margin: 0 0 2.2rem; color: #565a56; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.home-hero-image {
  position: relative;
  min-height: 620px;
  background: url("/assets/lifesync-waiting-room-enhanced.webp") 70% center / cover no-repeat;
}
.media-caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 6px 9px;
  background: rgba(24, 27, 26, 0.72);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-index {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}
.home-intro { padding: clamp(88px, 11vw, 160px) 0; }
.home-intro-grid { display: grid; grid-template-columns: 1fr 2.2fr; gap: 8vw; }
.home-intro h2 { max-width: 11ch; margin: 0; font-size: clamp(3rem, 5vw, 5.5rem); line-height: 0.98; }
.home-intro-copy { max-width: 690px; }
.home-intro-copy > p { margin: 0 0 3rem; font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.38; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.principles span { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; }
.principles strong { display: block; font: 400 1.25rem Georgia, serif; }
.home-services { padding: clamp(82px, 10vw, 140px) 0; background: var(--ink); color: var(--paper); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 55px;
}
.section-head h2 { margin: 0.55rem 0 0; font-size: clamp(3rem, 5.5vw, 6rem); line-height: 0.95; }
.section-head > p { max-width: 440px; margin: 0; color: inherit; opacity: 0.72; }
.service-list { border-top: 1px solid var(--line-light); }
.service-row {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px) 40px;
  align-items: center;
  gap: 2rem;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 0.3s, padding 0.3s;
}
.service-row:hover,
.service-row:focus-visible { padding-left: 10px; color: #d7b783; }
.service-num { color: #9d978f; font-family: Georgia, serif; }
.service-row h3 { margin: 0; font: 400 clamp(1.65rem, 2.7vw, 3rem) / 1 Georgia, serif; letter-spacing: -0.02em; }
.service-row p { margin: 0; color: #aaa69f; }
.arrow { font-size: 1.4rem; }
.home-experience { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.experience-visual {
  position: relative;
  min-height: 540px;
  background: linear-gradient(145deg, rgba(32, 31, 27, 0.03), rgba(32, 31, 27, 0.2)), url("/assets/lifesync-patient-consultation.webp") 52% center / cover no-repeat;
}
.experience-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 9vw, 130px); background: var(--sand); }
.experience-copy h2 { margin: 0.7rem 0 1.6rem; font-size: clamp(3rem, 5vw, 5.6rem); line-height: 0.96; }
.experience-copy p { max-width: 470px; color: #575853; }
.stats { display: flex; gap: 4rem; margin: 2.5rem 0; }
.stat strong { display: block; font: 400 2.1rem Georgia, serif; }
.stat span { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }
.testimonial { padding: clamp(92px, 11vw, 150px) 0; background: #f8f6f1; }
.testimonial-carousel { position: relative; }
.testimonial-viewport { display: grid; align-items: center; }
.quote { max-width: 980px; margin: auto; text-align: center; }
.quote-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity 380ms ease, transform 380ms ease, visibility 380ms;
}
.quote-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.quote-mark { color: var(--bronze); font: 400 4rem / 1 Georgia, serif; }
.quote blockquote { margin: 0.6rem 0 2rem; font: 400 clamp(2rem, 4vw, 4.25rem) / 1.15 Georgia, serif; letter-spacing: -0.03em; }
.quote figcaption { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 2.5rem; }
.carousel-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.carousel-button:hover,
.carousel-button:focus-visible { border-color: var(--ink); background: var(--ink); color: var(--white); }
.carousel-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.carousel-dots { display: flex; align-items: center; gap: 0.65rem; }
.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5bfb5;
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}
.carousel-dot.is-active { width: 24px; border-radius: 999px; background: var(--bronze); }

@media (prefers-reduced-motion: reduce) {
  .quote-slide { transform: none; transition: none; }
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  min-height: 650px;
  background: var(--sand-light);
}
.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vw, 145px) clamp(30px, 8vw, 125px);
}
.page-hero h1 {
  max-width: 10ch;
  margin: 0.75rem 0 1.6rem;
  font-size: clamp(3.8rem, 7vw, 7.7rem);
  line-height: 0.9;
}
.page-hero-copy > p { max-width: 600px; margin: 0 0 2.2rem; color: var(--muted); font-size: 1.08rem; }
.page-hero-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 6vw, 90px);
  background: var(--sand);
}
.page-hero.dark { background: var(--ink); color: var(--paper); }
.page-hero.dark .page-hero-copy > p { color: #c3beb5; }
.page-hero.dark .page-hero-side { background: #303431; }
.page-number { color: var(--bronze); font: 400 clamp(7rem, 15vw, 14rem) / 0.75 Georgia, serif; letter-spacing: -0.08em; }
.page-side-copy { max-width: 360px; margin-top: 3.5rem; }
.page-side-copy strong { display: block; margin-bottom: 0.75rem; font: 400 1.7rem Georgia, serif; }
.page-side-copy p { margin: 0; color: inherit; opacity: 0.72; }
.page-hero-media {
  position: relative;
  min-height: 560px;
  background: linear-gradient(135deg, rgba(24, 27, 26, 0.04), rgba(24, 27, 26, 0.32)), url("/assets/lifesync-iv-lounge-enhanced.webp") center / cover no-repeat;
}

.section { padding: clamp(80px, 10vw, 140px) 0; }
.section.white { background: var(--white); }
.section.sand { background: var(--sand); }
.section.dark { background: var(--ink); color: var(--paper); }
.split { display: grid; grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr); gap: clamp(45px, 9vw, 120px); }
.split h2 { max-width: 11ch; margin: 0.55rem 0 0; font-size: clamp(2.7rem, 5vw, 5.4rem); line-height: 0.98; }
.service-photo-split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(45px, 8vw, 110px); }
.service-story-photo { min-height: 620px; margin: 0; overflow: hidden; background: var(--sand); }
.service-story-photo img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center; }
.service-photo-split h2 { max-width: 10ch; margin: 0.6rem 0 1.8rem; font-size: clamp(2.7rem, 5vw, 5.4rem); line-height: 0.98; }
.lead { margin: 0 0 2rem; font: 400 clamp(1.45rem, 2.6vw, 2.35rem) / 1.35 Georgia, serif; letter-spacing: -0.02em; }
.prose { max-width: 720px; }
.prose p { margin: 0 0 1.35rem; color: var(--muted); }
.dark .prose p { color: #beb9b1; }
.rule-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.dark .rule-list { border-color: var(--line-light); }
.rule-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.rule-list.numbered .rule-item { grid-template-columns: 54px 1fr; }
.dark .rule-item { border-color: var(--line-light); }
.rule-item span { color: var(--bronze); font-family: Georgia, serif; }
.rule-item strong { font-size: 1.03rem; font-weight: 500; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.card { min-height: 260px; padding: 34px; background: var(--paper); }
.white .card { background: var(--white); }
.dark .cards { background: var(--line-light); }
.dark .card { background: var(--ink); }
.card-index { color: var(--bronze); font: 400 1rem Georgia, serif; }
.card h3 { margin: 0 0 0.8rem; font: 400 1.65rem / 1.12 Georgia, serif; }
.card .card-index + h3 { margin-top: 3rem; }
.card p { margin: 0; color: var(--muted); }
.dark .card p { color: #aaa69f; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.feature { min-height: 230px; padding: clamp(28px, 4vw, 48px); background: var(--white); }
.feature h3 { margin: 0 0 0.8rem; font: 400 clamp(1.55rem, 2.5vw, 2.2rem) / 1.1 Georgia, serif; }
.feature p { margin: 0; color: var(--muted); }
.service-directory { border-top: 1px solid var(--line); }
.directory-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr) 44px;
  align-items: center;
  gap: 2rem;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s var(--ease), color 0.25s var(--ease);
}
.directory-row:hover,
.directory-row:focus-visible { padding-left: 12px; color: var(--bronze); }
.directory-row h2 { margin: 0; font: 400 clamp(1.8rem, 3.2vw, 3.45rem) / 1 Georgia, serif; }
.directory-row p { margin: 0; color: var(--muted); }
.directory-row .arrow { justify-self: end; }
.symptom-list { margin: 0; padding: 0; list-style: none; }
.symptom-list li { padding: 1rem 0; border-bottom: 1px solid var(--line-light); font: 400 1.2rem Georgia, serif; }
.symptom-list li:first-child { border-top: 1px solid var(--line-light); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.menu-item { min-height: 210px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-item h3 { margin: 0 0 0.6rem; font: 400 1.45rem Georgia, serif; }
.menu-item p { margin: 0; color: var(--muted); }
.menu-price { display: block; margin-top: 1.2rem; color: var(--ink); font: 400 1.2rem Georgia, serif; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.price-card { padding: clamp(30px, 4vw, 48px); background: var(--white); }
.sand .price-card { background: var(--paper); }
.price-card h3 { margin: 0 0 1.75rem; font: 400 clamp(1.55rem, 2.5vw, 2.2rem) / 1.1 Georgia, serif; }
.price-card > p { margin: 1.4rem 0 0; color: var(--muted); }
.price-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.price-line:last-of-type { border-bottom: 1px solid var(--line); }
.price-line span { color: var(--muted); }
.price-line strong { color: var(--ink); font: 400 1.25rem Georgia, serif; white-space: nowrap; }
.price-note { max-width: 760px; margin: 2rem 0 0; color: var(--muted); font-size: 0.92rem; }
.lab-price-grid { grid-template-columns: repeat(3, 1fr); }
.lab-price-grid .price-card { min-height: 230px; }
.lab-price-grid .price-card h3 { min-height: 2.5em; }
.token-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.token { padding: 11px 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.4); font-size: 0.83rem; letter-spacing: 0.08em; text-transform: uppercase; }
.notice { padding: 28px 30px; border-left: 3px solid var(--bronze); background: var(--sand-light); }
.notice strong { display: block; margin-bottom: 0.45rem; font: 400 1.3rem Georgia, serif; }
.notice p { margin: 0; color: var(--muted); }
.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.profile { display: grid; min-width: 0; grid-template-columns: clamp(170px, 17vw, 220px) minmax(0, 1fr); align-items: start; background: var(--white); }
.profile-image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.profile-body { padding: clamp(28px, 3vw, 42px); }
.profile-role { color: var(--bronze); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.profile h2 { margin: 1.25rem 0 1rem; font: 400 clamp(2rem, 3vw, 3.3rem) / 1 Georgia, serif; }
.profile p { max-width: 620px; margin: 0; color: var(--muted); }
.profile p + p { margin-top: 1rem; }
.support-team { margin-top: clamp(48px, 7vw, 80px); }
.support-team .text-link { display: inline-block; margin-top: 1.5rem; }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.partner {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.partner:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(27, 27, 25, 0.08);
}
.partner .text-link::before {
  content: "";
  position: absolute;
  inset: 0;
}
.partner .text-link:focus-visible::before {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.partner h3 { margin: 0 0 0.8rem; font: 400 1.7rem Georgia, serif; }
.partner p { margin: 0 0 1.4rem; color: var(--muted); }
.booking-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 3rem; background: var(--line); }
.booking-card { display: flex; min-height: 310px; flex-direction: column; padding: 34px; background: var(--white); }
.booking-card h2 { margin: 0 0 0.8rem; font: 400 1.8rem / 1.05 Georgia, serif; }
.booking-card p { margin: 0 0 2rem; color: var(--muted); }
.booking-card .text-link { margin-top: auto; align-self: flex-start; }
.visit-hero { padding: clamp(95px, 12vw, 170px) 0; background: var(--ink); color: var(--paper); }
.visit-hero h1 { max-width: 9ch; margin: 0.7rem 0 1.5rem; font-size: clamp(4.4rem, 9vw, 9.5rem); line-height: 0.84; }
.visit-hero p { max-width: 560px; color: #bdb8b0; font-size: 1.08rem; }
.visit-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; background: var(--line-light); }
.visit-meta div { padding: 24px; background: var(--ink); }
.visit-meta strong { display: block; margin-bottom: 0.35rem; font: 400 1.25rem Georgia, serif; }
.visit-meta span { color: #aaa69f; font-size: 0.9rem; }

.cta-band { padding: clamp(78px, 10vw, 130px) 0; background: var(--ink-soft); color: var(--paper); }
.cta-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: end; gap: 7vw; }
.cta-grid h2 { max-width: 9ch; margin: 0.65rem 0 0; font-size: clamp(3.5rem, 7vw, 7.5rem); line-height: 0.9; }
.cta-copy { padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.25); }
.cta-copy p { margin: 0 0 2rem; color: #bcb8b0; }

.footer { padding: 46px 0 28px; border-top: 1px solid rgba(255, 255, 255, 0.15); background: #272a28; color: #d0cbc2; }
.footer-main { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 4rem; }
.footer-name { color: var(--white); font: 400 1.65rem Georgia, serif; letter-spacing: 0.03em; }
.footer-main p { max-width: 420px; margin: 0.85rem 0 0; color: #a9a59e; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.2rem 1.6rem; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.13); color: #9b978f; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.on { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .links { gap: 1.2rem; }
  .logo-lockup { width: 172px; }
  .service-row,
  .directory-row { grid-template-columns: 1fr 34px; }
  .service-row p,
  .directory-row p { display: none; }
}

@media (max-width: 900px) {
  .wrap,
  .narrow { width: min(100% - 32px, 720px); }
  .header { height: 92px; }
  .nav { grid-template-columns: 1fr auto; }
  .logo-lockup { width: 150px; }
  .links,
  .nav-cta { display: none; }
  .menu { display: block; }
  .home-hero { grid-template-columns: 1fr; min-height: 0; }
  .home-hero-copy { padding: 72px 24px; }
  .home-hero-image { min-height: 0; aspect-ratio: 3 / 2; order: -1; background-position: center; }
  .home-intro-grid,
  .home-experience,
  .page-hero,
  .split,
  .service-photo-split,
  .cta-grid,
  .footer-main { grid-template-columns: 1fr; }
  .page-hero { min-height: 0; }
  .page-hero-copy { padding: 78px 24px; }
  .page-hero-side { min-height: 420px; }
  .page-hero-media { min-height: 58vh; order: -1; }
  .principles { grid-template-columns: 1fr; gap: 1.2rem; }
  .section-head { display: block; }
  .section-head > p { margin-top: 1.2rem; }
  .experience-copy { padding: 72px 24px; }
  .service-story-photo { min-height: 0; aspect-ratio: 4 / 5; }
  .service-story-photo img { min-height: 0; }
  .cards,
  .price-grid,
  .menu-grid,
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile { min-height: 0; grid-template-columns: 220px minmax(0, 1fr); }
  .cta-copy { max-width: 560px; }
  .footer nav { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .topline { font-size: 0.69rem; letter-spacing: 0.1em; }
  .logo-lockup { width: 140px; }
  .home-hero h1 { font-size: 3.65rem; }
  .home-hero-image { min-height: 0; }
  .home-intro,
  .home-services,
  .testimonial,
  .section { padding: 76px 0; }
  .hero-actions .btn { width: 100%; }
  .service-row,
  .directory-row { grid-template-columns: 1fr 25px; gap: 0.8rem; padding: 25px 0; }
  .service-row h3 { font-size: 1.75rem; }
  .directory-row h2 { font-size: 1.85rem; }
  .stats { flex-direction: column; gap: 1rem; }
  .page-hero h1 { font-size: 4rem; }
  .page-hero-side { min-height: 340px; padding: 42px 24px; }
  .cards,
  .feature-grid,
  .price-grid,
  .menu-grid,
  .partner-grid,
  .booking-grid,
  .visit-meta { grid-template-columns: 1fr; }
  .profile { display: block; }
  .profile-image { width: 100%; height: auto; margin: 0; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top; }
  .profile-body { padding: 28px 24px 34px; }
  .card,
  .feature,
  .menu-item,
  .booking-card { min-height: 0; }
  .card .card-index + h3 { margin-top: 2rem; }
  .price-line { grid-template-columns: 1fr; gap: 0.25rem; }
  .cta-grid h2 { font-size: 4rem; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
