/* ==========================================================================
   CROWN RIDES — COMPONENTS
   Reusable across all 26 pages. Nothing here is home-page specific.
   ========================================================================== */

/* ==========================================================================
   1. BUTTON
   ========================================================================== */

.btn {
  --btn-h: 56px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  height: var(--btn-h);
  padding-inline: var(--s-6);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform var(--d-micro) var(--e-ui),
    box-shadow var(--d-base) var(--e-out),
    background-color var(--d-base) var(--e-ui),
    color var(--d-base) var(--e-ui),
    border-color var(--d-base) var(--e-ui);
}

.btn__icon {
  width: 16px; height: 16px;
  flex: none;
  transition: transform var(--d-base) var(--e-out);
}
.btn:hover .btn__icon { transform: translateX(4px); }

/* Primary — gold fill, BLACK text (9.99:1). Never white text on gold. */
.btn--primary {
  background: var(--c-gold);
  color: var(--c-black);
}
.btn--primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}
.btn--primary:active { transform: translateY(0); }

/* Secondary — outline that inverts on hover */
.btn--secondary {
  border: 1px solid currentColor;
  color: var(--text);
  background: transparent;
}
.btn--secondary:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Ghost — text with an animated gold underline */
.btn--ghost {
  height: auto;
  padding: var(--s-2) 0;
  border-radius: 0;
  color: var(--text);
}
.btn--ghost::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rule-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--d-base) var(--e-out);
}
.btn--ghost:hover::after { transform: scaleX(1); transform-origin: left; }

.btn--sm { --btn-h: 46px; padding-inline: var(--s-5); font-size: var(--fs-xs); }
.btn--block { width: 100%; }

/* ==========================================================================
   2. FORM CONTROLS — native elements only, no div-based widgets.
   ========================================================================== */

.field { display: flex; flex-direction: column; gap: var(--s-2); min-width: 0; }

.field__label {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
}

.field__control {
  width: 100%;
  height: 52px;
  padding-inline: var(--s-4);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: var(--fs-sm);
  transition:
    border-color var(--d-fast) var(--e-ui),
    background-color var(--d-fast) var(--e-ui),
    box-shadow var(--d-fast) var(--e-ui);
}
.field__control::placeholder { color: var(--text-muted); }
.field__control:hover { border-color: var(--border-strong); }
.field__control:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.20);
}

select.field__control {
  appearance: none;
  padding-right: var(--s-7);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
}

/* Dark-glass variant used inside the hero booking panel */
.on-dark .field__control {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--c-white);
  color-scheme: dark;
}
.on-dark .field__control:hover { background: rgba(255, 255, 255, 0.10); }
.on-dark .field__control option { background: var(--c-ink); color: var(--c-white); }

/* ==========================================================================
   SEGMENTED TAB SWITCHER (ride type)

   Six options rarely fit, so the strip scrolls. Client feedback: people did
   not realise more options existed to the right. It now shows arrow buttons
   plus a fade on whichever side has hidden content, and both disappear once
   you reach that end.
   ========================================================================== */

.segment-wrap { position: relative; }

.segment {
  display: flex;
  position: relative;
  padding: 4px;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  overflow-x: auto;
  scrollbar-width: none;
  /* Six non-shrinking tabs give this a ~648px min-content width. Without
     min-width:0 it becomes a floor that blows out any grid column it sits in. */
  min-width: 0;
}
.segment::-webkit-scrollbar { display: none; }

.segment__btn {
  flex: 1 0 auto;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--d-fast) var(--e-ui), background-color var(--d-fast) var(--e-ui);
}
.segment__btn:hover { color: var(--text); }
.segment__btn[aria-selected="true"] {
  background: var(--c-gold);
  color: var(--c-black);
}

/* ==========================================================================
   3. LOADER — black curtain, gold rule draws, wordmark rises, curtain lifts.
   ========================================================================== */

/* Only JS can dismiss the curtain, so only JS is allowed to raise it.
   Without scripts the page renders normally instead of staying black. */
