/* ============================================================
   VISIT CENTRAL VALLEY — Design System
   A warm, editorial travel brand for California's heartland.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette — sun, soil, orchard, sky */
  --gold-50:  #fdf8ee;
  --gold-100: #f9eccf;
  --gold-200: #f2d99b;
  --gold-300: #e9bf63;
  --gold-400: #e0a63a;   /* primary gold / sunshine */
  --gold-500: #c8862a;
  --gold-600: #a2661f;

  --green-50:  #eef4ec;
  --green-100: #d3e5cd;
  --green-400: #4f7a45;
  --green-600: #2f5a2c;   /* deep orchard/forest green */
  --green-700: #22421f;
  --green-900: #14281a;   /* near-black forest */

  --sky-300:  #8ec5d8;
  --sky-500:  #3f92ad;    /* river/sky accent */
  --clay-500: #c25a3a;    /* warm terracotta accent */

  --ink:      #201a12;    /* body text (warm near-black) */
  --ink-soft: #5b5346;
  --cream:    #fbf7ef;    /* page background */
  --cream-2:  #f4ecdd;
  --white:    #ffffff;
  --line:     #e7ddca;    /* hairline borders */

  /* Typography */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4.5rem);
  --step-5:  clamp(3.2rem, 2.2rem + 5vw, 6rem);

  /* Layout */
  --wrap: 1240px;
  --wrap-narrow: 820px;
  --gutter: clamp(1.2rem, 4vw, 3rem);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(32, 26, 18, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(32, 26, 18, 0.22);
  --shadow-lg: 0 30px 60px -20px rgba(32, 26, 18, 0.35);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--green-900);
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

::selection { background: var(--gold-300); color: var(--green-900); }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--gutter) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 4vw, 4rem); }
.section--cream2 { background: var(--cream-2); }
.section--forest { background: var(--green-900); color: var(--cream); }
.section--forest h2, .section--forest h3 { color: var(--cream); }

/* ---------- Reusable bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold-400); border-radius: 2px;
}
.section--forest .eyebrow { color: var(--gold-300); }
.section--forest .eyebrow::before { background: var(--gold-300); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { color: var(--ink-soft); margin-top: 1rem; font-size: var(--step-1); line-height: 1.5; }
.section--forest .section-head p { color: rgba(251,247,239,0.75); }

.section-head--split {
  max-width: none; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.section-head--split > div { max-width: 640px; }

.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: var(--step-0);
  line-height: 1; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), box-shadow 0.35s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--gold-400); color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-300); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--green-900); color: var(--cream); }
.btn--dark:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn--ghost:hover { background: var(--white); color: var(--green-900); box-shadow: inset 0 0 0 1.5px transparent; transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Text link with arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; color: var(--green-600);
  letter-spacing: 0.01em;
}
.arrow-link svg { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }
.section--forest .arrow-link { color: var(--gold-300); }

/* Chips / tags */
.chip {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.4em 0.9em; border-radius: var(--radius-pill);
  font-size: var(--step--1); font-weight: 600;
  background: var(--gold-100); color: var(--gold-600);
  letter-spacing: 0.02em;
}
.chip--green { background: var(--green-100); color: var(--green-600); }
.chip--outline { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink-soft); }

/* Fade-in on scroll */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Media placeholder gradient (used behind images so nothing looks broken) */
.media { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-400), var(--sky-500)); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.topbar {
  background: var(--green-900); color: var(--cream);
  font-size: var(--step--1); letter-spacing: 0.01em;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.55rem; }
