/* ==========================================================================
   Beauty Culture — Malvern
   Hand-built design system. No frameworks, no external requests, no cookies.
   ========================================================================== */

/* ---- Fonts (self-hosted) ------------------------------------------------ */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../assets/fonts/fraunces-v38-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../assets/fonts/fraunces-v38-latin-300italic.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/fraunces-v38-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../assets/fonts/jost-v20-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/jost-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/jost-v20-latin-500.woff2") format("woff2");
}

/* ---- Tokens ------------------------------------------------------------- */

:root {
  /* Brand palette — drawn from the Beauty Culture logo */
  --teal-950: #042e30;
  --teal-900: #06393b;
  --teal-700: #006468;   /* brand teal (Hestia accent, logo ground) */
  --teal-600: #14696c;
  --teal-500: #2e8486;
  --teal-300: #7fb0ad;   /* muted text on dark teal grounds — 6:1 on --teal-950 */
  --teal-200: #cdddd9;   /* mist — logo circle three */
  --teal-100: #e2ece9;
  --teal-050: #eff5f3;

  --ivory: #faf8f3;      /* warm paper */
  --white: #ffffff;
  --ink: #1c2e2e;
  --ink-soft: #47605f;
  --line: #e4ded2;
  --line-cool: #d8e2df;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;

  --step-hero: clamp(2.5rem, 6.2vw, 4.35rem);
  --step-h1: clamp(2.2rem, 4.6vw, 3.4rem);
  --step-h2: clamp(1.85rem, 3.4vw, 2.7rem);
  --step-h3: clamp(1.3rem, 2vw, 1.55rem);
  --step-body: 1.0625rem;

  --space-section: clamp(4.25rem, 9vw, 7.5rem);
  --space-block: clamp(2.25rem, 4vw, 3.5rem);
  --wrap: 72rem;
  --radius: 1rem;

  --shadow-soft: 0 1.5rem 3.5rem -1.5rem rgba(6, 57, 59, 0.28);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Base --------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--step-body);
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--teal-900);
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

h1 { font-size: var(--step-h1); }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); font-weight: 600; letter-spacing: 0; }

/* h2 rendered at h3 scale — keeps the document outline honest where a
   section's only heading follows the page h1 directly */
.as-h3 { font-size: var(--step-h3); font-weight: 600; letter-spacing: 0; }

p {
  margin: 0 0 1.25em;
}

