/* ==========================================================================
   Sarah Spa Esthétique — Stylesheet
   Body: Source Sans Pro · Headings: Oswald · Script accents: Playball
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette (teal from source + warm bronze accent) */
  --primary: #2FA396;
  --primary-rgb: 47, 163, 150;
  --primary-ink: #ffffff;
  --primary-dark: #237B71;
  --primary-dark-rgb: 35, 123, 113;

  --secondary: #C89B7B;             /* warm bronze / spa accent */
  --secondary-rgb: 200, 155, 123;
  --secondary-ink: #2a1e14;

  --accent: #1F5B54;                /* deep teal / editorial ink */
  --accent-rgb: 31, 91, 84;
  --accent-ink: #ffffff;

  --text: #1F2A2E;
  --text-rgb: 31, 42, 46;
  --text-light: #5F6B70;
  --text-light-rgb: 95, 107, 112;

  --background: #ffffff;
  --background-rgb: 255, 255, 255;

  --bg-alt: #F5EFE8;                /* warm cream */
  --bg-alt-rgb: 245, 239, 232;
  --bg-alt-ink: #1F2A2E;

  --surface: #FBFAF7;
  --surface-rgb: 251, 250, 247;

  --line: #E7E1D8;
  --line-rgb: 231, 225, 216;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(var(--text-rgb), 0.04),
               0 2px 8px rgba(var(--text-rgb), 0.05);
  --shadow-md: 0 6px 28px rgba(var(--text-rgb), 0.08);
  --shadow-lg: 0 20px 60px rgba(var(--text-rgb), 0.12);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Fonts */
  --font-body: "Source Sans Pro", -apple-system, BlinkMacSystemFont,
               "Segoe UI", Arial, sans-serif;
  --font-head: "Oswald", "Oswald Fallback", "Arial Narrow", Impact, sans-serif;
  --font-script: "Playball", "Dancing Script", cursive;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--primary-dark); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 12px 22px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 0.9rem; }
.btn--filled { background: var(--primary-dark); color: var(--primary-ink); }
.btn--filled:hover { background: var(--accent); color: var(--primary-ink); }
.btn--outline {
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--accent);
  border-color: var(--accent);
  border-width: 2px;
  padding: 11px 21px;
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn--ghost {
  background: var(--accent);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.95);
  border-width: 2px;
  padding: 11px 21px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.btn--ghost.btn--lg { padding: 14px 27px; }
.btn--ghost:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn--ghost-light {
  background: var(--accent);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.95);
  border-width: 2px;
  padding: 11px 21px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.btn--ghost-light.btn--lg { padding: 14px 27px; }
.btn--ghost-light:hover { background: #fff; color: var(--accent); border-color: #fff; }
.btn--text {
  background: transparent;
  color: var(--text-light);
  padding: 12px 6px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
}
.btn--text strong { color: var(--accent); }
.btn--text:hover { color: var(--accent); }
.btn--block { width: 100%; }
.btn--pill { border-radius: 999px; padding: 11px 22px; }

/* ---------- Section headings ---------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--primary);
}
.section-eyebrow--light { color: rgba(255, 255, 255, 0.85); }
.section-eyebrow--light::before { background: rgba(255, 255, 255, 0.6); }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.35em;
}
.section-title--light { color: #fff; }
.section-title .script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--primary-dark);
  font-size: 1.05em;
  letter-spacing: 0;
  text-transform: none;
  display: inline-block;
  transform: translateY(0.05em);
}
.section-sub {
  max-width: 620px;
  color: var(--text-light);
  font-size: 1.06rem;
  margin: 0.4em 0 0;
}

.lead {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 0 1.2em;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.topbar {
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 20px;
}
.topbar__meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.95);
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.topbar__item svg { flex-shrink: 0; opacity: 0.85; }
.topbar__actions { display: flex; align-items: center; gap: 14px; }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.phone-link:hover { color: rgba(255, 255, 255, 0.85); }
.phone-link svg { flex-shrink: 0; }
.phone-link--light { color: rgba(255, 255, 255, 0.95); }
.phone-link--light:hover { color: #fff; }

.mainbar {
  background: #fff;
}
.mainbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

/* Brand wordmark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--primary-ink);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0;
  flex-shrink: 0;
}
.brand__mark--light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
}
.brand__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
}
.brand__sub {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--primary-dark);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.brand--light { color: #fff; }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub { color: rgba(255, 255, 255, 0.85); }

/* Navigation */
.mainnav { display: flex; align-items: center; }
.mainnav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}
.mainnav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.mainnav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.mainnav__list > li { position: relative; }
.mainnav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.mainnav__list > li > a:hover,
.mainnav__list > li > a.active {
  color: var(--primary-dark);
}
.mainnav__list > li > a.active {
  position: relative;
}
.mainnav__list > li > a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--primary);
}

.has-submenu > a svg { transition: transform 0.2s; opacity: 0.7; }
.has-submenu:hover > a svg,
.has-submenu.is-open > a svg { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 20;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.is-open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
  border-radius: 3px;
  font-weight: 500;
}
.submenu a:hover {
  background: var(--primary-dark);
  color: #fff;
}

