/* Üesthetics Indy — Global styles */

:root {
  --cream: #f6f4f1;
  --ink: #2b1f1a;
  --text: #3a3734;
  --taupe: #b8aea4;
  --blush: #d6b8ae;
  --cream-2: #ece8e2;
  --cream-3: #e2dcd2;
  --line: rgba(43, 31, 26, 0.12);
  --line-soft: rgba(43, 31, 26, 0.06);

  --accent: var(--blush);
  --accent-deep: var(--taupe);

  --serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --pad: 88px;
  --pad-y: 120px;
  --maxw: 1320px;
}

[data-density="tight"] {
  --pad-y: 80px;
}
[data-density="spacious"] {
  --pad-y: 160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Prevent any element from causing horizontal scroll on mobile.
     If you ever need to debug an overflowing element, comment this out
     and reload — the offender will show up immediately. */
  overflow-x: hidden;
  max-width: 100%;
}

#root { min-height: 100vh; }

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

button {
  font-family: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

img { display: block; max-width: 100%; }

/* — Typography — */

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
  font-style: normal;
}

.display em { font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.65;
}

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* — Layout — */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: var(--pad-y) 0; }
.section-tight { padding: calc(var(--pad-y) * 0.6) 0; }
/* Lets a section pull up closer to the one above it (used between Stats
   and the services menu so the rhythm doesn't sag) */
.section--pull-up { padding-top: calc(var(--pad-y) * 0.35); }
@media (max-width: 720px) {
  .section--pull-up { padding-top: 24px; }
}

/* — Buttons — */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--text); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-accent {
  background: var(--blush);
  color: var(--ink);
}
.btn-accent:hover { background: var(--taupe); }

.arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* — Nav — */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 241, 0.85);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, padding 0.25s ease;
}
.nav.scrolled { border-color: var(--line); }

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: padding 0.25s ease;
}
.nav.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  cursor: pointer;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: italic;
}
.brand-mark b { font-style: normal; font-weight: 500; }
.brand-loc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
}

.nav-menu-wrap {
  position: relative;
}
.nav-menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-menu-caret {
  font-size: 9px;
  transition: transform 0.2s ease;
  line-height: 1;
  transform: translateY(1px);
}
.nav-menu-trigger.open .nav-menu-caret { transform: translateY(1px) rotate(180deg); }
.nav-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  background: var(--cream);
  border: 1px solid rgba(41, 38, 27, 0.1);
  box-shadow: 0 14px 40px -16px rgba(41, 38, 27, 0.18), 0 4px 14px -6px rgba(41, 38, 27, 0.08);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  z-index: 120;
  animation: nav-menu-in 0.16s ease;
}
@keyframes nav-menu-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-menu-item {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.nav-menu-item:hover { background: var(--cream-2); }
.nav-menu-item.active { color: var(--accent-deep); font-style: italic; }

.nav-cta {
  padding: 11px 18px;
  font-size: 12px;
}

/* — Marquee — */

.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blush);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* — Hero — */

.hero--asym {
  padding: 0;
  min-height: min(86vh, 820px);
  display: flex;
  align-items: stretch;
}
.hero-asym-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 0;
  align-items: stretch;
}
.hero-asym-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px max(48px, calc((100vw - var(--maxw)) / 2 + 48px));
}
.hero-asym-text .hero-title {
  font-size: clamp(48px, 6.8vw, 104px);
  line-height: 0.98;
}
.hero-asym-text .hero-sub {
  max-width: 420px;
}
.hero-asym-photo {
  position: relative;
  overflow: hidden;
}
.hero-asym-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero--mirror .hero-bg-scrim {
  background:
    linear-gradient(
      270deg,
      var(--cream) 0%,
      var(--cream) 22%,
      rgba(246, 244, 241, 0.96) 32%,
      rgba(246, 244, 241, 0.72) 42%,
      rgba(246, 244, 241, 0.3) 54%,
      rgba(246, 244, 241, 0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(246, 244, 241, 0.35) 0%,
      rgba(246, 244, 241, 0) 30%,
      rgba(246, 244, 241, 0) 70%,
      rgba(246, 244, 241, 0.45) 100%
    );
}
.hero--mirror .hero-content {
  align-items: flex-end;
  text-align: right;
}
.hero--mirror .hero-content .hero-sub {
  margin-left: auto;
}
.hero--mirror .hero-content .hero-cta {
  justify-content: flex-end;
}
.hero--mirror .hero-bg-img {
  object-position: 70% 35%;
}

.hero--stacked {
  padding: 32px 0 80px;
}
.hero-stacked-photo {
  position: relative;
  width: 100%;
  height: clamp(420px, 58vh, 620px);
  overflow: hidden;
  margin-bottom: 64px;
}
.hero-stacked-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-stacked-body {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
}
.hero-stacked-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}
.hero-stacked-left {
  padding-top: 14px;
}
.hero-stacked-right .hero-title {
  margin: 0;
  font-size: clamp(56px, 7.5vw, 120px);
  line-height: 0.96;
}