a {
  color: var(--teal-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

a:hover { color: var(--teal-900); }

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

em { font-family: var(--serif); font-style: italic; }

:focus-visible {
  outline: 2px solid var(--teal-600);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--teal-200);
  color: var(--teal-950);
}

.wrap {
  width: min(var(--wrap), 100% - 3rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 200;
  background: var(--teal-900);
  color: #fff;
  padding: 0.65rem 1.2rem;
  border-radius: 99px;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.75rem;
  color: #fff;
}

/* Anchored sections clear the sticky header */
[id] {
  scroll-margin-top: 7.5rem;
}

/* ---- Type helpers ------------------------------------------------------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin: 0 0 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--teal-500);
  opacity: 0.65;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--teal-500);
  opacity: 0.65;
}

.lead {
  font-size: clamp(1.15rem, 1.8vw, 1.3rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--teal-900);
}

.center { text-align: center; }

.measure { max-width: 46rem; }
.measure--center { margin-inline: auto; }

.muted { color: var(--ink-soft); }

.small { font-size: 0.9rem; line-height: 1.65; }

/* ---- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border-radius: 99px;
  border: 1px solid var(--teal-700);
  background: var(--teal-700);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--teal-700);
}

.btn--ghost:hover {
  background: var(--teal-700);
  color: #fff;
}

.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--teal-900);
}

.btn--light:hover {
  background: var(--teal-200);
  border-color: var(--teal-200);
  color: var(--teal-950);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* ---- Leaf motif (original Beauty Culture artwork) ----------------------- */

.leaf-badge {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
}

.leaf-solo {
  margin-bottom: 1.2rem;
}

/* ---- Header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Frosted header on desktop only — backdrop-filter creates a containing
   block for position:fixed descendants, which would trap the mobile
   nav overlay inside the header's box. Breakpoint sits at 1180px so the
   full nav row (incl. "Manual Lymphatic Drainage") never wraps. */
@media (min-width: 1180px) {
  .site-header {
    background: rgba(250, 248, 243, 0.92);
    backdrop-filter: blur(10px);
  }
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 0.5rem 1.5rem -1rem rgba(6, 57, 59, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* The original Beauty Culture logo (its ground is exactly var(--teal-700)) */
.brand__logo {
  display: block;
  height: clamp(3.4rem, 6vw, 4.1rem);
  width: auto;
  border-radius: 0.55rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.site-nav a:not(.btn) {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-nav a:not(.btn):hover {
  color: var(--teal-700);
}

.site-nav a[aria-current="page"] {
  color: var(--teal-700);
  border-bottom-color: var(--teal-500);
}

.site-nav .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--teal-900);
}

.nav-toggle svg {
  width: 1.7rem;
  height: 1.7rem;
  display: block;
}

.nav-toggle .icon-close { display: none; }

@media (max-width: 1179px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    /* Safe centering: auto margins on the first/last items centre the
       group when it fits but keep the top reachable (and scrollable)
       on short viewports — justify-content:center would clip it. */
    justify-content: flex-start;
    gap: 2.2rem;
    padding: 2rem;
    overflow-y: auto;
    background: var(--ivory);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.35s var(--ease),
      visibility 0s linear 0.4s;
  }

  .site-nav > :first-child { margin-top: auto; }
  .site-nav > :last-child { margin-bottom: auto; }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s var(--ease), opacity 0.35s var(--ease);
  }

  body.nav-open { overflow: hidden; }

  body.nav-open .nav-toggle { position: relative; z-index: 130; }
  body.nav-open .nav-toggle .icon-open { display: none; }
  body.nav-open .nav-toggle .icon-close { display: block; }

  .site-nav a:not(.btn) { font-size: 1.05rem; }
}

/* ---- Hero (home) -------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(34rem, 88vh, 46rem);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(178deg, rgba(4, 46, 48, 0.18) 0%, rgba(4, 46, 48, 0.38) 55%, rgba(4, 46, 48, 0.78) 100%);
}

.hero__inner {
  padding: 7rem 0 clamp(3rem, 7vh, 5rem);
}

.hero .eyebrow {
  color: var(--teal-100);
}

.hero .eyebrow::before { background: var(--teal-200); }

.hero__title {
  font-size: var(--step-hero);
  font-weight: 300;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(4, 46, 48, 0.35);
}

.hero__title em { font-weight: 300; }

.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
}

/* ---- Sections ----------------------------------------------------------- */

.section {
  padding: var(--space-section) 0;
}

.section--white { background: var(--white); }
.section--mist { background: var(--teal-050); }
.section--teal {
  background: var(--teal-900);
  color: var(--teal-100);
}

.section--teal h2,
.section--teal h3 {
  color: #fff;
}

.section--teal .eyebrow { color: var(--teal-200); }
.section--teal .eyebrow::before { background: var(--teal-200); }
.section--teal a:not(.btn) { color: var(--teal-200); }
.section--teal a:not(.btn):hover { color: #fff; }

.section-head {
  max-width: 46rem;
  margin-bottom: var(--space-block);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* ---- Split layouts ------------------------------------------------------ */

.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.15fr 0.85fr; }
  .split--flip > :first-child { order: 2; }
}

.arch-frame {
  position: relative;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.frame img { width: 100%; object-fit: cover; }

/* Valley crop of the Malvern Hills photo — lower framing than the hero's */
.frame--valley img {
  aspect-ratio: 16 / 9;
  object-position: center 82%;
}

.img-caption {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: center;
}

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  line-height: 1.5;
  color: var(--teal-700);
  border-left: 2px solid var(--teal-200);
  padding-left: 1.4rem;
  margin: 1.8rem 0 0;
}

/* ---- Treatment cards (home) --------------------------------------------- */

.card-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.t-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.7rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--teal-200);
  color: var(--ink);
}

.t-card .leaf-badge {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.6rem;
}

.t-card h3 {
  margin: 0;
  font-size: 1.32rem;
  color: var(--teal-900);
}

.t-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.t-card__meta {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.t-card__meta .arrow {
  transition: transform 0.3s var(--ease);
}

.t-card:hover .t-card__meta .arrow {
  transform: translateX(4px);
}

/* ---- Price menus -------------------------------------------------------- */

.menu-section {
  border-top: 1px solid var(--line);
  padding-top: var(--space-block);
  margin-top: var(--space-block);
}

.menu-section:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.menu-intro {
  max-width: 42rem;
  color: var(--ink-soft);
}

.menu-grid {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  margin-top: 2.2rem;
}

@media (min-width: 800px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid--single { grid-template-columns: 1fr; max-width: 46rem; }
}

.menu-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.7rem 1.5rem;
}

