/* =========================================================
   SMART — Stoneberger Men's Angler Retreat Tournament
   Shared stylesheet. Hunting-lodge / tackle-shop aesthetic.
   ========================================================= */

:root {
  --forest: #1d5a47;
  --forest-deep: #103328;
  --forest-darker: #0a241c;
  --logo-green: #1dba96;
  --tan: #c9a878;
  --tan-soft: #d9c098;
  --cream: #f1e7d0;
  --cream-paper: #ece1c6;
  --charcoal: #26211b;
  --ink: #1a1612;
  --rust: #a64a25;
  --rust-deep: #7d3618;
  --navy: #1f2e44;

  --display: "Big Shoulders Display", "Oswald", "Impact", sans-serif;
  --slab: "Zilla Slab", "Rockwell", Georgia, serif;
  --body: "Lora", Georgia, "Times New Roman", serif;
  --stamp: "Special Elite", "Courier New", monospace;

  --rule: 1px solid rgba(38,33,27,0.22);
  --rule-cream: 1px solid rgba(241,231,208,0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper-grain across the page. */
body {
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"),
    radial-gradient(ellipse 1200px 500px at 50% 0%, rgba(38,33,27,0.06), transparent 70%);
  background-size: 240px 240px, auto;
  background-attachment: fixed, fixed;
}

img { max-width: 100%; display: block; }
a { color: var(--forest-deep); }
a:hover { color: var(--rust); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   Header
   ========================================================= */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  font-family: var(--stamp);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(241,231,208,0.18);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.topbar .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--tan);
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
}

.masthead {
  background: var(--cream-paper);
  border-bottom: 2px solid var(--forest-deep);
  box-shadow: inset 0 -6px 0 -3px var(--tan);
  position: relative;
}
.masthead-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Brandmark: wide SMART banner image */
.brandmark {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  max-width: 100%;
}
.brandmark .emblem {
  display: block;
  flex: 0 0 auto;
  height: 200px;
  max-width: 100%;
}
.brandmark .emblem-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  /* The banner already has its own composition + sub-tagline; no extra
     border or background — let it breathe on the cream-paper masthead. */
}
.brandmark .emblem-letters {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  height: 84px;
  padding: 0 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--forest-deep);
  border: 2px solid var(--forest-deep);
}
.brandmark .emblem-letters span {
  display: block;
  font-family: var(--stamp);
  font-size: 9px;
  letter-spacing: 0.24em;
  margin-top: 4px;
  color: var(--rust-deep);
}

/* Banner shrinks on narrower viewports so it stays one piece, not squashed. */
@media (max-width: 900px) {
  .brandmark .emblem { height: 150px; }
}
@media (max-width: 600px) {
  .brandmark .emblem { height: 100px; }
  .masthead-inner { padding: 0 16px; }
}

.masthead-tagline {
  text-align: center;
  font-family: var(--stamp);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.masthead-tagline .ornament {
  color: var(--rust);
  margin: 0 12px;
}

.masthead-meta {
  text-align: right;
  font-family: var(--stamp);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.5;
}
.masthead-meta strong {
  display: block;
  color: var(--rust-deep);
  font-weight: normal;
}

.nav-bar {
  background: var(--forest);
  color: var(--cream);
  border-bottom: 4px double rgba(241,231,208,0.4);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-list a {
  display: inline-block;
  padding: 14px 18px;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
}
.nav-list a:hover,
.nav-list a.is-current {
  background: var(--forest-deep);
  color: var(--tan-soft);
}
.nav-list a.is-current::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 6px;
  height: 2px;
  background: var(--tan);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 8px 12px;
  font-family: var(--stamp);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  margin: 10px 0;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid rgba(38,33,27,0.15);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 28px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--stamp);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 22px;
}
.hero-eyebrow .bar {
  width: 36px;
  height: 1px;
  background: var(--rust-deep);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  color: var(--forest-deep);
  text-transform: uppercase;
}
.hero h1 .accent {
  color: var(--rust-deep);
  font-style: italic;
  font-weight: 800;
  display: inline-block;
}
.hero h1 .line {
  display: block;
}

.hero-lede {
  font-family: var(--slab);
  font-size: 22px;
  line-height: 1.35;
  color: var(--charcoal);
  max-width: 540px;
  margin: 0 0 36px;
  font-weight: 400;
}

.cta-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--rust-deep);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 18px;
  border: 2px solid var(--rust-deep);
  box-shadow: 4px 4px 0 var(--forest-deep);
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover {
  color: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--forest-deep);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--forest-deep);
}
.btn .arrow { font-family: var(--slab); font-size: 22px; line-height: 1; }

