/* ==========================================================================
   Hall & Hoolihan — Area Guide
   Design system extracted from "Area Guide Visual Direction" artboard 1c.
   Palette values come from brand/BRAND.md — do not eyeball new ones.
   ========================================================================== */

:root {
  /* --- Gold. Always a gradient. Flat gold looks cheap (BRAND.md). --- */
  --gold-light: #f4ca78;
  --gold-mid:   #c9973f;
  --gold-deep:  #9e6f2f;
  --gold:            linear-gradient(140deg, #f4ca78, #c9973f 56%, #9e6f2f);
  --gold-pressed:    linear-gradient(140deg, #e9bd6b, #a97a31 56%, #845a24);
  --gold-rule:       linear-gradient(90deg, #c9973f, #9e6f2f);
  --gold-rule-light: linear-gradient(90deg, #f4ca78, #9e6f2f);

  /* --- Coastal anchor --- */
  --seafoam:       #9fbfc5;
  --seafoam-light: #ced8dc;

  /* --- Neutrals. Ink is TEXT ONLY, never a page background (BRAND.md). --- */
  --off-white: #f8f9fa;
  --ink:       #1c2130;
  --body:      #4d5462;
  --muted:     #6c7380;
  --faint:     #8a9099;
  --disabled:  #a7adb8;

  /* --- Type --- */
  --display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans:    Archivo, Helvetica, Arial, sans-serif;
  --mono:    ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Fluid scale: mobile artboard (390) -> desktop artboard (1440) */
  --fs-hero:    clamp(2.875rem, 1.06rem + 7.44vw, 6.5rem);   /*  46 -> 104 */
  --fs-section: clamp(2.125rem, 1.11rem + 4.17vw, 3.875rem); /*  34 ->  62 */
  --fs-lead:    clamp(1rem, 0.86rem + 0.57vw, 1.25rem);      /*  16 ->  20 */
  --fs-body:    1rem;
  --fs-eyebrow: 0.71875rem;
  --fs-label:   0.75rem;

  /* --- Layout --- */
  --gutter: clamp(1.5rem, 0.64rem + 3.52vw, 4rem);           /*  24 ->  64 */
  --shell:  1440px;

  --shadow-lift:  0 30px 70px -34px rgba(28, 33, 48, .45);
  --shadow-gold:  0 12px 34px -10px rgba(158, 111, 47, .85), inset 0 1px 0 rgba(255, 255, 255, .5);
  --shadow-gold-sm: 0 6px 20px -6px rgba(158, 111, 47, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
  --hairline: 1px solid rgba(28, 33, 48, .10);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--body);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p { margin: 0; }

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

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold-mid); }

:focus-visible {
  outline: 2px solid var(--gold-mid);
  outline-offset: 3px;
  border-radius: 4px;
}

.u-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Type primitives (artboard 1c)
   -------------------------------------------------------------------------- */

.t-display {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--fs-hero);
  line-height: .98;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.t-section {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--fs-section);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: balance;
}

.t-lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  text-wrap: pretty;
}

.t-label {
  font-size: var(--fs-label);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Eyebrow: hairline + spaced caps. One per section. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-eyebrow);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 26px;
  height: 1px;
  background: var(--gold-rule);
}
.eyebrow--on-photo { color: rgba(248, 249, 250, .88); }
.eyebrow--on-photo::before { width: 36px; background: var(--gold-rule-light); }

/* --------------------------------------------------------------------------
   Buttons (artboard 1c)
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn--gold { background: var(--gold); box-shadow: var(--shadow-gold); }
.btn--gold:hover { color: var(--ink); transform: translateY(-1px); }
.btn--gold:active { background: var(--gold-pressed); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35); transform: none; }

.btn--sm { padding: 11px 20px; font-size: .84375rem; box-shadow: var(--shadow-gold-sm); }

.btn--ghost {
  padding: 16px 26px;
  font-weight: 500;
  color: var(--off-white);
  border: 1px solid rgba(248, 249, 250, .45);
}
.btn--ghost:hover { color: var(--off-white); background: rgba(248, 249, 250, .12); }

.btn--secondary { font-weight: 500; border: 1px solid rgba(28, 33, 48, .22); }
.btn--secondary:hover { color: var(--ink); border-color: rgba(28, 33, 48, .45); }

.btn--ink { font-weight: 500; color: var(--off-white); background: var(--ink); }
.btn--ink:hover { color: var(--off-white); }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100svh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  /* Stand-in until the real photo lands. See README "Dropping in the hero photo". */
  background: linear-gradient(175deg, #ced8dc 0%, #9fbfc5 42%, #b9c9c6 70%, #dcd3c0 100%);
}

