/* ==========================================================================
   SPA MAMBO — CLEAN STYLESHEET
   Single source of truth. No duplicate rules. No competing overrides.
   Miraval warm color system. Green in nav/logo only.
   ========================================================================== */

/* === TOKENS === */
:root {
  /* Miraval color system */
  --bg:        #fdfaf7;
  --bg-warm:   #efebea;
  --cream:     #fdfaf7;
  --text:      #362917;
  --muted:     #7a6b52;
  --accent:    #cfb38c;
  --accent-l:  #d9c4a0;

  /* Section backgrounds */
  --nav-green:     #2D5447;
  --svc-brown:     #7a6b52;
  --review-brown:  #5a4931;
  --dark-brown:    #3b2e1c;
  --marquee-tan:   #cfb38c;

  /* Typography */
  --fh: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Jost', sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter:    40px;
  --gutter-sm: 24px;
  --radius:    12px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);

  /* Logo transparent padding offsets (fixed px per display size) */
  --logo-offset-200: -19.5px;
  --logo-offset-150: -14.6px;
  --logo-offset-220: -21.5px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 300;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { border: none; background: none; cursor: pointer; }

/* === ACCESSIBILITY === */
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 9999;
  background: var(--accent); color: var(--text);
  padding: 12px 18px; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* === TYPOGRAPHY — ONE CONSISTENT SCALE === */
h1, h2, h3, h4 {
  font-family: var(--fh);
  font-weight: 300;
  line-height: 1.06;
}

/* Hero h1 — largest, only element bigger than h2 */
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }

/* ALL section h2s — same size everywhere, no exceptions */
h2 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 16px; }

h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

em { font-style: italic; }

.lbl {
  display: block;
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}

.muted {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
  font-weight: 300;
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(80px, 10vw, 120px) 0; }

.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }

/* === BUTTONS — 12px radius everywhere === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 32px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.btn-gold {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}
.btn-gold:hover {
  background: var(--accent-l);
  border-color: var(--accent-l);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253,250,247,0.3);
  border-radius: 999px;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  padding: 14px 26px;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.btn-arrow::after { content: '→'; font-size: 1rem; font-weight: 300; letter-spacing: 0; }
.btn-arrow--cream { color: var(--cream); border-color: rgba(253,250,247,0.35); }
.btn-arrow--cream:hover { background: rgba(253,250,247,0.08); border-color: rgba(253,250,247,0.7); }
.btn-arrow--dark { color: var(--text); border-color: rgba(54,41,23,0.22); }
.btn-arrow--dark:hover { background: rgba(54,41,23,0.05); border-color: var(--text); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* === NAV === */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease);
}

#nav.scrolled {
  padding: 12px var(--gutter);
  background: rgba(45, 84, 71, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(207,179,140,0.12);
}

body.subpage #nav {
  padding: 12px var(--gutter);
  background: rgba(45, 84, 71, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Nav logo — 200px, offset for PNG transparent padding */
.nav-logo img {
  width: 200px;
  height: auto;
  margin-left: var(--logo-offset-200);
  transition: width .4s var(--ease), margin-left .4s var(--ease);
  flex-shrink: 0;
}

/* Scrolled — 150px with corrected offset */
#nav.scrolled .nav-logo img,
body.subpage #nav .nav-logo img {
  width: 150px;
  margin-left: var(--logo-offset-150);
}

.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-family: var(--fb);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(253,250,247,0.65);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--accent);
  transition: right .3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--text) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-l) !important; }

.nav-account { display: flex; align-items: center; }
.nav-account::after { display: none !important; }
.nav-account svg { opacity: 0.65; transition: opacity .2s; }
.nav-account:hover svg { opacity: 1; }

.nav-burger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 6px;
  min-width: 44px; min-height: 44px; justify-content: center;
  z-index: 2001;
}
.nav-burger span {
  display: block; width: 32px; height: 1px;
  background: var(--cream); border-radius: 0;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-burger span:nth-child(2) { opacity: 0; width: 20px; }
.nav-burger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* === FULLSCREEN MENU — same green as nav === */
#mmenu {
  display: none; position: fixed; inset: 0;
  background: var(--nav-green);
  z-index: 2000;
  flex-direction: column; justify-content: flex-start; align-items: flex-start;
  padding: 110px var(--gutter) 40px;
  opacity: 0; transition: opacity .35s var(--ease);
}
#mmenu.open { display: flex; opacity: 1; }

