/* ==========================================================================
   Buzz Wash — implementation of design/Buzz Wash.dc.html
   Palette, type and spacing are lifted directly from the design prototype;
   the inline styles there are expressed as a small component system here.
   ========================================================================== */

:root {
  /* Surfaces */
  --ink: #0c0c0c;
  --ink-deep: #0a0a0a;
  --surface: #141414;
  --surface-alt: #161616;
  --surface-inset: #0f0f0f;
  --well: #101010;
  --well-alt: #131313;

  /* Lines */
  --line: #262626;
  --line-soft: #242424;
  --line-faint: #1e1e1e;
  --line-hair: #1a1a1a;
  --line-strong: #3a3a3a;
  --line-amber: #4a3d1c;
  --line-amber-soft: #3a3123;

  /* Brand */
  --amber: #ffc220;
  --amber-hi: #ffd75e;

  /* Text */
  --paper: #f2f0ec;
  --paper-hi: #f7f5f1;
  --t1: #c9c4ba;
  --t2: #bdb8ae;
  --t3: #ada79d;
  --t4: #9c978e;
  --t5: #8a857d;
  --t6: #86817a;
  --t7: #6e6a64;
  --t8: #5e5a54;
  --t9: #4f4b46;

  --display: 'Archivo Black', system-ui, sans-serif;
  --body: 'Space Grotesk', system-ui, sans-serif;

  --container: 1240px;
  --gutter: 24px;
  --radius-card: 18px;
  --radius-lg: 20px;
}

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

html, body { margin: 0; padding: 0; background: var(--ink); }

body {
  font-family: var(--body);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-hi); }