.loader { display: none; }

.js .loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: grid;
  place-items: center;
  background: var(--c-black);
  transition: transform var(--d-hero) var(--e-out), visibility 0s linear 1100ms;
}
.loader__inner { text-align: center; }

.loader__mark {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 3vw, 3rem);
  font-weight: var(--fw-light);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0;
  transform: translateY(14px);
  animation: loader-in 900ms var(--e-out) 180ms forwards;
}
.loader__rule {
  width: min(220px, 48vw);
  height: 1px;
  margin: var(--s-5) auto 0;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: loader-rule 1000ms var(--e-inout) 260ms forwards;
}
@keyframes loader-in  { to { opacity: 1; transform: none; } }
@keyframes loader-rule{ to { transform: scaleX(1); } }

.js .loader.is-done {
  transform: translateY(-101%);
  visibility: hidden;
}

/* ==========================================================================
   4. HEADER — transparent over the hero, glass once scrolled.
   ========================================================================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition:
    height var(--d-base) var(--e-out),
    background-color var(--d-base) var(--e-ui),
    border-color var(--d-base) var(--e-ui),
    backdrop-filter var(--d-base) var(--e-ui);
}

.header.is-scrolled {
  height: var(--header-h-sm);
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--glass-dark-border);
}

/* Pages with no hero, set by initHeader(). The transparent header was
   designed to sit over a dark hero image; on the other 58 pages it sat over
   the white page body with a #FFFFFF wordmark on it, so the company name was
   simply not there until you scrolled 80px.

   Background only — deliberately no height change, because page content
   reserves space with the full --header-h and shrinking it here would shift
   every one of those pages. */
.header.is-solid {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--glass-dark-border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex: none;
  margin-right: auto;
}
/* The client's logo is a 881x146 lockup — mark and wordmark in one file — so
   this is sized by HEIGHT and left to find its own width. The old rule was a
   38x38 circle for a square mark; forcing a 6:1 lockup into that squashed it.
   No border-radius: the artwork is not a badge. */
.brand__img {
  height: 30px;
  width: auto;
  max-width: min(58vw, 260px);   /* never crowds the burger on a small phone */
  border-radius: 0;
  display: block;
}
@media (min-width: 900px) {
  .brand__img { height: 34px; }
}

/* .brand__name is gone from the markup — the wordmark is inside the logo now.
   The rule stays out too, rather than lingering as dead CSS. */

/* --- Primary nav --- */
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--s-6); }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding-block: var(--s-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--d-fast) var(--e-ui);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--d-base) var(--e-out);
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--c-white); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav__caret { width: 9px; height: 6px; transition: transform var(--d-fast) var(--e-ui); }
.nav__item--has-menu:hover .nav__caret { transform: rotate(180deg); }

/* --- Mega menu --- */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 12px);
  width: min(940px, calc(100vw - var(--gutter) * 2));
  padding: var(--s-6);
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  z-index: var(--z-megamenu);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--d-base) var(--e-out),
    transform var(--d-base) var(--e-out),
    visibility 0s linear var(--d-base);
}
.nav__item--has-menu:hover .megamenu,
.nav__item--has-menu:focus-within .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.megamenu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-2);
}
.megamenu__link {
  display: block;
  padding: var(--s-4);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: background-color var(--d-fast) var(--e-ui), border-color var(--d-fast) var(--e-ui);
}
.megamenu__link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--glass-dark-border);
}
.megamenu__title {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-md);
  color: var(--c-white);
  margin-bottom: var(--s-1);
}
.megamenu__title::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
  flex: none;
}
.megamenu__desc {
  font-size: var(--fs-xs);
  color: var(--c-n-400);
  line-height: var(--lh-normal);
  padding-left: calc(5px + var(--s-3));
}

.megamenu__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--glass-dark-border);
}

/* --- Header actions --- */
.header__actions { display: flex; align-items: center; gap: var(--s-5); flex: none; }

