/* ============================================================
   Dr. Urvashi Singh ENT — site stylesheet
   ============================================================ */

:root {
  --bg:        #FAFBFD;
  --surface:   #FFFFFF;
  --soft:      #F1F4F9;
  --mist:      #E8EEF6;
  --mist-2:    #D7E0EE;
  --navy:      #1B3A6C;
  --navy-ink:  #14264A;
  --orange:    #EE9D2E;
  --orange-dk: #C77B17;
  --ink:       #1A2540;
  --ink-2:     #5B6781;
  --line:      #E3E8F0;
  --line-2:    #CDD6E2;
  --ok:        #2F8F5E;
  --shadow:    0 14px 40px -18px rgba(20,38,74,0.16);
  --shadow-lg: 0 30px 80px -28px rgba(20,38,74,0.22);
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --maxw:      1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}
img, video, iframe { max-width: 100%; height: auto; }
@media (max-width: 720px) {
  h1, h2, h3, h4 { word-break: break-word; overflow-wrap: anywhere; -webkit-hyphens: auto; hyphens: auto; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.06;
  color: var(--navy-ink);
  margin: 0;
  font-variation-settings: "opsz" 144;
}
p { margin: 0; }
::selection { background: var(--orange); color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .3s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-ink); transform: translateY(-1px); box-shadow: 0 14px 30px -14px rgba(27,58,108,0.5); }
.btn-primary .arrow { transition: transform .35s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-outline:hover { border-color: var(--navy); background: var(--surface); }
.btn-ghost { color: var(--ink); padding: 14px 6px; }
.btn-ghost:hover { color: var(--orange-dk); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-whatsapp {
  background: #25D366; color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe57; transform: translateY(-1px);
  box-shadow: 0 12px 26px -12px rgba(37,211,102,0.55);
}
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; }
.arrow { display: inline-block; transition: transform .35s var(--ease); }

/* ---------- nav ---------- */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 16px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav-wrap.scrolled {
  padding: 10px 0;
  background: rgba(250,251,253,0.86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(20,38,74,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 68px; width: auto; transition: height .3s var(--ease); }
.nav-wrap.scrolled .brand img { height: 54px; }
@media (max-width: 720px) {
  .brand img { height: 54px; }
  .nav-wrap.scrolled .brand img { height: 44px; }
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links > a, .nav-links > .has-sub > .nav-trigger {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-links > a:hover, .nav-links > .has-sub > .nav-trigger:hover { background: var(--mist); color: var(--navy); }
.nav-links > a.active { color: var(--navy); font-weight: 500; }
.has-sub { position: relative; }
.has-sub .nav-trigger svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .25s var(--ease); }
.has-sub:hover .nav-trigger svg, .has-sub:focus-within .nav-trigger svg { transform: rotate(180deg); }
.sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow);
  min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.sub-menu a:hover { background: var(--mist); color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- section base ---------- */
section { padding: 110px 0; }
@media (max-width: 720px) { section { padding: 70px 0; } }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.section-tag::before { content: ""; width: 22px; height: 1px; background: var(--ink-2); opacity: .4; }
.section-head h2 { font-size: clamp(36px, 4.8vw, 60px); }
.section-head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 580px;
}
.section-row {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.section-row .section-head { margin-bottom: 0; }

/* ---------- page hero (smaller than home hero) ---------- */
.page-hero {
  padding: 160px 0 70px;
}
.page-hero .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 22px;
}
.page-hero .crumbs a:hover { color: var(--orange-dk); }
.page-hero .crumbs span { opacity: .5; }
.page-hero h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 22px;
  max-width: 900px;
}
.page-hero .lede {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 620px;
}
@media (max-width: 720px) {
  .page-hero { padding: 110px 0 30px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 44px); letter-spacing: -0.02em; }
  .page-hero .lede { font-size: 16.5px; }
  .page-hero .crumbs { font-size: 12px; flex-wrap: wrap; }
}

/* ---------- home hero ---------- */
.hero { padding: 150px 0 90px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--ink-2); opacity: .45;
}
.hero h1 {
  font-size: clamp(46px, 6.8vw, 92px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 18.5px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 38px;
}
.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-image {
  aspect-ratio: 5/6;
  background: var(--mist);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 960px) {
  .hero { padding: 130px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-image { max-width: 480px; margin: 0 auto; aspect-ratio: 4/5; }
}
@media (max-width: 720px) {
  .hero { padding: 110px 0 40px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); letter-spacing: -0.02em; }
  .hero-sub { font-size: 16.5px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-image { aspect-ratio: 3/4; max-width: 92%; }
  .hero-eyebrow { font-size: 11.5px; letter-spacing: 0.12em; }
}

/* ---------- marquee ---------- */
.marquee {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 44px; align-items: center;
  white-space: nowrap;
  animation: scroll 56s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Fraunces', serif;
  font-size: 22px; color: var(--navy);
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.marquee-sep {
  color: var(--ink-2); opacity: .35; font-size: 8px;
  align-self: center;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- stats ---------- */
.stats {
  padding: 90px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; align-items: end;
}
.stats-intro h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px; }
.stats-intro p { font-size: 17px; color: var(--ink-2); line-height: 1.55; max-width: 360px; }
.stats-nums {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat-num {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy-ink);
  display: inline-flex; align-items: baseline;
}
.stat-num .suffix { font-size: 0.55em; color: var(--orange); margin-left: 2px; }
.stat-label {
  font-size: 14px; color: var(--ink-2);
  margin-top: 12px; max-width: 200px;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-nums { gap: 24px; }
}
@media (max-width: 480px) {
  .stats { padding: 60px 0; }
  .stats-nums { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: clamp(40px, 12vw, 64px); }
}

/* ---------- services / conditions cards ---------- */
.services-grid {
  counter-reset: svc;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  counter-increment: svc;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--mist-2);
}
.service-img { display: none; }
/* Numbered tag removed - the heading now sits at the top of the card.
   See .service-body h3 wiggle animation below. */
.service-body { padding: 26px 26px 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 22px; margin-bottom: 8px; }
.service-body p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 18px; flex: 1; }
.service-body .learn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--navy);
}
.service-body .learn:hover { color: var(--orange-dk); }
.service-body .learn .arrow { transition: transform .3s var(--ease); }
.service-body .learn:hover .arrow { transform: translateX(4px); }