.mainbar__cta { flex-shrink: 0; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 100px 0 120px;
  background-color: #142E2B;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      rgba(var(--accent-rgb), 0.88) 0%,
      rgba(var(--accent-rgb), 0.75) 50%,
      rgba(0, 0, 0, 0.85) 100%);
}
.hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 28% 42%,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 60%),
    linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  padding: 6px 14px 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.eyebrow-line {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0 0 0.35em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero__title em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: #fff;
  font-size: 1.05em;
  letter-spacing: 0;
}

.hero__lede {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 30px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--secondary);
  font-size: 1.05rem;
  letter-spacing: 1px;
}
.proof__text {
  color: #ffffff;
  font-size: 0.95rem;
}
.proof__text span { color: #ffffff; }
.proof__text strong { color: #fff; }

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ==========================================================================
   STRIP — 4-point value strip
   ========================================================================== */
.strip {
  background: var(--surface);
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.strip__item {
  transition: transform 0.25s ease;
}
.strip__item:hover { transform: translateY(-2px); }
.strip__item:hover .strip__num { color: var(--accent); border-color: var(--primary); }
.strip__item h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin: 8px 0 6px;
  text-transform: uppercase;
}
.strip__item p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}
.strip__num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--primary-dark);
  letter-spacing: 0.08em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
  display: inline-block;
  padding-right: 8px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  padding: 110px 0;
  background: var(--background);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.about__media::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
  transform: translate(18px, 18px);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about__stamp {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-dark);
  color: var(--primary-ink);
  padding: 18px 22px;
  text-align: center;
  border-radius: var(--radius);
  font-family: var(--font-head);
  line-height: 1.1;
  box-shadow: var(--shadow-md);
}
.about__stamp-line {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
}
.about__stamp-year {
  display: block;
  font-family: var(--font-script);
  font-size: 1.4rem;
  margin: 4px 0;
  letter-spacing: 0;
}

.about__body { max-width: 540px; }
.checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
  display: grid;
  gap: 12px;
}
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 1rem;
}
.check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.14);
  color: var(--primary-dark);
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}
.about__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SERVICES — Photographic tile grid
   ========================================================================== */
.services {
  padding: 110px 0 0;
  background: var(--bg-alt);
}
.services__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 var(--gutter);
}
.services__head .section-eyebrow { justify-content: center; }
.services__head .section-sub { margin: 0.4em auto 0; }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  /* full-bleed edge to edge like the original */
}
.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  background-color: #142E2B;
}
.tile__img {
  position: absolute;
  inset: 0;
  background-image: var(--tile-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  z-index: 0;
}
.tile:hover .tile__img { transform: scale(1.06); }
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
  transition: background 0.4s;
}
.tile:hover::before {
  background: linear-gradient(180deg,
    rgba(var(--accent-rgb), 0.15) 0%,
    rgba(var(--accent-rgb), 0.35) 45%,
    rgba(var(--accent-rgb), 0.85) 100%);
}
.tile__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px 30px;
  gap: 10px;
  color: #fff;
}
.tile__label {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tile:hover .tile__cta {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.tile__desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 42ch;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.tile--wide {
  grid-column: span 4;
  aspect-ratio: 16 / 6;
}
/* Stronger left-to-right gradient for legibility on busy imagery */
.tile--wide::before {
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 35%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0) 100%);
}
.tile--wide:hover::before {
  background: linear-gradient(90deg,
    rgba(var(--accent-rgb), 0.85) 0%,
    rgba(var(--accent-rgb), 0.65) 35%,
    rgba(var(--accent-rgb), 0.25) 65%,
    rgba(var(--accent-rgb), 0.05) 100%);
}
.tile--wide .tile__overlay {
  justify-content: center;
  align-items: flex-start;
  padding: 60px clamp(28px, 6vw, 72px);
  max-width: 640px;
  gap: 14px;
}
.tile--wide .tile__label {
  font-size: 1.5rem;
  letter-spacing: 0.18em;
}

/* ==========================================================================
   BAND — dark differentiator strip
   ========================================================================== */
