/* =============================================================================
   Comfy Cat Cafe — site.css
   Hand-written. Tokens → base → layout → components → pages → admin overlay →
   responsive. Bump ASSET_VERSION in app/config.php after editing.
   ============================================================================= */

/* ---------------------------------------------------------------- tokens --- */
:root {
  --cream:      #F7F2E9;
  --cream-2:    #FBF8F2;
  --latte:      #EADFCF;
  --sand:       #D9C7AE;
  --sand-2:     #EBE0CE;
  --caramel:    #B8804F;
  --caramel-2:  #9C6A3E;
  --caramel-3:  #D9A66F;
  --espresso:   #2A1F17;
  --espresso-2: #3A2C22;
  --espresso-3: #4A3A2E;
  --ink:        #2F2620;
  --ink-2:      #5B4B3F;
  --muted:      #7D6C5E;
  --sage:       #7E8F63;
  --sage-2:     #5F7048;
  --sage-soft:  #E4E9D8;
  --white:      #FFFDF9;
  --danger:     #B4463A;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius:    22px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow:    0 14px 34px -16px rgba(42, 31, 23, .28);
  --shadow-sm: 0 6px 18px -10px rgba(42, 31, 23, .25);

  --container: 1200px;
  --gutter:    clamp(20px, 4vw, 44px);
  --header-h:  84px;
  --section-y: clamp(64px, 9vw, 120px);
}

