/* =========================================================================
   Verona Smiles — "Calm Enamel" design system
   Deep evergreen + porcelain + sage mist + restrained brass.
   Display: Fraunces (soft optical serif). Body: Hanken Grotesk.
   Signature: the brass smile-arc.
   ========================================================================= */

:root {
  /* Surfaces */
  --porcelain: #f5f8f6;
  --porcelain-2: #ecf2ee;
  --mist: #dde8e2;
  --white: #ffffff;

  /* Greens */
  --evergreen: #1e4d45;
  --evergreen-deep: #143430;
  --evergreen-night: #0d2521;
  --ink: #16302b;
  --slate: #54655f;

  /* Brass accent */
  --brass: #c2974e;
  --brass-deep: #976f2d; /* AA on porcelain for small text */
  --brass-soft: #e8d6ae;

  /* Functional */
  --line: rgba(20, 48, 44, 0.12);
  --line-strong: rgba(20, 48, 44, 0.22);
  --line-light: rgba(255, 255, 255, 0.16);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Rhythm */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --shadow-soft: 0 1px 2px rgba(13, 37, 33, 0.04), 0 8px 28px rgba(13, 37, 33, 0.07);
  --shadow-lift: 0 2px 6px rgba(13, 37, 33, 0.06), 0 24px 60px rgba(13, 37, 33, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Skip link / a11y ---------- */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--evergreen); color: #fff; padding: 0.6rem 1.1rem;
  border-radius: 0 0 var(--radius) var(--radius); z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brass-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--brass);
}
.eyebrow--light { color: var(--brass-soft); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -0.012em; color: var(--ink); }
h1 { font-size: clamp(2.55rem, 6vw, 4.4rem); font-optical-sizing: auto; }
h2 { font-size: clamp(1.95rem, 3.7vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.2; }
p { color: var(--ink); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--slate); }
.muted { color: var(--slate); }

/* Anchor targets clear the sticky header */
:target, [id] { scroll-margin-top: 92px; }

/* ---------- Smile-arc signature ---------- */
.smile-arc { display: block; color: var(--brass); }
.smile-arc svg { width: 100%; height: auto; overflow: visible; }
.arc-underline {
  display: inline-block; width: 132px; height: 16px; margin-top: 0.4rem; color: var(--brass);
}
.section-divider { display: flex; justify-content: center; color: var(--brass); opacity: 0.85; }
.section-divider svg { width: 180px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  border: 1.5px solid transparent; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brass); color: var(--evergreen-night); box-shadow: 0 8px 22px rgba(151, 111, 45, 0.28); }
.btn--primary:hover { background: #d2a85f; box-shadow: 0 12px 30px rgba(151, 111, 45, 0.34); transform: translateY(-2px); }
.btn--solid { background: var(--evergreen); color: #fff; }
.btn--solid:hover { background: var(--evergreen-deep); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--evergreen); background: var(--white); transform: translateY(-2px); }
.btn--on-dark { background: transparent; color: #fff; border-color: var(--line-light); }
.btn--on-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 248, 246, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(13,37,33,0.05); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.85rem; }

.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand__name { font-family: var(--display); font-size: 1.42rem; font-weight: 600; letter-spacing: -0.01em; color: var(--evergreen-deep); }
.brand__arc { color: var(--brass); width: 96px; height: 9px; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--slate); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__link {
  position: relative; padding: 0.5rem 0.85rem; font-weight: 600; font-size: 0.95rem; color: var(--ink); border-radius: var(--radius-pill);
  transition: color 0.18s, background 0.18s;
}
.nav__link:hover { color: var(--evergreen); background: var(--porcelain-2); }
.nav__link[aria-current="page"] { color: var(--evergreen); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.18rem; height: 2px; background: var(--brass); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 0.6rem; }
.nav__phone { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; color: var(--evergreen); font-size: 0.96rem; }
.nav__phone svg { width: 17px; height: 17px; color: var(--brass-deep); }

/* Dropdown for services */
.has-menu { position: relative; }
.menu-panel {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 0.5rem; min-width: 260px;
  opacity: 0; visibility: hidden; transition: opacity 0.18s, transform 0.18s; z-index: 50;
}
.has-menu:hover .menu-panel, .has-menu:focus-within .menu-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.menu-panel a { display: block; padding: 0.6rem 0.8rem; border-radius: 10px; font-size: 0.94rem; font-weight: 600; color: var(--ink); }
.menu-panel a:hover { background: var(--porcelain-2); color: var(--evergreen); }
.menu-panel a span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--slate); margin-top: 1px; }

