/* ==========================================================================
   Westshore Beach Inn — site.css
   Design tokens and layout recreated from design/Westshore Beach Inn.dc.html
   ========================================================================== */

:root {
  --navy: #003a70;
  --navy-deep: #00294f;
  --ink: #001a32;
  --footer-navy: #00274b;
  --teal: #0097A9;
  --gold: #c8a977;
  --gold-light: #dcc094;
  --gold-dark: #8a6d3f;
  --bg-page: #faf8f4;
  --bg-menu: #f4efe5;
  --bg-story: #f4eddd;
  --bg-stay: #eef1f0;
  --border-warm: #e6ddcb;
  --border-card: #e8e2d5;
  --body-text: #1d2833;
  --muted: #5b6b7a;
  --copy: #41505e;
  --leader: #cbb489;
  --radius-card: 14px;
  --radius-thumb: 10px;
  --radius-chip: 6px;
  --shadow-card: 0 2px 12px rgba(0, 42, 79, 0.12);
  --shadow-soft: 0 2px 10px rgba(0, 42, 79, 0.06);
  --font-display: 'Rokkitt', serif;
  --font-body: Montserrat, sans-serif;
}

/* ── Base ─────────────────────────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-page);
  color: var(--body-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); }
a:hover { color: var(--navy); }

input, select, textarea, button { font-family: var(--font-body); }

::selection { background: var(--gold); color: var(--navy-deep); }

img { max-width: 100%; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 6px 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--navy-deep); }

/* ── Shared type & buttons ────────────────────────────────────────────── */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--teal);
}
.eyebrow--gold { color: var(--gold); }

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 46px);
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  margin: 10px 0 14px;
}

.section-lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--copy);
  margin: 0;
}

.section-intro {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 44px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-light); color: var(--navy-deep); }
.btn--navy { background: var(--navy); color: #ffffff; }
.btn--navy:hover { background: var(--teal); color: #ffffff; }
.btn--outline-navy { border: 1.5px solid var(--navy); color: var(--navy); padding: 12.5px 22.5px; }
.btn--outline-navy:hover { background: var(--navy); color: #ffffff; }
.btn--outline-gold { border: 1.5px solid var(--gold); color: var(--gold-dark); padding: 12.5px 22.5px; }
.btn--outline-gold:hover { background: var(--gold); color: var(--navy-deep); }
.btn--outline-light { border: 1.5px solid rgba(255, 255, 255, 0.8); color: #ffffff; padding: 12.5px 20.5px; }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.14); color: #ffffff; }

/* ── Image slots: photos, credits & drop-zone placeholders ────────────── */

.slot {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slot > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-credit {
  position: absolute;
  left: 6px;
  bottom: 6px;
  max-width: calc(100% - 12px);
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font: 10px/1.2 system-ui, -apple-system, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.slot-credit a { color: inherit; text-decoration: none; }
.slot-credit a:hover, .slot-credit a:focus-visible { text-decoration: underline; color: inherit; }

.slot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.55);
  font: 500 13px/1.4 system-ui, -apple-system, sans-serif;
  letter-spacing: 0.01em;
  user-select: none;
}
.slot-placeholder::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  pointer-events: none;
}
.slot-placeholder svg { opacity: 0.45; flex: none; }
.slot-placeholder span { max-width: 90%; position: relative; }

.slot-placeholder--dark {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
}
.slot-placeholder--dark::after { border-color: rgba(255, 255, 255, 0.35); }

img.img-failed { visibility: hidden; }

/* ── Nav ──────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(0, 39, 75, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__brand img { height: 44px; display: block; }
.nav__brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  color: #ffffff;
  line-height: 1;
}
.nav__brand-sub {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 4.5px;
  color: var(--gold);
  margin-top: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.nav__links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.nav__links a:hover { color: var(--gold); }
.nav__links .nav__book {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 6px;
}
.nav__links .nav__book:hover { background: var(--gold-light); color: var(--navy-deep); }

.nav__toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 11px 12px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.nav__panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 32, 61, 0.98);
  padding: 8px 24px 20px;
  flex-direction: column;
}
.nav__panel a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__panel a:hover { color: var(--gold); }
.nav__panel a:last-of-type { border-bottom: none; }
.nav__panel .nav__book {
  margin-top: 12px;
  text-align: center;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 6px;
  border-bottom: none;
}

@media (max-width: 1150px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav--open .nav__panel { display: flex; }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy);
}

.hero__media { position: absolute; inset: 0; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 32, 61, 0.82) 0%, rgba(0, 45, 88, 0.62) 50%, rgba(0, 23, 45, 0.88) 100%);
  pointer-events: none;
}

.hero__body {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 150px 24px 70px;
  text-align: center;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
}

.hero__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: 0.98;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 22px 0 20px;
  text-wrap: balance;
}

.hero__copy {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 0 auto 34px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
}
.hero__ctas .btn { font-size: 13px; padding: 16px 30px; }
.hero__ctas .btn--outline-light { padding: 14.5px 28.5px; }

.hero__strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 26, 50, 0.55);
  backdrop-filter: blur(6px);
}
.hero__strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}
.hero__strip-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}
.hero__strip a { color: #ffffff; text-decoration: none; }
.hero__strip a:hover { color: var(--gold); }

/* ── The Pub ──────────────────────────────────────────────────────────── */

.section { max-width: 1160px; margin: 0 auto; padding: 96px 24px; }
.section--pub { padding: 96px 24px 84px; }

.pub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}

.pub__heading { margin: 10px 0 18px; }

.pub__copy {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--copy);
  margin: 0 0 14px;
}
.pub__copy--last { margin-bottom: 30px; }

.pub__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.pub__ctas .btn { font-size: 12.5px; }

.carousel {
  position: relative;
  height: 420px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--navy-deep);
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.carousel__slide.is-active { opacity: 1; pointer-events: auto; }

.carousel__label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 41, 79, 0.78);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 8px 14px;
  border-radius: 6px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  z-index: 3;
}