.header__tel {
  display: none;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--d-fast) var(--e-ui);
}
.header__tel:hover { color: var(--c-gold); }
.header__tel svg { width: 15px; height: 15px; }

/* Below 1024px the wordmark + CTA + burger exceed the viewport. The CTA is
   dropped here only — booking stays one tap away via the hero button, the
   drawer, and the sticky book bar that appears past the hero. */
@media (max-width: 1023px) {
  .header__inner { gap: var(--s-4); }
  .header__actions { gap: var(--s-2); }
  .header__cta { display: none; }
}

/* --- Mobile toggle --- */
.burger {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
}
.burger__box { width: 22px; height: 12px; position: relative; }
.burger__line {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--c-white);
  transition: transform var(--d-base) var(--e-out), opacity var(--d-fast) var(--e-ui);
}
.burger__line:nth-child(1) { top: 0; }
.burger__line:nth-child(2) { bottom: 0; }
.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { transform: translateY(-5.25px) rotate(-45deg); }

/* --- Mobile drawer --- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + var(--s-6)) var(--gutter) var(--s-7);
  background: var(--c-black);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--d-base) var(--e-out),
    transform var(--d-base) var(--e-out),
    visibility 0s linear var(--d-base);
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}
.drawer__list { display: flex; flex-direction: column; }
.drawer__link {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  padding-block: var(--s-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: var(--fw-light);
  color: var(--c-white);
}
.drawer__num {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  color: var(--c-gold);
}
.drawer__sub {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  padding: var(--s-4) 0 var(--s-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer__sub a {
  font-size: var(--fs-sm);
  color: var(--c-n-400);
}
.drawer__sub a:hover { color: var(--c-gold); }
.drawer__foot { margin-top: auto; padding-top: var(--s-7); display: grid; gap: var(--s-3); }

body.is-locked { overflow: hidden; }

/* ==========================================================================
   5. STICKY BOOK BAR — mobile, appears past the hero
   ========================================================================== */

.bookbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--gutter) calc(var(--s-3) + env(safe-area-inset-bottom));
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-dark-border);
  transform: translateY(101%);
  transition: transform var(--d-base) var(--e-out);
}
.bookbar.is-visible { transform: none; }
.bookbar .btn { flex: 1; }
.bookbar__tel {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex: none;
  border: 1px solid var(--glass-dark-border);
  border-radius: 50%;
  color: var(--c-white);
}
.bookbar__tel svg { width: 17px; height: 17px; }

/* ==========================================================================
   6. CARDS
   ========================================================================== */

.card {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform var(--d-base) var(--e-out),
    box-shadow var(--d-base) var(--e-out),
    border-color var(--d-base) var(--e-ui);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-n-100);
}
.on-dark .card__media { background: var(--c-n-900); }

.card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--e-out);
}
.card:hover .card__img { transform: scale(1.045); }

.card__body { padding: var(--s-5); }

/* ==========================================================================
   7. TESTIMONIAL
   ========================================================================== */

.quote {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding: var(--s-6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-raised);
  transition: border-color var(--d-base) var(--e-ui), transform var(--d-base) var(--e-out);
}
.quote:hover { border-color: rgba(212, 175, 55, 0.45); transform: translateY(-4px); }

.quote__mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--c-gold);
  height: 1.4rem;
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: var(--fw-light);
  font-style: italic;
  line-height: 1.55;
  flex: 1;
}
.quote__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
.quote__name { font-size: var(--fs-sm); font-weight: var(--fw-medium); }
.quote__lang {
  font-size: 0.6875rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  flex: none;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */

.footer { position: relative; overflow: hidden; }

/* --section-y is sized for a content section that needs air around it. The
   footer already has a --s-8 gap between columns and a bottom bar right
   after, so a full section pad on both sides added ~300px of nothing — most
   of the empty space the client reported. Smaller pad below than above,
   because the bottom bar carries its own padding.

   align-items: start stops the short columns stretching to match the tallest
   one, which was making them 505px of mostly empty column. */
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: var(--s-8);
  padding-top: calc(var(--section-y) * 0.6);
  padding-bottom: calc(var(--section-y) * 0.4);
}