.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}

.hero--full {
  padding: 0;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: stretch;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--cream) 0%,
      var(--cream) 22%,
      rgba(246, 244, 241, 0.96) 32%,
      rgba(246, 244, 241, 0.72) 42%,
      rgba(246, 244, 241, 0.3) 54%,
      rgba(246, 244, 241, 0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(246, 244, 241, 0.35) 0%,
      rgba(246, 244, 241, 0) 30%,
      rgba(246, 244, 241, 0) 70%,
      rgba(246, 244, 241, 0.45) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 48px 88px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.hero-content .hero-eyebrow {
  margin-bottom: 28px;
}
.hero-content .hero-title {
  max-width: 720px;
}
.hero-content .hero-sub {
  max-width: 460px;
}
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: end;
}
.hero-title {
  font-size: clamp(60px, 9vw, 140px);
}
.hero-sub {
  margin-top: 28px;
  max-width: 440px;
  font-size: 17px;
  color: var(--text);
  line-height: 1.55;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  min-height: 560px;
}

/* — Instagram grid — */
.ig-feed-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.ig-feed-wrap behold-widget {
  --behold-row-gap: 10px;
  --behold-column-gap: 10px;
  --behold-border-radius: 2px;
  display: block;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream-2);
  display: block;
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.ig-tile:hover img { transform: scale(1.06); }
.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 38, 27, 0);
  transition: background 0.3s ease;
}
.ig-tile:hover::after { background: rgba(41, 38, 27, 0.18); }

/* — Newsletter — */
.newsletter {
  background: var(--cream-2);
  padding: 64px 56px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.newsletter-text h2 em {
  color: var(--accent-deep);
}
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.newsletter-row .input {
  flex: 1;
  min-width: 0;
}
.newsletter-fine {
  font-size: 12px;
  color: var(--text);
  opacity: 0.7;
  font-family: var(--sans);
}
.newsletter-ok {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-deep);
  font-size: 16px;
  margin-top: 4px;
}
.newsletter-error {
  font-size: 13px;
  color: #8a2828;
  background: rgba(180, 60, 60, 0.08);
  border: 1px solid rgba(180, 60, 60, 0.25);
  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 4px;
  line-height: 1.5;
}
.newsletter-success {
  padding: 8px 0;
}
.newsletter-success-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.newsletter-success-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.newsletter-success-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  max-width: 380px;
}

/* — Gift cards band (Shop page) — */
.gift-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-2);
}
.gift-band-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.gift-band-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.gift-band-img-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,31,26,0) 60%, rgba(43,31,26,0.18) 100%);
  pointer-events: none;
}
.gift-band-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* — Legal pages — */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.legal-body p { margin: 0 0 18px; }
.legal-body ul, .legal-body ol {
  margin: 0 0 24px;
  padding-left: 22px;
}
.legal-body li { margin-bottom: 8px; }
.legal-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  margin: 48px 0 16px;
  font-weight: 500;
}
.legal-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin: 32px 0 12px;
  font-weight: 500;
  font-style: italic;
}
.legal-body strong { color: var(--ink); font-weight: 500; }
.legal-body a {
  color: var(--accent-deep);
  text-decoration: underline;
}

/* — Cookie banner — */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: 8px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 200;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  animation: cookie-in 0.4s ease both;
}
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text { flex: 1 1 240px; }
.cookie-banner-text a {
  color: var(--blush);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  font-size: 11px;
  padding: 8px 14px;
}
.cookie-decline {
  background: transparent !important;
  color: var(--cream) !important;
  border: 1px solid rgba(246,244,241,0.3) !important;
}
.cookie-accept { background: var(--cream) !important; color: var(--ink) !important; }