/* The hero photograph. Swap it in index.html — this only handles the crop.
   Biased right-of-centre so the beach and homes stay in frame while open
   water sits under the headline. */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

/* Legibility scrim. Two passes: vertical for the nav and scroll cue, then a
   left-weighted pass so white display type holds up over bright Gulf water. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(28, 33, 48, .58) 0%,
      rgba(28, 33, 48, .34) 34%,
      rgba(28, 33, 48, .06) 66%,
      rgba(28, 33, 48, 0) 100%),
    linear-gradient(180deg,
      rgba(28, 33, 48, .52) 0%,
      rgba(28, 33, 48, .26) 14%,
      rgba(28, 33, 48, .08) 34%,
      rgba(28, 33, 48, .06) 60%,
      rgba(28, 33, 48, .52) 100%);
}


/* Quiet location credit on the hero photograph. */
.hero__credit {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248, 249, 250, .62);
}

/* --- Top bar --- */

.topbar {
  position: relative;
  z-index: 3;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(1.75rem, 1.2rem + 2.2vw, 2.125rem) var(--gutter);
}

.topbar__logo {
  height: clamp(26px, 1rem + 1.2vw, 46px);
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(28, 33, 48, .35));
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 0.2rem + 2.1vw, 2.125rem);
}

.topbar__link {
  font-size: .84375rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(248, 249, 250, .92);
  /* The nav crosses bright sand in the hero photo — this keeps it readable
     without darkening the whole frame. */
  text-shadow: 0 1px 12px rgba(28, 33, 48, .75), 0 1px 3px rgba(28, 33, 48, .5);
}
.topbar__link:hover { color: var(--off-white); text-decoration: underline; text-underline-offset: 5px; }

/* Hamburger — mobile only */
.topbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.topbar__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--off-white);
  transition: transform .22s ease, opacity .22s ease;
}
body.nav-open .topbar__toggle span:first-child { transform: translateY(2.75px) rotate(45deg); }
body.nav-open .topbar__toggle span:last-child  { transform: translateY(-2.75px) rotate(-45deg); }

/* --- Hero copy --- */

.hero__copy {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter) clamp(4rem, 2rem + 8vw, 7rem);
  /* 1000px of text, matching the artboard, plus the page gutter either side. */
  max-width: calc(1000px + var(--gutter) * 2);
}

.hero__title {
  margin-top: 26px;
  color: var(--off-white);
  text-shadow: 0 3px 40px rgba(28, 33, 48, .30);
}

.hero__sub {
  margin-top: 32px;
  max-width: 620px;
  color: rgba(248, 249, 250, .90);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
}

/* --- Scroll cue --- */

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: hhFloat 3.6s ease-in-out infinite;
}
.hero__scroll span:first-child {
  font-size: .65625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248, 249, 250, .75);
}
.hero__scroll span:last-child {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(244, 202, 120, .9), rgba(244, 202, 120, 0));
}

@keyframes hhFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* --------------------------------------------------------------------------
   MAP SECTION
   -------------------------------------------------------------------------- */

.map-section {
  background: var(--off-white);
  padding: clamp(3.25rem, 1.5rem + 7vw, 7.5rem) var(--gutter) 0;
}

.map-section__inner {
  max-width: var(--shell);
  margin: 0 auto;
}

/* Header: title left, headline number right (artboard 1c "Section header pattern") */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: clamp(1.75rem, 1rem + 2.5vw, 2.75rem);
  border-bottom: var(--hairline);
}

.section-head__text { flex: 1 1 auto; max-width: 760px; }
.section-head__title { margin-top: 20px; }
.section-head__lead { margin-top: 22px; color: var(--body); max-width: 620px; }

.section-head__stat { flex: none; text-align: right; }
.section-head__stat b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.75rem, 1rem + 2.6vw, 2.75rem);
  line-height: 1;
  color: var(--ink);
}
.section-head__stat span { display: block; margin-top: 8px; }

/* --- Map layout --- */