.btn-ghost {
  background: transparent;
  color: var(--forest-deep);
  border: 2px solid var(--forest-deep);
  box-shadow: 4px 4px 0 var(--tan);
}
.btn-ghost:hover { color: var(--forest-deep); box-shadow: 6px 6px 0 var(--tan); }
.btn-ghost:active { box-shadow: 2px 2px 0 var(--tan); }

/* Image placeholders */
.imgslot {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(38,33,27,0.07) 0px,
      rgba(38,33,27,0.07) 1px,
      transparent 1px,
      transparent 12px),
    var(--cream-paper);
  border: 1px solid rgba(38,33,27,0.35);
  outline: 1px dashed rgba(38,33,27,0.25);
  outline-offset: -8px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 260px;
  padding: 18px;
  color: var(--charcoal);
}
.imgslot::before {
  content: "PHOTO";
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--stamp);
  font-size: 10px;
  letter-spacing: 0.28em;
  background: var(--rust-deep);
  color: var(--cream);
  padding: 4px 8px;
}
.imgslot .slot-caption {
  font-family: var(--stamp);
  font-size: 12.5px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  background: var(--cream);
  border: 1px solid rgba(38,33,27,0.35);
  padding: 10px 12px;
  max-width: 100%;
}
.imgslot .slot-caption strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--rust-deep);
  margin-bottom: 4px;
}

.hero-imgslot {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.hero-photo {
  margin: 0;
  background: var(--cream-paper);
  border: 1px solid rgba(38,33,27,0.35);
  padding: 14px 14px 0;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 6px 0 var(--forest-deep);
}
.hero-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.hero-photo figcaption {
  font-family: var(--stamp);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  padding: 12px 4px 14px;
  border-top: 1px dashed rgba(38,33,27,0.35);
  margin-top: 10px;
}
.hero-photo figcaption strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--rust-deep);
  margin-bottom: 4px;
}

/* Hero corner stamp */
.hero-stamp {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--rust-deep);
  color: var(--rust-deep);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  transform: rotate(-8deg);
  background: rgba(241,231,208,0.6);
  pointer-events: none;
}
.hero-stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--rust-deep);
  border-radius: 50%;
}
.hero-stamp .big {
  font-size: 38px;
  letter-spacing: -0.01em;
}
.hero-stamp .small {
  font-family: var(--stamp);
  font-size: 9px;
  letter-spacing: 0.24em;
  margin-top: 4px;
}

/* =========================================================
   Stripe — under hero
   ========================================================= */
.stripe {
  background: var(--forest-deep);
  color: var(--cream);
  border-top: 6px solid var(--tan);
  border-bottom: 6px solid var(--tan);
}
.stripe-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.stripe-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stripe-item .label {
  font-family: var(--stamp);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
}
.stripe-item .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
}
.stripe-item .value em {
  font-style: normal;
  color: var(--tan-soft);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-top: 4px;
}

/* =========================================================
   Section: 2026 Details
   ========================================================= */
section { padding: 88px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
  border-bottom: 2px solid var(--forest-deep);
  padding-bottom: 14px;
}
/* Left-side stack: label sits above the h2 so the whole heading group
   reads as one unit anchored to the left, instead of label/h2/right
   getting spread across the row by space-between. */
.section-head-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-head .label {
  font-family: var(--stamp);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin-bottom: 8px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--forest-deep);
  margin: 0;
}
.section-head .right {
  font-family: var(--stamp);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 8px;
}

/* Field-manual style cards */
.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--forest-deep);
  background: var(--cream-paper);
}
.field-card {
  padding: 32px 28px;
  border-right: 1px solid rgba(38,33,27,0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}
.field-card:last-child { border-right: none; }
.field-card .tag {
  font-family: var(--stamp);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust-deep);
}
.field-card .headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--forest-deep);
}
.field-card .headline .small {
  display: block;
  font-size: 16px;
  font-family: var(--slab);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
  margin-top: 6px;
}
.field-card .detail {
  font-family: var(--body);
  font-size: 16px;
  color: var(--charcoal);
  margin-top: auto;
}
.field-card .tbd-note {
  font-family: var(--stamp);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rust-deep);
  text-transform: uppercase;
  border-top: 1px dashed rgba(38,33,27,0.4);
  padding-top: 10px;
  margin-top: 14px;
}

/* =========================================================
   Section: What is SMART
   ========================================================= */
.about {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.82  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  pointer-events: none;
  opacity: .7;
}
.about-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about .section-head {
  border-bottom-color: var(--tan);
  margin-bottom: 28px;
}
.about .section-head h2 { color: var(--cream); }
.about .section-head .label { color: var(--tan); }

.about-body p {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--cream);
  margin: 0 0 18px;
  max-width: 56ch;
}
.about-body .pullquote {
  font-family: var(--slab);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--tan-soft);
  border-left: 3px solid var(--tan);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  max-width: 50ch;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 17px;
  color: var(--tan-soft);
  text-decoration: none;
  border-bottom: 2px solid var(--tan);
  padding-bottom: 4px;
}
.about-link:hover { color: var(--cream); }