img { max-width: 100%; display: block; }
::selection { background: var(--amber); color: var(--ink); }

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

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

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 100; background: var(--amber); color: var(--ink);
  font-weight: 700; padding: 12px 20px; border-radius: 0 0 12px 12px;
  transition: top 160ms ease;
}
.skip-link:focus { top: 0; color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

/* Grid/flex items default to a min-content floor, which lets one stubborn
   child push a whole column past the viewport. Every layout track opts out. */
.grid > *, .split > *, .stack > *, .hero__grid > *, .ways-grid > *,
.visit__grid > *, .cta-band__grid > *, .footer__inner > * { min-width: 0; }

/* Component text elements carry their own rhythm rather than the UA's. */
.tag, .card__kicker, .card__body, .card__title, .tier__name, .tier__price,
.tier__desc, .post-card__title, .post-card__dek, .post-card__date,
.club-card__name, .club-card__wash, .club-card__note, .club-row__name,
.club-row__wash, .club-row__price, .visit__card-title, .feature-card__meta,
.photo__label, .photo__hint, .brand__word { margin: 0; }

/* --------------------------------------------------------------------------
   Shared type
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--amber);
  margin: 0 0 16px;
}

.h1 {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--paper-hi);
  text-wrap: balance;
}
.h1--page {
  font-size: clamp(36px, 6.2vw, 62px);
  line-height: 1.02;
  margin-bottom: 18px;
}
.h1--60 { font-size: clamp(34px, 6vw, 60px); }
.h1--64 { font-size: clamp(36px, 6.4vw, 64px); line-height: 1; }
.h1--flat { line-height: 1; }
.h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4.1vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--paper-hi);
}
.h2--lg { font-size: clamp(30px, 4.4vw, 46px); }
.h2--md { font-size: clamp(29px, 4.2vw, 44px); line-height: 1.04; }
.h2--sm { font-size: clamp(28px, 3.6vw, 38px); }
.h2--xs { font-size: clamp(26px, 3.4vw, 32px); line-height: 1.1; margin-bottom: 8px; }
.h2--flush { margin-bottom: 12px; }
.h2--amber { color: var(--amber); }
.h2--rules { margin-bottom: 34px; }
.h3 {
  font-family: var(--display);
  font-size: 23px; line-height: 1.15; margin: 0 0 12px; color: var(--paper-hi);
}

.lede {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6; color: var(--t3); margin: 0 0 34px;
  max-width: 620px; text-wrap: pretty;
}
.lede--tight { margin-bottom: 0; }
.lede--gap { margin-bottom: 26px; }
.lede--w600 { max-width: 600px; }
.lede--w640 { max-width: 640px; }
.lede--w700 { max-width: 700px; }

.section { padding-block: clamp(56px, 8vw, 96px); }
.section--tight { padding-block: clamp(44px, 6vw, 70px) 40px; }
.section--split { padding-block: 50px clamp(56px, 8vw, 90px); }
.section--pad { padding-block: clamp(44px, 6vw, 64px); }
.section--pad-b { padding-block: clamp(44px, 6vw, 64px) clamp(56px, 8vw, 90px); }
.section--list { padding-block: clamp(40px, 5.5vw, 60px) clamp(56px, 8vw, 90px); }

.section-intro { max-width: 700px; margin-bottom: 52px; }
.section-intro .lede { max-width: 700px; margin-bottom: 0; }
.subhead { font-size: 17px; line-height: 1.6; color: var(--t4); margin: 0 0 44px; }

.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px; align-items: center;
}
.stack { display: flex; flex-direction: column; gap: 12px; }
.stack--lg { gap: 20px; }
.section--band {
  background: var(--well);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.section--surface {
  background: var(--surface);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .h2 { margin: 0; }

/* --------------------------------------------------------------------------
   Buttons & links
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block; border-radius: 999px; font-weight: 700;
  font-size: 16px; padding: 16px 28px; border: 1px solid transparent;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
  white-space: nowrap;
}
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: var(--amber-hi); color: var(--ink); }
.btn--ghost { border-color: var(--line-strong); color: var(--paper); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--sm { font-size: 14px; padding: 11px 20px; }
.btn--md { font-size: 15px; padding: 14px 24px; }
/* On the amber band */
.btn--onAmber { background: var(--ink); color: var(--amber); }
.btn--onAmber:hover { background: #1a1a1a; color: var(--amber-hi); }
.btn--onAmberOutline { border: 2px solid var(--ink); color: var(--ink); padding: 13px 26px; }
.btn--onAmberOutline:hover { background: var(--ink); color: var(--amber); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }
.btn-row--spaced { margin-top: 32px; }

.link-rule {
  font-weight: 700; font-size: 15px;
  border-bottom: 2px solid var(--amber); padding-bottom: 3px;
  align-self: flex-end;
}
.link-rule--start { align-self: flex-start; }
.link-rule--sm { font-size: 14px; padding-bottom: 2px; }

/* --------------------------------------------------------------------------
   Promo bar + masthead
   -------------------------------------------------------------------------- */

.promo {
  background: var(--amber); color: var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 9px var(--gutter);
}
.promo__inner { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.promo__sep { opacity: 0.45; }

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.masthead__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 32px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark { height: 52px; width: 52px; object-fit: contain; border-radius: 10px; }
.brand__word {
  font-family: var(--display); font-size: 20px;
  letter-spacing: -0.02em; color: var(--amber);
}
.brand__word-alt { color: var(--paper); }

.nav { display: flex; gap: 26px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav__links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.nav__link {
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  color: #b9b5ad; padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color 140ms ease, border-color 140ms ease;
}
.nav__link:hover { color: var(--amber); }
.nav__link[aria-current='page'] { color: var(--amber); border-bottom-color: var(--amber); }

.nav__toggle {
  display: none; margin-left: auto; background: none; cursor: pointer;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px;
  width: 46px; height: 44px; align-items: center; justify-content: center;
}
.nav__toggle-bars, .nav__toggle-bars::before, .nav__toggle-bars::after {
  display: block; width: 20px; height: 2px; background: var(--paper);
  border-radius: 2px; transition: transform 160ms ease, opacity 160ms ease;
}
.nav__toggle-bars { position: relative; }
.nav__toggle-bars::before, .nav__toggle-bars::after { content: ''; position: absolute; left: 0; }
.nav__toggle-bars::before { top: -6px; }
.nav__toggle-bars::after { top: 6px; }
.nav__toggle[aria-expanded='true'] .nav__toggle-bars { background: transparent; }
.nav__toggle[aria-expanded='true'] .nav__toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded='true'] .nav__toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(52px, 7vw, 80px);
  background:
    radial-gradient(1100px 520px at 78% 12%, rgba(255, 194, 32, 0.16), transparent 70%),
    var(--ink);
  border-bottom: 1px solid var(--line-faint);
}
.hero__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px; align-items: center;
}
.hero__media { position: relative; height: 480px; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-amber-soft);
  background: rgba(255, 194, 32, 0.08);
  color: var(--amber);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 8px 14px; border-radius: 999px;
  margin: 0 0 26px;
}

/* Two up, as the design's 560px-wide auto-fit track resolves to. Spelled out
   explicitly rather than left to auto-fit: an auto-fit repeat inside a
   max-width box reports a two-column min-content, which then pushes the whole
   hero column wider than the viewport on small screens. */