.map-layout {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding-top: clamp(1.75rem, 1rem + 2.5vw, 2.75rem);
}

/* Left column: north-to-south index */
.area-index {
  flex: none;
  width: 264px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.area-index__label { padding-bottom: 16px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); }

.area-index__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 16px;
  border: 0;
  border-radius: 12px;
  background: none;
  font-family: var(--sans);
  font-size: .96875rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.area-index__item::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--seafoam);
  transition: background .2s ease;
}
.area-index__item:hover { background: rgba(159, 191, 197, .22); }
.area-index__item[aria-pressed="true"] {
  background: var(--ink);
  color: var(--off-white);
  font-weight: 600;
}
.area-index__item[aria-pressed="true"]::before { background: var(--gold); }

.area-index__note {
  margin-top: auto;
  padding-top: 28px;
  font-size: .84375rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Right column: the map itself */
.map-frame {
  flex: 1;
  position: relative;
  height: 660px;
  border-radius: 18px;
  overflow: hidden;
  border: var(--hairline);
  box-shadow: var(--shadow-lift);
}

/* Horizontal chip rail — mobile stand-in for the index column */
.area-chips {
  display: none;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.area-chips::-webkit-scrollbar { display: none; }

.chip {
  flex: none;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(159, 191, 197, .28);
  font-family: var(--sans);
  font-size: .84375rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.chip:hover { background: rgba(244, 202, 120, .34); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--off-white); font-weight: 600; }
.chip[disabled] { background: rgba(28, 33, 48, .05); color: var(--disabled); cursor: default; }

/* --- Soft CTA --- */

.soft-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding: 30px 34px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(159, 191, 197, .20), rgba(244, 202, 120, .16));
}
.soft-cta p { font-size: 1.125rem; color: var(--ink); text-wrap: pretty; }
.soft-cta .btn { flex: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5); }

.map-section__tail { height: clamp(3.5rem, 2rem + 5vw, 6.875rem); }

/* --------------------------------------------------------------------------
   Sticky mobile action bar (mobile artboard 1b)
   -------------------------------------------------------------------------- */

.sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  align-items: center;
  gap: 12px;
  padding: 14px 16px calc(26px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(248, 249, 250, 0), rgba(248, 249, 250, .95) 38%);
  backdrop-filter: blur(6px);
}
.sticky-bar p { flex: 1; font-size: .8125rem; line-height: 1.35; color: var(--ink); }
.sticky-bar .btn { flex: none; padding: 12px 20px; font-size: .875rem; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5); }

/* --------------------------------------------------------------------------
   Mobile nav overlay
   -------------------------------------------------------------------------- */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 var(--gutter);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

.nav-overlay a {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.5;
  color: var(--off-white);
}
.nav-overlay a:hover { color: var(--gold-light); }

.nav-overlay__close {
  position: absolute;
  top: 22px;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  color: var(--off-white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Breakpoints
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .map-layout { flex-direction: column; gap: 0; }
  .area-index { display: none; }
  .area-chips { display: flex; }
  /* flex:none is required — inherited `flex:1` gives a 0 flex-basis in a
     column layout, which collapses the map to nothing. */
  .map-frame { flex: none; height: clamp(420px, 58vh, 560px); order: -1; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .section-head__stat { text-align: left; }
}

@media (max-width: 760px) {
  .topbar__nav { display: none; }
  .topbar__toggle { display: flex; }
  .hero__copy { padding-bottom: 5rem; }
  .hero__title { margin-top: 16px; line-height: 1; }
  /* Let the headline find its own break instead of forcing the desktop one. */
  .hero__title br { display: none; }
  .hero__sub { margin-top: 18px; }
  /* Copy the desktop-only clauses out of the hero (see index.html). */
  .u-desktop-only { display: none; }
  /* The mobile artboard drops the leading rule from the eyebrow. */
  .eyebrow--on-photo::before { display: none; }
  /* ...and replaces the hero buttons with the sticky bar at the bottom. */
  .hero__actions { display: none; }
  .hero__scroll { display: none; }
  /* Lift the photo credit clear of the sticky bar. */
  .hero__credit { bottom: 104px; }
  .soft-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .soft-cta .btn { width: 100%; }
  .sticky-bar { display: flex; }
  /* Keep the sticky bar from covering the end of the page. */
  .map-section__tail { height: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------------------
   POI layer toggles
   -------------------------------------------------------------------------- */

.layer-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  flex-wrap: wrap;
}

.layer-bar__label {
  flex: none;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--faint);
}

.layer-rail {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.layer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(28, 33, 48, .14);
  border-radius: 999px;
  background: var(--off-white);
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--body);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.layer-chip__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--layer-color, var(--seafoam));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .9);
  flex: none;
}
.layer-chip__n {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--faint);
}
.layer-chip:hover { border-color: rgba(28, 33, 48, .34); color: var(--ink); }
.layer-chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--off-white);
  font-weight: 600;
}
.layer-chip[aria-pressed="true"] .layer-chip__n { color: rgba(248, 249, 250, .6); }