.topbar__msg { display: flex; align-items: center; gap: 0.6em; }
.topbar__msg strong { color: var(--gold-300); font-weight: 700; }
.topbar__links { display: flex; align-items: center; gap: 1.4rem; }
.topbar__links a { opacity: 0.85; transition: opacity 0.2s; }
.topbar__links a:hover { opacity: 1; }
@media (max-width: 780px) { .topbar__links { display: none; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 239, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text b { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--green-900); letter-spacing: -0.01em; }
.brand__text span { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 0.25rem; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.35em;
  padding: 0.6rem 0.85rem; border-radius: 10px;
  font-weight: 500; font-size: 0.96rem; color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav__link svg { width: 0.8em; height: 0.8em; opacity: 0.6; transition: transform 0.3s var(--ease); }
.nav__item:hover .nav__link { background: var(--gold-100); color: var(--green-900); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: max-content; max-width: 720px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.4rem; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 120;
}
.nav__item:hover .mega,
.nav__item:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega::before { /* bridge for hover gap */
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.mega__grid { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 0.2rem 1.5rem; }
.mega--wide .mega__grid { grid-template-columns: repeat(3, minmax(160px, 1fr)); }
.mega__link { display: flex; gap: 0.75rem; padding: 0.6rem 0.7rem; border-radius: 12px; transition: background 0.2s; }
.mega__link:hover { background: var(--gold-50); }
.mega__ico { width: 34px; height: 34px; border-radius: 9px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; flex-shrink: 0; }
.mega__ico svg { width: 18px; height: 18px; }
.mega__link b { display: block; font-weight: 600; font-size: 0.92rem; color: var(--green-900); }
.mega__link span { display: block; font-size: 0.78rem; color: var(--ink-soft); line-height: 1.35; }
.mega__foot { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.mega__foot p { font-size: 0.82rem; color: var(--ink-soft); }

.nav__actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--green-900); transition: background 0.2s; }
.icon-btn:hover { background: var(--gold-100); }
.icon-btn svg { width: 20px; height: 20px; }
.nav__cta { padding: 0.7em 1.3em; font-size: 0.92rem; }

.nav__toggle { display: none; }

@media (max-width: 1080px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: grid; }
}
@media (max-width: 520px) {
  .brand__text span { display: none; }
  .brand__text b { font-size: 1.05rem; }
  .brand__mark { width: 36px; height: 36px; }
  .nav { gap: 0.6rem; }
  .nav__actions { gap: 0.15rem; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200; visibility: hidden;
  overflow: hidden; /* clip the off-canvas panel so it can't widen the page */
}
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(20, 40, 26, 0.5); opacity: 0; transition: opacity 0.3s; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(88%, 400px);
  background: var(--cream); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem var(--gutter); border-bottom: 1px solid var(--line); }
.drawer__nav { padding: 0.5rem var(--gutter) 2rem; }
.drawer__group { border-bottom: 1px solid var(--line); }
.drawer__grouphead {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 0.2rem; font-family: var(--font-display); font-size: 1.2rem; color: var(--green-900); text-align: left;
}
.drawer__grouphead svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease); color: var(--gold-600); }
.drawer__group.is-open .drawer__grouphead svg { transform: rotate(45deg); }
.drawer__sub { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.drawer__group.is-open .drawer__sub { max-height: 600px; }
.drawer__sub a { display: block; padding: 0.55rem 0.2rem; color: var(--ink-soft); font-weight: 500; }
.drawer__sub a:hover { color: var(--gold-600); }
.drawer__foot { margin-top: auto; padding: 1.5rem var(--gutter); display: grid; gap: 0.7rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: min(90vh, 820px); display: flex; flex-direction: column; justify-content: flex-end; color: var(--cream); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(120% 90% at 70% 10%, #f0b64d 0%, rgba(240,182,77,0) 45%),
  linear-gradient(180deg, #6ba6c0 0%, #4f7a45 55%, #22421f 100%); }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(20,40,26,0.32) 0%, rgba(20,40,26,0.12) 38%, rgba(20,40,26,0.86) 100%); }
.hero__inner { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem); }
.hero__eyebrow { color: var(--gold-200); }
.hero__eyebrow::before { background: var(--gold-200); }
.hero h1 { color: var(--white); max-width: 15ch; margin-block: 1.1rem 1.3rem; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero h1 em { font-style: italic; color: var(--gold-200); }
.hero__sub { font-size: var(--step-1); max-width: 44ch; color: rgba(251,247,239,0.92); line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

/* Hero search bar */
.hero-search {
  margin-top: 2.2rem; background: rgba(251,247,239,0.96); border-radius: var(--radius-pill);
  padding: 0.5rem 0.5rem 0.5rem 1.4rem; display: flex; align-items: center; gap: 0.75rem;
  max-width: min(560px, 100%); box-shadow: var(--shadow-lg);
}
.hero-search svg { width: 20px; height: 20px; color: var(--ink-soft); flex-shrink: 0; }
.hero-search input { flex: 1; min-width: 0; border: none; background: none; color: var(--ink); font-size: var(--step-0); outline: none; }
.hero-search input::placeholder { color: var(--ink-soft); }
.hero-search .btn { flex-shrink: 0; }

.hero__scroll { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251,247,239,0.75); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll span { width: 1px; height: 34px; background: rgba(251,247,239,0.5); animation: scrollcue 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes scrollcue { 0%,100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { background: var(--white); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(1.6rem, 3vw, 2.6rem) 1.5rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-family: var(--font-display); font-size: var(--step-3); color: var(--green-600); line-height: 1; }
.stat span { display: block; margin-top: 0.5rem; font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ============================================================
   PARKS — feature cards
   ============================================================ */
.parks__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.park-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 460px; display: flex; align-items: flex-end; color: var(--cream);
  box-shadow: var(--shadow-md); isolation: isolate;
}
.park-card .media { position: absolute; inset: 0; z-index: -2; }
.park-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,40,26,0) 30%, rgba(20,40,26,0.85) 100%); }
.park-card:hover .media img { transform: scale(1.07); }
.park-card__body { padding: 1.8rem; width: 100%; }
.park-card__body .chip { margin-bottom: 0.9rem; background: rgba(251,247,239,0.2); color: var(--cream); backdrop-filter: blur(4px); }
.park-card h3 { color: var(--white); font-size: var(--step-2); }
.park-card p { margin-top: 0.5rem; color: rgba(251,247,239,0.85); font-size: 0.95rem; }
.park-card__meta { margin-top: 1.1rem; display: flex; gap: 1.2rem; font-size: 0.85rem; color: rgba(251,247,239,0.9); }
.park-card__meta span { display: inline-flex; align-items: center; gap: 0.4em; }
.park-card__meta svg { width: 1em; height: 1em; opacity: 0.8; }
@media (max-width: 900px) { .parks__grid { grid-template-columns: 1fr; } .park-card { min-height: 380px; } }

/* ============================================================
   CITIES — grid
   ============================================================ */
.cities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.city-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; display: flex; align-items: flex-end; color: var(--cream); box-shadow: var(--shadow-sm); isolation: isolate; }
.city-card .media { position: absolute; inset: 0; z-index: -2; }
.city-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,40,26,0) 45%, rgba(20,40,26,0.8) 100%); }
.city-card:hover .media img { transform: scale(1.08); }
.city-card__body { padding: 1.1rem 1.2rem; }
.city-card h3 { color: var(--white); font-size: var(--step-1); }
.city-card span { font-size: 0.8rem; color: rgba(251,247,239,0.82); }
@media (max-width: 900px) { .cities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .cities__grid { grid-template-columns: 1fr; } }