/* ------------------------------------------------------------------ base --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--caramel-2); text-decoration: none; text-underline-offset: .15em; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--espresso);
  margin: 0 0 .5em;
  font-variation-settings: 'opsz' 96;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.3rem; font-variation-settings: 'opsz' 40; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--caramel-3); outline-offset: 3px; border-radius: 4px; }
.icon { width: 1.15em; height: 1.15em; flex: none; vertical-align: -.2em; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 3000; background: var(--espresso); color: #fff; padding: 10px 16px; border-radius: var(--radius-xs); }
.skip-link:focus { top: 12px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 860px; }

/* ------------------------------------------------------------ typography --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--caramel-2); margin: 0 0 .9em;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; border-radius: 2px; opacity: .7; }
.eyebrow--light { color: var(--caramel-3); }
.eyebrow .icon { width: 1.3em; height: 1.3em; }
.eyebrow:has(.icon)::before { display: none; }
.section-title { margin-bottom: .45em; }
.section-title--sm { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.section-lead { font-size: 1.1rem; color: var(--ink-2); max-width: 60ch; margin-bottom: 0; }
.section--dark .section-title, .section--cta .section-title, .section--dark .section-lead, .section--cta .section-lead { color: var(--cream); }
.section--dark .section-lead, .section--cta .section-lead { color: rgba(247, 242, 233, .82); }

.prose p { margin-bottom: 1.1em; }
.prose p:last-child { margin-bottom: 0; }
.prose--lg { font-size: 1.125rem; line-height: 1.7; }
.prose--light { color: rgba(247, 242, 233, .86); }

.stars { display: inline-flex; gap: 2px; color: var(--caramel); margin-bottom: 10px; }
.stars .icon { width: 1em; height: 1em; }
.stars .star-on { fill: currentColor; }
.stars .star-off { opacity: .35; }

/* --------------------------------------------------------------- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .8em 1.5em; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: .98rem; line-height: 1.2; cursor: pointer;
  text-decoration: none !important; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn .icon { width: 1.1em; height: 1.1em; transition: transform .2s; }
.btn:hover .icon-arrow { transform: translateX(3px); }
.btn-primary { background: var(--caramel); color: #fff; box-shadow: 0 8px 20px -10px rgba(184, 128, 79, .8); }
.btn-primary:hover { background: var(--caramel-2); transform: translateY(-1px); }
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: var(--espresso-2); transform: translateY(-1px); }
.btn-light { background: var(--cream); color: var(--espresso); }
.btn-light:hover { background: #fff; }
.btn-outline { background: transparent; color: var(--espresso); border-color: var(--sand); }
.btn-outline:hover { border-color: var(--espresso); }
.btn-ghost { background: rgba(255, 253, 249, .14); color: #fff; border-color: rgba(255, 253, 249, .5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 253, 249, .24); border-color: #fff; }
.btn-lg { padding: .95em 1.8em; font-size: 1.05rem; }
.btn-sm { padding: .55em 1.1em; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn-row--center { justify-content: center; }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; color: var(--caramel-2); }
.link-arrow .icon { transition: transform .2s; }
.link-arrow:hover { text-decoration: none; color: var(--espresso); }
.link-arrow:hover .icon { transform: translateX(3px); }

.tag {
  display: inline-flex; align-items: center; gap: .35em;
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .4em .8em; border-radius: 999px;
}
.tag .icon { width: .95em; height: .95em; }
.tag--sage { background: var(--sage); color: #fff; }
.tag--sand { background: var(--latte); color: var(--espresso); }
.tag--dark { background: var(--espresso); color: var(--cream); }

/* -------------------------------------------------------------- sections --- */
.section { padding: var(--section-y) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--latte); }
.section--dark { background: var(--espresso); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark a { color: var(--caramel-3); }

.section-head { display: grid; gap: 24px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { text-align: center; justify-items: center; }
.section-head--center .section-lead { margin-inline: auto; }
.section-head--center .eyebrow::before { display: none; }
.section-head--split { grid-template-columns: 1fr auto; align-items: end; }
.section-head--split .section-head-actions { padding-bottom: 6px; }
.section-head--left .section-head-actions { justify-self: start; }

/* --------------------------------------------------------- announcement --- */
.announce { background: var(--sage-2); color: #fff; font-size: .92rem; font-weight: 600; position: relative; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 0; text-align: center; }

/* ---------------------------------------------------------------- topbar --- */
.topbar { background: var(--espresso); color: rgba(247, 242, 233, .9); font-size: .86rem; position: relative; }
.topbar-inner { display: flex; align-items: center; gap: 22px; min-height: 40px; flex-wrap: nowrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: inherit; white-space: nowrap; }
.topbar-item .icon { color: var(--caramel-3); }
.topbar-item:hover { color: #fff; text-decoration: none; }
.topbar-social { margin-left: auto; display: inline-flex; gap: 4px; }
.topbar-social a { display: inline-flex; padding: 6px; border-radius: 50%; color: inherit; }
.topbar-social a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.topbar-social .icon { width: 1.1rem; height: 1.1rem; }

/* ---------------------------------------------------------------- header --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 242, 233, .96);
  border-bottom: 1px solid var(--sand-2);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--espresso); text-decoration: none !important; }
.brand-mark { display: inline-flex; flex: none; }
.brand-mark svg { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -.01em; }
.brand-tag { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; margin-left: auto; }
.nav-head, .nav-foot, .nav-close { display: none; }
.nav-list { display: flex; list-style: none; gap: 2px; }
.nav-list a {
  display: inline-block; padding: 10px 14px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; color: var(--ink);
  text-decoration: none !important; transition: background .2s, color .2s;
}
.nav-list a:hover { background: var(--latte); color: var(--espresso); }
.nav-list a[aria-current="page"] { background: var(--espresso); color: var(--cream); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--sand);
  background: transparent; cursor: pointer; color: var(--espresso);
}
.nav-toggle .icon { width: 24px; height: 24px; }

/* Overlay header: sits on the hero. top:auto so it lands below the topbar,
   not on it; back to top:0 once stuck. No transforms or filters ever. */
.site-header--overlay {
  position: absolute; top: auto; left: 0; right: 0;
  background: transparent; border-bottom-color: transparent;
  color: var(--cream);
}
.site-header--overlay .brand, .site-header--overlay .brand-tag, .site-header--overlay .nav-list a, .site-header--overlay .nav-toggle { color: var(--cream); }
.site-header--overlay .nav-list a:hover { background: rgba(247, 242, 233, .16); color: #fff; }
.site-header--overlay .nav-list a[aria-current="page"] { background: rgba(247, 242, 233, .22); color: #fff; }
.site-header--overlay .nav-toggle { border-color: rgba(247, 242, 233, .5); }
.site-header--overlay.is-stuck {
  position: fixed; top: 0;
  background: rgba(247, 242, 233, .97); border-bottom-color: var(--sand-2);
  color: var(--ink);
  animation: header-fade .25s ease;
}
.site-header--overlay.is-stuck .brand, .site-header--overlay.is-stuck .nav-list a, .site-header--overlay.is-stuck .nav-toggle { color: var(--espresso); }
.site-header--overlay.is-stuck .brand-tag { color: var(--muted); }
.site-header--overlay.is-stuck .nav-list a:hover { background: var(--latte); }
.site-header--overlay.is-stuck .nav-list a[aria-current="page"] { background: var(--espresso); color: var(--cream); }
.site-header--overlay.is-stuck .nav-toggle { border-color: var(--sand); }
@keyframes header-fade { from { opacity: 0; } to { opacity: 1; } }

.nav-overlay { position: fixed; inset: 0; z-index: 900; background: rgba(42, 31, 23, .55); }
.nav-overlay[hidden] { display: none; }
body.nav-open { overflow: hidden; }
body.nav-open .site-header { z-index: 1000; }

/* ------------------------------------------------------------------ hero --- */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: min(92vh, 860px); padding-top: calc(var(--header-h) + 48px);
  background: var(--espresso); color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 31, 23, .45) 0%, rgba(42, 31, 23, .05) 30%, rgba(42, 31, 23, .78) 100%),
    linear-gradient(90deg, rgba(42, 31, 23, .55) 0%, rgba(42, 31, 23, 0) 60%);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
  gap: 40px; align-items: end; padding-bottom: clamp(48px, 7vw, 92px);
}
.hero-title { color: #fff; font-size: clamp(2.6rem, 6.2vw, 5.2rem); line-height: 1.02; max-width: 13ch; margin-bottom: .35em; font-variation-settings: 'opsz' 144; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 52ch; color: rgba(255, 253, 249, .9); margin-bottom: 0; }
.hero .btn-row { margin-top: 30px; }
.hero-card {
  background: rgba(255, 253, 249, .95); color: var(--ink); border-radius: var(--radius);
  padding: 22px 26px; display: grid; gap: 6px; justify-self: end; min-width: 260px; box-shadow: var(--shadow);
}
.hero-card-label { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--caramel-2); }
.hero-card-hours { font-family: var(--font-display); font-size: 1.5rem; color: var(--espresso); }
.hero-card-sub { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--ink-2); }

/* -------------------------------------------------------------- features --- */
.section--features { padding: clamp(40px, 5vw, 64px) 0; background: var(--cream-2); border-bottom: 1px solid var(--sand-2); }
.features-head { text-align: center; margin-bottom: 28px; }
.features-head .eyebrow::before { display: none; }
.features-head .section-title { margin-bottom: 0; }
.features-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; align-items: start; padding: 20px 22px; background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius-sm); }
.feature-icon { grid-row: span 2; width: 48px; height: 48px; border-radius: 14px; background: var(--latte); color: var(--caramel-2); display: inline-flex; align-items: center; justify-content: center; }
.feature-icon .icon { width: 24px; height: 24px; }
.feature-title { font-size: 1.05rem; margin: 0; }
.feature-text { font-size: .92rem; color: var(--ink-2); margin: 0; }