/* --------------------------------------------------------------------------
   Area info tile — sits over the map when an area is selected
   -------------------------------------------------------------------------- */

.area-tile {
  position: absolute;
  z-index: 700;
  left: 20px;
  bottom: 20px;
  width: min(360px, calc(100% - 40px));
  max-height: calc(100% - 96px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 24px 24px;
  border-radius: 16px;
  background: rgba(248, 249, 250, .97);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px -24px rgba(28, 33, 48, .55);
  animation: tileIn .28s cubic-bezier(.22, 1, .36, 1);
}

@keyframes tileIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.area-tile__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 33, 48, .06);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.area-tile__close:hover { background: rgba(28, 33, 48, .12); color: var(--ink); }

.area-tile__eyebrow {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.area-tile__name {
  margin-top: 6px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.06;
  color: var(--ink);
}

.area-tile__blurb {
  margin-top: 10px;
  font-size: .875rem;
  line-height: 1.55;
  color: var(--body);
  text-wrap: pretty;
}

.area-tile__stats {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 0 0;
  border-top: var(--hairline);
}
.area-tile__stat { flex: 1; min-width: 0; }
.area-tile__stat b {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink);
}
.area-tile__stat span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
}

.area-tile__actions { display: flex; gap: 8px; margin-top: 18px; }
.area-tile__actions .btn { flex: 1; justify-content: center; padding: 11px 14px; }

.area-tile__note { margin-top: 14px; font-size: .8125rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Drive times, inside the tile
   -------------------------------------------------------------------------- */

.area-tile__drive { margin-top: 18px; padding-top: 16px; border-top: var(--hairline); }

.drive__slots { display: flex; gap: 5px; flex-wrap: wrap; }
.slot {
  padding: 7px 11px;
  border: 1px solid rgba(28, 33, 48, .14);
  border-radius: 999px;
  background: none;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--body);
  cursor: pointer;
}
.slot:hover { border-color: rgba(28, 33, 48, .34); }
.slot[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--off-white);
  font-weight: 600;
}