/* ============================================================
   THINGS TO DO — category tiles
   ============================================================ */
.cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  display: flex; flex-direction: column; gap: 0.9rem; min-height: 170px;
}
.cat-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-tile__ico { width: 52px; height: 52px; border-radius: 14px; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; }
.cat-tile__ico svg { width: 26px; height: 26px; }
.cat-tile:nth-child(4n+2) .cat-tile__ico { background: var(--green-50); color: var(--green-600); }
.cat-tile:nth-child(4n+3) .cat-tile__ico { background: #e4f0f4; color: var(--sky-500); }
.cat-tile:nth-child(4n+4) .cat-tile__ico { background: #f6e2da; color: var(--clay-500); }
.cat-tile h3 { font-size: var(--step-0); font-weight: 650; }
.cat-tile p { font-size: 0.85rem; color: var(--ink-soft); margin-top: -0.4rem; }
.cat-tile__count { margin-top: auto; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-600); }
@media (max-width: 940px) { .cats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   EXPERIENCES / ITINERARIES — cards
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .media { aspect-ratio: 16 / 11; }
.card:hover .media img { transform: scale(1.06); }
.card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.card__meta { display: flex; align-items: center; gap: 0.7rem; font-size: 0.8rem; color: var(--ink-soft); }
.card__meta .chip { margin: 0; }
.card h3 { font-size: var(--step-1); }
.card p { font-size: 0.92rem; color: var(--ink-soft); }
.card__foot { margin-top: auto; padding-top: 0.4rem; }
@media (max-width: 940px) { .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ============================================================
   TASTE / SPLIT FEATURE
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.split__media { position: relative; }
.split__media .media { border-radius: var(--radius-lg); aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-md); }
.split__media .media--float {
  position: absolute; bottom: -2rem; right: -1.5rem; width: 46%; aspect-ratio: 1; border-radius: var(--radius);
  border: 6px solid var(--cream); box-shadow: var(--shadow-md);
}
.section--forest .split__media .media--float { border-color: var(--green-900); }
.split__list { margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.split__list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.split__list .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.split__list .tick svg { width: 15px; height: 15px; }
.split__list b { font-weight: 650; color: var(--green-900); }
.section--forest .split__list b { color: var(--cream); }
.split__list span { color: var(--ink-soft); font-size: 0.92rem; }
.section--forest .split__list span { color: rgba(251,247,239,0.7); }
.split__cta { margin-top: 1.8rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
@media (max-width: 860px) {
  .split, .split--rev { grid-template-columns: 1fr; direction: ltr; }
  .split__media { order: -1; }
  .split__media .media--float { width: 38%; right: 1rem; }
}

/* ============================================================
   EVENTS
   ============================================================ */
.events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.event {
  display: flex; gap: 1.2rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.event:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event__date { flex-shrink: 0; width: 62px; text-align: center; border-radius: 12px; background: var(--green-900); color: var(--cream); padding: 0.6rem 0; height: fit-content; }
.event__date b { display: block; font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--gold-300); }
.event__date span { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 3px; }
.event__body h3 { font-size: var(--step-0); font-weight: 650; }
.event__body .meta { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.3rem; display: flex; flex-wrap: wrap; gap: 0.3rem 0.9rem; }
.event__body .meta span { display: inline-flex; align-items: center; gap: 0.35em; }
.event__body .meta svg { width: 0.9em; height: 0.9em; color: var(--gold-600); }
.event__body .chip { margin-top: 0.7rem; }
@media (max-width: 940px) { .events__grid { grid-template-columns: 1fr; } }

/* ============================================================
   ROAD TRIPS / SEASONS
   ============================================================ */
.seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.season { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; color: var(--cream); isolation: isolate; }
.season .media { position: absolute; inset: 0; z-index: -2; }
.season::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,40,26,0) 40%, rgba(20,40,26,0.82) 100%); }
.season:hover .media img { transform: scale(1.07); }
.season__body { padding: 1.2rem; }
.season__body b { font-family: var(--font-display); font-size: var(--step-1); color: var(--white); display: block; }
.season__body span { font-size: 0.82rem; color: rgba(251,247,239,0.82); }
@media (max-width: 940px) { .seasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .seasons { grid-template-columns: 1fr; } }

/* ============================================================
   STORIES / BLOG
   ============================================================ */
.stories { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.4rem; }
.story { position: relative; border-radius: var(--radius-lg); overflow: hidden; color: var(--cream); min-height: 300px; display: flex; align-items: flex-end; isolation: isolate; box-shadow: var(--shadow-sm); }
.story--lead { grid-row: span 2; min-height: 620px; }
.story .media { position: absolute; inset: 0; z-index: -2; }
.story::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,40,26,0) 35%, rgba(20,40,26,0.85) 100%); }
.story:hover .media img { transform: scale(1.06); }
.story__body { padding: 1.5rem; }
.story .chip { margin-bottom: 0.7rem; background: rgba(251,247,239,0.2); color: var(--cream); }
.story h3 { color: var(--white); font-size: var(--step-1); }
.story--lead h3 { font-size: var(--step-2); }
.story__body .date { font-size: 0.8rem; color: rgba(251,247,239,0.8); margin-top: 0.5rem; }
@media (max-width: 940px) {
  .stories { grid-template-columns: 1fr 1fr; }
  .story--lead { grid-row: span 1; grid-column: span 2; min-height: 320px; }
}
@media (max-width: 560px) { .stories { grid-template-columns: 1fr; } .story--lead { grid-column: span 1; } }