.nav__toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px; padding: 0.5rem; color: var(--evergreen-deep); }
.nav__toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 85% -10%, #235a51 0%, var(--evergreen-deep) 48%, var(--evergreen-night) 100%);
  color: #eef5f1;
}
.hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero h1 { color: #f4faf6; }
.hero h1 em { font-style: italic; color: var(--brass-soft); }
.hero__lead { color: rgba(238, 245, 241, 0.82); font-size: clamp(1.08rem, 1.5vw, 1.28rem); margin-top: 1.4rem; max-width: 44ch; }
.hero__eyebrow { color: var(--brass-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2.2rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line-light); }
.hero__trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero__trust-item b { font-family: var(--display); font-size: 1.7rem; font-weight: 600; color: #fff; line-height: 1; }
.hero__trust-item span { font-size: 0.82rem; color: rgba(238,245,241,0.7); letter-spacing: 0.02em; }

/* Hero card (hours / quick facts) */
.hero__card {
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-light);
  border-radius: var(--radius-lg); padding: 1.7rem; backdrop-filter: blur(4px);
}
.hero__card h2 { color: #fff; font-size: 1.3rem; }
.hero__card .arc-underline { width: 96px; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid var(--line-light); font-size: 0.95rem; }
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:first-child { color: rgba(238,245,241,0.82); }
.hours-row span:last-child { color: #fff; font-weight: 600; }
.hours-row.is-today span:first-child { color: var(--brass-soft); font-weight: 700; }
.hours-row.is-closed span:last-child { color: rgba(238,245,241,0.55); font-weight: 500; }
.hero__card-note { margin-top: 1.1rem; font-size: 0.85rem; color: rgba(238,245,241,0.7); }

/* Hours table on a LIGHT surface (e.g. contact page) */
.hours-card .hours-row { border-bottom-color: var(--line); }
.hours-card .hours-row span:first-child { color: var(--slate); }
.hours-card .hours-row span:last-child { color: var(--ink); }
.hours-card .hours-row.is-today span:first-child { color: var(--brass-deep); font-weight: 700; }
.hours-card .hours-row.is-today span:last-child { color: var(--evergreen); }
.hours-card .hours-row.is-closed span:last-child { color: var(--slate); font-weight: 500; }

.hero__halo { position: absolute; pointer-events: none; right: -8%; top: -20%; width: 520px; height: 520px; color: rgba(194,151,78,0.16); animation: haloDrift 26s ease-in-out infinite; transform-origin: center; }
@keyframes haloDrift {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.9; }
  50% { transform: translateY(14px) rotate(6deg) scale(1.04); opacity: 1; }
}

/* The signature: a confident brass smile beneath the headline */
.hero__smile { display: block; width: min(380px, 78%); margin: -0.3rem 0 0.2rem; color: var(--brass); }
.hero__smile svg { width: 100%; height: auto; overflow: visible; }
.hero__smile path { stroke-dasharray: 520; stroke-dashoffset: 520; animation: drawSmile 1.1s cubic-bezier(0.3, 0.8, 0.3, 1) 0.7s forwards; }
@keyframes drawSmile { to { stroke-dashoffset: 0; } }

/* Orchestrated hero entrance */
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero__animate > * { opacity: 0; animation: heroRise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.hero__animate > *:nth-child(1) { animation-delay: 0.10s; }
.hero__animate > *:nth-child(2) { animation-delay: 0.20s; }
.hero__animate > .hero__smile { animation: heroRise 0.6s cubic-bezier(0.2,0.7,0.2,1) 0.5s forwards; }
.hero__animate > *:nth-child(4) { animation-delay: 0.40s; }
.hero__animate > *:nth-child(5) { animation-delay: 0.52s; }
.hero__animate > *:nth-child(6) { animation-delay: 0.64s; }
.hero__card--enter { opacity: 0; animation: heroRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.55s forwards; }
@media (prefers-reduced-motion: reduce) {
  .hero__halo { animation: none; }
  .hero__animate > *, .hero__card--enter { opacity: 1; animation: none; }
  .hero__smile path { stroke-dashoffset: 0; animation: none; }
}

/* Film-grain depth on dark surfaces (kills the flat-gradient look) */
.hero, .band, .cta-band, .page-hero { position: relative; isolation: isolate; }
.hero::after, .band::after, .cta-band::after, .page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero > .wrap, .band > .wrap, .page-hero > .wrap, .cta-band > * { position: relative; z-index: 1; }

/* ---------- Trust strip ---------- */
.badges { background: var(--white); border-bottom: 1px solid var(--line); }
.badges__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem; padding-block: 1.2rem; }
.badge { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 600; color: var(--slate); }
.badge svg { width: 20px; height: 20px; color: var(--brass-deep); }
.badge strong { color: var(--ink); }

/* ---------- Section headers ---------- */
.sec-head { max-width: 64ch; }
.sec-head--center { text-align: center; margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head p { color: var(--slate); margin-top: 1rem; font-size: 1.1rem; }

/* ---------- Services grid ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--mist); color: var(--evergreen); margin-bottom: 1.3rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--slate); font-size: 0.97rem; }
.card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem; font-weight: 700; font-size: 0.92rem; color: var(--evergreen); }
.card__link svg { width: 16px; height: 16px; transition: transform 0.18s; }
.card:hover .card__link svg { transform: translateX(4px); }
.card--feature { background: var(--evergreen-deep); color: #eef5f1; border-color: transparent; }
.card--feature h3 { color: #fff; }
.card--feature p { color: rgba(238,245,241,0.8); }
.card--feature .card__icon { background: rgba(255,255,255,0.1); color: var(--brass-soft); }
.card--feature .card__link { color: var(--brass-soft); }
/* Brass accent line that draws in on hover */
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--brass); transition: width 0.32s cubic-bezier(0.2,0.7,0.2,1); }
.card:hover::before { width: 100%; }
.card--feature::before { background: var(--brass-soft); }

/* Insurance / financing panel */
.afford { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; background: var(--mist); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.6rem); }
.afford__points { display: grid; gap: 1rem; }
.afford__point { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.3rem; transition: transform 0.2s, box-shadow 0.2s; }
.afford__point:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.afford__point .ico { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--mist); color: var(--evergreen); display: grid; place-items: center; }
.afford__point .ico svg { width: 22px; height: 22px; }
.afford__point b { display: block; color: var(--ink); font-size: 1.02rem; }
.afford__point span { color: var(--slate); font-size: 0.92rem; }

