/* ==========================================================================
   Embody Wellness Medispa — Mockup v1
   Kayoce Labs LLC
   Pure CSS. BEM (double-underscore) naming. Mobile-first.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette v2 — black / logo-red / dusty-rose on a cream neutral base.
     Reds sampled from the real Embody logo (#761715). */
  --cream: #f7f2eb;
  --cream-deep: #efe7dc;
  --paper: #fffdfa;
  --near-black: #120d0c;      /* nav, footer, dark sections */
  --ink: #16100f;             /* primary text */
  --espresso: #2a1f1d;        /* secondary dark text (warm near-black, not brown) */
  --taupe: #8a7a6d;
  --taupe-soft: #b7a89a;
  --red: #7d1a18;             /* primary accent — matches the logo red */
  --red-deep: #591210;
  --red-bright: #a12a24;      /* red for use on dark backgrounds */
  --rose: #cf9599;            /* dusty rose — secondary accent */
  --rose-soft: #f3e0e2;       /* subtle pink for backgrounds / on-dark text */
  --rose-deep: #a86a6e;
  /* Legacy aliases kept so existing rules re-theme without churn */
  --gold: var(--red);
  --gold-soft: var(--rose);
  --blush: var(--rose-soft);
  --blush-deep: #e3c4c6;
  --line: #e7dcd0;

  --font-display: 'Cormorant Garamond', 'Hoefler Text', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1180px;
  --gutter: 1.5rem;
  --radius: 4px;
  --shadow-soft: 0 18px 40px -24px rgba(60, 48, 42, 0.45);
  --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(--font-body);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

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

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section--tint { background: var(--cream-deep); }
.section--ink { background: var(--near-black); color: var(--cream); }
.section--ink .eyebrow { color: var(--rose); }

/* --------------------------------------------------------------------------
   Cheetah accent — small, deliberate, CSS-generated (no background pattern)
   Used only as a tiny texture chip / badge underlay / heading underline.
   -------------------------------------------------------------------------- */