/* — Promo banner — */
.promo-banner {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  z-index: 110;
}
.promo-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.promo-banner-text { font-weight: 500; }
.promo-banner-cta {
  color: var(--blush);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.promo-banner-cta:hover { border-bottom-color: var(--blush); }
.promo-banner-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(246,244,241,0.6);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}
.promo-banner-close:hover { color: var(--cream); }
@media (max-width: 700px) {
  .promo-banner-inner { padding: 10px 40px 10px 24px; gap: 12px; flex-wrap: wrap; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* — Map embed — */
.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  filter: grayscale(0.15);
}

.img-ph {
  position: relative;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream-3) 100%);
  overflow: hidden;
  border-radius: 4px;
}
.img-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0,
      transparent 14px,
      rgba(43, 31, 26, 0.04) 14px,
      rgba(43, 31, 26, 0.04) 15px);
}
.img-ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}

.img-ph.blush { background: linear-gradient(135deg, #e8d3c8 0%, #d6b8ae 100%); }
.img-ph.taupe { background: linear-gradient(135deg, #c5bbb0 0%, #b8aea4 100%); }
.img-ph.dark { background: linear-gradient(135deg, #4a4340 0%, #2b1f1a 100%); }
.img-ph.dark::after { color: var(--cream); opacity: 0.7; }
.img-ph.dark::before { background-image: repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 15px); }

.img-ph.has-photo { background: var(--cream-2); overflow: hidden; }
.img-ph.has-photo::before,
.img-ph.has-photo::after { content: none; display: none; }
.img-ph.has-photo img { border-radius: inherit; }

/* — Stats — */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  justify-items: center;
}
.stats > div { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-num sub {
  font-size: 28px;
  vertical-align: super;
  margin-left: 4px;
  color: var(--accent-deep);
  font-style: italic;
}
.stat-lbl {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.7;
}

/* — Service cards — */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.svc-card .img-ph { position: absolute; inset: 0; border-radius: 0; transition: transform 0.6s cubic-bezier(.22,.61,.36,1); }
.svc-card:hover .img-ph { transform: scale(1.04); }

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(43,31,26,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

.svc-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--cream);
}
.svc-card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  opacity: 0.7;
  margin-bottom: 8px;
}
.svc-card-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.svc-card-hover {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,.61,.36,1), opacity 0.3s;
  opacity: 0;
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.5;
}
.svc-card:hover .svc-card-hover { max-height: 200px; opacity: 0.85; }

.svc-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(246,244,241,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--cream);
  transition: all 0.3s ease;
}
.svc-card:hover .svc-card-arrow { background: var(--cream); color: var(--ink); border-color: var(--cream); transform: rotate(-45deg); }

/* — Services menu rows (full /services page) — */
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding 0.3s;
}
@media (max-width: 720px) {
  .svc-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "num title arrow"
      "desc desc desc"
      "price price price";
    gap: 4px 14px;
    padding: 24px 0;
    align-items: start;
  }
  .svc-row-num   { grid-area: num; padding-top: 6px; }
  .svc-row-title { grid-area: title; }
  .svc-row-title > div:first-child { font-size: 26px !important; }
  .svc-row-desc  { grid-area: desc; margin-top: 6px; font-size: 13.5px !important; line-height: 1.5; max-width: none !important; }
  .svc-row-price { grid-area: price; margin-top: 6px; font-size: 12px !important; color: var(--accent-deep) !important; letter-spacing: 0.06em; }
  .svc-row-arrow { grid-area: arrow; width: 36px !important; height: 36px !important; font-size: 14px; }
}

/* — Section heading — */

.sect-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}
.sect-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 0.98;
  max-width: 800px;
}
.sect-title em { font-style: italic; }

.sect-meta {
  max-width: 360px;
  font-size: 14px;
  color: var(--text);
}

/* — Footer — */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0 36px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer li a {
  font-size: 14px;
  color: rgba(246,244,241,0.7);
  transition: color 0.2s;
}
.footer li a:hover { color: var(--cream); }

.footer-brand {
  font-family: var(--serif);
  font-size: 64px;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.footer-brand b { font-style: normal; font-weight: 400; }
.footer-tag {
  font-size: 14px;
  color: rgba(246,244,241,0.6);
  max-width: 280px;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(246,244,241,0.12);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,244,241,0.5);
}

/* — Chat bubble — */

.chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  padding: 14px 22px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(43,31,26,0.25);
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.chat-bubble:hover { transform: translateY(-2px); }
.chat-bubble .dot {
  width: 8px; height: 8px;
  background: var(--blush);
  border-radius: 50%;
  position: relative;
}
.chat-bubble .dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* — Mobile sticky book bar — */

.mobile-book-bar { display: none; }

@media (max-width: 720px) {
  .mobile-book-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: flex;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(246, 244, 241, 0.94);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(43, 31, 26, 0.06);
    animation: mbb-in 0.4s ease-out 0.2s both;
  }
  @keyframes mbb-in {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .mobile-book-bar .mbb-chat,
  .mobile-book-bar .mbb-book {
    flex: 1;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.15s ease;
    cursor: pointer;
    border: 0;
  }
  .mobile-book-bar .mbb-chat {
    flex: 0 1 38%;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .mobile-book-bar .mbb-book {
    background: var(--ink);
    color: var(--cream);
  }
  .mobile-book-bar .mbb-chat:active,
  .mobile-book-bar .mbb-book:active {
    transform: scale(0.98);
  }
  .mobile-book-bar .mbb-chat-dot {
    width: 7px; height: 7px;
    background: var(--blush);
    border-radius: 50%;
    display: inline-block;
  }
  .mobile-book-bar .arrow {
    transition: transform 0.2s ease;
  }
  /* Hide floating chat bubble on mobile — the bar replaces it */
  .chat-bubble { display: none; }
  /* Push the cookie banner above the bar so they don't overlap */
  .cookie-banner { bottom: calc(80px + env(safe-area-inset-bottom)); }
  /* Give the page bottom breathing room so content isn't hidden under the bar */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

/* — Forms — */

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.input, .textarea, .select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--ink); }
.textarea { resize: vertical; min-height: 120px; }

/* — Reveal on scroll — */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* — Page transitions — */

.page-enter {
  animation: pageIn 0.5s cubic-bezier(.22,.61,.36,1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* — Estimator — */

.est-shell {
  min-height: 100vh;
  background: var(--cream);
  padding: 40px 0 0;
  position: relative;
}
.est-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 50;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.est-close:hover {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(90deg);
}
.est-progress {
  height: 2px;
  background: var(--line-soft);
  position: relative;
  margin-bottom: 60px;
}
.est-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--ink);
  transition: width 0.5s cubic-bezier(.22,.61,.36,1);
}
.est-step {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 48px 80px;
  animation: pageIn 0.5s cubic-bezier(.22,.61,.36,1);
}
.est-step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}
.est-q {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.est-helper {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 540px;
}
.est-options {
  display: grid;
  gap: 12px;
}
.est-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
}
.est-opt:hover { border-color: var(--ink); background: rgba(255,255,255,0.85); }
.est-opt.selected {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.est-opt-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.est-opt.selected .est-opt-icon {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--ink);
}
.est-opt-cols-2 { grid-template-columns: 1fr 1fr; }
.est-opt-cols-3 { grid-template-columns: repeat(3, 1fr); }

.est-nav {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.est-back {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.est-back:hover { color: var(--ink); }
.est-back[disabled] { opacity: 0.3; cursor: not-allowed; }

/* — Estimator result — */

.est-result {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 48px 100px;
  animation: pageIn 0.6s cubic-bezier(.22,.61,.36,1);
}
.est-result-head { margin-bottom: 48px; }
.plan-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.plan-main { padding: 48px; }
.plan-side {
  background: var(--cream-2);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plan-tx {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.plan-tx:last-child { border-bottom: 0; }
.plan-tx-num {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--accent-deep);
  width: 32px;
  flex-shrink: 0;
}
.plan-tx-body { flex: 1; }
.plan-tx-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
}
.plan-tx-desc {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 10px;
  max-width: 380px;
}
.plan-tx-price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-deep);
  letter-spacing: 0.08em;
}
.plan-total {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.plan-total-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 10px;
}
.plan-total-sub {
  font-size: 13px;
  color: var(--text);
  margin-top: 12px;
}

/* — Testimonials — */

.testimonial {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 1000px;
}
.testimonial em { font-style: italic; }
.testimonial-by {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* — Before / After — */

/* — Before / After Gallery — */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .ba-grid { grid-template-columns: 1fr; }
}