/* Menu logo — 150px matching scrolled nav, fixed pixel offset */
#mmenu .mm-logo {
  position: absolute;
  top: 16px;
  left: var(--gutter);
  width: 150px;
  max-width: 150px;
  height: auto;
  margin-left: var(--logo-offset-150);
  opacity: 0.65;
}

/* Close button — elegant CSS X */
.mm-close {
  position: absolute; top: 20px; right: var(--gutter);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2002;
  background: none; border: none;
}
.mm-close::before, .mm-close::after {
  content: ''; position: absolute;
  width: 26px; height: 1.5px;
  background: rgba(253,250,247,0.5);
  transition: background .2s;
}
.mm-close::before { transform: rotate(45deg); }
.mm-close::after  { transform: rotate(-45deg); }
.mm-close:hover::before,
.mm-close:hover::after { background: var(--cream); }

#mmenu ul { width: 100%; }
#mmenu ul li {
  border-bottom: 1px solid rgba(253,250,247,0.1);
  overflow: hidden;
}
#mmenu ul li:last-child { border: none; }
#mmenu ul li a {
  display: block;
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,250,247,0.88);
  padding: 11px 0;
  opacity: 0; transform: translateX(-24px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), color .2s;
}
#mmenu.open ul li a { opacity: 1; transform: translateX(0); }
#mmenu.open ul li:nth-child(1) a { transition-delay: .05s; }
#mmenu.open ul li:nth-child(2) a { transition-delay: .10s; }
#mmenu.open ul li:nth-child(3) a { transition-delay: .15s; }
#mmenu.open ul li:nth-child(4) a { transition-delay: .20s; }
#mmenu.open ul li:nth-child(5) a { transition-delay: .25s; }
#mmenu.open ul li:nth-child(6) a { transition-delay: .30s; }
#mmenu.open ul li:nth-child(7) a { transition-delay: .35s; }
#mmenu ul li a:hover { color: var(--accent); padding-left: 8px; }

.mm-cta {
  margin-top: 32px; opacity: 0; transform: translateY(14px);
  transition: opacity .45s var(--ease) .3s, transform .45s var(--ease) .3s;
}
#mmenu.open .mm-cta { opacity: 1; transform: translateY(0); }
.mm-cta a {
  display: inline-block;
  font-family: var(--fb); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--accent); color: var(--text);
  padding: 16px 40px; border-radius: 99px;
}
.mm-cta a:hover { background: var(--accent-l); }

.mm-tag {
  font-family: var(--fh); font-size: 1rem; font-style: italic;
  color: rgba(253,250,247,0.35);
  padding-bottom: 8px;
}