.footer__brand { display: flex; flex-direction: column; gap: var(--s-5); max-width: 24rem; }

.footer__col-title {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-5);
}

.footer__links { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__links a,
.footer__meta-item {
  font-size: var(--fs-sm);
  color: var(--c-n-400);
  transition: color var(--d-fast) var(--e-ui);
}
.footer__links a:hover { color: var(--c-gold); }

.footer__meta { display: flex; flex-direction: column; gap: var(--s-4); }
.footer__meta-row { display: flex; gap: var(--s-3); align-items: flex-start; }
.footer__meta-row svg { width: 15px; height: 15px; flex: none; margin-top: 5px; color: var(--c-gold); }
.footer__meta-label {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  /* --c-n-600 reaches only 2.34:1 on #111. --c-n-400 gives 7.24:1. */
  color: var(--c-n-400);
  margin-bottom: 2px;
}
.footer__meta-value { font-size: var(--fs-sm); color: var(--c-n-300); }
a.footer__meta-value:hover { color: var(--c-gold); }

.newsletter { display: flex; flex-direction: column; gap: var(--s-3); }
.newsletter__row { display: flex; gap: var(--s-2); }
.newsletter__row .field__control { border-radius: var(--r-pill); }
.newsletter__submit {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-black);
  transition: background-color var(--d-fast) var(--e-ui), transform var(--d-micro) var(--e-ui);
}
.newsletter__submit:hover { background: var(--c-gold-light); transform: translateY(-2px); }
.newsletter__submit svg { width: 16px; height: 16px; }

.newsletter__check {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-xs);
  color: var(--c-n-400);
}
.newsletter__check input { width: 16px; height: 16px; accent-color: var(--c-gold); flex: none; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding-block: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--fs-xs);
  color: var(--c-n-400);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); }
.footer__legal a { transition: color var(--d-fast) var(--e-ui); }
.footer__legal a:hover { color: var(--c-gold); }

/* ==========================================================================
   FOOTER SOCIAL LINKS
   ========================================================================== */
.social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
  list-style: none;
  padding: 0;
}

.social__link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-n-800);
  color: var(--c-n-400);
  transition: color var(--d-fast) var(--e-ui),
              border-color var(--d-fast) var(--e-ui),
              transform var(--d-fast) var(--e-ui);
}
.social__link svg { width: 18px; height: 18px; }

.social__link:hover,
.social__link:focus-visible {
  color: var(--c-gold);
  border-color: var(--c-gold);
  transform: translateY(-2px);
}

/* The lift is decoration; the colour change is the actual affordance, so it
   survives for anyone who has asked the system to stop moving things. */
@media (prefers-reduced-motion: reduce) {
  .social__link:hover,
  .social__link:focus-visible { transform: none; }
}

/* Reopens the cookie choice. A <button>, not a link — it performs an action
   rather than going anywhere — but it sits among links so it borrows their
   look instead of the button component's. */
.footer__legal-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--d-fast) var(--e-ui);
}
.footer__legal-btn:hover { color: var(--c-gold); }

/* ==========================================================================
   COOKIE CONSENT

   Fixed to the bottom rather than covering the page: this asks a question,
   it does not need to block the site. A modal overlay here would be a dark
   pattern in reverse — pressure to accept just to read anything.
   ========================================================================== */