.band {
  background: var(--accent);
  color: #fff;
  padding: 90px 0;
}
.band__inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: center;
}
.band__lead .section-title { color: #fff; }
.band__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.band__point {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
}
.band__num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.band__num span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-left: 2px;
}
.band__point h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 4px 0 4px;
  font-weight: 500;
}
.band__point p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
  padding: 110px 0;
  background: var(--background);
}
.reviews__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}
.reviews__head .section-eyebrow { justify-content: center; }
.reviews__meta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.reviews__meta .btn--outline {
  min-height: 46px;
}
.reviews__badge {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 12px 22px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.reviews__g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  background: conic-gradient(from 0deg,
    var(--text-light) 0deg 90deg,
    var(--secondary) 90deg 180deg,
    var(--primary) 180deg 270deg,
    var(--primary) 270deg 360deg);
  color: #fff;
  position: relative;
}
.reviews__g::after {
  content: "G";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
}
.reviews__score {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}
.reviews__score strong { font-size: 1.15rem; margin-right: 6px; }
.stars-inline { color: var(--text-light); letter-spacing: 2px; }
.reviews__count {
  font-size: 0.82rem;
  color: var(--text-light);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: rgba(var(--primary-rgb), 0.18);
  line-height: 1;
}
.review__stars { color: var(--text-light); letter-spacing: 2px; font-size: 1rem; }
.review blockquote {
  margin: 0;
  padding: 0;
  quotes: none;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.review figcaption {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review figcaption strong {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text);
}
.review figcaption span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================================================
   VISIT / CONTACT
   ========================================================================== */
.visit {
  padding: 110px 0;
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit__body .lead { max-width: 480px; }

.visit__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.info-card--wide { grid-column: span 2; }
.info-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.14);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 6px;
  font-weight: 500;
}
.info-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}
.link-underline {
  color: var(--text);
  border-bottom: 1px solid var(--primary);
  font-weight: 600;
}
.link-underline:hover { color: var(--primary-dark); }

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
  font-size: 0.95rem;
}
.hours th, .hours td {
  padding: 6px 0;
  text-align: left;
  border-bottom: 1px dotted rgba(var(--text-rgb), 0.12);
  font-weight: 400;
}
.hours th {
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hours td { text-align: right; color: var(--text); font-weight: 500; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* Form card */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: var(--text);
}
.form-card__sub {
  color: var(--text-light);
  margin: 0 0 22px;
  font-size: 0.98rem;
}
.form-card__fine {
  color: var(--text-light);
  font-size: 0.82rem;
  margin: 12px 0 0;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #C6BDAE;
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #9E9484; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.18);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.finalcta {
  position: relative;
  padding: 90px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.9), rgba(var(--primary-dark-rgb), 0.88)),
    url('assets/img_58b3b260c5fb.jpg') center / cover no-repeat;
}
.finalcta__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.finalcta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.1;
}
.finalcta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  margin: 0 0 28px;
}
.finalcta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #142E2B;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 70px 0 40px;
}
.footer__brand .brand { margin-bottom: 14px; }
.footer__tag {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer__col ul a,
.footer__col address a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col ul a:hover,
.footer__col address a:hover { color: #fff; }
.footer__col ul li {
  position: relative;
  padding-left: 14px;
}
.footer__col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: rgba(var(--primary-rgb), 0.9);
}
.footer__col address {
  font-style: normal;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.hours--footer { font-size: 0.9rem; }
.hours--footer th {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hours--footer td { color: #fff; }
.hours--footer th, .hours--footer td {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  padding: 20px 0;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}
.footer__bar-inner a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.footer__bar-inner a:hover { color: #fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile--wide { grid-column: span 2; aspect-ratio: 16 / 8; }
  .band__inner { grid-template-columns: 1fr; gap: 40px; }
  .visit__grid { grid-template-columns: 1fr; }
  .about__grid { gap: 50px; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 900px) {
  .topbar__meta .topbar__item--hours { display: none; }
  .topbar__meta .topbar__item--loc { font-size: 0.8rem; }

  .mainnav__toggle { display: flex; }
  .mainnav__list {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 88vw);
    background: #fff;
    flex-direction: column;
    padding: 90px 24px 32px;
    gap: 6px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.16);
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 60;
  }
  .mainnav.is-open .mainnav__list { transform: translateX(0); }
  .mainnav__list > li > a { padding: 12px 4px; font-size: 1rem; }
  .mainnav__list > li > a.active::after { display: none; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 6px 14px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .has-submenu.is-open > .submenu { max-height: 400px; }

  .mainbar__cta { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin: 0 auto; }

  .band__points { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .hero { min-height: 78vh; padding: 80px 0 100px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__lede { font-size: 1.05rem; }
}

@media (max-width: 640px) {
  .topbar__meta { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar { font-size: 0.9rem; }
  .topbar__actions { gap: 0; }

  .strip__grid { grid-template-columns: 1fr; }

  .tile-grid { grid-template-columns: 1fr; }
  .tile--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .tile { aspect-ratio: 4 / 4; }

  .visit__info { grid-template-columns: 1fr; }
  .info-card--wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }

  .footer__grid { grid-template-columns: 1fr; gap: 30px; padding: 50px 0 30px; }
  .footer__bar-inner { justify-content: center; text-align: center; }

  .hero__eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; }
  .hero__actions .btn { flex: 1 1 100%; }
  .about__cta { flex-direction: column; align-items: stretch; }
  .about__cta .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
  .hero__video { display: none; }
  .hero__media { background: url('assets/hero_87458c48e395.jpg') center / cover; }
}

/* betterly-css-safety-net:start */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img, .hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 760px) {
  .intro-grid,
  .founder-grid,
  .visit-grid,
  .feature-grid,
  .trust-grid,
  .value-grid,
  .value__grid,
  .program-grid,
  .pillar-grid,
  .link-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .value__list,
  .values-list,
  .trust-list,
  .checklist,
  .bullets {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    display: grid;
  }
  .cta-banner-inner {
    display: grid;
  }
}
/* betterly-css-safety-net:end */