/* ---------- article (single blog post) ---------- */
.article-hero {
  padding: 160px 0 50px;
}
.article-hero .crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 22px;
}
.article-hero .crumbs a:hover { color: var(--orange-dk); }
.article-hero .crumbs span { opacity: .5; }
.article-hero .post-badge {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--orange-dk);
  background: rgba(238,157,46,0.12);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.article-hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 900px;
}
.article-hero .lede {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 30px;
}
.article-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--ink-2);
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.article-meta .author {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.article-meta .author-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 14px; font-weight: 500;
}
.article-meta .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--ink-2); opacity: .4;
}

.featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #E8EEF6 0%, #C7D3E5 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 10px 0 50px;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Long-form prose */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.4em;
}
.prose h2 {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin: 2.4em 0 0.7em;
}
.prose h3 {
  font-size: 22px;
  margin: 1.8em 0 0.6em;
}
.prose a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(27,58,108,0.3);
  text-underline-offset: 3px;
  transition: color .25s var(--ease), text-decoration-color .25s var(--ease);
}
.prose a:hover { color: var(--orange-dk); text-decoration-color: var(--orange); }
.prose strong { color: var(--navy-ink); font-weight: 500; }

.quick-answer {
  background: var(--mist);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin: 30px 0 40px;
}
.quick-answer .lbl {
  display: block;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--orange-dk);
  margin-bottom: 10px;
}
.quick-answer p { font-size: 16.5px; line-height: 1.65; color: var(--ink); margin: 0; }

.byline-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 0 0 40px;
}
.byline-card .byline-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 44px;
}
.byline-card .byline-info {
  flex: 1; min-width: 0;
  font-size: 14px; color: var(--ink-2);
  line-height: 1.5;
}
.byline-card .byline-info strong { color: var(--ink); font-weight: 500; display: block; font-size: 15px; }

.read-more-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 24px 0 32px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.read-more-card:hover {
  border-color: var(--navy);
  transform: translateX(2px);
  text-decoration: none !important;
}
.read-more-card .label {
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.read-more-card .title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--navy-ink);
  font-weight: 500;
}
.read-more-card .arrow {
  font-size: 22px; color: var(--orange-dk);
  transition: transform .3s var(--ease);
}
.read-more-card:hover .arrow { transform: translateX(4px); }