.ck {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  /* Above .bookbar (z-index 100). Both are pinned to the bottom on mobile, and
     with the banner underneath the sticky "Book a Ride" bar landed across its
     Accept and Reject buttons as soon as the visitor scrolled. A consent
     choice that cannot be clicked is worse than no banner at all. */
  z-index: 120;
  padding: var(--s-4);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.ck[hidden] { display: none; }

.ck__panel {
  pointer-events: auto;
  width: min(100%, 46rem);
  background: var(--c-n-950);
  color: var(--c-n-100);
  border: 1px solid var(--c-n-800);
  border-radius: var(--r-md, 12px);
  padding: var(--s-5);
  box-shadow: 0 18px 50px rgb(0 0 0 / 45%);
  animation: ck-rise var(--d-slow, 420ms) var(--e-out, cubic-bezier(.16,1,.3,1)) both;
}

@keyframes ck-rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* The banner appears unprompted, so it must not animate for anyone who has
   asked the system to stop moving things. */
@media (prefers-reduced-motion: reduce) {
  .ck__panel { animation: none; }
}

.ck__title { font-size: var(--fs-3, 1.125rem); margin: 0 0 var(--s-2); }
.ck__body  { font-size: var(--fs-1, .9375rem); color: var(--c-n-300); margin: 0 0 var(--s-4); }

.ck__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
}

/* Accept and reject are the SAME size and weight. Making "reject" a faint
   text link while "accept" is a filled button is the standard trick for
   manufacturing consent, and it is the thing regulators actually fine. */
.ck__actions .btn { flex: 0 0 auto; }

.ck__link {
  margin-left: auto;
  font-size: var(--fs-0, .875rem);
  color: var(--c-n-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ck__link:hover { color: var(--c-gold); }

@media (max-width: 40rem) {
  .ck { padding: var(--s-3); }
  .ck__actions .btn { flex: 1 1 auto; }
  .ck__link { margin-left: 0; width: 100%; }
}

/* Oversized ghost wordmark bleeding off the footer base */
/* The outline "Crown Rides" wordmark that used to sit here is gone. At
   clamp(4rem, 14vw, 15rem) it reserved a band the height of a small screen,
   and because the stroke is only 7% white it read as empty space rather than
   as decoration — the footer looked broken, not branded. Removed on the
   client's instruction. Do not reintroduce it without a height budget. */

/* ==========================================================================
   9. RESPONSIVE
   ========================================================================== */

@media (min-width: 600px) {
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 768px) {
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .megamenu__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .nav { display: block; }
  .burger { display: none; }
  .header__tel { display: inline-flex; }
  .nav__item--has-menu { position: static; }
  .header__inner { position: relative; }
  .footer__top { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr); gap: var(--s-7); }
  .bookbar { display: none; }
}

/* ==========================================================================
   SHARED SECTION COMPONENTS
   Trust marquee · fleet rail · amenities · why-rows · feature strip ·
   testimonial rail · CTA band. Used by the home page AND every
   generated inner page, so they must live here, not in home.css.
   ========================================================================== */

/* ==========================================================================
   2. TRUST MARQUEE
   ========================================================================== */

.trust {
  border-block: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}
.trust__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.trust:hover .trust__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.trust__group { display: flex; flex: none; }

.trust__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-7);
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: var(--text-muted);
}
.trust__item::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-gold);
  margin-left: var(--s-7);
  flex: none;
}
.trust__item svg { width: 17px; height: 17px; color: var(--c-gold-deep); flex: none; }
.on-dark .trust__item svg { color: var(--c-gold); }

@media (prefers-reduced-motion: reduce) {
  .trust__track { animation: none; }
  .trust { overflow-x: auto; }
}

/* ==========================================================================
   4. FLEET — scroll-snap rail (replaces the Slick carousel entirely)
   ========================================================================== */

.fleet { overflow: hidden; }

.fleet__rail {
  display: flex;
  gap: var(--s-5);
  padding-inline: var(--gutter);
  padding-bottom: var(--s-5);
  margin-inline: calc(var(--gutter) * -1);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.fleet__rail::-webkit-scrollbar { display: none; }

.fleet-card {
  flex: 0 0 min(340px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--d-base) var(--e-ui), transform var(--d-base) var(--e-out);
}
.fleet-card:hover { border-color: rgba(212, 175, 55, 0.5); transform: translateY(-5px); }

.fleet-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--c-n-050);
  overflow: hidden;
}
.on-dark .fleet-card__media { background: var(--c-n-900); }
.fleet-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: var(--s-4);
  transition: transform var(--d-slow) var(--e-out);
}
.fleet-card:hover .fleet-card__media img { transform: scale(1.05); }