/* ----------------------------------------------------------------- cards --- */
.card-grid { display: grid; gap: 26px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--sand-2); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--latte); }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img { transform: scale(1.04); }
.card-body { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card--post .card-body { padding-top: 22px; }
.card-icon {
  width: 50px; height: 50px; border-radius: 50%; background: var(--latte); color: var(--caramel-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: -25px; position: relative; z-index: 1; border: 4px solid var(--white); box-shadow: var(--shadow-sm);
}
.card-icon .icon { width: 22px; height: 22px; }
.card-title { font-size: 1.35rem; margin: 6px 0 0; }
.card-title a { color: inherit; }
.card-sub { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--caramel-2); margin: 0; }
.card-text { color: var(--ink-2); margin: 0; }
.card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px dashed var(--sand); }
.card-price { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--espresso); }
.card-date { font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------------------------------------------ split --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-text .section-title { margin-bottom: .55em; }
.photo-stack { position: relative; padding-right: 18%; padding-bottom: 14%; }
.photo-stack-main { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-stack-small {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius); border: 8px solid var(--latte); box-shadow: var(--shadow);
}
.section:not(.section--alt) .photo-stack-small { border-color: var(--cream); }
.photo-stack-badge {
  position: absolute; left: -14px; top: 28px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--caramel); color: #fff; font-weight: 700; font-size: .85rem;
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.photo-stack--right { padding-right: 0; padding-left: 18%; }
.photo-stack--right .photo-stack-small { right: auto; left: 0; }
.photo-stack--right .photo-stack-badge { left: auto; right: -14px; }
.photo-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* --------------------------------------------------------------- counters --- */
.counters {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: clamp(48px, 6vw, 80px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--sand); position: relative;
}
.counter { display: grid; gap: 4px; justify-items: center; text-align: center; }
.counter-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--white); color: var(--caramel-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.counter-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1; color: var(--espresso); }
.counter-label { font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.counters--dark { margin-top: 0; padding-top: 0; border-top: 0; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.counters--dark .counter-num { color: var(--caramel-3); }
.counters--dark .counter-label { color: rgba(247, 242, 233, .7); }

/* ------------------------------------------------------------------- cats --- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--sand-2); box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-media { position: relative; aspect-ratio: 1; background: var(--latte); overflow: hidden; }
.cat-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.cat-card:hover .cat-img { transform: scale(1.05); }
.cat-media .tag { position: absolute; left: 12px; top: 12px; box-shadow: var(--shadow-sm); }
.cat-body { padding: 18px 20px 22px; }
.cat-name { font-size: 1.35rem; margin: 0 0 2px; }
.cat-meta { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--caramel-2); margin: 0 0 8px; }
.cat-text { font-size: .95rem; color: var(--ink-2); margin: 0; }

/* ------------------------------------------------------------------- menu --- */
.split--menu { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; }
.menu-photo { margin-top: 28px; }
.menu-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.menu-groups { display: grid; gap: 30px; }
.menu-group-title { font-size: .85rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--caramel-3); font-family: var(--font-body); margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(247, 242, 233, .15); }
.menu-list { list-style: none; display: grid; gap: 14px; }
.menu-item { display: grid; gap: 2px; }
.menu-item-head { display: flex; align-items: baseline; gap: 10px; }
.menu-item-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: inherit; }
.menu-dots { flex: 1; border-bottom: 2px dotted rgba(247, 242, 233, .35); transform: translateY(-.35em); min-width: 24px; }
.menu-price { font-weight: 700; color: var(--caramel-3); font-variant-numeric: tabular-nums; }
.menu-item-desc { font-size: .9rem; color: rgba(247, 242, 233, .68); }
.section--dark .menu-groups .btn-row { margin-top: 8px; }