.about-imgslot,
.about-photo {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg,
      rgba(241,231,208,0.08) 0px,
      rgba(241,231,208,0.08) 1px,
      transparent 1px,
      transparent 12px),
    rgba(241,231,208,0.04);
  border: 1px solid rgba(241,231,208,0.4);
  position: relative;
  margin: 0;
  overflow: hidden;
}
.about-imgslot {
  outline: 1px dashed rgba(241,231,208,0.3);
  outline-offset: -8px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.about-photo {
  padding: 14px 14px 0;
  background: rgba(241,231,208,0.06);
  display: flex;
  flex-direction: column;
}
.about-photo img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.about-photo figcaption {
  font-family: var(--stamp);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 14px 4px 16px;
  border-top: 1px dashed rgba(241,231,208,0.4);
  margin-top: 12px;
}
.about-photo figcaption strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--tan);
  margin-bottom: 4px;
}
.about-imgslot::before {
  content: "PHOTO";
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--stamp);
  font-size: 10px;
  letter-spacing: 0.28em;
  background: var(--rust-deep);
  color: var(--cream);
  padding: 4px 8px;
}
.about-imgslot .slot-caption {
  font-family: var(--stamp);
  font-size: 12.5px;
  line-height: 1.45;
  background: var(--cream);
  border: 1px solid rgba(38,33,27,0.35);
  padding: 10px 12px;
  color: var(--charcoal);
}
.about-imgslot .slot-caption strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--rust-deep);
  margin-bottom: 4px;
}

/* =========================================================
   Roster strip — fish honor roll
   ========================================================= */
.roster {
  background: var(--cream-paper);
  border-top: 1px solid rgba(38,33,27,0.2);
  border-bottom: 1px solid rgba(38,33,27,0.2);
  padding: 28px 0;
  overflow: hidden;
}
.roster-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--stamp);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--charcoal);
}
.roster-inner .lead {
  color: var(--rust-deep);
  white-space: nowrap;
}
.roster-inner .scroll {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.roster-inner .scroll span { margin-right: 22px; }
.roster-inner .scroll .sep { color: var(--tan); margin: 0 4px; }

/* =========================================================
   Footer
   ========================================================= */
footer.foot {
  background: var(--charcoal);
  color: var(--cream);
  padding: 56px 0 28px;
  border-top: 8px solid var(--forest-deep);
}
.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin: 0 0 14px;
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 8px; }
.foot a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--body);
  font-size: 15px;
}
.foot a:hover { color: var(--tan); }
.foot .motto {
  font-family: var(--slab);
  font-style: italic;
  font-size: 16px;
  color: var(--tan-soft);
  max-width: 36ch;
  margin-top: 14px;
}
.foot-bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding: 18px 28px 0;
  border-top: 1px dashed rgba(241,231,208,0.25);
  display: flex;
  justify-content: space-between;
  font-family: var(--stamp);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241,231,208,0.65);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-stamp { top: 18px; right: 18px; width: 100px; height: 100px; }
  .hero-stamp .big { font-size: 28px; }
  .stripe-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 28px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-card { border-right: none; border-bottom: 1px solid rgba(38,33,27,0.25); }
  .field-card:last-child { border-bottom: none; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .masthead-inner { gap: 14px; }
  .topbar-inner { justify-content: center; }
  .topbar-inner .right { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 4px 0 12px;
  }
  .nav-list.is-open { display: flex; }
  .nav-list a { width: 100%; padding: 12px 0; }
  .nav-list a.is-current::after { display: none; }
  .nav-inner { flex-direction: column; align-items: stretch; padding-bottom: 6px; }
  .stripe-inner { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  section { padding: 60px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head .right { padding-bottom: 0; }
}


/* Sunrise asterisk reference — stripe + inline use on home page */
.stripe-ref,
.inline-ref {
  display: inline-block;
  margin-left: 1px;
  font-family: var(--display);
  font-weight: 800;
  color: var(--tan);
  text-decoration: none;
  vertical-align: super;
  font-size: 0.7em;
  line-height: 1;
}
.inline-ref { color: var(--rust-deep); }
.stripe-ref:hover { color: var(--cream); }
.inline-ref:hover { color: var(--rust); }

/* Field-card footnote (homepage 2026 details "When" card) */
.field-footnote {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 14px 0 0;
  padding: 8px 12px;
  background: rgba(125, 54, 24, 0.06);
  border-left: 3px solid var(--rust-deep);
  font-family: var(--stamp);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.field-footnote-mark {
  flex: 0 0 auto;
  font-family: var(--display);
  font-weight: 800;
  color: var(--rust-deep);
  font-size: 16px;
  line-height: 1;
}