.stats {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px; border-top: 1px solid var(--line-faint);
  padding-top: 26px; max-width: 560px; margin-top: 40px;
}
.stat__value { font-family: var(--display); font-size: 28px; color: var(--amber); margin: 0; }
.stat__label {
  font-size: 12px; color: var(--t5); letter-spacing: 0.06em;
  text-transform: uppercase; margin: 4px 0 0;
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  background: var(--amber); color: var(--ink);
  overflow: hidden; padding: 16px 0;
  border-bottom: 4px solid var(--ink);
}
/* The prototype animated `background-position` on an element with no
   background, so the strip never actually moved. Implemented here as a real
   marquee: the track holds two identical copies and slides exactly one copy
   width, which loops seamlessly. Each copy carries its own trailing gap as
   padding so -50% lands on an exact repeat. */
.marquee__track {
  font-family: var(--display); font-size: 20px; letter-spacing: 0.02em;
  white-space: nowrap; display: flex; width: max-content;
  animation: buzzdrift 30s linear infinite;
}
.marquee__track > span { padding-right: 34px; }
@keyframes buzzdrift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--clubs { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 14px; align-items: stretch; }
.grid--roomy { gap: 22px; }
.grid--stacked { margin-top: 34px; }
.grid--above { margin-bottom: 20px; }

.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-card); padding: 30px;
}
.card--lg { border-radius: var(--radius-lg); padding: 38px; }
.card--pad-md { padding: 28px; }
.card--pad-34 { padding: 34px; }
.card--pad-36 { padding: 36px; }
.card--fill { flex: 1; }
.card--inset { background: var(--surface-inset); }
.card--accent {
  background: linear-gradient(150deg, rgba(255, 194, 32, 0.14), rgba(255, 194, 32, 0.02));
  border-color: var(--line-amber);
}
.card__kicker {
  font-family: var(--display); font-size: 15px;
  color: var(--amber); margin-bottom: 14px;
}
.card__body { font-size: 15px; line-height: 1.65; color: var(--t4); margin: 0; }
.card__body--bright { color: var(--t1); }
.card__title {
  font-family: var(--display); font-size: 20px;
  color: var(--paper-hi); margin-bottom: 10px;
}
.card__title--sm { font-size: 18px; }
.card__body--gap { margin-bottom: 14px; }
.card__body--gap-lg { margin-bottom: 22px; }
.card__body--gap-xl { margin-bottom: 26px; }
.card__kicker--tight { margin-bottom: 12px; }

.tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber);
}
.tag--pill {
  align-self: flex-start; background: var(--amber); color: var(--ink);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 20px;
}
.tag--gap { margin-bottom: 14px; }

.feature-card {
  display: flex; flex-direction: column;
  background: var(--surface-alt); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px;
}
.feature-card--hero {
  background: linear-gradient(160deg, rgba(255, 194, 32, 0.14), rgba(255, 194, 32, 0.02));
  border-color: var(--line-amber);
}
.feature-card__title {
  font-family: var(--display); font-size: 26px; margin: 0 0 14px;
  color: var(--paper-hi); line-height: 1.1;
}
.feature-card--hero .feature-card__title { font-size: 30px; color: var(--amber); line-height: 1.08; }
.feature-card__text { font-size: 15px; line-height: 1.65; color: var(--t4); margin: 0 0 20px; }
.feature-card--hero .feature-card__text { font-size: 16px; color: var(--t1); }
.feature-card__meta { margin-top: auto; font-size: 14px; color: var(--t5); }
.feature-card__price {
  color: var(--paper-hi); font-size: 20px; font-family: var(--display); font-weight: 400;
}

.ways-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 1fr) minmax(240px, 1fr);
  gap: 20px;
}

/* --------------------------------------------------------------------------
   Wash tiers
   -------------------------------------------------------------------------- */

.tier {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-card); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.tier--detail { border-radius: var(--radius-lg); padding: 30px; }
.tier__name { font-family: var(--display); font-size: 24px; color: var(--paper-hi); }
.tier--detail .tier__name { font-size: 26px; }
.tier__price { font-family: var(--display); font-size: 44px; color: var(--amber); line-height: 1; }
.tier--detail .tier__price { font-size: clamp(40px, 5vw, 52px); }
.tier__desc {
  font-size: 14px; line-height: 1.6; color: var(--t5);
  border-bottom: 1px solid var(--line-soft); padding-bottom: 14px;
}
.tier__link { margin-top: auto; padding-top: 18px; font-size: 13px; font-weight: 700; }