/* === HERO === */
.hero-full {
  position: relative; width: 100%; min-height: max(100svh, 720px);
  display: flex; align-items: flex-end; overflow: hidden;
  background: #1a2a1e;
}
.hero-full__bg { position: absolute; inset: 0; }
.hero-full__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0.55;
  animation: kenburns 16s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-full__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,32,24,0.05) 0%, rgba(13,32,24,0) 30%,
    rgba(13,32,24,0.55) 65%, rgba(13,32,24,0.95) 100%);
}
.hero-full__content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 88px;
  max-width: 860px;
}
.hero-full__eyebrow {
  font-family: var(--fb); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.hero-full__title { color: var(--cream); margin-bottom: 20px; }
.hero-full__title em { color: var(--accent); }
.hero-full__tagline {
  font-family: var(--fh); font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic; font-weight: 300;
  color: rgba(253,250,247,0.5); margin-bottom: 38px;
}
.hero-full__actions {
  display: flex; flex-direction: column;
  gap: 12px; align-items: flex-start;
}
.hero-full__actions .btn,
.hero-full__actions .btn-arrow { min-width: 280px; justify-content: center; }

.hero-full__scroll {
  position: absolute; bottom: 36px; right: 56px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-full__scroll span {
  font-family: var(--fb); font-size: 0.65rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(253,250,247,0.28);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(207,179,140,0.45), transparent);
}

/* === MARQUEE === */
.marquee-wrap { overflow: hidden; background: var(--marquee-tan); }
.marquee {
  display: flex; width: max-content;
  padding: 1rem 0;
  animation: marquee-scroll 36s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--fb); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text); white-space: nowrap; padding: 0 2.4rem;
}
.marquee-item::after { content: "·"; margin-left: 2.4rem; opacity: 0.45; }
.marquee-item:last-child::after { content: ""; margin: 0; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === STATEMENT SECTION === */
.section-statement { background: var(--bg-warm); padding: clamp(80px,10vw,120px) 0; }
.statement-block { max-width: 760px; margin: 0 auto; text-align: center; }
.statement-block .lbl { color: var(--muted); }
.statement-block h2 { color: var(--text); margin-bottom: 28px; }
.statement-block__lead {
  font-size: 1.1rem; font-weight: 300; line-height: 1.9;
  color: var(--text); margin-bottom: 18px;
}
.statement-block__sub {
  font-size: 1rem; font-weight: 300; line-height: 1.9;
  color: var(--muted); margin-bottom: 52px;
}
.statement-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; max-width: 560px; margin: 0 auto;
}
.stat-card {
  background: #fff;
  border: 1px solid rgba(54,41,23,0.07);
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: 0 4px 20px rgba(54,41,23,0.04);
}
.stat-value {
  display: block; font-family: var(--fh);
  font-size: clamp(1.6rem,3vw,2.2rem); line-height: 1;
  color: var(--text); margin-bottom: 8px;
}
.stat-label {
  display: block; font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); line-height: 1.4;
}

/* === SERVICES === */
.section-services { background: var(--svc-brown); padding: clamp(80px,10vw,120px) 0 0; }
.section-services .section-head { padding: 0 var(--gutter); max-width: var(--container); margin: 0 auto 48px; }
.section-services .lbl { color: rgba(253,250,247,0.55); }
.section-services h2 { color: var(--cream); }

.ec-grid { display: grid; gap: 14px; padding: 0 var(--gutter); max-width: var(--container); margin: 0 auto; }
.ec-row { display: grid; gap: 14px; }
.ec-row--asymmetric { grid-template-columns: 1.4fr 0.6fr; }
.ec-row--thirds { grid-template-columns: repeat(3,1fr); position: relative; z-index: 2; transform: translateY(clamp(130px,18vw,200px)); }
.ec-col { display: grid; gap: 14px; }

.ec-card { position: relative; border-radius: var(--radius); overflow: hidden; will-change: opacity, transform; }
.ec-card--large { min-height: 520px; }
.ec-col .ec-card { min-height: 250px; }
.ec-row--thirds .ec-card { min-height: 360px; }

.ec-card__bg { position: absolute; inset: 0; }
.ec-card__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .8s var(--ease);
}
.ec-card:hover .ec-card__bg img { transform: scale(1.04); }

.ec-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(59,46,28,0.88) 0%, rgba(59,46,28,0.3) 50%, rgba(59,46,28,0) 75%);
  transition: background .4s var(--ease);
}
.ec-card:hover .ec-card__overlay {
  background: linear-gradient(to top, rgba(59,46,28,0.95) 0%, rgba(59,46,28,0.45) 55%, rgba(59,46,28,0) 80%);
}

.ec-card__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.ec-card__bottom { padding: 24px; }
.ec-card__title {
  display: block; font-family: var(--fh);
  font-size: clamp(1.4rem,3vw,2rem); font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.1; margin-bottom: 10px;
}
.ec-card--large .ec-card__title { font-size: clamp(1.6rem,4vw,2.6rem); }
.ec-card__cta {
  display: inline-block; font-family: var(--fb);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent);
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.ec-card:hover .ec-card__cta { opacity: 1; transform: translateY(0); }
@media (hover: none) { .ec-card__cta { opacity: 1; transform: none; } }