/* ============================================================
   NEWSLETTER BAND
   ============================================================ */
.newsletter { position: relative; overflow: hidden; }
.newsletter__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.newsletter h2 { color: var(--cream); }
.newsletter p { color: rgba(251,247,239,0.78); margin-top: 0.9rem; font-size: var(--step-1); }
.newsletter__form { display: flex; gap: 0.6rem; background: var(--cream); border-radius: var(--radius-pill); padding: 0.5rem 0.5rem 0.5rem 1.4rem; box-shadow: var(--shadow-lg); }
.newsletter__form input { flex: 1; min-width: 0; border: none; background: none; outline: none; color: var(--ink); font-size: var(--step-0); }
.newsletter__form input::placeholder { color: var(--ink-soft); }
.newsletter__note { margin-top: 0.9rem; font-size: 0.8rem; color: rgba(251,247,239,0.6); }
@media (max-width: 780px) { .newsletter__inner { grid-template-columns: 1fr; } .newsletter__form { flex-direction: column; padding: 0.7rem; } .newsletter__form input { padding: 0.6rem 0.8rem; } }

/* ============================================================
   SOCIAL STRIP
   ============================================================ */
.social-strip__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.social-strip__tile { position: relative; aspect-ratio: 1; overflow: hidden; }
.social-strip__tile .media { position: absolute; inset: 0; }
.social-strip__tile::after { content: ""; position: absolute; inset: 0; background: rgba(20,40,26,0); transition: background 0.3s; display: grid; place-items: center; }
.social-strip__tile:hover::after { background: rgba(20,40,26,0.35); }
.social-strip__tile svg { position: absolute; inset: 0; margin: auto; width: 26px; height: 26px; color: #fff; opacity: 0; transition: opacity 0.3s; z-index: 2; }
.social-strip__tile:hover svg { opacity: 1; }
@media (max-width: 760px) { .social-strip__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   CTA / MEETINGS BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; color: var(--cream); }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg .media { position: absolute; inset: 0; }
.cta-band__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(20,40,26,0.9) 0%, rgba(20,40,26,0.55) 100%); }
.cta-band__inner { max-width: 620px; padding-block: clamp(3.5rem, 7vw, 6rem); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(251,247,239,0.85); margin-top: 1rem; font-size: var(--step-1); }
.cta-band .hero__actions { margin-top: 1.6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-900); color: rgba(251,247,239,0.75); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(251,247,239,0.12); }
.footer__brand .brand__text b { color: var(--cream); }
.footer__brand p { margin-top: 1rem; font-size: 0.9rem; max-width: 34ch; }
.footer__contact { margin-top: 1.4rem; display: grid; gap: 0.6rem; font-size: 0.9rem; }
.footer__contact a { display: inline-flex; gap: 0.6em; align-items: flex-start; }
.footer__contact svg { width: 1.05em; height: 1.05em; color: var(--gold-300); flex-shrink: 0; margin-top: 0.25em; }
.footer__col h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer__col a { display: block; padding: 0.32rem 0; font-size: 0.9rem; transition: color 0.2s, padding 0.2s; }
.footer__col a:hover { color: var(--gold-300); padding-left: 4px; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(251,247,239,0.08); color: var(--cream); transition: background 0.25s, transform 0.25s; }
.footer__social a:hover { background: var(--gold-400); color: var(--green-900); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.6rem; font-size: 0.82rem; flex-wrap: wrap; }
.footer__bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold-300); }
@media (max-width: 980px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: span 2; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } .footer__brand { grid-column: span 1; } }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero { position: relative; color: var(--cream); overflow: hidden; padding-block: clamp(3.5rem, 8vw, 7rem); display: flex; align-items: center; min-height: 340px; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(160deg, var(--green-600), var(--green-900)); }
.page-hero__bg .media { position: absolute; inset: 0; }
.page-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,40,26,0.55), rgba(20,40,26,0.8)); }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero p { color: rgba(251,247,239,0.88); font-size: var(--step-1); max-width: 52ch; margin-top: 1rem; }
.breadcrumb { display: flex; gap: 0.5em; font-size: 0.85rem; color: rgba(251,247,239,0.7); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--gold-300); }