.drive__list { list-style: none; margin: 14px 0 0; padding: 0; }
.drive__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(28, 33, 48, .07);
  font-size: .8125rem;
  color: var(--body);
}
.drive__list li:last-child { border-bottom: 0; }
.drive__list b { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

.drive__warn {
  margin-top: 12px;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(244, 202, 120, .22);
  font-size: 11.5px;
  line-height: 1.45;
  color: #6d4d18;
}
.drive__warn--season { background: rgba(159, 191, 197, .22); color: #35505a; }

/* --------------------------------------------------------------------------
   POI dots + tooltips
   -------------------------------------------------------------------------- */

.poi-dot { cursor: pointer; transition: none; }

.leaflet-tooltip.poi-tip {
  padding: 5px 10px;
  border: 1px solid rgba(28, 33, 48, .1);
  border-radius: 999px;
  background: rgba(248, 249, 250, .97);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(28, 33, 48, .16);
}
.leaflet-tooltip.poi-tip::before { display: none; }

/* Secondary line in a POI tooltip: grade level, public/private, cuisine. */
.poi-tip__meta {
  display: block;
  margin-top: 2px;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Leaflet's own zoom control, restyled to the palette */
.hh-map .leaflet-control-zoom a {
  background: rgba(248, 249, 250, .94);
  color: var(--ink);
  border-color: rgba(28, 33, 48, .1);
}
.hh-map .leaflet-control-zoom a:hover { background: #fff; }

@media (max-width: 760px) {
  .area-tile {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    max-height: calc(100% - 70px);
    padding: 18px 18px 20px;
  }
  .area-tile__name { font-size: 25px; }
  .layer-bar { gap: 12px; }
  .layer-bar__label { width: 100%; }
}

/* --------------------------------------------------------------------------
   Solid top bar — used on pages that have no photographic hero behind it
   -------------------------------------------------------------------------- */

.topbar--solid {
  background: var(--off-white);
  border-bottom: var(--hairline);
  padding-top: 22px;
  padding-bottom: 22px;
}
.topbar--solid .topbar__logo { filter: none; }
.topbar--solid .topbar__link { color: var(--body); text-shadow: none; }
.topbar--solid .topbar__link:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   Area guide pages
   -------------------------------------------------------------------------- */

.guide { padding: clamp(2.5rem, 1.5rem + 4vw, 5rem) var(--gutter) 0; }
.guide__inner { max-width: 780px; margin: 0 auto; }

.guide__title { margin-top: 18px; }
.guide__intro { margin-top: 20px; color: var(--body); }

.guide__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
  padding: 24px 0;
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.guide__stat { flex: 1 1 140px; }
.guide__stat b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
}
.guide__stat span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
}

.guide__body { margin-top: 8px; }
.guide__block { padding-top: 40px; }
.guide__h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  line-height: 1.12;
  color: var(--ink);
}
.guide__h--facts { margin-top: 56px; }
.guide__p {
  margin-top: 14px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  text-wrap: pretty;
}

.facts { margin: 22px 0 0; padding: 0; }
.fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(28, 33, 48, .08);
}
.fact dt { flex: none; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.fact dd { margin: 0; text-align: right; font-size: .9375rem; font-weight: 500; color: var(--ink); }

.guide__cta { margin-top: 52px; }

.guide__tools { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.guide__nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 56px 0 0;
  padding: 28px 0 0;
  border-top: var(--hairline);
}
.guide__nav-link { font-size: 1.0625rem; font-weight: 600; color: var(--ink); }
.guide__nav-link:hover { color: var(--gold-deep); }
.guide__nav-link span {
  display: block;
  margin-bottom: 5px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
}
.guide__nav-link--next { text-align: right; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact { padding: clamp(2.5rem, 1.5rem + 4vw, 5rem) var(--gutter) 0; }
.contact__inner { max-width: 880px; margin: 0 auto; }
.contact__title { margin-top: 18px; }
.contact__intro { margin-top: 20px; max-width: 640px; color: var(--body); }

.contact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.contact__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(159, 191, 197, .18), rgba(244, 202, 120, .14));
}
.contact__h { font-family: var(--display); font-weight: 400; font-size: 26px; color: var(--ink); }
.contact__card p { font-size: .9375rem; line-height: 1.6; color: var(--body); flex: 1; }
.contact__card .btn { margin-top: 4px; }

.contact__addr { margin-top: 26px; font-size: .9375rem; color: var(--muted); }

.questionnaire { margin-top: 72px; padding-top: 48px; border-top: var(--hairline); }
.questionnaire__title { margin-top: 18px; }
.questionnaire__intro { margin-top: 18px; max-width: 620px; color: var(--body); }
.questionnaire__frame {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  border: var(--hairline);
  background: #fff;
  box-shadow: var(--shadow-lift);
}
.questionnaire__fallback { margin-top: 16px; font-size: .875rem; color: var(--muted); }

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

.footer {
  margin-top: clamp(4rem, 2rem + 8vw, 7rem);
  padding: clamp(3rem, 2rem + 4vw, 4.5rem) var(--gutter) 2.5rem;
  background: var(--ink);
  color: rgba(248, 249, 250, .72);
}

.footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(150px, 1fr));
  gap: 40px;
}

.footer__logo { height: 40px; width: auto; }
.footer__line { margin-top: 14px; font-size: .875rem; line-height: 1.5; }
.footer__line:first-of-type { color: var(--off-white); font-weight: 500; }