/* === REVIEWS === */
.section-reviews { background: var(--review-brown); padding: clamp(240px,30vw,340px) 0 clamp(80px,10vw,120px); position: relative; z-index: 1; }
.section-reviews .section-head { text-align: center; margin-bottom: 56px; }
.section-reviews .lbl { color: rgba(253,250,247,0.5); }
.section-reviews h2 { color: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.review-card {
  background: rgba(253,250,247,0.06); border: 1px solid rgba(253,250,247,0.1);
  border-radius: var(--radius); padding: 32px 28px;
  transition: background .3s var(--ease);
}
.review-card:hover { background: rgba(253,250,247,0.09); }
.review-card__stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-card__quote {
  font-family: var(--fh); font-size: clamp(1.2rem,2vw,1.55rem);
  font-style: italic; font-weight: 300; line-height: 1.5;
  color: rgba(253,250,247,0.9); margin-bottom: 18px;
}
.review-card__meta {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}

/* === FAQ === */
.section-faq { background: var(--bg); padding: clamp(80px,10vw,120px) 0; }
.faq-list { display: grid; gap: 12px; margin-top: 48px; }
.faq-item {
  background: #fff; border: 1px solid rgba(54,41,23,0.07);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 3px 16px rgba(54,41,23,0.04);
}
.faq-q {
  width: 100%; text-align: left; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer;
}
.faq-q span:first-child { font-size: 1rem; font-weight: 400; color: var(--text); line-height: 1.4; }
.faq-icon { width: 22px; height: 22px; flex: 0 0 22px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 1.5px; background: var(--accent);
  transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .3s;
}
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg) scaleX(0); }
.faq-a { display: none; padding: 0 26px 22px; color: var(--muted); font-size: 0.96rem; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* === CTA === */
.section-cta {
  background: var(--review-brown);
  padding: clamp(100px,12vw,140px) 0; text-align: center; position: relative; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 80vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(207,179,140,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-center {
  position: relative; z-index: 1; max-width: 680px; margin: 0 auto;
  display: grid; gap: 22px; justify-items: center;
}
.cta-center h2 { color: var(--cream); font-style: italic; }
.cta-center .lbl { color: rgba(253,250,247,0.5); }
.cta-center .lead { color: rgba(253,250,247,0.65); max-width: 500px; }

/* === FOOTER === */
.site-footer { background: var(--dark-brown); color: var(--cream); padding: 72px 0 40px; border-top: 1px solid rgba(253,250,247,0.06); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 32px; align-items: start; margin-bottom: 48px; }
.site-footer__brand img { width: 150px; height: auto; margin-bottom: 16px; margin-left: var(--logo-offset-150); }
.site-footer__tagline { font-family: var(--fh); font-size: 1rem; font-style: italic; color: rgba(253,250,247,0.35); }
.site-footer__heading { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.site-footer__list li, .site-footer__list a { color: rgba(253,250,247,0.6); font-size: 0.92rem; line-height: 2; transition: color .2s; }
.site-footer__list a:hover { color: var(--accent); }
.site-footer__bottom { padding-top: 24px; border-top: 1px solid rgba(253,250,247,0.07); color: rgba(253,250,247,0.3); font-size: 0.82rem; text-align: center; }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.scroll-reveal { opacity: 0; transform: scale(0.88); will-change: opacity, transform; }

/* === HERO — SUBPAGE === */
.hero-page { padding: 140px 0 72px; background: linear-gradient(180deg, #1A3C34 0%, #2D5447 100%); position: relative; overflow: hidden; }
.hero-page__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0.6; z-index: 0; }
.hero-page__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,32,24,0.15) 0%, rgba(13,32,24,0.5) 40%, rgba(13,32,24,0.92) 100%); z-index: 1; }
.hero-page .container { position: relative; z-index: 2; }
.hero-page__title { color: var(--cream); margin-bottom: 14px; }
.hero-page__lead { max-width: 600px; color: rgba(253,250,247,0.75); font-size: 1.05rem; font-weight: 300; line-height: 1.9; }
.hero-page__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* === CARD SYSTEM (subpages) === */
.card-shell { background: #fff; border: 1px solid rgba(54,41,23,0.07); border-radius: var(--radius); box-shadow: 0 6px 28px rgba(54,41,23,0.05); overflow: hidden; }
.card-shell__media { padding: 14px 14px 0; }
.card-shell__media img { width: 100%; border-radius: calc(var(--radius) - 4px); }
.card-shell__body { padding: 16px 18px 20px; }
.card-shell__title { font-family: var(--fh); font-size: 1.45rem; font-weight: 400; color: var(--text); margin-bottom: 4px; }
.card-shell__role { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.card-shell__copy { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
.card-shell__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

/* Tags */
.tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag { padding: 8px 14px; border-radius: 999px; background: var(--bg-warm); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* Glass card */
.glass-card { background: rgba(253,250,247,0.05); border: 1px solid rgba(253,250,247,0.1); border-radius: var(--radius); padding: 22px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* Service items */
.service-item { padding: 12px 0; border-bottom: 1px solid rgba(54,41,23,0.07); }
.service-item:last-child { border-bottom: 0; padding-bottom: 0; }
.service-item strong { display: block; font-family: var(--fh); font-size: 1.2rem; font-weight: 400; color: var(--text); }
.service-item span { display: block; margin-top: 3px; color: var(--muted); font-size: 0.9rem; }

/* === SECTION WARM === */
.section-warm { background: var(--bg-warm); padding: clamp(80px,10vw,120px) 0; }

/* === ALEX — CONCIERGE CONTACT FORM === */
.artist-hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.concierge-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.concierge-contact .btn { text-align: center; justify-content: center; }

.section-contact { background: var(--bg-warm); padding: clamp(80px,10vw,120px) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px,7vw,96px);
  align-items: start;
}
.contact-intro .lead { margin-top: 20px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid rgba(54,41,23,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  font-family: var(--fb);
  transition: border-color 0.25s var(--ease);
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,107,82,0.5); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { align-self: flex-start; min-width: 200px; }
.hidden { display: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .btn { width: 100%; }
  .artist-hero__cta-row .btn { flex: 1; justify-content: center; }
}

/* === ARTIST PAGE — SIGNATURE QUOTE === */
.artist-quote { background: var(--bg); padding: clamp(56px,8vw,96px) 0; border-top: 1px solid rgba(54,41,23,0.08); border-bottom: 1px solid rgba(54,41,23,0.08); }
.artist-quote__text {
  font-family: var(--fh);
  font-size: clamp(1.5rem,3.5vw,2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
  max-width: 820px;
  margin-bottom: 20px;
}
.artist-quote__attr {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === ARTIST PAGE — BRANDED HERO (no photo bg) === */
.artist-hero {
  background: linear-gradient(150deg, #1a3c34 0%, #2d5447 55%, #3b2e1c 100%);
  padding: clamp(72px,10vw,110px) 0 clamp(40px,5vw,60px);
  position: relative;
  overflow: hidden;
}
.artist-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(207,179,140,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.artist-hero .container { position: relative; z-index: 1; }
.artist-hero .lbl { color: rgba(207,179,140,0.7); }
.artist-hero__name { color: var(--cream); line-height: 1.0; margin-bottom: 14px; }
.artist-hero__role {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

/* === ARTIST PAGE — PORTRAIT + BIO SPLIT === */
.artist-profile { padding: clamp(48px,6vw,72px) 0; background: var(--bg); }
.artist-profile__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(48px,7vw,96px);
  align-items: start;
}
.artist-profile__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(54,41,23,0.14);
  position: sticky;
  top: 100px;
}
.artist-profile__photo img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.artist-profile__bio { padding-top: 4px; }
.artist-profile__heading { font-size: clamp(2.2rem,4.5vw,3.8rem); margin-bottom: 28px; line-height: 1.08; }
.artist-profile__copy { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--muted); margin-bottom: 20px; }
.artist-profile__tags { margin-bottom: 36px; }

/* === ARTIST PAGE — INLINE QUOTE === */
.artist-inline-quote {
  font-family: var(--fh);
  font-size: clamp(1.05rem,2vw,1.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0 28px;
  line-height: 1.65;
}

/* === STICKY BOOK BAR === */
.sticky-book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(253,250,247,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(54,41,23,0.1);
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.sticky-book-bar.visible { transform: translateY(0); }
.sticky-book-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-book-bar__name {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-book-bar .btn { flex-shrink: 0; min-height: 40px; padding: 10px 28px; }
@media (max-width: 600px) {
  .sticky-book-bar { padding: 10px 20px calc(10px + env(safe-area-inset-bottom, 0px)); }
  .sticky-book-bar__name { display: none; }
  .sticky-book-bar .btn { width: 100%; }
}

/* === ARTIST PAGE — SERVICE CROSS-SELL === */
.section-crosssell { background: var(--svc-brown); padding: clamp(48px,6vw,72px) 0; }
.section-crosssell .section-head { padding: 0 var(--gutter); max-width: var(--container); margin: 0 auto 48px; }
.section-crosssell .lbl { color: rgba(253,250,247,0.55); }
.section-crosssell h2 { color: var(--cream); }
.section-crosssell .lead { color: rgba(253,250,247,0.65); max-width: 540px; margin-top: 12px; }

/* === ARTIST BIO CARD — individual subpages === */
.card { max-width: 780px; }
.card h2 { margin-bottom: 20px; }

/* === ARTIST TEASER CARDS — meet-the-artists.html === */
.artist-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}

.artist-teaser {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(54,41,23,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(54,41,23,0.06);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.artist-teaser:hover {
  box-shadow: 0 8px 32px rgba(54,41,23,0.12);
  transform: translateY(-2px);
}

.artist-teaser-photo {
  width: 88px;
  min-width: 88px;
  height: 108px;
  align-self: stretch;
  flex-shrink: 0;
  overflow: hidden;
}
.artist-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.artist-teaser:hover .artist-teaser-photo img { transform: scale(1.05); }

.artist-teaser-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 14px 16px;
  min-width: 0;
}

.artist-teaser-info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.artist-teaser .btn { width: auto; flex-shrink: 0; min-height: 36px; padding: 8px 20px; font-size: 0.7rem; letter-spacing: 0.18em; }

.artist-teaser-name {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 3px;
}

.artist-teaser-role {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.artist-teaser-avail {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
}

.artist-teaser-cta { flex-shrink: 0; white-space: nowrap; }
.artist-teaser .cta-icon { display: none; }

@media (max-width: 899px) {
  .artist-teaser-body { padding: 12px 14px; gap: 10px; }
  .artist-teaser-avail { display: none; }
  .artist-teaser .cta-text { display: none; }
  .artist-teaser .cta-icon { display: inline; }
  .artist-teaser .btn { min-height: 34px; width: 34px; padding: 0; border-radius: 50%; font-size: 1.1rem; letter-spacing: 0; }
}

@media (min-width: 900px) {
  .artist-teaser-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .artist-teaser-photo { width: 120px; min-width: 120px; height: 144px; }
  .artist-teaser-name { font-size: 1.35rem; }
  .artist-teaser-body { padding: 18px 20px; }
  .artist-teaser:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 8px); margin: 0 auto; }
}

/* === BUTTON — outline variant === */
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(54,41,23,0.28);
}
.btn-outline:hover {
  border-color: var(--text);
  background: rgba(54,41,23,0.04);
  transform: translateY(-1px);
}

/* === SERVICES PAGE === */
.services-page-section { padding: clamp(60px,8vw,100px) 0; }

.svc-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px,6vw,72px);
}
.svc-pill {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(54,41,23,0.18);
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.svc-pill:hover { border-color: var(--accent); color: var(--text); }
.svc-pill.active { background: var(--text); color: var(--cream); border-color: var(--text); }

.svc-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px,3vw,40px);
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.svc-page-card {
  background: var(--bg);
  border: 1px solid rgba(54,41,23,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(54,41,23,0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.35s var(--ease);
}
.svc-page-card.visible { opacity: 1; transform: translateY(0); }
.svc-page-card:hover { box-shadow: 0 16px 56px rgba(54,41,23,0.12); }

.svc-page-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.svc-page-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  display: block;
}
.svc-page-card:hover .svc-page-card__img img { transform: scale(1.04); }

.svc-page-card__body { padding: clamp(24px,3vw,36px); }

.svc-page-card__cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.svc-page-card__title {
  font-family: var(--fh);
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.svc-page-card__desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}
.svc-page-card__services {
  border-top: 1px solid rgba(54,41,23,0.08);
  margin-bottom: 28px;
  padding-top: 20px;
}
.svc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(54,41,23,0.05);
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 300;
}
.svc-line:last-child { border-bottom: none; }
.svc-line span:last-child { color: var(--accent); font-weight: 600; font-size: 0.8rem; white-space: nowrap; margin-left: 12px; }
.svc-page-card__note { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; font-style: italic; }

@media (max-width: 900px) {
  .svc-page-grid { grid-template-columns: 1fr; }
}

/* === SERVICES PAGE === */
@media (max-width: 1024px) {
  .ec-row--asymmetric { grid-template-columns: 1fr; }
  .ec-card--large { min-height: 400px; }
}

@media (max-width: 900px) {
  :root { --gutter: var(--gutter-sm); }
  #nav { padding: 16px var(--gutter-sm); }
  #nav.scrolled { padding: 10px var(--gutter-sm); }
  .nav-logo img { width: 55vw; max-width: 220px; margin-left: var(--logo-offset-220); }
  #nav.scrolled .nav-logo img { width: 36vw; max-width: 150px; margin-left: var(--logo-offset-150); }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-full__content { padding: 0 var(--gutter-sm) 64px; }
  .hero-full__scroll { right: 18px; bottom: 18px; }
  .ec-row--thirds { grid-template-columns: 1fr; }
  .ec-row--thirds .ec-card { min-height: 280px; }
  .ec-col .ec-card { min-height: 230px; }
  .artist-profile__grid { grid-template-columns: 1fr; }
  .artist-profile__photo { position: static; max-width: 420px; }
  .artist-profile__photo img { aspect-ratio: 4/5; max-height: 55vh; width: 100%; }
  .artist-hero { padding-top: 110px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .statement-stats { grid-template-columns: repeat(3,1fr); }
  #mmenu { padding: 110px var(--gutter-sm) 32px; }
  #mmenu .mm-logo { left: var(--gutter-sm); top: 16px; }
  .mm-close { right: var(--gutter-sm); }
  .mm-tag { font-size: 0.88rem; }
  .social-icon-btn { width: 80px; height: 80px; }
  .social-icon-btn svg { width: 38px; height: 38px; }
  .mm-social a { width: 56px; height: 56px; }
  .mm-social svg { width: 26px; height: 26px; }
}

@media (max-width: 640px) {
  .social-icon-btn { width: 72px; height: 72px; }
  .social-icon-btn svg { width: 34px; height: 34px; }
  .social-icons { gap: 28px; }
.hero-full__actions { flex-direction: column; align-items: stretch; }
  .hero-full__actions .btn,
  .hero-full__actions .btn-arrow { width: 100%; min-width: unset; }
  .btn-row { flex-direction: column; }
  .btn { width: 100%; }
  .ec-col .ec-card { min-height: 220px; }
  .ec-card__cta { opacity: 1; transform: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .statement-stats { gap: 10px; }
}

/* === SOCIAL SECTION — homepage === */
.section-social {
  background: var(--bg-warm);
  padding: clamp(72px, 9vw, 112px) 0;
  text-align: center;
}
.social-inner { max-width: 640px; margin: 0 auto; }
.social-inner .lbl { color: var(--muted); }
.social-inner h2 { margin-bottom: 16px; }
.social-inner__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--text);
  color: var(--cream);
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.social-icon-btn:hover {
  background: var(--accent);
  color: var(--text);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(207,179,140,0.4);
}
.social-icon-btn svg { width: 46px; height: 46px; }

/* === MOBILE MENU BOTTOM — social + tagline anchored via flex === */
.mm-bottom {
  margin-top: auto;
  width: 100%;
  padding-top: 36px;
}
.mm-social {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}
.mm-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(253,250,247,0.08);
  border: 1.5px solid rgba(253,250,247,0.22);
  color: rgba(253,250,247,0.82);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.mm-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}
.mm-social svg { width: 28px; height: 28px; }

/* ================================================
   CTA SECTION — texture background placeholder
   Will be replaced with generated texture image
   ================================================ */
.section-cta { position: relative; overflow: hidden; }
.cta-center { position: relative; z-index: 1; }