/* ============================================================
   RESTAURANT CARDS (data-driven from PickupPointe directory)
   ============================================================ */
.restaurant-grid { grid-template-columns: repeat(4, 1fr); }
.restaurant-card .media { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--gold-200), var(--clay-500)); }
.restaurant-card .card__body { padding: 1.1rem 1.2rem 1.3rem; gap: 0.5rem; }
.restaurant-card h3 { font-size: var(--step-0); font-weight: 650; }
.restaurant-card .card__meta { justify-content: space-between; }
.restaurant-cuisine { font-size: 0.85rem; color: var(--ink-soft); margin-top: -0.2rem; }
.rating { display: inline-flex; align-items: center; gap: 0.25em; font-size: 0.82rem; color: var(--ink-soft); }
.rating svg { width: 15px; height: 15px; fill: var(--line); }
.rating svg.is-on { fill: var(--gold-400); }
.rating b { color: var(--green-900); font-weight: 700; margin-left: 0.15em; }
.rating--new { padding: 0.15em 0.6em; border-radius: var(--radius-pill); background: var(--green-50); color: var(--green-600); font-weight: 600; font-size: 0.72rem; }
.price-badge { font-weight: 700; color: var(--green-600); font-size: 0.85rem; letter-spacing: 0.03em; }
.restaurant-note { margin-top: 1.6rem; font-size: 0.85rem; color: var(--ink-soft); max-width: 70ch; }
.restaurant-note a { color: var(--green-600); font-weight: 600; }
.restaurant-note a:hover { color: var(--gold-600); }
@media (max-width: 1080px) { .restaurant-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .restaurant-grid { grid-template-columns: repeat(2, 1fr); max-width: none; } }
@media (max-width: 440px) { .restaurant-grid { grid-template-columns: 1fr; } }