.carousel__dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 9px;
  z-index: 3;
}
.carousel__dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
}
.carousel__dots button.is-active { background: var(--gold); }

/* ── Menu ─────────────────────────────────────────────────────────────── */

.band--menu {
  background: var(--bg-menu);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}
.band__inner { max-width: 1160px; margin: 0 auto; padding: 90px 24px; }

.menu__intro { text-align: center; max-width: 660px; margin: 0 auto 26px; }

.menu__note {
  display: inline-block;
  margin-top: 16px;
  font-family: monospace;
  font-size: 11.5px;
  color: var(--gold-dark);
  background: #efe4cd;
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 7px 12px;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 44px 64px;
  margin-top: 34px;
}

@media (max-width: 420px) {
  .menu__grid { grid-template-columns: 1fr; }
}

.menu-group__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 10px;
  margin: 0 0 16px;
}

.menu-group__intro {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--gold-dark);
  margin: -8px 0 16px;
}

.menu-group__items { display: flex; flex-direction: column; gap: 18px; }

.menu-item { display: flex; gap: 14px; align-items: flex-start; }

.menu-item__thumb {
  width: 60px;
  height: 60px;
  flex: none;
  object-fit: cover;
  border-radius: var(--radius-thumb);
  border: 1px solid var(--border-warm);
  background: #efe9db;
  box-sizing: border-box;
}
span.menu-item__thumb { display: block; }

.menu-item__body { flex: 1; min-width: 0; }

.menu-item__row { display: flex; align-items: baseline; gap: 10px; }

.menu-item__name { font-weight: 600; font-size: 15px; color: var(--body-text); }

.menu-item__tags {
  margin-left: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--teal);
}

.menu-item__leader {
  flex: 1;
  border-bottom: 2px dotted var(--leader);
  transform: translateY(-4px);
}

.menu-item__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  white-space: nowrap;
}

.menu-item__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 3px;
}

.menu-group__footnote {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--gold-dark);
  margin-top: 14px;
}

.menu-simple { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--copy); }
.menu-simple .menu-item__row { gap: 10px; }
.menu-simple .menu-item__price { font-size: inherit; }
.menu-simple .menu-item__name { font-weight: 400; font-size: inherit; color: inherit; }
.menu-simple + .menu-group__footnote { margin-top: 16px; line-height: 1.7; }

.menu__legend {
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b5d42;
  max-width: 680px;
  margin: 44px auto 0;
}
.menu__legend b { font-weight: 700; color: var(--teal); }

/* ── On Tap ───────────────────────────────────────────────────────────── */

.band--taps { background: var(--navy); }

.taps__intro { text-align: center; max-width: 680px; margin: 0 auto 18px; }
.taps__heading { color: #ffffff; }
.taps__lede { color: rgba(255, 255, 255, 0.85); }

.taps__cta { display: flex; justify-content: center; margin-bottom: 34px; }
.taps__cta .btn { font-size: 12.5px; }

.taps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 56px;
}