.ba-tile {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.ba-tile-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream-2);
}
.ba-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.ba-tile:hover .ba-tile-img img,
.ba-tile:focus-visible .ba-tile-img img {
  transform: scale(1.035);
}
.ba-tile-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(43,31,26,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 999px;
}
.ba-tile-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(246,244,241,0.94);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.ba-tile:hover .ba-tile-zoom,
.ba-tile:focus-visible .ba-tile-zoom {
  opacity: 1;
  transform: translateY(0);
}
.ba-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ba-tile-meta {
  padding: 18px 4px 0;
}
.ba-tile-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.ba-tile-note {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* Lightbox */
.ba-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 11, 0.92);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: ba-fade 0.18s ease-out;
}
@keyframes ba-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.ba-lightbox-figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: center;
  max-width: min(1200px, 100%);
  max-height: 100%;
  margin: 0;
}
.ba-lightbox-figure img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.ba-lightbox-figure figcaption {
  color: var(--cream);
}
.ba-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(246,244,241,0.3);
  background: transparent;
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.ba-lightbox-close:hover { background: rgba(246,244,241,0.12); }
.ba-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(246,244,241,0.3);
  background: rgba(43,31,26,0.4);
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.ba-lightbox-arrow:hover { background: rgba(246,244,241,0.14); }
.ba-lightbox-arrow--prev { left: 28px; }
.ba-lightbox-arrow--next { right: 28px; }
@media (max-width: 800px) {
  .ba-lightbox { padding: 16px; }
  .ba-lightbox-figure { grid-template-columns: 1fr; gap: 16px; }
  .ba-lightbox-figure img { max-height: 60vh; }
  .ba-lightbox-arrow { width: 44px; height: 44px; }
  .ba-lightbox-arrow--prev { left: 12px; }
  .ba-lightbox-arrow--next { right: 12px; }
}

/* — Memberships — */

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.member-tier {
  padding: 48px 40px;
  background: rgba(255,255,255,0.5);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.member-tier:last-child { border-right: 0; }
.member-tier.featured {
  background: var(--ink);
  color: var(--cream);
}
.member-tier.featured .label { color: var(--blush); }
.member-tier-name {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.01em;
  margin: 16px 0 8px;
}
.member-tier-price {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  margin: 18px 0 6px;
  letter-spacing: -0.02em;
}
.member-tier-price small {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
  margin-left: 4px;
}
.member-tier ul {
  list-style: none;
  margin: 32px 0;
  flex: 1;
}
.member-tier li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  gap: 10px;
}
.member-tier.featured li { border-color: rgba(246,244,241,0.12); }
.member-tier li::before {
  content: "—";
  color: var(--accent-deep);
}
.member-tier.featured li::before { color: var(--blush); }

/* — Shop — */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.product {
  cursor: pointer;
}
.product-img {
  aspect-ratio: 1/1;
  background: var(--cream-2);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.product-img .img-ph { position: absolute; inset: 0; border-radius: 0; transition: transform 0.6s; }
.product-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product:hover .product-img .img-ph { transform: scale(1.06); }
.product:hover .product-img img { transform: scale(1.06); }
.product-brand {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.product-price {
  font-size: 13px;
  color: var(--text);
}

/* — FAQ — */

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: left;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--text); }
.faq-toggle {
  font-family: var(--mono);
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--ink); color: var(--cream); border-color: var(--ink); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  color: var(--text);
  max-width: 720px;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }

/* — Contact page — */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.not-sure-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* On mobile show the dark Studio card BEFORE the form */
  .contact-grid > div:last-child { order: -1; }
  .contact-name-row { grid-template-columns: 1fr; gap: 20px; }
  .not-sure-row { grid-template-columns: 1fr; gap: 24px; text-align: left; }
}

/* — About — */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-bio {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 72px;
  align-items: center;
}
.featured-bio.reverse {
  grid-template-columns: 6fr 5fr;
}
.featured-bio.reverse .featured-bio-photo {
  order: 2;
}
.featured-bio-photo .img-ph { border-radius: 6px; }
.featured-bio-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin: 0;
}
.featured-bio-facts .wide { grid-column: 1 / -1; }
.featured-bio-facts dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
.featured-bio-facts dd {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.45;
}
.featured-bio-facts .wide dd {
  font-size: 17px;
  line-height: 1.55;
  font-style: italic;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--cream-2);
  border-radius: 8px;
  padding: 40px 32px 36px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.testimonial-card blockquote { margin: 0; }