.footer__head {
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__link { font-size: .875rem; color: rgba(248, 249, 250, .78); }
.footer__link:hover { color: var(--gold-light); }

.footer__legal {
  max-width: var(--shell);
  margin: clamp(2.5rem, 2rem + 3vw, 3.5rem) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 249, 250, .14);
  display: grid;
  gap: 14px;
}
.footer__legal p {
  font-size: .75rem;
  line-height: 1.6;
  color: rgba(248, 249, 250, .5);
  max-width: 74ch;
}

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .guide__nav { flex-direction: column; }
  .guide__nav-link--next { text-align: left; }
  .guide__stats { gap: 20px; }
  .guide__stat { flex: 1 1 45%; }
  /* No sticky bar on these pages, so no extra clearance needed. */
  .guide__inner .soft-cta .btn,
  .contact__card .btn { width: 100%; }
}

/* Pending time slots — selectable, but visibly not yet measured. */
.slot--pending { color: var(--faint); border-style: dashed; }
.slot--pending i { font-style: normal; margin-left: 5px; color: var(--gold-mid); }
.slot--pending[aria-pressed="true"] { background: var(--muted); border-color: var(--muted); color: var(--off-white); }
.drive__list b em { font-style: normal; font-weight: 400; color: var(--muted); }

/* --------------------------------------------------------------------------
   Pill depth + motion
   Every pill gets a little lift and a wiggle on hover. Kept small: the page
   has a lot of pills, and big motion on all of them would feel cheap.
   -------------------------------------------------------------------------- */

@keyframes hhWiggle {
  0%   { transform: translateY(-2px) rotate(0deg); }
  25%  { transform: translateY(-2px) rotate(-1.6deg); }
  50%  { transform: translateY(-2px) rotate(1.3deg); }
  75%  { transform: translateY(-2px) rotate(-0.7deg); }
  100% { transform: translateY(-2px) rotate(0deg); }
}
@keyframes hhNudge {
  0%, 100% { transform: scale(1.04) rotate(0deg); }
  30%      { transform: scale(1.04) rotate(-2deg); }
  65%      { transform: scale(1.04) rotate(1.4deg); }
}

/* Layer chips: tinted to their own layer colour, lifted off the page. */
.layer-chip {
  position: relative;
  background:
    linear-gradient(180deg, #fff, #f2f4f5),
    var(--off-white);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 2px 4px rgba(28, 33, 48, .07),
    0 6px 14px -6px rgba(28, 33, 48, .18);
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1),
              box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.layer-chip:hover {
  border-color: color-mix(in srgb, var(--layer-color) 55%, transparent);
  background:
    linear-gradient(180deg, #fff, color-mix(in srgb, var(--layer-color) 12%, #fff));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 4px 8px rgba(28, 33, 48, .10),
    0 12px 22px -10px color-mix(in srgb, var(--layer-color) 60%, transparent);
  animation: hhWiggle .5s ease;
}
.layer-chip:active { transform: translateY(0) scale(.97); animation: none; }
.layer-chip[aria-pressed="true"] {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--layer-color) 88%, #fff),
    var(--layer-color));
  border-color: color-mix(in srgb, var(--layer-color) 70%, #000);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .35) inset,
    0 3px 6px rgba(28, 33, 48, .16),
    0 10px 20px -8px color-mix(in srgb, var(--layer-color) 70%, transparent);
}
.layer-chip[aria-pressed="true"] .layer-chip__n { color: rgba(255, 255, 255, .72); }
.layer-chip[aria-pressed="true"] .layer-chip__dot {
  background: #fff;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--layer-color) 60%, transparent);
}

/* Area chips (mobile rail) and slot chips get the same treatment. */
.chip, .slot {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 2px 4px rgba(28, 33, 48, .07),
    0 6px 12px -6px rgba(28, 33, 48, .16);
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1),
              box-shadow .2s ease, background .2s ease, color .2s ease;
}
.chip:hover, .slot:hover { animation: hhWiggle .5s ease; }
.chip:active, .slot:active { transform: translateY(0) scale(.96); animation: none; }
.chip[aria-pressed="true"], .slot[aria-pressed="true"] {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .18) inset,
    0 4px 10px rgba(28, 33, 48, .28);
}

/* Buttons lift and nudge too. */
.btn--gold:hover, .btn--ink:hover { animation: hhNudge .55s ease; }
.btn--secondary:hover { animation: hhWiggle .5s ease; }

/* Area index rows: a card feel rather than flat list items. */
.area-index__item {
  transition: transform .18s cubic-bezier(.34, 1.56, .64, 1),
              background .2s ease, box-shadow .2s ease, color .2s ease;
}
.area-index__item:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 12px -6px rgba(28, 33, 48, .3);
}
.area-index__item[aria-pressed="true"] {
  box-shadow: 0 6px 16px -8px rgba(28, 33, 48, .55);
}