/* menu page (light) */
.menu-page { display: grid; gap: clamp(36px, 5vw, 56px); }
.menu-page-title { font-size: clamp(1.5rem, 2.4vw, 1.9rem); padding-bottom: 12px; border-bottom: 2px solid var(--sand); margin-bottom: 18px; }
.menu-list--cols { grid-template-columns: repeat(2, 1fr); column-gap: 48px; row-gap: 18px; }
.menu-page .menu-item-name { color: var(--espresso); }
.menu-page .menu-dots { border-bottom-color: var(--sand); }
.menu-page .menu-price { color: var(--caramel-2); }
.menu-page .menu-item-desc { color: var(--ink-2); }
.menu-note { display: inline-flex; align-items: center; gap: 10px; margin-top: 36px; padding: 14px 20px; background: var(--sage-soft); color: var(--sage-2); border-radius: 999px; font-weight: 600; font-size: .95rem; }

/* ---------------------------------------------------------------- process --- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; position: relative; }
.step { position: relative; background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 30px 26px 26px; }
.step-num { position: absolute; top: -16px; left: 22px; width: 34px; height: 34px; border-radius: 50%; background: var(--espresso); color: var(--cream); font-family: var(--font-display); font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
.step-icon { width: 54px; height: 54px; border-radius: 16px; background: var(--latte); color: var(--caramel-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-icon .icon { width: 26px; height: 26px; }
.step-title { font-size: 1.2rem; margin-bottom: 6px; }
.step-text { color: var(--ink-2); margin: 0; font-size: .97rem; }

/* ---------------------------------------------------------------- pricing --- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); }
.tier--featured { background: var(--espresso); color: var(--cream); border-color: var(--espresso); transform: translateY(-10px); box-shadow: var(--shadow); }
.tier--featured .tier-title, .tier--featured .tier-price { color: var(--cream); }
.tier-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--caramel); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.tier-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--latte); color: var(--caramel-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tier--featured .tier-icon { background: rgba(247, 242, 233, .12); color: var(--caramel-3); }
.tier-title { font-size: 1.35rem; margin-bottom: 4px; }
.tier-price { display: flex; align-items: baseline; gap: 8px; margin: 0 0 20px; font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; line-height: 1; color: var(--espresso); }
.tier-price small { font-family: var(--font-body); font-size: .9rem; font-weight: 600; color: var(--muted); }
.tier--featured .tier-price small { color: rgba(247, 242, 233, .7); }
.tier-list { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; font-size: .97rem; }
.tier-list li { display: flex; gap: 10px; align-items: flex-start; }
.tier-list .icon { color: var(--sage); margin-top: .2em; }
.tier--featured .tier-list .icon { color: var(--caramel-3); }
.tier-btn { margin-top: auto; }
.tier--featured .btn-outline { color: var(--cream); border-color: rgba(247, 242, 233, .4); }

/* ---------------------------------------------------------------- gallery --- */
.gallery { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; grid-auto-flow: dense; gap: 16px; }
.gallery-item--tall { grid-row: span 2; }
.gallery figure { margin: 0; position: relative; height: 100%; border-radius: var(--radius-sm); overflow: hidden; background: var(--latte); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px; font-size: .85rem; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(42, 31, 23, .8), rgba(42, 31, 23, 0)); opacity: 0; transition: opacity .25s;
}
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; }