.section--white .menu-item,
.section--mist .menu-item {
  border-color: var(--line-cool);
}

.menu-item h2,
.menu-item h3,
.menu-item h4 {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--teal-900);
  margin: 0 0 0.5rem;
  line-height: 1.12;
}

.menu-item > p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.42rem 0;
  font-size: 0.98rem;
}

.price-list li + li {
  border-top: 1px dashed var(--line-cool);
}

.price-list .p-name {
  color: var(--ink);
}

.price-list .p-note {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.price-list .p-dots {
  flex: 1;
  border-bottom: 1px dotted var(--teal-200);
  transform: translateY(-0.28em);
  min-width: 1.5rem;
}

.price-list .p-price {
  font-weight: 500;
  color: var(--teal-700);
  white-space: nowrap;
}

.menu-note {
  margin-top: 2.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Category pill nav (treatments page) */
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.pill-nav a {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal-900);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.pill-nav a:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
}

/* ---- Feature band (LDM on home) ----------------------------------------- */

.feature-band .lead {
  color: var(--teal-100);
}

.feature-band .frame img {
  aspect-ratio: 4 / 3;
}

/* ---- Benefit cards (LDM page) ------------------------------------------- */

.benefit-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  margin-top: 2.2rem;
}

.benefit {
  background: var(--white);
  border: 1px solid var(--line-cool);
  border-left: 3px solid var(--teal-500);
  border-radius: 0.6rem;
  padding: 1.3rem 1.4rem;
}

.benefit h3 {
  font-size: 1.08rem;
  margin: 0 0 0.35rem;
}

.benefit p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- Page hero (inner pages) -------------------------------------------- */

.page-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.page-hero--teal {
  background: var(--teal-900);
  color: var(--teal-100);
}

.page-hero--teal h1 { color: #fff; }
.page-hero--teal .eyebrow { color: var(--teal-200); }
.page-hero--teal .eyebrow::before { background: var(--teal-200); }
.page-hero--teal .lead { color: var(--teal-100); }

/* ---- Video -------------------------------------------------------------- */

.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--teal-950);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ---- Visit / contact ---------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.phone-link {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--teal-700);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.phone-link:hover { color: var(--teal-900); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.6rem 0 0;
  font-size: 0.98rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line-cool);
  font-weight: 400;
}

.hours-table td {
  text-align: right;
  color: var(--teal-700);
  font-weight: 500;
}

.hours-table tr.closed td { color: var(--ink-soft); font-weight: 400; }

.info-block + .info-block {
  margin-top: 2.2rem;
}

.info-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}

.form-card h3 {
  margin-bottom: 0.4rem;
}

.form-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.6rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-field--full { grid-column: 1 / -1; }
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-900);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(46, 132, 134, 0.18);
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-foot {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--teal-700);
}

/* ---- CTA band ----------------------------------------------------------- */

.cta-band {
  background: var(--teal-700);
  color: #fff;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

/* The four-leaf brochure strip sits on the band's identical teal — it blends seamlessly */
.cta-strip {
  display: block;
  height: 2.9rem;
  width: auto;
  margin: 0 auto 1.5rem;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-band p {
  color: var(--teal-100);
  max-width: 40rem;
  margin: 0 auto 2rem;
}

/* ---- Footer ------------------------------------------------------------- */

.site-footer {
  background: var(--teal-950);
  color: var(--teal-200);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--teal-100);
}

.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: block;
  height: 6.25rem;
  width: auto;
  border-radius: 0.7rem;
}

.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-list a { text-decoration: none; }
.footer-list a:hover { text-decoration: underline; }

.footer-hours {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.footer-hours span { color: var(--teal-300); }

.footer-bottom {
  border-top: 1px solid rgba(205, 221, 217, 0.18);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--teal-300);
}

.footer-bottom a { color: var(--teal-200); }

.no-cookies {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.no-cookies::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #7fc7a4;
}

/* ---- Reveal animation --------------------------------------------------- */

/* Hidden state only applies when JS is running (html.js set inline in <head>) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .t-card,
  .btn {
    transition: none;
  }
}