@media (prefers-reduced-motion: reduce) {
  .layer-chip:hover, .chip:hover, .slot:hover,
  .btn--gold:hover, .btn--ink:hover, .btn--secondary:hover { animation: none; }
}

/* --------------------------------------------------------------------------
   Trip planner: real address to points of interest
   -------------------------------------------------------------------------- */

.trip {
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(159, 191, 197, .16), rgba(244, 202, 120, .12));
  border: 1px solid rgba(28, 33, 48, .07);
}

.trip__label {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.trip__row { display: flex; gap: 10px; flex-wrap: wrap; }

.trip__input {
  flex: 1 1 280px;
  min-width: 0;
  padding: 13px 18px;
  border: 1px solid rgba(28, 33, 48, .16);
  border-radius: 999px;
  background: #fff;
  font-family: var(--sans);
  font-size: .9375rem;
  color: var(--ink);
  box-shadow: 0 2px 4px rgba(28, 33, 48, .05) inset;
}
.trip__input::placeholder { color: var(--faint); }
.trip__input:focus { outline: 2px solid var(--gold-mid); outline-offset: 1px; }

.trip__status { margin-top: 12px; font-size: .875rem; color: var(--body); }
.trip__status b { color: var(--ink); }

.trip__hint { font-size: 11.5px; color: var(--muted); margin-bottom: 8px; }

.trip__list { list-style: none; margin: 0; padding: 0; }
.trip__list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(28, 33, 48, .08);
  font-size: .875rem;
  color: var(--body);
}
.trip__list li:last-child { border-bottom: 0; }
.trip__list li > span { flex: 1; }
.trip__val { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.trip__val em { font-style: normal; font-weight: 400; color: var(--muted); }

.trip__dirs {
  flex: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
}

.trip__results { margin-top: 14px; }
.trip:not(.is-active) .trip__results { display: none; }

/* The visitor's own address, marked distinctly from our gold area pins. */
.origin-pin {
  display: block;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  background: #1c2130;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(28, 33, 48, .22), 0 4px 12px rgba(28, 33, 48, .4);
}

@media (max-width: 760px) {
  .trip { padding: 18px; }
  .trip__row .btn { flex: 1; }
}

/* --------------------------------------------------------------------------
   Area guide: photography, landmarks
   -------------------------------------------------------------------------- */

.guide__figure {
  margin: 40px 0 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.guide__figure img { width: 100%; height: auto; display: block; }
.guide__figure figcaption {
  padding: 14px 20px;
  background: var(--ink);
  color: rgba(248, 249, 250, .78);
  font-size: .8125rem;
  line-height: 1.5;
}

/* Areas with no photography on file. Says so rather than faking it. */
.guide__figure--none {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 200px;
  padding: 40px 32px;
  background:
    radial-gradient(120% 140% at 12% 0%, rgba(244, 202, 120, .28), transparent 60%),
    linear-gradient(140deg, rgba(159, 191, 197, .32), rgba(206, 216, 220, .22));
  box-shadow: none;
  border: 1px dashed rgba(28, 33, 48, .18);
}
.guide__figure-mark {
  font-family: var(--display);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  line-height: 1;
  color: var(--ink);
}
.guide__figure-note { font-size: .875rem; color: var(--muted); max-width: 40ch; }

.guide__h--places { margin-top: 56px; }

.landmarks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.landmark {
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(159, 191, 197, .16), rgba(244, 202, 120, .10));
  border: 1px solid rgba(28, 33, 48, .07);
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s ease;
}
.landmark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px -14px rgba(28, 33, 48, .5);
}
.landmark b { display: block; font-size: .9375rem; color: var(--ink); }
.landmark span { display: block; margin-top: 5px; font-size: .8125rem; line-height: 1.5; color: var(--body); }

/* --------------------------------------------------------------------------
   Social section
   -------------------------------------------------------------------------- */