/* ---------------------------------------------------------- testimonials --- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { position: relative; margin: 0; background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 30px 28px 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.quote-mark { position: absolute; top: 18px; right: 22px; color: var(--latte); }
.quote-mark .icon { width: 42px; height: 42px; }
.quote blockquote { margin: 0 0 22px; }
.quote blockquote p { margin: 0; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; color: var(--espresso); font-variation-settings: 'opsz' 40; }
.quote-who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote-who span { display: flex; flex-direction: column; line-height: 1.25; }
.quote-who strong { font-size: .98rem; }
.quote-who small { color: var(--muted); font-size: .84rem; }
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.quote-avatar--initial { display: inline-flex; align-items: center; justify-content: center; background: var(--latte); color: var(--caramel-2); font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.quotes:has(> :nth-child(4)) { grid-template-columns: repeat(3, 1fr); }

/* ------------------------------------------------------------------ deals --- */
.section--deals { background: var(--cream-2); border-top: 1px solid var(--sand-2); border-bottom: 1px solid var(--sand-2); }
.deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deal { position: relative; background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-sm); }
.deal-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--sage-soft); color: var(--sage-2); display: inline-flex; align-items: center; justify-content: center; }
.deal-price { position: absolute; top: 24px; right: 24px; background: var(--caramel); color: #fff; font-family: var(--font-display); font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.deal-title { font-size: 1.3rem; margin: 10px 0 0; }
.deal-when { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 0; }
.deal-text { color: var(--ink-2); margin: 4px 0 8px; }
.deal .link-arrow { margin-top: auto; }

/* -------------------------------------------------------------------- faq --- */
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq-layout .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 24px); }
.faq-list { display: grid; gap: 12px; }
.faq { background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius-sm); padding: 0 22px; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--espresso); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { width: 22px; height: 22px; color: var(--caramel-2); transition: transform .25s; flex: none; }
.faq[open] summary .icon { transform: rotate(180deg); }
.faq-answer { padding: 0 0 20px; color: var(--ink-2); }
.faq-answer p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------- cta --- */
.section--cta { position: relative; background: var(--espresso); color: var(--cream); overflow: hidden; }
.cta-media { position: absolute; inset: 0; }
.cta-img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.cta-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(42, 31, 23, .92) 0%, rgba(42, 31, 23, .55) 60%, rgba(42, 31, 23, .8) 100%); }
.cta-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.cta-points { list-style: none; display: grid; gap: 10px; margin: 24px 0; }
.cta-points li { display: flex; align-items: center; gap: 10px; }
.cta-points .icon { color: var(--caramel-3); }
.cta-alt { color: rgba(247, 242, 233, .75); margin: 0; }
.cta-alt a { color: var(--caramel-3); font-weight: 700; }

/* ------------------------------------------------------------------ forms --- */
.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); border: 1px solid var(--sand-2); }
.form-title { margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--wide { grid-column: 1 / -1; }
.field-label { font-size: .86rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-2); }
.field-label small { font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--cream-2);
  border: 2px solid var(--sand-2); border-radius: var(--radius-sm); padding: 12px 14px;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--caramel); background: #fff; }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-error { font-size: .84rem; color: var(--danger); font-weight: 600; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 22px; }