/* Native directory page */
.dir-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip--filter { cursor: pointer; background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink-soft); font-weight: 600; transition: background 0.2s, color 0.2s, box-shadow 0.2s; }
.chip--filter:hover { color: var(--green-900); box-shadow: inset 0 0 0 1.5px var(--green-400); }
.chip--filter.is-active { background: var(--green-900); color: var(--cream); box-shadow: inset 0 0 0 1.5px var(--green-900); }
.dir-citygroup { margin-bottom: clamp(2.5rem, 5vw, 4rem); scroll-margin-top: 100px; }
.dir-cityhead { display: flex; align-items: baseline; gap: 0.8rem; font-size: var(--step-2); padding-bottom: 0.8rem; margin-bottom: 1.6rem; border-bottom: 2px solid var(--line); }
.dir-cityhead span { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-600); }
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.dir-card { display: flex; flex-direction: column; }
.dir-card .media { aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--gold-200), var(--clay-500)); }
.dir-card .card__body { padding: 1.1rem 1.3rem 1.3rem; gap: 0.5rem; }
.dir-card .card__meta { justify-content: space-between; }
.dir-card h3 { font-size: var(--step-1); }
.dir-info { display: grid; gap: 0.45rem; margin-top: 0.5rem; }
.dir-info li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft); line-height: 1.4; }
.dir-info svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold-600); }
.dir-info a { color: var(--green-600); font-weight: 600; word-break: break-word; }
.dir-info a:hover { color: var(--gold-600); }
.btn--sm { padding: 0.6em 1.1em; font-size: 0.85rem; }
.dir-card .card__foot { margin-top: 0.9rem; }
.dir-card__media { display: block; }
.dir-card h3 a { color: inherit; }
.dir-card h3 a:hover { color: var(--green-600); }
@media (max-width: 980px) { .dir-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dir-grid { grid-template-columns: 1fr; } }