.symptom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.symptom-table th, .symptom-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.symptom-table th {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  background: var(--mist);
}
.symptom-table tr:last-child th, .symptom-table tr:last-child td { border-bottom: 0; }
.symptom-table td.cause {
  font-family: 'Fraunces', serif;
  color: var(--navy-ink);
  font-weight: 500;
  font-size: 16px;
  width: 38%;
}

.red-flags {
  background: rgba(238,157,46,0.10);
  border: 1px solid rgba(238,157,46,0.35);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 36px 0;
}
.red-flags .rf-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--orange-dk);
  margin-bottom: 14px;
}
.red-flags h3 {
  font-size: 22px;
  margin: 0 0 18px;
  color: var(--navy-ink);
}
.red-flags ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.red-flags li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
}
.red-flags li::before {
  content: ""; position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}

.inline-cta {
  background: var(--navy-ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.inline-cta .ic-text { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.85); }
.inline-cta .ic-title {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}
.inline-cta .btn-primary { background: var(--orange); }
.inline-cta .btn-primary:hover { background: var(--orange-dk); }
@media (max-width: 600px) {
  .inline-cta { grid-template-columns: 1fr; }
}

.faq-section {
  max-width: 760px;
  margin: 60px auto 0;
}
.faq-section h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 22px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--navy-ink);
  font-weight: 500;
  line-height: 1.35;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange-dk); }
.faq-item summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  color: var(--orange-dk);
  font-weight: 400;
  transition: transform .3s var(--ease);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  padding: 0 0 24px;
  max-width: 680px;
}

.disclaimer {
  max-width: 760px; margin: 70px auto 0;
  padding: 22px 26px;
  background: var(--soft);
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.disclaimer strong { display: block; margin-bottom: 6px; color: var(--ink); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 11.5px; }

.article-end-cta {
  background: linear-gradient(135deg, #FFF1DF 0%, #F8DCBA 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  margin: 70px auto 0;
  max-width: 900px;
}
.article-end-cta h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.article-end-cta p { color: var(--ink); font-size: 17px; line-height: 1.6; max-width: 540px; margin: 0 auto 28px; }
.article-end-cta .cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 600px) {
  .article-end-cta { padding: 40px 24px; }
}

/* ---------- blog posts grid ---------- */
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--mist-2);
}
.post-img {
  aspect-ratio: 16/10;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #E8EEF6 0%, #C7D3E5 100%);
}
.post-img.tint-warm { background: linear-gradient(135deg, #FFF1DF 0%, #F8DCBA 100%); }
.post-img.tint-cool { background: linear-gradient(135deg, #EEF4FB 0%, #D7E0EE 100%); }
.post-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.post-card:hover .post-img img { transform: scale(1.04); }
.post-body {
  padding: 26px 26px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.post-badge {
  display: inline-block;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--orange-dk);
  background: rgba(238,157,46,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.post-body h3 {
  font-size: 21px;
  line-height: 1.18;
  margin-bottom: 10px;
}
.post-body p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; color: var(--ink-2);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.post-meta .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--ink-2); opacity: .4;
}
.post-meta .read {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy);
  font-weight: 500;
}
.post-card:hover .post-meta .read { color: var(--orange-dk); }
.post-meta .read .arrow { transition: transform .3s var(--ease); }
.post-card:hover .post-meta .read .arrow { transform: translateX(3px); }

/* category filter chips (visual only for now) */
.post-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.post-filter {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.post-filter:hover { border-color: var(--navy); }
.post-filter.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- bento grid (Conditions section) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 960px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-tile { min-height: 150px; padding: 20px; }
}

.bento-feature {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  background: var(--navy-ink);
  color: #fff;
  padding: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  text-decoration: none;
}
.bento-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.bento-feature::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(238,157,46,0.18) 0%, rgba(238,157,46,0) 65%);
  pointer-events: none;
}
.bento-feature .b-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 22px;
}
.bento-feature .b-eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--orange); opacity: .65;
}
.bento-feature h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  letter-spacing: -0.018em;
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 460px;
  position: relative; z-index: 1;
}
.bento-feature p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 440px;
  position: relative; z-index: 1;
}
.bento-feature .b-cta {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 500;
  color: var(--orange);
  position: relative; z-index: 1;
}
.bento-feature .b-cta .arrow { transition: transform .35s var(--ease); }
.bento-feature:hover .b-cta .arrow { transform: translateX(5px); }