.form-note { font-size: .9rem; color: var(--muted); }
.form-paused { margin: 0; padding: 16px 18px; background: var(--latte); border-radius: var(--radius-sm); }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.flash { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; }
.flash--success { background: var(--sage-soft); color: var(--sage-2); }
.flash--error { background: #F6E3DF; color: var(--danger); }
.form-card--compact .form-grid { gap: 12px 14px; }

/* ----------------------------------------------------------------- footer --- */
.site-footer { background: var(--espresso); color: rgba(247, 242, 233, .85); padding: clamp(56px, 7vw, 88px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(247, 242, 233, .12); }
.footer-brand { position: relative; }
.brand--footer { color: var(--cream); margin-bottom: 16px; }
.brand--footer .brand-mark svg { width: 40px; height: 40px; }
.footer-blurb { color: rgba(247, 242, 233, .72); max-width: 40ch; }
.footer-title { font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--caramel-3); margin-bottom: 16px; }
.footer-address { display: flex; flex-direction: column; margin-bottom: 14px; }
.footer-list { list-style: none; display: grid; gap: 8px; }
.footer-list a { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.footer-list a:hover { color: #fff; }
.footer-list .icon { color: var(--caramel-3); }
.footer-col { position: relative; }
.hours-list { list-style: none; display: grid; gap: 6px; }
.hours-list li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 6px; border-bottom: 1px dashed rgba(247, 242, 233, .12); font-size: .95rem; }
.hours-list li.is-today { color: #fff; font-weight: 700; }
.hours-list li.is-today span:first-child::after { content: ' · today'; font-weight: 600; font-size: .8em; color: var(--caramel-3); }
.social-row { display: flex; gap: 8px; margin-top: 18px; }
.social-row a { display: inline-flex; padding: 10px; border-radius: 50%; background: rgba(247, 242, 233, .1); color: var(--cream); }
.social-row a:hover { background: var(--caramel); color: #fff; }
.social-row--dark a { background: var(--latte); color: var(--espresso); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding: 22px 0 28px; font-size: .88rem; color: rgba(247, 242, 233, .6); }
.footer-bottom a { color: var(--caramel-3); }

/* ----------------------------------------------------------- inner pages --- */
.page-hero { position: relative; background: var(--latte); padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 5vw, 64px); overflow: hidden; }
.page-title { margin-bottom: .3em; }
.page-lead { font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; margin: 0; }
.page-hero--image { background: var(--espresso); color: var(--cream); min-height: 380px; display: flex; align-items: flex-end; padding-top: clamp(80px, 12vw, 140px); }
.page-hero--image .page-title { color: #fff; }
.page-hero--image .page-lead { color: rgba(247, 242, 233, .85); }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42, 31, 23, .25) 0%, rgba(42, 31, 23, .82) 100%); }
.page-hero--image .container { position: relative; }
.page-hero--post { background: var(--cream); padding-bottom: 24px; }
.crumbs { margin-bottom: 18px; font-size: .86rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: '/'; margin-right: 6px; opacity: .5; }
.crumbs a { color: inherit; opacity: .75; }
.crumbs a:hover { opacity: 1; }
.crumbs [aria-current] { font-weight: 700; }
.page-hero--image .crumbs { color: rgba(247, 242, 233, .85); }

.service-rows { display: grid; gap: clamp(40px, 6vw, 72px); }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.service-row--flip .service-row-media { order: 2; }
.service-row-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.service-row-text .card-icon { margin-top: 0; border-color: var(--latte); }
.service-row-title { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 12px 0 4px; }
.service-row-title a { color: inherit; }
.service-row-summary { color: var(--ink-2); font-size: 1.05rem; }
.service-row .card-foot { border-top: 0; padding-top: 0; justify-content: flex-start; gap: 20px; }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, .8fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.detail-side { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 24px); }
.side-card { background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 24px 26px; position: relative; }
.side-card .card-icon { margin-top: 0; border-color: var(--white); margin-bottom: 10px; }
.side-card .btn { margin-top: 10px; }
.side-title { font-size: 1.1rem; margin-bottom: 12px; }
.side-price { font-family: var(--font-display); font-weight: 600; font-size: 1.8rem; color: var(--espresso); margin: 0 0 6px; }
.side-text { color: var(--ink-2); font-size: .97rem; margin: 0 0 6px; }
.side-list { list-style: none; display: grid; gap: 8px; }
.side-list a { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; }
.side-list a:hover { color: var(--caramel-2); }
.side-list .icon { color: var(--caramel-2); }
.side-prices { list-style: none; display: grid; gap: 8px; margin-bottom: 12px; }
.side-prices li { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px dashed var(--sand); }
.side-prices small { color: var(--muted); }
.side-prices strong { font-family: var(--font-display); font-size: 1.15rem; }
.side-address { display: flex; flex-direction: column; margin-bottom: 10px; }
.side-card--note { background: var(--sage-soft); border-color: transparent; }
.side-card--note .card-icon { background: #fff; color: var(--sage-2); }
.hours-list--compact li { border-bottom-color: var(--sand-2); }
.hours-list--compact li.is-today { color: var(--espresso); }
.hours-list--compact li.is-today span:first-child::after { color: var(--caramel-2); }

.book-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.book-side { display: grid; gap: 20px; }
.book-main { position: relative; }
.book-note { display: flex; gap: 12px; align-items: flex-start; background: var(--latte); padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 22px; }
.book-note .icon { color: var(--caramel-2); margin-top: .2em; }
.map-band { background: var(--latte); }
.map-band iframe { width: 100%; height: 380px; border: 0; filter: saturate(.8); }

.band { background: var(--latte); padding: clamp(40px, 5vw, 64px) 0; }
.band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.band-title { margin-bottom: .2em; font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.band-text { margin: 0; color: var(--ink-2); }

.mission { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.person { text-align: center; }
.person-media { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--latte); margin-bottom: 16px; }
.person-media img { width: 100%; height: 100%; object-fit: cover; }
.person-name { font-size: 1.2rem; margin: 0 0 2px; }
.person-role { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--caramel-2); margin: 0 0 8px; }
.person-bio { font-size: .93rem; color: var(--ink-2); margin: 0; }
.partner-line { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin: 16px 0 0; }
.partner-line .icon { color: var(--sage); }

.post { position: relative; }
.post-date { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.post-figure { margin: 0 0 clamp(32px, 4vw, 48px); }
.post-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.post-body { padding-bottom: clamp(32px, 4vw, 48px); }
.post-foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0 clamp(48px, 6vw, 80px); border-top: 1px solid var(--sand); }
.post-foot .link-arrow .icon { transform: rotate(180deg); }
.draft-flag { display: inline-block; background: var(--danger); color: #fff; font-size: .8rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-top: 12px; }
.pager { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.pager-info { color: var(--muted); font-size: .92rem; }
.empty { text-align: center; color: var(--muted); }

.notfound-inner { text-align: center; padding: clamp(32px, 6vw, 80px) 0; }
.notfound-mark { display: inline-flex; width: 96px; height: 96px; border-radius: 50%; background: var(--latte); color: var(--caramel-2); align-items: center; justify-content: center; margin-bottom: 22px; }
.notfound-mark .icon { width: 52px; height: 52px; }
.notfound .eyebrow::before { display: none; }
.notfound .page-lead { margin-inline: auto; }

/* ------------------------------------------------- admin bar + pencil --- */
body.is-admin { padding-bottom: 52px; }
.ltk-adminbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2147483000;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: var(--espresso); color: var(--cream); padding: 8px 18px; font-size: .88rem;
  border-top: 2px solid var(--caramel); box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, .5);
}
.ltk-adminbar-user { display: inline-flex; align-items: center; gap: 8px; }
.ltk-adminbar-user .icon { color: var(--caramel-3); }
.ltk-adminbar-links { display: flex; gap: 4px; flex-wrap: wrap; }
.ltk-adminbar-links a { color: var(--cream); padding: 6px 12px; border-radius: 999px; font-weight: 700; text-decoration: none; }
.ltk-adminbar-links a:hover { background: rgba(247, 242, 233, .12); }
.ltk-adminbar-links a.is-primary { background: var(--caramel); color: #fff; }
.ltk-edit { position: absolute; width: 0; height: 0; overflow: hidden; opacity: 0; pointer-events: none; }
.ltk-editable { position: relative; }
body.is-admin .ltk-editable.ltk-hover { outline: 2px dashed rgba(184, 128, 79, .8); outline-offset: -2px; }
.ltk-pencil {
  position: fixed; z-index: 2147483647; display: none; align-items: center; gap: 8px;
  background: var(--caramel); color: #fff; padding: 8px 14px 8px 10px; border-radius: 999px;
  font: 700 .82rem/1 var(--font-body); text-decoration: none !important; box-shadow: var(--shadow);
  white-space: nowrap; transition: background .15s;
}
.ltk-pencil .icon { width: 16px; height: 16px; }
.ltk-pencil.is-visible { display: inline-flex; }
.ltk-pencil:hover { background: var(--espresso); }

/* ------------------------------------------------------------- reveals --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .card, .cat-card, .card-img, .cat-img { transition: none; } }

/* ------------------------------------------------------------ responsive --- */
@media (max-width: 1100px) {
  .card-grid--3 { gap: 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 72px; }
  /* The header must not create a containing block here: no transforms, no
     filters. The drawer is position:fixed inside it and sizes to the viewport. */
  .site-header, .site-header--overlay.is-stuck { backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; animation: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 380px);
    margin: 0; display: flex; flex-direction: column; align-items: stretch;
    background: var(--cream); color: var(--ink); box-shadow: -20px 0 60px -20px rgba(0, 0, 0, .5);
    transform: translateX(105%); transition: transform .3s ease; overflow-y: auto; padding: 0 22px 28px;
  }
  body.nav-open .nav { transform: none; }
  .nav-head { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); border-bottom: 1px solid var(--sand-2); margin-bottom: 12px; }
  .nav-head-title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--espresso); }
  .nav-close { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--sand); background: transparent; cursor: pointer; color: var(--espresso); }
  .nav-close .icon { width: 22px; height: 22px; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-list a, .site-header--overlay .nav-list a { display: block; padding: 14px 16px; font-size: 1.15rem; font-family: var(--font-display); font-weight: 600; color: var(--espresso); border-radius: var(--radius-sm); }
  .nav-list a:hover, .site-header--overlay .nav-list a:hover { background: var(--latte); }
  .nav-list a[aria-current="page"], .site-header--overlay .nav-list a[aria-current="page"] { background: var(--espresso); color: var(--cream); }
  .nav-foot { display: flex; flex-direction: column; gap: 14px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--sand-2); }
  .nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--espresso); }
  .nav-social { display: flex; gap: 8px; }
  .nav-social a { display: inline-flex; padding: 10px; border-radius: 50%; background: var(--latte); color: var(--espresso); }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; }
  .split, .split--menu, .faq-layout, .detail-layout, .book-layout, .cta-inner, .mission, .service-row { grid-template-columns: 1fr; }
  .service-row--flip .service-row-media { order: 0; }
  .faq-layout .section-head, .detail-side { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .tiers { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .tier--featured { transform: none; }
  .quotes, .deals { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .photo-stack { max-width: 560px; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .quotes, .deals { grid-template-columns: 1fr; }
  .section-head--split { grid-template-columns: 1fr; }
  .section-head--split .section-head-actions { padding-bottom: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .form-grid { grid-template-columns: 1fr; }
  .band-inner { flex-direction: column; align-items: flex-start; }
  .post-foot { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 64px); }
  .hero-title { max-width: none; }
  .hero-card { width: 100%; }
  .menu-list--cols { grid-template-columns: 1fr; }
  .brand-tag { display: none; }
  .header-cta { display: none; }
  .topbar-address { display: none; }
}

@media (max-width: 600px) {
  /* Topbar: hours + phone only. Socials and address wrap it to two rows otherwise. */
  .topbar-social { display: none; }
  .topbar-inner { gap: 16px; font-size: .82rem; }
}

@media (max-width: 480px) {
  .features-grid, .cat-grid, .steps, .team-grid, .counters { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-body { padding: 12px 14px 16px; }
  .cat-name { font-size: 1.1rem; }
  .cat-text { display: none; }
  .brand-name { font-size: 1.15rem; }
  .brand-mark svg { width: 38px; height: 38px; }
  .btn-lg { padding: .85em 1.4em; font-size: 1rem; }
  .hero .btn-row .btn { flex: 1 1 auto; }
  .gallery { grid-auto-rows: 140px; }
  .ltk-adminbar { font-size: .8rem; padding: 8px 12px; }
  .ltk-adminbar-user { display: none; }
}

@media (max-width: 380px) {
  .topbar-inner { gap: 10px; }
  .topbar-item span { font-size: .78rem; }
  .hero-title { font-size: 2.3rem; }
}