.ticklist { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ticklist--roomy { gap: 9px; }
.ticklist li {
  font-size: 14px; line-height: 1.45; color: var(--t4);
  display: flex; gap: 9px; list-style: none;
}
.ticklist--bright li { color: var(--t1); }
.ticklist li::before { content: '✦'; color: var(--amber); flex-shrink: 0; }
.ticklist, .ticklist li { padding: 0; margin-block: 0; }

/* --------------------------------------------------------------------------
   Clubs
   -------------------------------------------------------------------------- */

.club-row {
  display: flex; align-items: baseline; gap: 16px;
  background: var(--surface-inset); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 18px 22px;
}
.club-row__name {
  font-family: var(--display); font-size: 17px; color: var(--paper-hi);
  width: 120px; flex-shrink: 0;
}
.club-row__wash { font-size: 14px; color: var(--t5); flex: 1; }
.club-row__price { font-family: var(--display); font-size: 22px; color: var(--amber); }

.club-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.club-card__name { font-family: var(--display); font-size: 20px; color: var(--paper-hi); line-height: 1.1; }
.club-card__price-row { display: flex; align-items: baseline; gap: 5px; }
.club-card__price { font-family: var(--display); font-size: 34px; color: var(--amber); }
.club-card__per { font-size: 13px; color: var(--t5); }
.club-card__wash {
  font-size: 13px; color: var(--t1); line-height: 1.5;
  border-bottom: 1px solid var(--line-soft); padding-bottom: 14px;
}
.club-card .ticklist li { font-size: 13px; gap: 8px; }
.club-card__note { font-size: 12px; line-height: 1.5; color: var(--t7); margin-top: 6px; }
.club-card__cta { margin-top: auto; text-align: center; }

/* --------------------------------------------------------------------------
   Price tables
   -------------------------------------------------------------------------- */

.price-table {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--line-soft); border-radius: 12px; overflow: hidden;
  list-style: none; margin: 0; padding: 0;
}
.price-table li {
  display: flex; justify-content: space-between; gap: 16px;
  background: var(--surface-inset); padding: 15px 20px; font-size: 15px;
}
.price-table span { color: var(--t1); }
.price-table strong { color: var(--amber); }

.spec-list { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.spec-list div { display: flex; justify-content: space-between; gap: 16px; }
.spec-list span { color: var(--t4); }
.spec-list strong { color: var(--amber); }

.footnote { font-size: 13px; color: var(--t7); margin: 18px 0 0; }

.chip-row { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; font-weight: 700; color: var(--amber); }
.chip { border: 1px solid var(--line-amber-soft); border-radius: 999px; padding: 7px 14px; }

.bignum { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.bignum__value { font-family: var(--display); font-size: clamp(40px, 6vw, 56px); color: var(--amber); line-height: 1; }
.bignum__unit { font-size: 15px; color: var(--t4); }
.bignum__unit--bright { color: var(--t1); }

/* --------------------------------------------------------------------------
   Post cards
   -------------------------------------------------------------------------- */

.post-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; color: inherit;
  transition: border-color 140ms ease;
}
.post-card:hover { border-color: var(--line-amber); color: inherit; }
.post-card__media { height: 180px; background: var(--well); }
.post-card__media--sm { height: 170px; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__title { font-family: var(--display); font-size: 20px; line-height: 1.2; color: var(--paper-hi); }
.post-card__title--lg { font-size: 21px; line-height: 1.18; }
.post-card__dek { font-size: 14px; line-height: 1.6; color: var(--t5); }
.post-card__date { margin-top: auto; padding-top: 14px; font-size: 12px; color: var(--t8); }

/* --------------------------------------------------------------------------
   Article
   -------------------------------------------------------------------------- */

.article { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) var(--gutter) 0; }
.article__back {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--t5);
}
.article__back:hover { color: var(--amber); }
.article__meta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber); margin: 34px 0 16px;
}
.article__title {
  font-family: var(--display); font-size: clamp(32px, 5.4vw, 50px);
  line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 20px;
  color: var(--paper-hi); text-wrap: balance;
}
.article__dek {
  font-size: clamp(17px, 2.2vw, 20px); line-height: 1.6;
  color: var(--t3); margin: 0 0 38px; text-wrap: pretty;
}
.article__media { height: 380px; margin-bottom: 44px; }
.article__body { display: flex; flex-direction: column; gap: 34px; padding-bottom: 60px; }
.article__h2 {
  font-family: var(--display); font-size: clamp(22px, 3vw, 27px);
  line-height: 1.2; margin: 0 0 16px; color: var(--paper-hi);
}
.article__section { display: flex; flex-direction: column; gap: 18px; }
.article__section p {
  font-size: 17px; line-height: 1.75; color: var(--t2); margin: 0; text-wrap: pretty;
}