.tap {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.tap__label {
  width: 46px;
  height: 46px;
  flex: none;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 3px;
  box-sizing: border-box;
}

.tap__body { flex: 1; min-width: 0; }

.tap__name { font-size: 14.5px; font-weight: 600; color: #ffffff; line-height: 1.3; }

.tap__badge {
  margin-left: 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: 1.5px;
}

.tap__meta { font-size: 12px; color: #9fd0d8; margin-top: 2px; }

.taps__outro {
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 36px auto 0;
}
.taps__outro a { color: #ffffff; font-weight: 600; }
.taps__outro a:hover { color: var(--gold); }

/* ── Functions ────────────────────────────────────────────────────────── */

.functions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

.functions__spaces { display: flex; flex-direction: column; gap: 32px; }

.card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.space-card__media { height: 210px; position: relative; }

.space-card__body { padding: 24px 26px 26px; }

.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
}

.space-card__capacity {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 12px;
}

.space-card__blurb, .stay-card__blurb {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.enquiry {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 30px 30px 32px;
  box-shadow: var(--shadow-soft);
}
.enquiry .card__title { margin-bottom: 6px; }

.enquiry__sub {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 22px;
}
.enquiry__sub a { font-weight: 600; }

.enquiry__form { display: flex; flex-direction: column; gap: 14px; }

.enquiry__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.enquiry__form input,
.enquiry__form select,
.enquiry__form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #d8d2c6;
  border-radius: 6px;
  background: #fdfcf9;
  font-size: 14px;
  color: var(--body-text);
}
.enquiry__form textarea { resize: vertical; }

.enquiry__form button {
  background: var(--navy);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 15px 24px;
  border-radius: 6px;
}
.enquiry__form button:hover { background: var(--teal); }

.enquiry__alt { font-size: 12px; color: #8b98a5; text-align: center; }
.enquiry__alt a { font-weight: 600; }

/* ── Stay ─────────────────────────────────────────────────────────────── */

.band--stay {
  background: var(--bg-stay);
  border-top: 1px solid #e2e6e4;
  border-bottom: 1px solid #e2e6e4;
}

.stay__intro { max-width: 680px; }

.stay__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.stay-card { border-color: #e2e0d8; }

.stay-card__media { height: 230px; position: relative; }

.stay-card__body { padding: 26px 28px 28px; }
.stay-card__body .card__title { margin-bottom: 12px; }

.stay-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

.chip {
  font-size: 11px;
  font-weight: 600;
  color: #00667a;
  background: #e4f1f3;
  border: 1px solid #c2e0e4;
  padding: 4px 11px;
  border-radius: 999px;
}

.stay__banner {
  margin-top: 32px;
  background: var(--navy);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stay__banner-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stay__banner-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 6px;
}

.stay__banner-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.stay__banner-ctas .btn { font-size: 12.5px; padding: 14px 22px; }
.stay__banner-ctas .btn--outline-light { padding: 12.5px 20.5px; }

/* ── Our Story ────────────────────────────────────────────────────────── */

.band--story { background: var(--bg-story); }

.story__intro { max-width: 660px; margin-bottom: 48px; }

.story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: stretch;
}

.timeline {
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.timeline__entry { position: relative; padding-left: 30px; }
.timeline__entry::before {
  content: '';
  position: absolute;
  left: -9.5px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  box-sizing: content-box;
}
.timeline__entry--today::before { background: var(--teal); }

.timeline__year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 27px;
  color: var(--navy);
}

.timeline__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--copy);
  margin: 6px 0 0;
}

.story__media { display: flex; flex-direction: column; gap: 28px; }

.story__photo {
  position: relative;
  flex: 1;
  min-height: 460px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.story__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(0, 26, 50, 0.72), rgba(0, 26, 50, 0));
  pointer-events: none;
  z-index: 2;
}
.photo-caption span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.legend-card {
  background: #fdfaf3;
  border: 1px solid #e3d5b8;
  border-radius: var(--radius-card);
  padding: 28px 30px;
}
.legend-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.legend-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 10px;
}
.legend-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: #5b6455;
  margin: 0;
}

.years { margin-top: 64px; }

.years__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.years__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--navy);
  text-transform: uppercase;
  margin: 0;
}
.years__hint { font-family: monospace; font-size: 12px; color: var(--gold-dark); }

.years__rows { display: flex; flex-direction: column; gap: 26px; }

.year-row {
  position: relative;
  height: clamp(280px, 38vw, 440px);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #e9e0cb;
}
.year-row > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.year-row .photo-caption { padding: 14px 20px; }

.year-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}
.year-chip--today { background: var(--teal); color: #ffffff; }

/* ── Team ─────────────────────────────────────────────────────────────── */

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 44px 32px;
  max-width: 1060px;
  margin: 0 auto;
}

.team-card__photo {
  height: 560px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #e9ecef;
  position: relative;
}

.team-card__body { padding: 18px 4px 0; }

.team-card__rule {
  width: 34px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 12px;
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
}

.team-card__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--teal);
  margin: 5px 0 10px;
}

.team-card__bio {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ── Careers ──────────────────────────────────────────────────────────── */

.band--careers { background: var(--navy); }

.careers__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.careers__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 6px;
}

.careers__sub { font-size: 14px; color: rgba(255, 255, 255, 0.82); margin: 0; }

.careers__inner .btn { font-size: 12.5px; padding: 15px 26px; }

/* ── Footer ───────────────────────────────────────────────────────────── */

.footer { background: var(--footer-navy); }

.footer__inner { max-width: 1160px; margin: 0 auto; padding: 64px 24px 0; }

.footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__newsletter-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__newsletter-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__form input {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
}
.newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter__form input[name="nlName"] { width: 140px; }
.newsletter__form input[name="nlEmail"] { width: 220px; }
.newsletter__form button {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 12px 22px;
  border-radius: 6px;
}
.newsletter__form button:hover { background: var(--gold-light); }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 48px 0 40px;
}

.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand img { height: 52px; display: block; }
.footer__brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 2.5px;
  color: #ffffff;
  line-height: 1;
}
.footer__brand-sub {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-top: 4px;
}

.footer__blurb {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 260px;
}

.footer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer__text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.footer__text a { color: #ffffff; font-weight: 600; }
.footer__text a:hover { color: var(--gold); }
.footer__text a.footer__plain { text-decoration: none; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