/* — Testimonial carousel — */
.tc-wrap {
  position: relative;
  padding: 0 0 56px;
}
.tc-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 24px;
  scroll-padding: 4px;
}
.tc-track::-webkit-scrollbar { display: none; }
.tc-card {
  flex: 0 0 min(560px, 86%);
  scroll-snap-align: center;
  background: var(--cream-2);
  border-radius: 10px;
  padding: 44px 40px 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: 0 1px 2px rgba(43,31,26,0.04);
}
.tc-stars {
  color: #c9a989;
  letter-spacing: 0.18em;
  font-size: 16px;
  margin-bottom: 22px;
}
.tc-quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
  flex: 1;
}
.tc-by {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.tc-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.tc-arrow:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.tc-arrow[disabled] { opacity: 0.3; cursor: not-allowed; }
.tc-arrow[disabled]:hover { background: var(--cream); color: var(--ink); border-color: var(--line); }
.tc-arrow--prev { left: -8px; }
.tc-arrow--next { right: -8px; }
.tc-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tc-dot.active { background: var(--ink); transform: scale(1.25); }

/* Team band on home — clickable card routing to /about */
.team-band-link { transition: opacity 0.3s ease; }
.team-band-link:hover { opacity: 0.92; }
.team-band-link:hover .arrow { transform: translateX(6px); transition: transform 0.25s ease; }
.team-band-link:focus-visible { outline: 2px solid var(--blush); outline-offset: -8px; }

/* Reusable 2-column home layout — stacks on mobile so columns don't squeeze */
.home-split { display: grid; gap: 60px; }
.home-split--even { grid-template-columns: 1fr 1fr; }
.home-split--wide { grid-template-columns: 1fr 1.4fr; gap: 80px; }
@media (max-width: 720px) {
  .home-split,
  .home-split--even,
  .home-split--wide { grid-template-columns: 1fr; gap: 32px; }
}

/* Philosophy card list — tighter rhythm on mobile to reduce scroll length */
@media (max-width: 720px) {
  .philosophy-list { gap: 18px !important; }
  .philosophy-item { gap: 14px !important; padding-top: 16px !important; }
  .philosophy-num { width: 26px !important; font-size: 11px !important; }
  .philosophy-title { font-size: 19px !important; margin-bottom: 4px !important; }
  .philosophy-desc { font-size: 13.5px !important; line-height: 1.5 !important; }
}

/* — Google Reviews block (home) — */
.grv-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.grv-rating {
  text-align: right;
}
.grv-rating-stars {
  color: #e8a14b;
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 1;
}
.grv-rating-num {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.grv-rating-meta {
  font-size: 14px;
  color: var(--text);
  margin-top: 10px;
}
.grv-rating-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border-bottom: 1px solid var(--accent-deep);
  padding-bottom: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: gap 0.2s ease;
}
.grv-rating-cta:hover { gap: 12px; }

.grv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grv-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  min-height: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(43, 31, 26, 0.08);
}
.grv-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
}
.grv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  flex-shrink: 0;
}
.grv-author {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.grv-stars {
  color: #e8a14b;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1;
}
.grv-quote {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  flex: 1;
  margin: 0;
}
.grv-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.grv-source-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .grv-head { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .grv-rating { text-align: left; }
  .grv-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grv-grid { grid-template-columns: 1fr; }
  .grv-rating-num { font-size: 52px; }
}

@media (max-width: 720px) {
  .tc-arrow { display: none; }
  .tc-card { padding: 36px 28px 32px; }
  .tc-quote { font-size: 19px; }
}

@media (max-width: 900px) {
  .featured-bio,
  .featured-bio.reverse { grid-template-columns: 1fr; gap: 32px; }
  .featured-bio.reverse .featured-bio-photo { order: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-grid--five { grid-template-columns: repeat(5, 1fr); gap: 24px; }
.team-grid--five .team-name { font-size: 22px; }
.team-grid--three { grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card .img-ph { aspect-ratio: 4/5; margin-bottom: 18px; }
.team-photo {
  position: relative;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.team-photo .img-ph { aspect-ratio: 4/5; margin-bottom: 0; }
.team-bio {
  position: absolute;
  inset: 0;
  background: rgba(40, 32, 26, 0.94);
  color: var(--cream);
  padding: 16px 16px 14px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(246,244,241,0.35) transparent;
}
.team-bio::-webkit-scrollbar { width: 4px; }
.team-bio::-webkit-scrollbar-thumb { background: rgba(246,244,241,0.35); border-radius: 4px; }
.team-bio p {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.005em;
  max-width: 100%;
}
.team-card:hover .team-bio,
.team-card:focus-within .team-bio {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (hover: none) {
  .team-bio {
    /* Stay hidden until the user taps — TeamCard toggles .bio-open */
    opacity: 0;
    transform: translateY(8px);
  }
  .team-bio p { font-size: 14.5px; }
  .team-card { cursor: pointer; }
}
.team-name {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.team-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-top: 4px;
}

/* — Treatment detail page — */

.tx-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding: 40px 0 80px;
}
.tx-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.tx-meta-item .label { color: var(--accent-deep); margin-bottom: 8px; display: block; }
.tx-meta-item .val {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* responsive */
@media (max-width: 900px) {
  .container, .nav-inner, .hero-grid, .est-result, .est-step { padding-left: 24px; padding-right: 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero--full { min-height: auto; }
  /* Full-bleed mobile hero — matches the desktop layout where text
     overlays the photo. Note: with the current team-three-hero.jpeg
     (3 women side by side), portrait mobile crops to the middle face.
     Swap to a more portrait-friendly photo if you want all three. */
  .hero--full .hero-bg-img { object-position: center 25%; }
  .hero-content { padding: 80px 24px 60px; }
  /* Mobile hero legibility — keep the airy, photo-forward look but
     bottom-fade enough cream behind the text so the dark ink reads.
     Vertical fade only (no horizontal cream slab like desktop). */
  .hero--full .hero-bg-scrim {
    background:
      linear-gradient(180deg,
        rgba(246, 244, 241, 0.55) 0%,
        rgba(246, 244, 241, 0.35) 25%,
        rgba(246, 244, 241, 0.45) 55%,
        rgba(246, 244, 241, 0.85) 85%,
        rgba(246, 244, 241, 0.95) 100%
      ) !important;
  }
  /* Small text-shadow on the dark hero text — gives the cream an extra
     halo so the dark ink stays crisp over varied photo tones. */
  .hero--full .hero-content .hero-title,
  .hero--full .hero-content .hero-sub,
  .hero--full .hero-content .hero-eyebrow {
    text-shadow: 0 1px 18px rgba(246, 244, 241, 0.85);
  }
  .hero-stacked-photo { height: 48vh; margin-bottom: 36px; }
  .hero-stacked-body { padding: 0 24px; }
  .hero-stacked-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stacked-left { padding-top: 0; }
  .hero--asym { min-height: auto; }
  .hero-asym-grid { grid-template-columns: 1fr; }
  .hero-asym-text { padding: 56px 24px 24px; order: 2; }
  .hero-asym-photo { order: 1; height: 56vh; }
  .hero-asym-photo img { position: relative; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .newsletter { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
  .newsletter-row { flex-direction: column; gap: 8px; }
  .gift-band { grid-template-columns: 1fr; }
  .gift-band-img { min-height: 320px; }
  .gift-band-text { padding: 48px 28px; }
  /* Hide the skin-tones editorial break on mobile — back-to-back with the
     team band below it makes for an awkward image-to-image transition */
  .editorial-break-desktop { display: none; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-num { font-size: 44px; }
  .stat-num sub { font-size: 16px; margin-left: 2px; }
  .stat-lbl { font-size: 10px; letter-spacing: 0.1em; margin-top: 8px; }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .svc-card { aspect-ratio: 3/4; }
  .svc-card-content { padding: 16px; }
  .svc-card-num { font-size: 10px; margin-bottom: 4px; }
  .svc-card-title { font-size: 18px; line-height: 1.1; }
  .svc-card-arrow { width: 32px; height: 32px; top: 12px; right: 12px; font-size: 16px; }
  .svc-card-hover { display: none; }
  .shop-grid, .team-grid, .team-grid--five, .team-grid--three, .member-grid { grid-template-columns: 1fr; }
  .plan-card { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand { font-size: 44px; margin-bottom: 12px; }
  .footer-tag { max-width: none; }
  .footer-bot {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .nav-links { gap: 8px; }
  /* Hide the desktop Book button + Estimator link on mobile — the sticky
     bottom bar covers Book, and Estimator is in the Menu dropdown anyway. */
  .nav-cta { display: none; }
  .nav-links > a.nav-link { display: none; }
  .about-grid, .tx-hero { grid-template-columns: 1fr; gap: 32px; }
  .tx-meta { grid-template-columns: 1fr; }
}