/* Restaurant detail page (SEO pages) */
.rp-hero { min-height: 420px; }
.rp-herometa { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; }
.rp-herometa .rating { color: #fff; }
.rp-herometa .rating svg { fill: rgba(255,255,255,0.35); }
.rp-herometa .rating svg.is-on { fill: var(--gold-300); }
.rp-herometa .rating b { color: #fff; }
.rp-herometa .price-badge { color: var(--gold-200); }
.rp-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.rp-layout { display: grid; grid-template-columns: 1.55fr 0.85fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.rp-headline { font-size: var(--step-2); margin-bottom: 1rem; }
.rp-story { max-width: 65ch; }
.rp-story p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; }
.rp-block { margin-top: 2.6rem; }
.rp-block > h2 { font-size: var(--step-1); margin-bottom: 1.1rem; }
.rp-landmarks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.rp-landmarks li { display: flex; justify-content: space-between; gap: 0.8rem; padding: 0.7rem 0.9rem; background: var(--cream-2); border-radius: 12px; font-size: 0.9rem; }
.rp-landmarks b { color: var(--green-900); font-weight: 600; }
.rp-landmarks span { color: var(--gold-600); font-weight: 600; white-space: nowrap; }
.rp-faq details { border: 1px solid var(--line); border-radius: 12px; padding: 0.9rem 1.1rem; margin-bottom: 0.7rem; background: var(--white); }
.rp-faq summary { font-weight: 650; color: var(--green-900); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.rp-faq summary::after { content: "+"; font-size: 1.3rem; color: var(--gold-600); font-family: var(--font-body); }
.rp-faq details[open] summary::after { content: "–"; }
.rp-faq p { margin-top: 0.7rem; color: var(--ink-soft); line-height: 1.6; }
.rp-testimonials blockquote { border-left: 3px solid var(--gold-400); padding: 0.3rem 0 0.3rem 1.2rem; margin-bottom: 1.2rem; font-family: var(--font-display); font-size: var(--step-1); color: var(--green-900); font-style: italic; }
.rp-testimonials cite { display: block; margin-top: 0.5rem; font-family: var(--font-body); font-size: 0.85rem; font-style: normal; color: var(--ink-soft); }
.rp-menu { display: grid; gap: 0.8rem; }
.rp-menu li { display: flex; gap: 0.9rem; align-items: center; padding: 0.6rem; border: 1px solid var(--line); border-radius: 12px; }
.rp-menu img { width: 60px; height: 60px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.rp-menu div { display: flex; flex-direction: column; }
.rp-menu b { color: var(--green-900); }
.rp-price { color: var(--green-600); font-weight: 700; font-size: 0.9rem; }
.rp-mdesc { color: var(--ink-soft); font-size: 0.82rem; }
.rp-side { position: sticky; top: 100px; }
.rp-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.rp-card h3 { font-size: var(--step-0); margin-bottom: 1rem; }
@media (max-width: 900px) { .rp-layout { grid-template-columns: 1fr; } .rp-side { position: static; } .rp-landmarks { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info h2 { font-size: var(--step-2); }
.contact-list { margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; flex-shrink: 0; }
.contact-ico svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-weight: 650; color: var(--green-900); }
.contact-list a, .contact-list span { color: var(--ink-soft); }
.contact-list a:hover { color: var(--gold-600); }
.contact-quick { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.contact-quick .arrow-link { line-height: 2.2; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--green-900); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.8em 1em; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); color: var(--ink); font-size: var(--step-0); transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 3px var(--gold-100); background: var(--white);
}
.contact-form .btn { margin-top: 0.3rem; }
.contact-form .btn:disabled { opacity: 0.6; cursor: default; }
.form-status { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; }
.form-status.is-ok { color: var(--green-600); font-weight: 600; }
.form-status.is-err { color: var(--clay-500); font-weight: 600; }
.form-status.is-err a { color: var(--clay-500); text-decoration: underline; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .contact-form .field-row { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL / PROSE PAGES
   ============================================================ */
.prose { max-width: 70ch; }
.prose h2 { font-size: var(--step-1); margin-top: 2.2rem; margin-bottom: 0.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.7; }
.prose p { margin-bottom: 1rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; list-style: disc; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--green-600); font-weight: 600; }
.prose a:hover { color: var(--gold-600); }
.prose .updated { font-size: 0.85rem; color: var(--gold-600); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.5rem; }

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-results { display: grid; gap: 0.7rem; }
.search-result {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.search-result:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: transparent; }
.search-result__cat {
  flex-shrink: 0; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-600); background: var(--gold-100); padding: 0.35em 0.75em; border-radius: var(--radius-pill); min-width: 92px; text-align: center;
}
.search-result__title { flex: 1; font-family: var(--font-display); font-size: var(--step-1); color: var(--green-900); }
.search-result svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; }
.search-empty { text-align: center; padding: 2rem 0; }
.search-empty h2 { font-size: var(--step-2); }
.search-empty p { color: var(--ink-soft); margin-top: 0.6rem; }
.search-empty > div { justify-content: center; }
@media (max-width: 520px) { .search-result__cat { min-width: 0; } .search-result__title { font-size: var(--step-0); } }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 2rem; }
.center-cta { display: flex; justify-content: center; margin-top: 2.5rem; }