.fleet-card__tag {
  position: absolute;
  top: var(--s-4); left: var(--s-4);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--c-black);
  color: var(--c-gold);
  font-size: 0.6875rem;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
}

.fleet-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-5);
  border-top: 1px solid var(--border);
  flex: 1;
}
.fleet-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
  line-height: 1.15;
}
.fleet-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
}
.fleet-card__link svg { width: 14px; height: 14px; transition: transform var(--d-base) var(--e-out); }
.fleet-card:hover .fleet-card__link svg { transform: translateX(4px); }

/* Rail controls */
.rail-nav { display: flex; gap: var(--s-3); }
.rail-nav__btn {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  transition: background-color var(--d-fast) var(--e-ui), color var(--d-fast) var(--e-ui),
              border-color var(--d-fast) var(--e-ui), opacity var(--d-fast) var(--e-ui);
}
.rail-nav__btn:hover:not(:disabled) {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
}
.rail-nav__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.rail-nav__btn svg { width: 16px; height: 16px; }

/* Shared amenity strip.
   auto-fit rather than a viewport breakpoint: this strip appears both
   full-width (home fleet section) and inside a narrow copy column (vehicle
   pages). It must respond to its container, not the window. */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
}
.amenity {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-sm);
}
.amenity svg { width: 18px; height: 18px; color: var(--text-accent); flex: none; }

/* ==========================================================================
   5. WHY CHOOSE US — numbered editorial rows
   ========================================================================== */

.why-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-4);
  align-items: baseline;
  padding-block: var(--s-6);
  border-bottom: 1px solid var(--border);
}
.why-row:first-child { border-top: 1px solid var(--border); }
.why-row:hover .t-numeral { -webkit-text-stroke-color: var(--c-gold); }
.why-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: var(--fw-regular);
  line-height: 1.15;
}
.why-row__text { color: var(--text-muted); max-width: 52ch; }

/* ==========================================================================
   6. FEATURE STRIP
   ========================================================================== */

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-6) var(--s-5);
  background: var(--bg);
  transition: background-color var(--d-base) var(--e-ui);
}
.feature:hover { background: var(--bg-subtle); }
.feature__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--rule-gold);
  border-radius: 50%;
  color: var(--text-accent);
}
.feature__icon svg { width: 19px; height: 19px; }
.feature__title { font-size: var(--fs-lg); font-weight: var(--fw-medium); line-height: 1.3; }


/* ==========================================================================
   9. TESTIMONIALS
   ========================================================================== */

.quotes__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(400px, 84vw);
  gap: var(--s-5);
  padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.quotes__rail::-webkit-scrollbar { display: none; }
.quotes__rail > * { scroll-snap-align: start; }

/* ==========================================================================
   10. CTA BAND
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--c-black);
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.34;
}
.cta__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.92) 12%, rgba(0,0,0,.55) 62%, rgba(0,0,0,.75) 100%);
}
.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  align-items: flex-start;
  max-width: 46rem;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.cta__actions .btn--secondary { color: var(--c-white); }
.cta__actions .btn--secondary:hover { background: var(--c-white); color: var(--c-black); }


/* ==========================================================================
   RESPONSIVE — shared components
   ========================================================================== */

@media (min-width: 768px) {
  .features  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why-row   { grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1.1fr); gap: var(--s-6); align-items: baseline; }
}

@media (min-width: 1024px) {
  .fleet-card { flex-basis: 380px; }
}

/* ==========================================================================
   LANGUAGE — first-visit chooser + header switcher
   ========================================================================== */

.langpick {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.langpick__panel {
  width: 100%;
  max-width: 30rem;
  padding: var(--s-7) var(--s-6);
  text-align: center;
  background: var(--c-ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  animation: langpick-in var(--d-base) var(--e-out);
}
@keyframes langpick-in { from { opacity: 0; transform: translateY(12px) scale(0.98); } }

.langpick__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--fw-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-6);
}
.langpick__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
  font-weight: var(--fw-light);
  line-height: 1.15;
  color: var(--c-white);
}
.langpick__lead {
  font-size: var(--fs-sm);
  color: var(--c-n-400);
  margin-top: var(--s-3);
}