.endcap { background: var(--surface); border-top: 1px solid var(--line-faint); padding: 60px var(--gutter); }
.endcap__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.endcap h2 { font-family: var(--display); font-size: clamp(26px, 4vw, 32px); margin: 0 0 12px; color: var(--paper-hi); }
.endcap p { font-size: 16px; color: var(--t4); margin: 0 0 24px; }
.endcap .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   Amber CTA band
   -------------------------------------------------------------------------- */

.cta-band { background: var(--amber); color: var(--ink); padding: clamp(56px, 7vw, 80px) var(--gutter); }
.cta-band__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px; align-items: center;
}
.cta-band .eyebrow { color: inherit; opacity: 0.7; }
.cta-band h2 {
  font-family: var(--display); font-size: clamp(30px, 4.4vw, 46px);
  margin: 0 0 16px; letter-spacing: -0.02em; line-height: 1.04;
}
.cta-band p { font-size: clamp(16px, 2vw, 18px); line-height: 1.6; margin: 0 0 26px; font-weight: 500; }
.cta-band__media { height: 320px; border-radius: var(--radius-lg); overflow: hidden; border: 3px solid var(--ink); }

/* --------------------------------------------------------------------------
   Page headers
   -------------------------------------------------------------------------- */

.pagehead {
  padding: clamp(48px, 6.5vw, 76px) var(--gutter) clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--line-faint);
}
.pagehead--tl { background: radial-gradient(900px 400px at 20% 0%, rgba(255, 194, 32, 0.13), transparent 70%); }
.pagehead--tc { background: radial-gradient(900px 420px at 70% 0%, rgba(255, 194, 32, 0.14), transparent 70%); }
.pagehead--tr { background: radial-gradient(800px 380px at 80% 0%, rgba(255, 194, 32, 0.11), transparent 70%); }
.pagehead--tm { background: radial-gradient(900px 400px at 30% 0%, rgba(255, 194, 32, 0.12), transparent 70%); }
.pagehead--center { text-align: center; }
.pagehead--plain { border-bottom: 0; }
.pagehead--center .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Photo wells
   -------------------------------------------------------------------------- */

.photo {
  margin: 0; height: 100%; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--well-alt);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--empty {
  background:
    radial-gradient(120% 120% at 70% 20%, rgba(255, 194, 32, 0.14), transparent 62%),
    url('/assets/hex.svg') 0 0 / 90px 156px repeat,
    var(--well-alt);
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.photo__caption { display: flex; flex-direction: column; gap: 6px; }
.photo__label {
  font-family: var(--display); font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--amber);
}
.photo__hint {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t7);
}
/* Wells that already sit inside a rounded/bordered parent */
.post-card__media .photo,
.hero__media .photo,
.article__media .photo,
.cta-band__media .photo,
.visit__media .photo { border-radius: inherit; }
.post-card__media .photo { border: 0; border-radius: 0; }
.cta-band__media .photo { border: 0; }

/* --------------------------------------------------------------------------
   Visit
   -------------------------------------------------------------------------- */

.visit__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.visit__col { display: flex; flex-direction: column; gap: 20px; }
.visit__media { min-height: 560px; }
.visit__card-title { font-family: var(--display); font-size: 22px; color: var(--paper-hi); margin-bottom: 16px; }
.card--lg .visit__card-title { margin-bottom: 14px; }
.visit__text { font-size: 15px; line-height: 1.7; color: var(--t4); margin: 0 0 18px; }
.visit__text:last-child { margin-bottom: 0; }

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