.cheetah {
  --spot: #2c211a;
  --ring: #7a5326;
  background-color: #d8b477;
  background-image:
    radial-gradient(circle at 20% 25%, var(--spot) 0 3px, transparent 4px),
    radial-gradient(circle at 22% 22%, var(--ring) 3px 5px, transparent 6px),
    radial-gradient(circle at 62% 34%, var(--spot) 0 3px, transparent 4px),
    radial-gradient(circle at 64% 31%, var(--ring) 3px 5px, transparent 6px),
    radial-gradient(circle at 42% 66%, var(--spot) 0 3px, transparent 4px),
    radial-gradient(circle at 44% 63%, var(--ring) 3px 5px, transparent 6px),
    radial-gradient(circle at 82% 74%, var(--spot) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 71%, var(--ring) 3px 5px, transparent 6px),
    radial-gradient(circle at 12% 82%, var(--spot) 0 2.5px, transparent 3.5px);
  background-size: 34px 34px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-fg: var(--cream);
  --btn-bg: var(--near-black);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  padding: 0.95rem 1.75rem;
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn__label { position: relative; z-index: 2; }
/* Cheetah reveals inside the button on hover — a small personal wink */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  z-index: 1;
  /* Cheetah fill — the personal touch, revealed only on hover, never at rest */
  --spot: #2c211a;
  --ring: #7a5326;
  background-color: #d8b477;
  background-image:
    radial-gradient(circle at 20% 25%, var(--spot) 0 3px, transparent 4px),
    radial-gradient(circle at 22% 22%, var(--ring) 3px 5px, transparent 6px),
    radial-gradient(circle at 62% 34%, var(--spot) 0 3px, transparent 4px),
    radial-gradient(circle at 64% 31%, var(--ring) 3px 5px, transparent 6px),
    radial-gradient(circle at 42% 66%, var(--spot) 0 3px, transparent 4px),
    radial-gradient(circle at 44% 63%, var(--ring) 3px 5px, transparent 6px),
    radial-gradient(circle at 82% 74%, var(--spot) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 71%, var(--ring) 3px 5px, transparent 6px);
  background-size: 30px 30px;
}
.btn:hover { color: var(--ink); border-color: var(--gold); }
.btn:hover::before { opacity: 0.9; transform: scale(1); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--ghost {
  --btn-fg: var(--espresso);
  --btn-bg: transparent;
  border-color: var(--taupe);
}
.btn--ghost:hover { color: var(--ink); }

.link-arrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.link-arrow:hover { color: var(--espresso); }

/* --------------------------------------------------------------------------
   Site header (shared)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: baseline; gap: 0.55rem; }
.brand__mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand__mark em { color: var(--gold); font-style: italic; }
.brand__tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
}

.site-nav { display: none; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__link {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] { border-color: var(--gold); color: var(--ink); }

.site-header__cta { display: none; }

/* Mobile nav — CSS-only disclosure */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle__bar { display: block; height: 1.5px; background: var(--ink); }
.nav-check { position: absolute; opacity: 0; pointer-events: none; }
.mobile-nav {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.mobile-nav__inner { overflow: hidden; }
.nav-check:checked ~ .mobile-nav { grid-template-rows: 1fr; }
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem var(--gutter) 1.5rem;
  display: grid;
  gap: 0.25rem;
}
.mobile-nav__link {
  display: block;
  padding: 0.8rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   HOME — editorial split opener (no hero banner)
   -------------------------------------------------------------------------- */
.opener {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.opener__grid {
  display: grid;
  gap: 2.5rem;
}
.opener__lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.opener__title {
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.opener__title em { font-style: italic; color: var(--gold); }
.opener__sub {
  max-width: 34ch;
  margin-top: 1.4rem;
  color: var(--espresso);
  font-size: 1.08rem;
}
.opener__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.opener__meta-item {
  display: grid;
  gap: 0.2rem;
}
.opener__meta-label {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
}
.opener__meta-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}
.opener__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* Editorial "results" panel standing in for a hero image */
.results-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-soft);
}
.results-panel__half {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  min-height: 340px;
}
.results-panel__half--before {
  background: linear-gradient(160deg, #f7ecec 0%, #f0dcde 100%);
  color: var(--espresso);
}
.results-panel__half--after {
  background: linear-gradient(160deg, #7d1a18 0%, #120d0c 100%);
  color: var(--cream);
}
.results-panel__tag {
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.75;
}
.results-panel__word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.25rem;
}
.results-panel__note {
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  right: 1.4rem;
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.85;
}
.results-panel__divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: rgba(207, 149, 153, 0.7);
  transform: translateX(-50%);
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Menu-forward services showcase — CSS-only filter (the homepage centrepiece)
   -------------------------------------------------------------------------- */
.menu__head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}
.menu__title { font-size: clamp(2rem, 5vw, 2.9rem); }
.menu__intro { max-width: 46ch; color: var(--espresso); }

.menu__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.menu__filter-radio { position: absolute; opacity: 0; pointer-events: none; }
.menu__filter {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.menu__filter:hover { border-color: var(--gold); }

.menu__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.menu-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--blush-deep);
}
.menu-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.menu-card__name { font-size: 1.4rem; font-weight: 500; }
.menu-card__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
}
.menu-card__price s { color: var(--taupe-soft); font-weight: 300; margin-right: 0.35rem; }
.menu-card__meta {
  font-size: 0.82rem;
  color: var(--taupe);
  letter-spacing: 0.04em;
}
.menu-card__cat {
  align-self: flex-start;
  margin-top: 0.3rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Filter logic: default (all) shows everything; each radio narrows the set */
#f-all:checked   ~ .menu__grid .menu-card { display: flex; }
#f-inject:checked ~ .menu__grid .menu-card:not([data-cat="injectables"]) { display: none; }
#f-skin:checked  ~ .menu__grid .menu-card:not([data-cat="skin"]) { display: none; }
#f-weight:checked ~ .menu__grid .menu-card:not([data-cat="weight"]) { display: none; }
#f-iv:checked    ~ .menu__grid .menu-card:not([data-cat="iv"]) { display: none; }

/* Highlight the active pill */
#f-all:checked    ~ .menu__filters label[for="f-all"],
#f-inject:checked ~ .menu__filters label[for="f-inject"],
#f-skin:checked   ~ .menu__filters label[for="f-skin"],
#f-weight:checked ~ .menu__filters label[for="f-weight"],
#f-iv:checked     ~ .menu__filters label[for="f-iv"] {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.menu__foot {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.menu__note { font-size: 0.85rem; color: var(--taupe); max-width: 48ch; }

/* --------------------------------------------------------------------------
   Specials — cheetah badge lives here (a subtle personal accent)
   -------------------------------------------------------------------------- */
.specials__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.special-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
}
.badge-fav {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  background: var(--espresso);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.badge-fav__chip {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
}
.special-card__name { font-size: 1.5rem; margin-bottom: 0.4rem; }
.special-card__price {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.special-card__price s { color: var(--taupe-soft); font-weight: 300; margin-right: 0.4rem; }
.special-card__desc { margin-top: 0.6rem; font-size: 0.92rem; color: var(--espresso); }

/* --------------------------------------------------------------------------
   Trust / perks strip
   -------------------------------------------------------------------------- */
.perks {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.perk { display: grid; gap: 0.35rem; }
.perk__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
}
.perk__text { font-size: 0.9rem; color: var(--blush); }

/* --------------------------------------------------------------------------
   Review
   -------------------------------------------------------------------------- */
.review { max-width: 760px; margin-inline: auto; text-align: center; }
.review__stars { color: var(--gold); letter-spacing: 0.3em; margin-bottom: 1.2rem; }
.review__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}
.review__cite {
  margin-top: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  font-style: normal;
}
.review__heading-underline { position: relative; display: inline-block; }
.review__heading-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 6px;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Interior page header — quiet, no spectacle
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.page-head__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.page-head__title { font-size: clamp(2.2rem, 6vw, 3.4rem); }
.page-head__sub { margin-top: 1rem; max-width: 52ch; color: var(--espresso); }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about__grid { display: grid; gap: 2.5rem; }
.about__portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(165deg, #f3e0e2 0%, #cf9599 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  color: var(--espresso);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about__lead p { font-size: 1.12rem; color: var(--espresso); }
.creds {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.creds__item {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.creds__item::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}
.pillars { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pillar__title { font-size: 1.35rem; margin-bottom: 0.4rem; }
.pillar__text { font-size: 0.9rem; color: var(--espresso); }

/* --------------------------------------------------------------------------
   Services page
   -------------------------------------------------------------------------- */
.svc-group { margin-bottom: 3rem; }
.svc-group__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.svc-group__title { font-size: 1.8rem; }
.svc-group__count { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.svc-list { display: grid; gap: 0.9rem; }
.svc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.4rem 0;
}
.svc-row__name { font-family: var(--font-display); font-size: 1.3rem; }
.svc-row__desc { display: block; font-family: var(--font-body); font-size: 0.82rem; color: var(--taupe); margin-top: 0.15rem; }
.svc-row__dots { flex: 1; border-bottom: 1px dotted var(--taupe-soft); transform: translateY(-4px); }
.svc-row__price { font-weight: 500; color: var(--gold); white-space: nowrap; }
.svc-row__price s { color: var(--taupe-soft); font-weight: 300; margin-right: 0.35rem; }

.svc-note {
  margin-top: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--espresso);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact__grid { display: grid; gap: 2.5rem; }
.info-block { margin-bottom: 2rem; }
.info-block__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.info-block__value { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours__day { color: var(--espresso); }
.hours__time { color: var(--ink); font-weight: 400; }
.map-embed {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(60,48,42,0.06) 0, rgba(60,48,42,0.06) 100%),
    repeating-linear-gradient(90deg, #ece3d7 0 22px, #e6dccd 22px 24px),
    repeating-linear-gradient(0deg, #ece3d7 0 22px, #e6dccd 22px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--taupe);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.map-embed__pin {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  padding: 1rem 1.4rem;
  background: rgba(255,253,250,0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band__title { font-size: clamp(2rem, 5vw, 3rem); color: var(--cream); }
.cta-band__text { max-width: 46ch; margin: 1rem auto 2rem; color: var(--blush); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: 3rem 2rem;
}
.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.site-footer__brand .brand__mark { color: var(--cream); }
.site-footer__brand p { color: var(--taupe-soft); font-size: 0.9rem; margin-top: 0.8rem; max-width: 32ch; }
.footer-col__title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.footer-col__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col__list a, .footer-col__list li { font-size: 0.9rem; color: var(--taupe-soft); }
.footer-col__list a:hover { color: var(--cream); }
.site-footer__base {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--taupe-soft);
}
.site-footer__disclaimer { font-size: 0.72rem; color: rgba(183,168,154,0.7); max-width: 60ch; }

/* --------------------------------------------------------------------------
   Utilities / animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-in 0.8s var(--ease) forwards;
}
.reveal--d1 { animation-delay: 0.08s; }
.reveal--d2 { animation-delay: 0.16s; }
.reveal--d3 { animation-delay: 0.24s; }
@keyframes reveal-in { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive — tablet / desktop
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .menu__grid { grid-template-columns: 1fr 1fr; }
  .specials__grid { grid-template-columns: repeat(3, 1fr); }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .menu__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .menu__head > * { flex: 1; }
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .site-nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
  .opener__grid { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
  .perks { grid-template-columns: repeat(4, 1fr); }
  .about__grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   v2 additions — real logo, framed sign, static cheetah accents
   -------------------------------------------------------------------------- */
/* Real logo in the nav bar (target ~55–70px tall, aspect preserved) */
.brand__logo {
  display: block;
  height: 50px;
  width: auto;
}
@media (min-width: 900px) { .brand__logo { height: 62px; } }

/* Prominent logo on the homepage opener */
.opener__logo {
  display: block;
  width: min(360px, 82%);
  height: auto;
  margin-bottom: 1.5rem;
}

/* Static cheetah rule — visible on load, no interaction needed.
   Combine with the .cheetah utility: class="cheetah cheetah-rule" */
.cheetah-rule {
  display: block;
  width: 92px;
  height: 12px;
  border-radius: 6px;
  margin-top: 1rem;
  box-shadow: inset 0 0 0 1px rgba(18, 13, 12, 0.12);
}
.cheetah-rule--center { margin-inline: auto; }

/* Cheetah accent on the mobile nav toggle (static, shows on touch devices) */
.nav-toggle { position: relative; }
.nav-toggle__cheetah {
  display: block;
  height: 5px;
  width: 100%;
  border-radius: 3px;
  margin-top: 3px;
}

/* Framed sign — full-strength cheetah moment, used once, deliberately */
.studio { text-align: center; }
.studio__frame {
  max-width: 640px;
  margin: 2rem auto 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.studio__frame img { width: 100%; height: auto; display: block; }
.studio__caption {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Footer wordmark keeps working on near-black: red script + cream text */
.site-footer__brand .brand__mark { color: var(--cream); }
.site-footer__brand .brand__mark em { color: var(--rose); }

/* BusinessRate award plaque — modest footer badge, framed so the black
   plaque separates from the near-black footer */
.site-footer__award {
  display: block;
  width: 136px;
  max-width: 100%;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  overflow: hidden;
  line-height: 0;
}
.site-footer__award img { width: 100%; height: auto; display: block; }