.bento-tile {
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
}
.bento-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.bento-tile.t-warm { background: linear-gradient(135deg, #FFF1DF 0%, #F8DCBA 100%); }
.bento-tile.t-mist { background: linear-gradient(135deg, #E8EEF6 0%, #D7E0EE 100%); }
.bento-tile.t-cool { background: linear-gradient(135deg, #EEF4FB 0%, #DDE7F3 100%); }
.bento-tile.t-peach { background: linear-gradient(135deg, #FFE4C5 0%, #F3C896 100%); }
.bento-tile.t-sand { background: linear-gradient(135deg, #F1F4F9 0%, #D7E0EE 100%); }
.bento-tile.t-amber { background: linear-gradient(135deg, #FCEEDA 0%, #F8DCBA 100%); }
.bento-tile.t-sky { background: linear-gradient(135deg, #EAF2FB 0%, #CFDFEF 100%); }

/* Bento numbers removed - heading sits at top of tile (see .bento-tile h4 wiggle below). */
.bento-tile .b-top { display: none; }
.bento-tile h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--navy-ink);
  margin: 0 0 8px;
}
.bento-tile p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
.bento-tile .b-arrow {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--navy);
  align-self: flex-start;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.bento-tile:hover .b-arrow { gap: 10px; color: var(--orange-dk); }

/* ---------- title wiggle (bento + treatment cards) ---------- */
@keyframes titleWiggle {
  0%   { transform: rotate(0)         translateX(0); }
  20%  { transform: rotate(-1.6deg)   translateX(-1px); }
  40%  { transform: rotate(1.2deg)    translateX(1px); }
  60%  { transform: rotate(-0.8deg)   translateX(-0.5px); }
  80%  { transform: rotate(0.4deg)    translateX(0.5px); }
  100% { transform: rotate(0)         translateX(0); }
}
.bento-tile h4,
.service-card h3 {
  transform-origin: left center;
  display: inline-block;
}
.bento-tile:hover h4,
.service-card:hover h3 {
  animation: titleWiggle 0.55s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .bento-tile:hover h4,
  .service-card:hover h3 { animation: none; }
}

/* ---------- service tiles (image + hover overlay) ---------- */
.tiles-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .tiles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .tiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tiles-grid { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #E8EEF6 0%, #C7D3E5 100%);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.tile.tile-warm { background: linear-gradient(135deg, #FFF1DF 0%, #F8DCBA 100%); }
.tile.tile-cool { background: linear-gradient(135deg, #EEF4FB 0%, #D7E0EE 100%); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.tile-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out), filter .35s var(--ease);
  z-index: 1;
}
.tile:hover .tile-img {
  transform: scale(1.06);
}

.tile-title {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 26px 22px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, rgba(20,38,74,0) 0%, rgba(20,38,74,0.55) 55%, rgba(20,38,74,0.85) 100%);
  z-index: 2;
  transition: opacity .35s var(--ease);
}

.tile-overlay {
  position: absolute; inset: 0;
  background: rgba(20,38,74,0.92);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 3;
}
.tile:hover .tile-overlay { opacity: 1; }
.tile:hover .tile-title { opacity: 0; }
.tile-overlay h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 14px;
}
.tile-overlay p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.tile-overlay .learn {
  color: var(--orange);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px;
}
.tile-overlay .arrow { transition: transform .3s var(--ease); }
.tile:hover .tile-overlay .arrow { transform: translateX(4px); }

/* ---------- banner (image + text) ---------- */
.banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.banner-img {
  aspect-ratio: 4/5;
  background: var(--mist);
  position: relative; overflow: hidden;
}
.banner-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.banner-content {
  padding: 60px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.banner-content h2 { font-size: clamp(32px, 3.8vw, 48px); margin-bottom: 22px; }
.banner-content p { font-size: 17px; color: var(--ink-2); line-height: 1.6; }
.banner-content p + p { margin-top: 16px; }
.banner-content .btn { margin-top: 30px; align-self: flex-start; }
.banner-content .creds {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 12px;
}
.banner-content .creds li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.banner-content .check {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 3px;
  border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.banner-content .check svg { width: 12px; height: 12px; }
@media (max-width: 960px) {
  .banner { grid-template-columns: 1fr; }
  .banner-content { padding: 40px; }
  /* Mobile: show the full portrait without cropping the head */
  .banner-img { aspect-ratio: auto; max-height: 70vh; }
  .banner-img img { object-fit: contain; height: auto; max-height: 70vh; }
}
@media (max-width: 520px) {
  .banner-content { padding: 28px 22px; }
  .banner-content h2 { font-size: 26px; }
  .banner-content .btn { width: 100%; justify-content: center; }
}

/* ---------- expect / process ---------- */
.expect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
/* Step numbers removed - heading sits at top of each step card. */
.step .stepnum { display: none; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 880px) { .expect-grid { grid-template-columns: 1fr; } }

/* ---------- cases (videos on dark) ---------- */
.cases { background: var(--navy-ink); color: var(--bg); }
.cases .section-head h2 { color: #fff; }
.cases .section-head p { color: rgba(250,251,253,0.72); }
.cases .section-tag { color: rgba(250,251,253,0.55); }
.cases .section-tag::before { background: rgba(250,251,253,0.45); }
.case-warn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(238,157,46,0.16);
  border: 1px solid rgba(238,157,46,0.3);
  color: var(--orange);
  font-size: 12.5px;
  margin-top: 18px;
}
.case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .case-grid { grid-template-columns: 1fr; } }
.case {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(250,251,253,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.case-media { aspect-ratio: 16/10; position: relative; background: #000; overflow: hidden; }
.case-media video { width: 100%; height: 100%; object-fit: cover; }
.case-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(20,38,74,0.0) 30%, rgba(20,38,74,0.65) 100%);
  transition: opacity .35s var(--ease); cursor: pointer;
}
.case-play.hidden { opacity: 0; pointer-events: none; }
.case-play .play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.case-play:hover .play-btn { transform: scale(1.08); background: var(--orange-dk); }
.case-play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.case-body { padding: 22px 24px; }
.case-body h4 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.case-body p { color: rgba(250,251,253,0.65); font-size: 14px; line-height: 1.55; }

/* ---------- booking (chat-style) ---------- */
.booking-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 60px; align-items: start;
}
.booking-aside h2 { font-size: clamp(34px, 4.2vw, 50px); margin-bottom: 22px; }
.booking-aside p { font-size: 18px; color: var(--ink-2); line-height: 1.6; }
.booking-meta { margin-top: 32px; display: grid; gap: 14px; }
.booking-meta a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.booking-meta a:hover { border-color: var(--navy); transform: translateY(-1px); }
.booking-meta .ico {
  width: 38px; height: 38px;
  background: var(--mist);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.booking-meta .ico svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.booking-meta .lbl { font-size: 12px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.1em; }
.booking-meta .val { font-size: 16px; color: var(--ink); font-weight: 500; }

.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
  position: sticky; top: 110px;
}
.step-track { display: flex; gap: 6px; margin-bottom: 28px; }
.step-pip { flex: 1; height: 4px; background: var(--line); border-radius: 999px; transition: background .3s var(--ease); }
.step-pip.active { background: var(--orange); }
.step-pip.done { background: var(--navy); }
.q-step { display: none; animation: fadein .4s var(--ease-out); }
.q-step.active { display: block; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.q-label {
  font-size: 13px; color: var(--orange-dk); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.q-text {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 28px; color: var(--navy-ink); line-height: 1.2;
  margin-bottom: 24px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 12px 18px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--navy); background: var(--mist); }
.chip.selected { background: var(--navy); color: #fff; border-color: var(--navy); }
.q-input {
  width: 100%; padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-size: 16px; font-family: inherit; color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.q-input:focus { outline: none; border-color: var(--navy); background: #fff; }
.q-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.q-back {
  font-size: 14px; color: var(--ink-2);
  padding: 8px 14px; border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.q-back:hover { color: var(--ink); background: var(--bg); }
.q-back[disabled] { opacity: 0; pointer-events: none; }
.q-summary {
  background: var(--mist); border-radius: 14px;
  padding: 18px; margin-bottom: 22px;
  font-size: 14px; color: var(--ink);
}
.q-summary div + div { margin-top: 6px; }
.q-summary strong { color: var(--navy-ink); font-weight: 500; }
.form-success { text-align: center; padding: 18px 0; }
.form-success .tick {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--ok);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p { color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.form-success .btn { margin-top: 22px; }
@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-form { position: relative; top: 0; padding: 28px; }
}
@media (max-width: 520px) {
  .booking-form { padding: 22px 18px; }
  .booking-aside h2 { font-size: 28px; }
  .q-text { font-size: 22px; }
  .chip { padding: 10px 14px; font-size: 13.5px; }
  .booking-meta a { padding: 12px 14px; }
  .booking-meta .val { font-size: 14.5px; }
}

/* mini booking form, used on treatment pages */
.mini-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid; gap: 12px;
}
.mini-form .mini-label {
  font-size: 12.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--orange-dk);
  margin-bottom: 4px;
}
.mini-form h3 { font-size: 26px; margin-bottom: 10px; }
.mini-form p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin-bottom: 14px; }
.mini-form textarea.q-input { min-height: 100px; resize: vertical; }
.mini-form .btn { justify-self: start; margin-top: 8px; }

/* ---------- visit, monogram ---------- */
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; align-items: stretch;
}
.visit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: flex; flex-direction: column;
}
.monogram {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 72px; line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
  margin-bottom: 26px;
  font-variation-settings: "opsz" 144;
}
.monogram-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  object-position: left center;
  align-self: flex-start;
  margin-bottom: 24px;
}
@media (max-width: 520px) {
  .monogram-logo { height: 46px; max-width: 150px; }
}
.visit-card h3 { font-size: 26px; margin-bottom: 6px; }
.visit-card .addr-small { font-size: 14px; color: var(--ink-2); margin-bottom: 28px; }
.visit-card .addr { font-size: 17px; color: var(--ink); margin-bottom: 18px; line-height: 1.55; }
.visit-rows { display: grid; gap: 12px; margin-bottom: 30px; }
.visit-rows .row { display: flex; gap: 14px; align-items: center; font-size: 15px; }
.visit-rows .row svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.8; flex: 0 0 18px; }
.visit-card .btn { align-self: flex-start; margin-top: auto; }
.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  background: var(--mist-2);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 460px; }
@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-card { padding: 32px 24px; }
  .visit-map { min-height: 320px; }
  .visit-map iframe { min-height: 320px; }
}
@media (max-width: 520px) {
  .visit-card h3 { font-size: 22px; }
  .visit-card .monogram { font-size: 60px; }
  .visit-card .visit-rows .row { font-size: 14px; flex-wrap: wrap; }
}

/* ---------- consultancies grid (taste-skill refined) ---------- */
.consult-row {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 40px;
}
/* Carousel arrows hidden — grid layout no longer needs them */
.consult-controls { display: none; }

.consult-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
}
.consult-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.consult-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 58, 108, 0.35);
  box-shadow: 0 24px 50px -28px rgba(20, 38, 74, 0.25);
}
.consult-card:active { transform: translateY(-1px) scale(0.99); }

/* Tonal variance — break the equal-cards monotony */
.consult-card:nth-child(4n+2) { background: var(--mist); }
.consult-card:nth-child(4n+3) { background: #FBF6EC; }

/* Location chip — replaces the decorative orange line with informational anchor */
.consult-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 12px 5px 9px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 38, 74, 0.08);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy-ink);
}
.consult-chip svg {
  width: 12px; height: 12px;
  stroke: var(--orange-dk);
  fill: none; stroke-width: 1.8;
}
.consult-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.22;
  color: var(--navy-ink);
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
  margin: 0;
  flex: 1;
}
.consult-link {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange-dk);
  transition: gap .25s var(--ease);
}
.consult-card:hover .consult-link { gap: 12px; }
.consult-link .arrow { transition: transform .3s var(--ease); }
.consult-card:hover .consult-link .arrow { transform: translateX(3px); }

@media (max-width: 600px) {
  .consult-track { grid-template-columns: 1fr; gap: 14px; }
  .consult-card { padding: 24px 22px 22px; }
  .consult-name { font-size: 20px; }
}

/* ---------- bullet lists ---------- */
.bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.bullets li strong {
  color: var(--navy-ink);
  font-weight: 500;
}
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 720px) {
  .col-head { font-size: 22px; }
  .bullets li { font-size: 15.5px; padding-left: 22px; }
}
.col-head { font-size: 24px; margin-bottom: 20px; }
.col-sub { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-2); margin-bottom: 14px; }