.langpick__opts {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.langpick__opt {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  color: var(--c-white);
  transition: background-color var(--d-fast) var(--e-ui),
              border-color var(--d-fast) var(--e-ui),
              transform var(--d-base) var(--e-out);
}
.langpick__opt:hover,
.langpick__opt.is-suggested {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--c-gold);
  transform: translateY(-2px);
}
.langpick__code {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  color: var(--c-gold);
}
.langpick__name { flex: 1; text-align: left; font-size: var(--fs-lg); }
.langpick__opt svg { width: 17px; height: 17px; color: var(--c-gold); flex: none;
  transition: transform var(--d-base) var(--e-out); }
.langpick__opt:hover svg { transform: translateX(4px); }

/* --- header switcher --- */
.langsw { position: relative; flex: none; }

.langsw__btn {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--d-fast) var(--e-ui), background-color var(--d-fast) var(--e-ui);
}
.langsw__btn:hover { color: var(--c-white); background: rgba(255, 255, 255, 0.08); }
.langsw__btn svg:first-child { width: 16px; height: 16px; }
.langsw__btn .nav__caret { width: 9px; height: 6px; transition: transform var(--d-fast) var(--e-ui); }
.langsw__btn[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

.langsw__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 9rem;
  padding: var(--s-2);
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--d-fast) var(--e-ui),
              transform var(--d-base) var(--e-out),
              visibility 0s linear var(--d-base);
}
.langsw:hover .langsw__list,
.langsw:focus-within .langsw__list,
.langsw__btn[aria-expanded="true"] + .langsw__list {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.langsw__item {
  display: block;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: background-color var(--d-fast) var(--e-ui), color var(--d-fast) var(--e-ui);
}
.langsw__item:hover { background: rgba(255, 255, 255, 0.07); color: var(--c-white); }
.langsw__item.is-current { color: var(--c-gold); }

/* --- drawer languages --- */
.drawer__langs {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer__lang {
  flex: 1;
  padding: var(--s-3);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  color: var(--c-n-300);
}
.drawer__lang.is-current { border-color: var(--c-gold); color: var(--c-gold); }

@media (max-width: 1023px) {
  .langsw { display: none; }
}

/* --- scroll affordance for the ride-type strip --------------------------- */

/* Fade hinting at content beyond the edge. Non-interactive. */
.segment-wrap::before,
.segment-wrap::after {
  content: "";
  position: absolute;
  top: 1px; bottom: 1px;
  width: 46px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--d-fast) var(--e-ui);
  z-index: 2;
  border-radius: var(--r-pill);
}
.segment-wrap::before {
  left: 1px;
  background: linear-gradient(90deg, var(--bg-raised) 30%, transparent);
}
.segment-wrap::after {
  right: 1px;
  background: linear-gradient(270deg, var(--bg-raised) 30%, transparent);
}
.on-dark .segment-wrap::before { background: linear-gradient(90deg, var(--c-ink) 30%, transparent); }
.on-dark .segment-wrap::after  { background: linear-gradient(270deg, var(--c-ink) 30%, transparent); }

.segment-wrap.can-left::before  { opacity: 1; }
.segment-wrap.can-right::after  { opacity: 1; }

.segment-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  transform: translateY(-50%);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--bg-raised);
  color: var(--text);
  /* Appearance is NOT transitioned, deliberately.
     Fading the arrow in means its visibility depends on frames being painted.
     Transitioning `visibility` alongside opacity stopped the transition
     starting at all, and any dropped frame leaves the arrow stranded
     invisible — the exact cue the user needs. It is either there or it is
     not. Only the hover colours animate. */
  opacity: 0;
  pointer-events: none;
  transition: background-color var(--d-fast) var(--e-ui),
              color var(--d-fast) var(--e-ui),
              border-color var(--d-fast) var(--e-ui);
}
.segment-nav svg { width: 13px; height: 13px; }
.segment-nav:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-black); }
.segment-nav--prev { left: 3px; }
.segment-nav--next { right: 3px; }