/* ---------- Split / feature sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--mist { background: var(--mist); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 4rem); }
.split__media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(155deg, #2a6359, var(--evergreen-deep)); color: var(--brass-soft);
  display: grid; place-items: center; box-shadow: var(--shadow-lift);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Branded artwork panel (stands in for photography, intentionally decorative) */
.media-art { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; }
.media-art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 0%, rgba(194,151,78,0.16), transparent 60%); }
.media-art__svg { width: 100%; height: 100%; }
.media-art__label {
  position: absolute; left: 0; right: 0; bottom: 1.6rem; text-align: center; z-index: 1;
  font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--brass-soft);
}
.media-art__label span { display: block; font-family: var(--body); font-style: normal; font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(232,214,174,0.6); margin-top: 0.45rem; }

.checklist { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--brass-deep); margin-top: 2px; }
.checklist b { display: block; }
.checklist span { color: var(--slate); font-size: 0.96rem; }

/* ---------- Comfort / dark band ---------- */
.band { background: var(--evergreen-night); color: #eef5f1; }
.band h2 { color: #fff; }
.band .eyebrow { color: var(--brass-soft); }
.band p { color: rgba(238,245,241,0.82); }
.band--center { text-align: center; }

.comfort-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.comfort-item { padding: 1.6rem; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255,255,255,0.03); }
.comfort-item__num { font-family: var(--display); font-size: 0.9rem; color: var(--brass-soft); letter-spacing: 0.1em; }
.comfort-item__mark { display: block; width: 34px; height: 12px; color: var(--brass); margin-bottom: 0.2rem; }
.comfort-item__mark svg { width: 100%; height: auto; overflow: visible; }
.comfort-item h3 { color: #fff; margin: 0.5rem 0; font-size: 1.18rem; }
.comfort-item p { color: rgba(238,245,241,0.75); font-size: 0.94rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.stat { text-align: center; padding: 1.4rem; }
.stat b { display: block; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 600; color: var(--evergreen); line-height: 1; }
.stat span { display: block; margin-top: 0.6rem; color: var(--slate); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; }
.quote__stars { color: var(--brass); display: flex; gap: 2px; margin-bottom: 1rem; }
.quote__stars svg { width: 18px; height: 18px; }
.quote p { font-family: var(--display); font-size: 1.12rem; line-height: 1.5; font-style: italic; color: var(--ink); }
.quote__by { margin-top: 1.2rem; font-size: 0.88rem; font-weight: 700; color: var(--evergreen); }
.quote__by span { display: block; font-weight: 400; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; margin-top: 2.8rem; }
.faq details { border-bottom: 1px solid var(--line); padding: 0.4rem 0; }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 0.4rem; font-family: var(--display); font-size: 1.18rem; font-weight: 500; color: var(--ink); cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq-icon { flex: none; width: 26px; height: 26px; position: relative; transition: transform 0.25s; color: var(--brass-deep); }
.faq details[open] summary .faq-icon { transform: rotate(45deg); }
.faq .faq-body { padding: 0 0.4rem 1.3rem; color: var(--slate); max-width: 70ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: radial-gradient(110% 120% at 0% 0%, #2a6359 0%, var(--evergreen-deep) 55%); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: rgba(238,245,241,0.85); max-width: 50ch; margin: 1.1rem auto 0; }
.cta-band .hero__cta { justify-content: center; }
.cta-band__arc { position: absolute; left: 50%; bottom: -40px; transform: translateX(-50%); width: 420px; color: rgba(194,151,78,0.2); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--evergreen-deep); color: #eef5f1; padding-block: clamp(2.8rem, 6vw, 4.6rem); }
.page-hero .breadcrumbs { margin-bottom: 1.3rem; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(238,245,241,0.82); max-width: 56ch; margin-top: 1.2rem; font-size: 1.12rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem; color: rgba(238,245,241,0.65); }
.breadcrumbs a:hover { color: var(--brass-soft); }
.breadcrumbs span { color: rgba(238,245,241,0.4); }

/* ---------- Prose (article bodies) ---------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink); }
.prose ul { padding-left: 1.2rem; display: grid; gap: 0.5rem; }
.prose strong { color: var(--evergreen-deep); }
.prose a:not(.btn) { color: var(--evergreen); text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; }

.layout-aside { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.aside-card { position: sticky; top: 96px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; box-shadow: var(--shadow-soft); }
.aside-card h3 { font-size: 1.25rem; }
.aside-card .arc-underline { width: 84px; }
.aside-card ul { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: 0.5rem; }
.aside-card ul a { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 0.95rem; }
.aside-card ul a:hover { color: var(--evergreen); }
.aside-card ul a svg { width: 16px; height: 16px; color: var(--brass-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { list-style: none; padding: 0; display: grid; gap: 1.4rem; margin-top: 2rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--mist); color: var(--evergreen); display: grid; place-items: center; }
.info-list .ico svg { width: 22px; height: 22px; }
.info-list b { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate); font-weight: 700; }
.info-list a, .info-list p { font-size: 1.08rem; color: var(--ink); font-weight: 600; }
.map-embed { border: 0; width: 100%; height: 100%; min-height: 360px; border-radius: var(--radius-lg); filter: grayscale(0.2) contrast(1.05); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); height: 100%; min-height: 360px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--evergreen-night); color: rgba(238,245,241,0.78); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer .brand__name { color: #fff; }
.site-footer h4 { font-family: var(--body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass-soft); font-weight: 700; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a { font-size: 0.95rem; color: rgba(238,245,241,0.78); }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 0.7rem; font-size: 0.95rem; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-light); font-size: 0.84rem; color: rgba(238,245,241,0.6); }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-light); display: grid; place-items: center; transition: background 0.18s, border-color 0.18s; }
.footer-social a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.footer-social svg { width: 18px; height: 18px; color: rgba(238,245,241,0.85); }
.footer-areas { font-size: 0.82rem; color: rgba(238,245,241,0.55); margin-top: 1rem; line-height: 1.6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Mobile nav ---------- */
.mobile-menu { display: none; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-actionbar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .split, .layout-aside, .contact-grid, .afford { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split--reverse .split__media { order: -1; }
}
@media (max-width: 760px) {
  /* Slim header: just logo + menu. Booking lives in the menu and the sticky bar. */
  .nav__links, .nav__phone, .nav__cta .btn--primary { display: none; }
  .nav { padding-block: 0.7rem; gap: 0.75rem; }
  .nav__toggle { display: inline-flex; padding: 0.6rem; }
  .brand__name { font-size: 1.3rem; white-space: nowrap; }
  .brand__sub { font-size: 0.58rem; letter-spacing: 0.2em; white-space: nowrap; }
  .brand__arc { width: 84px; }

  .mobile-menu {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px);
    background: var(--porcelain); box-shadow: var(--shadow-lift); padding: 5.25rem 1.6rem 2rem;
    transform: translateX(100%); transition: transform 0.3s ease; z-index: 150; overflow-y: auto;
  }
  .mobile-menu.is-open { transform: none; }
  .mobile-menu a { display: block; padding: 0.9rem 0.4rem; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid var(--line); color: var(--ink); }
  .mobile-menu a.sub { padding-left: 1.4rem; font-size: 1rem; color: var(--slate); }
  .mobile-menu .btn { margin-top: 1.4rem; width: 100%; }
  .menu-backdrop { position: fixed; inset: 0; background: rgba(13,37,33,0.4); opacity: 0; visibility: hidden; transition: opacity 0.3s; z-index: 140; }
  .menu-backdrop.is-open { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero__trust-item b { font-size: 1.5rem; }
  .hero__cta { gap: 0.7rem; }

  /* Sticky bottom call/book bar */
  .mobile-actionbar {
    display: flex; gap: 0.6rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 0.7rem clamp(1rem, 4vw, 1.4rem);
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(13, 37, 33, 0.94); backdrop-filter: saturate(140%) blur(10px);
    border-top: 1px solid var(--line-light);
  }
  .mobile-actionbar .btn { flex: 1; padding: 0.85rem 0.5rem; font-size: 0.95rem; }
  .mobile-actionbar .btn--on-dark { color: #fff; border-color: rgba(255,255,255,0.28); }
  body { padding-bottom: 70px; }
  .site-footer { padding-bottom: calc(2rem + 70px); }
}
@media (max-width: 460px) {
  .hero__cta .btn { width: 100%; }
  h1 { font-size: clamp(2.3rem, 9vw, 3rem); }
  .media-art__label { font-size: 1rem; }
}