/* ---------- contact form (multi-field) ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-size: 13px; color: var(--ink-2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-size: 16px; font-family: inherit; color: var(--ink);
  transition: border-color .25s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--navy);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.contact-info h3 { font-size: 24px; margin-bottom: 24px; }
.contact-info .info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-row:last-child { border-bottom: 0; }
.contact-info .info-row .lbl { font-size: 12px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-info .info-row .val { font-size: 16px; color: var(--ink); margin-top: 4px; line-height: 1.5; }
.contact-info .info-row .ico {
  width: 38px; height: 38px;
  background: var(--mist);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex: 0 0 38px;
}
.contact-info .info-row .ico svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.8; }

/* ---------- footer ---------- */
footer {
  background: var(--bg);
  padding: 70px 0 32px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.foot-grid h5 {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { font-size: 15px; color: var(--ink); transition: color .25s var(--ease); }
.foot-grid a:hover { color: var(--orange-dk); }
.foot-brand img { height: 60px; margin-bottom: 18px; }
.foot-brand p { color: var(--ink-2); font-size: 14px; line-height: 1.6; max-width: 300px; }
.foot-bot {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-2);
  gap: 16px; flex-wrap: wrap;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- floating cta ---------- */
.float-cta {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 55;
  transform: translateY(120%);
  transition: transform .4s var(--ease-out);
  box-shadow: 0 18px 40px -12px rgba(27,58,108,0.45);
}
.float-cta.visible { transform: translateY(0); }
@media (max-width: 720px) {
  .float-cta {
    bottom: 12px; right: 12px; left: 12px;
    justify-content: center;
    padding: 14px 18px;
    font-size: 14px;
  }
  .nav-wrap { padding: 12px 0; }
  .brand img { height: 48px; }
  .nav-wrap.scrolled .brand img { height: 40px; }
}

/* ---------- reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d-1 { transition-delay: .08s; }
.reveal-d-2 { transition-delay: .16s; }
.reveal-d-3 { transition-delay: .24s; }
.reveal-d-4 { transition-delay: .32s; }
.reveal-d-5 { transition-delay: .4s; }
.reveal-d-6 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- mobile menu ---------- */
@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 999px;
    border: 1px solid var(--line);
  }
  .menu-toggle svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.8; }
  .mobile-menu {
    position: fixed; inset: 0 0 0 auto;
    width: min(360px, 86vw);
    background: var(--bg);
    z-index: 70;
    padding: 90px 28px 30px;
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
    box-shadow: -20px 0 60px -20px rgba(20,38,74,0.2);
    display: flex; flex-direction: column;
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a {
    font-family: 'Fraunces', serif;
    font-size: 24px; padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy-ink);
  }
  .mobile-menu .submenu-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--ink-2); padding: 18px 0 4px;
    border-bottom: 0;
  }
  .mobile-menu .submenu-link {
    font-size: 18px; padding: 10px 0 10px 16px;
  }
  .mobile-menu .btn {
    margin-top: 22px;
    align-self: stretch;            /* fill drawer width */
    justify-content: center;        /* centre text + arrow */
    text-align: center;
    white-space: normal;            /* allow wrap inside narrow drawer */
    padding: 14px 18px;
    box-sizing: border-box;
    max-width: 100%;
  }
  /* Override: drawer-wide anchor color was bleeding into the CTA button */
  .mobile-menu .btn-primary,
  .mobile-menu .btn-primary:hover,
  .mobile-menu .btn-primary:visited { color: #fff; border-bottom: 0; }
  .mobile-menu .btn-orange,
  .mobile-menu .btn-orange:hover,
  .mobile-menu .btn-orange:visited { color: #fff; border-bottom: 0; }
  .mobile-menu-close {
    position: absolute; top: 22px; right: 22px;
    width: 44px; height: 44px; border-radius: 999px;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
  }
  .scrim {
    position: fixed; inset: 0;
    background: rgba(20,38,74,0.4);
    z-index: 65;
    opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease);
  }
  .scrim.open { opacity: 1; pointer-events: auto; }
}
@media (min-width: 881px) { .mobile-menu, .scrim { display: none; } }