.on-dark .segment-nav {
  background: var(--c-n-800);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--c-white);
}
.on-dark .segment-nav:hover { background: var(--c-gold); color: var(--c-black); }

.segment-wrap.can-left  .segment-nav--prev,
.segment-wrap.can-right .segment-nav--next {
  opacity: 1;
  pointer-events: auto;
}

/* --- drawer close button -------------------------------------------------
   Client feedback: there was no way to dismiss the mobile menu without
   choosing a link. The burger still toggles, but a visible X is what people
   look for. Sits above the list, clear of the notch/status bar. */
.drawer__close {
  position: absolute;
  top: calc(env(safe-area-inset-top) + var(--s-4));
  right: var(--gutter);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--c-white);
  transition: background-color var(--d-fast) var(--e-ui),
              border-color var(--d-fast) var(--e-ui),
              transform var(--d-base) var(--e-out);
}
.drawer__close svg { width: 19px; height: 19px; }
.drawer__close:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
  transform: rotate(90deg);
}


/* ==========================================================================
   TEAM
   Shared: the home page and /about both render this. It lived in home.css,
   which /about does not load, so the portraits came out at natural size in a
   single column. Keep shared components here.
   ========================================================================== */

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-5);
}
.member { display: flex; flex-direction: column; gap: var(--s-4); }
.member__media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-n-900);
}
.member__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter var(--d-slow) var(--e-out), transform var(--d-slow) var(--e-out);
}
.member:hover .member__media img { filter: grayscale(0); transform: scale(1.04); }
.member__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
}
/* Detail panel — slides up over the lower half of the portrait.

   Revealed by :hover AND :focus-within, so it is reachable by keyboard. The
   text is always in the DOM and never `display:none`, so screen readers and
   search engines get it whether or not it is visually revealed — the motion
   is decoration on top of content that already exists, not the thing that
   makes it exist (see DECISIONS.md on animating existence). */
.member__detail {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: var(--s-5) var(--s-4) var(--s-4);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.92) 38%);
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform var(--d-base) var(--e-out),
    opacity var(--d-fast) var(--e-ui);
}
.member:hover .member__detail,
.member:focus-within .member__detail {
  transform: translateY(0);
  opacity: 1;
}
.member__bio {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--c-n-200);
}

/* The portrait already carries a bottom scrim for the name. With the panel
   open the two stack and the text muddies, so retire it on reveal. */
.member:hover .member__media::after,
.member:focus-within .member__media::after { opacity: 0; }
.member__media::after { transition: opacity var(--d-fast) var(--e-ui); }

/* On a touch screen there is no hover, so a reveal-on-hover panel is simply
   unreachable — the detail would exist for mouse users only. Show it there
   permanently instead. Adding tabindex to the card to fake a focus trigger
   would put a focus stop on a div that does nothing when activated, which is
   worse for keyboard users than the text simply being in the DOM. */
@media (hover: none) {
  .member__detail { transform: none; opacity: 1; }
  .member__media::after { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .member__detail { transition: opacity var(--d-fast) linear; transform: none; }
  .member:hover .member__media img,
  .member:focus-within .member__media img { transform: none; }
}

.member__name { font-family: var(--font-display); font-size: 1.375rem; font-weight: var(--fw-regular); }
.member__role {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
  margin-top: var(--s-1);
}

@media (min-width: 768px) {
  .team__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}


/* Status line for the contact and newsletter forms. Both used to submit into
   nothing at all, so a visible result is the whole point. */
.formnote {
  margin-top: var(--s-4);
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.formnote[data-tone="ok"]  { color: var(--c-gold-deep); }
.formnote[data-tone="err"] { color: var(--c-error); }
.on-dark .formnote[data-tone="ok"] { color: var(--c-gold); }