.footer {
  border-top: 1px solid var(--line-faint);
  background: var(--ink-deep);
  padding: 60px var(--gutter) 40px;
}
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.footer__word { font-size: 20px; margin-bottom: 14px; }
.footer__address { font-size: 14px; line-height: 1.7; color: var(--t6); margin: 0 0 16px; max-width: 300px; }
.footer__services { font-size: 13px; color: var(--t8); margin: 0; }
.footer__heading {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--paper); margin: 0 0 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer__links a { color: var(--t6); }
.footer__links a:hover { color: var(--amber); }
.footer__note { font-size: 13px; line-height: 1.7; color: var(--t6); margin: 0; }
.footer__legal {
  max-width: var(--container); margin: 40px auto 0; padding-top: 22px;
  border-top: 1px solid var(--line-hair);
  font-size: 12px; color: var(--t9);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   The bee
   -------------------------------------------------------------------------- */

.bee-layer {
  position: fixed; inset: 0; pointer-events: none; z-index: 40;
  overflow: hidden; opacity: 1; transition: opacity 260ms ease;
}
.bee { position: absolute; top: 0; left: 0; animation: beeFlyA 26s linear 1.4s 1 both; }
.bee__body { animation: beeBob 1.6s ease-in-out infinite; position: relative; width: 30px; height: 20px; }
.bee__wing { position: absolute; top: -6px; width: 15px; height: 11px; }
.bee__wing--l {
  left: 4px; background: rgba(255, 255, 255, 0.82);
  border-radius: 60% 40% 50% 50%; transform-origin: 90% 100%;
  animation: wingL 0.14s linear infinite;
}
.bee__wing--r {
  left: 12px; background: rgba(255, 255, 255, 0.7);
  border-radius: 40% 60% 50% 50%; transform-origin: 10% 100%;
  animation: wingR 0.15s linear infinite;
}
.bee__abdomen {
  position: absolute; left: 2px; top: 4px; width: 26px; height: 15px;
  border-radius: 999px;
  background: repeating-linear-gradient(100deg, #ffc220 0 5px, #141414 5px 9px);
  box-shadow: 0 4px 14px rgba(255, 194, 32, 0.28);
}
.bee__head { position: absolute; left: 25px; top: 6px; width: 11px; height: 11px; border-radius: 999px; background: #1a1a1a; }

@keyframes beeFlyA {
  0%   { transform: translate(-12vw, 22vh) rotate(8deg) scale(1); }
  18%  { transform: translate(22vw, 12vh) rotate(-6deg) scale(1.05); }
  36%  { transform: translate(48vw, 30vh) rotate(10deg) scale(0.95); }
  54%  { transform: translate(70vw, 14vh) rotate(-4deg) scale(1.08); }
  72%  { transform: translate(88vw, 34vh) rotate(6deg) scale(1); }
  100% { transform: translate(112vw, 18vh) rotate(-2deg) scale(1); }
}
@keyframes beeBob { 0%, 100% { translate: 0 -5px; } 50% { translate: 0 6px; } }
@keyframes wingL { 0%, 100% { transform: rotate(-24deg) scaleY(1); } 50% { transform: rotate(-46deg) scaleY(0.55); } }
@keyframes wingR { 0%, 100% { transform: rotate(24deg) scaleY(1); } 50% { transform: rotate(46deg) scaleY(0.55); } }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { height: 380px; }
  .ways-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .visit__media { min-height: 380px; }
}

@media (max-width: 860px) {
  .masthead__inner { flex-wrap: wrap; gap: 16px; }
  .nav__toggle { display: flex; }
  .nav {
    display: none; width: 100%; margin-left: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding-bottom: 8px;
  }
  .nav.is-open { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    padding: 12px 0; border-bottom: 1px solid var(--line-hair);
    font-size: 16px;
  }
  .nav__link[aria-current='page'] { border-bottom-color: var(--line-hair); }
  .nav__cta { margin-top: 12px; text-align: center; }
  .section-head { align-items: flex-start; }
  .link-rule { align-self: flex-start; }
  .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 40px; }
  .ways-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .promo__inner { gap: 10px; font-size: 11px; }
  .promo__sep { display: none; }
  .brand__mark { height: 42px; width: 42px; }
  .card { padding: 24px; }
  .card--lg { padding: 26px; }
  .feature-card { padding: 26px; }
  .hero__media { height: 300px; }
  .article__media { height: 240px; }
  .cta-band__media { height: 240px; }
  .visit__media { min-height: 300px; }
  .footer__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .stats { gap: 16px 14px; }
  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
  .nav__cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .bee-layer { display: none; }
  .marquee__track { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* Payment methods list on the Visit page. */
.paylist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.paylist li { display: flex; gap: 14px; align-items: flex-start; }
.paylist b {
  font-family: var(--display); font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--amber); flex: 0 0 58px;
}
.paylist span { font-size: 15px; line-height: 1.6; color: var(--t4); }

.footer__signin { display: inline-flex; gap: 8px; align-items: center; }
.footer__signin a { color: var(--t6); }
.footer__signin a:hover { color: var(--amber); }
.footer__signin span { color: var(--t9); }