.social {
  margin-top: clamp(4rem, 2rem + 7vw, 6.5rem);
  padding: clamp(3rem, 2rem + 4vw, 5rem) var(--gutter);
  background:
    radial-gradient(100% 120% at 8% 0%, rgba(244, 202, 120, .20), transparent 55%),
    radial-gradient(90% 120% at 95% 100%, rgba(159, 191, 197, .28), transparent 55%),
    var(--ink);
  color: rgba(248, 249, 250, .78);
}
.social__inner { max-width: var(--shell); margin: 0 auto; }
.eyebrow--on-ink { color: var(--gold-light); }
.eyebrow--on-ink::before { background: var(--gold-rule-light); }
.social__title { margin-top: 18px; color: var(--off-white); }
.social__intro { margin-top: 16px; max-width: 560px; color: rgba(248, 249, 250, .7); }

.social__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.social__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: rgba(248, 249, 250, .06);
  border: 1px solid rgba(248, 249, 250, .12);
  color: var(--off-white);
  overflow: hidden;
  transition: transform .22s cubic-bezier(.34, 1.56, .64, 1),
              background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.social__card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 120px;
  background: radial-gradient(60% 100% at 50% 100%, var(--accent), transparent 70%);
  opacity: .45;
  transition: opacity .22s ease, transform .22s ease;
}
a.social__card:hover {
  transform: translateY(-5px);
  background: rgba(248, 249, 250, .1);
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
  box-shadow: 0 22px 44px -22px var(--accent);
  color: var(--off-white);
}
a.social__card:hover::after { opacity: .8; transform: translateY(-8px); }

.social__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 6px 16px -6px var(--accent);
}
.social__icon svg { width: 22px; height: 22px; fill: #fff; }

.social__label { position: relative; z-index: 1; font-size: 1.0625rem; font-weight: 600; }
.social__blurb { position: relative; z-index: 1; font-size: .8125rem; line-height: 1.5; color: rgba(248, 249, 250, .68); }

.social__card--pending { opacity: .62; }
.social__soon {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(248, 249, 250, .12);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(248, 249, 250, .7);
}

/* Social sits directly above the footer, so drop the footer's top margin. */
.social + .footer { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .landmark:hover, a.social__card:hover { transform: none; }
}

/* Photo gallery on area pages. Two-up on wide screens, stacked on mobile. */
.guide__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.guide__gallery .guide__figure { margin: 0; }
.guide__figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.guide__cap { font-size: .8125rem; line-height: 1.5; }
.guide__credit {
  font-size: 10.5px;
  letter-spacing: .04em;
  color: rgba(248, 249, 250, .45);
}
.guide__credit a { color: rgba(248, 249, 250, .6); }
.guide__credit a:hover { color: var(--gold-light); }

/* Photo credits table */
.credits-wrap { margin-top: 32px; overflow-x: auto; }
.credits { width: 100%; border-collapse: collapse; font-size: .875rem; min-width: 640px; }
.credits th {
  text-align: left; padding: 10px 12px; border-bottom: 2px solid rgba(28,33,48,.14);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint);
}
.credits td { padding: 12px; border-bottom: 1px solid rgba(28,33,48,.08); vertical-align: top; color: var(--body); }
.credits td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Address autocomplete
   -------------------------------------------------------------------------- */

.trip__field { position: relative; flex: 1 1 320px; min-width: 0; }
.trip__field .trip__input { width: 100%; }

.trip__suggestions {
  position: absolute;
  z-index: 900;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: 320px;
  overflow-y: auto;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px solid rgba(28, 33, 48, .12);
  box-shadow: 0 20px 44px -18px rgba(28, 33, 48, .5);
}
.trip__suggestions[hidden] { display: none; }

.trip__suggestions li {
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
  line-height: 1.35;
}
.trip__suggestions li.is-active,
.trip__suggestions li[aria-selected="true"] {
  background: linear-gradient(120deg, rgba(159, 191, 197, .3), rgba(244, 202, 120, .24));
}

.trip__opt-main { display: block; font-size: .9375rem; font-weight: 600; color: var(--ink); }
.trip__opt-sub  { display: block; margin-top: 2px; font-size: .8125rem; color: var(--muted); }
.trip__opt-approx {
  display: inline-block;
  margin-top: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(244, 202, 120, .35);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6d4d18;
}

.trip__status em { font-style: normal; color: var(--muted); font-size: .8125rem; }

@media (max-width: 760px) {
  .trip__field { flex: 1 1 100%; }
  .trip__suggestions { max-height: 260px; }
}
