/* ================================================================
   HAMONT ONE SHOT — Global Stylesheet
   ================================================================ */

/* ----------------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------------- */
:root {
  --bg:            #f9f8f6;
  --bg-surface:    #eeebe6;
  --text:          #1a1a1a;
  --text-muted:    #6b6560;
  --accent:        #f4ad22;
  --accent-hover:  #d99610;
  --accent-text:   #141414;
  --border:        #dedad4;
  --nav-bg:        rgba(0, 0, 0, 0.97);
  --nav-text:      #f0ece4;
  --nav-height:    64px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.12);
  --radius:        3px;
  --transition:    200ms ease;
}


/* ----------------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s ease, color 0.2s ease;
}

main {
  flex: 1;
  min-height: calc(100vh - var(--nav-height) - 180px);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}


/* ----------------------------------------------------------------
   Skip Link
   ---------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: var(--accent-text);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus {
  top: 0;
}


/* ----------------------------------------------------------------
   Header & Navigation
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  text-decoration: none;
  color: var(--nav-text);
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.nav-logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav-logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--nav-text);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
  transition: color var(--transition), background-color var(--transition);
  display: block;
}

.nav-links a:hover {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: var(--radius);
  transition: color var(--transition), background-color var(--transition);
  width: 34px;
  height: 34px;
}

.theme-toggle:hover {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.08);
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: var(--radius);
  width: 34px;
  height: 34px;
  transition: color var(--transition), background-color var(--transition);
}

.instagram-link:hover {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--nav-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    width: 100%;
  }

  .nav-links .theme-toggle,
  .nav-links .instagram-link {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    justify-content: flex-start;
    gap: 0.75rem;
    height: auto;
  }
}


/* ----------------------------------------------------------------
   Hero — Homepage
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background-color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 5rem) 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero--light {
  background-color: var(--bg);
}

.hero.hero--light h1 {
  color: var(--text);
}

.hero.hero--light .hero-tagline {
  color: var(--text-muted);
}

/* Subtle film grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f0ece4;
  margin-bottom: 2rem;
}

.hero h1 strong {
  font-weight: 700;
  color: var(--accent);
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(240, 236, 228, 0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ----------------------------------------------------------------
   Page Hero (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 1.5rem 4rem;
  background-color: #141414;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #f0ece4;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(240, 236, 228, 0.65);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}


/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--accent-text);
}

.btn-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.btn-outline {
  background-color: transparent;
  color: rgba(240, 236, 228, 0.85);
  border-color: rgba(240, 236, 228, 0.3);
}

.btn-outline:hover {
  background-color: rgba(240, 236, 228, 0.08);
  border-color: rgba(240, 236, 228, 0.7);
  color: #f0ece4;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}


/* ----------------------------------------------------------------
   Sections & Layout
   ---------------------------------------------------------------- */
.section {
  padding: 5rem 1.5rem;
}

.section-sm {
  padding: 3rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
}


/* ----------------------------------------------------------------
   Steps / How it Works
   ---------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step-card {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}


/* ----------------------------------------------------------------
   Dark Band / CTA
   ---------------------------------------------------------------- */
.dark-band {
  background-color: #141414;
  color: #f0ece4;
  padding: 5rem 1.5rem;
  text-align: center;
}

.dark-band .section-title {
  color: #f0ece4;
  max-width: 640px;
  margin: 0 auto 1rem;
}

.dark-band .section-lead {
  color: rgba(240, 236, 228, 0.6);
  margin: 0 auto 2.5rem;
}


/* ----------------------------------------------------------------
   Info Cards (dates, venue, etc.)
   ---------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-card {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.info-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.info-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.55;
}


/* ----------------------------------------------------------------
   Gallery Grid
   ---------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.875rem;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-surface);
  aspect-ratio: 3/2;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.78rem;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.06em;
  padding: 2rem 0.875rem 0.75rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
}

.gallery-empty p {
  font-size: 1rem;
}


/* ----------------------------------------------------------------
   Prose (body copy pages)
   ---------------------------------------------------------------- */
.prose {
  max-width: 660px;
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 3rem 0 1rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 2rem 0 0.75rem;
}

.prose ul,
.prose ol {
  margin: 0.75rem 0 1.5rem 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.prose strong {
  font-weight: 700;
  color: var(--text);
}

.prose em {
  color: var(--text-muted);
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--accent-hover);
}


/* ----------------------------------------------------------------
   Submit placeholder
   ---------------------------------------------------------------- */
.submit-placeholder {
  background: var(--bg-surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 540px;
  margin: 3rem auto 0;
}

.submit-placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.35;
  margin-bottom: 1rem;
  display: block;
}

.submit-placeholder h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.submit-placeholder p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.site-footer {
  background-color: #141414;
  color: rgba(240, 236, 228, 0.5);
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  font-size: 0.875rem;
}

.footer-inner {
  max-width: 400px;
  margin: 0 auto;
}

.footer-wordmark {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(240, 236, 228, 0.3);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: rgba(240, 236, 228, 0.35);
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}

.footer-location {
  color: rgba(240, 236, 228, 0.25);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}

.footer-instagram {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.footer-instagram:hover {
  text-decoration: underline;
}

.footer-copy {
  color: rgba(240, 236, 228, 0.18);
  font-size: 0.75rem;
}


/* ----------------------------------------------------------------
   Vertical Timeline
   ---------------------------------------------------------------- */
.timeline {
  position: relative;
  max-width: 560px;
  margin: 2.5rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg);
}

.timeline-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.timeline-date {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.timeline-detail {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ----------------------------------------------------------------
   Rules columns (index page)
   ---------------------------------------------------------------- */
.rules-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.rules-col {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.rules-col--yes {
  background: var(--bg);
}

.rules-col--no {
  background: var(--bg);
}

.rules-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.rules-heading--yes {
  color: var(--accent);
}

.rules-heading--no {
  color: var(--text-muted);
}

.rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rules-list li {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.25rem;
  position: relative;
}

.rules-list li:last-child {
  border-bottom: none;
}

.rules-col--yes .rules-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  top: 0.55rem;
}

.rules-col--no .rules-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  top: 0.5rem;
}

.rules-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}


/* ----------------------------------------------------------------
   Sponsors section
   ---------------------------------------------------------------- */
.sponsors-section {
  text-align: center;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2.5rem auto 0;
  max-width: 800px;
}

.sponsor-logo {
  display: block;
  max-height: 120px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  opacity: 0.7;
  border: 0.5rem solid #fff;
  border-radius: var(--radius);
  transition: opacity var(--transition), filter var(--transition);
  filter: grayscale(0.2);
}

.sponsor-logo:hover {
  opacity: 1;
  filter: none;
}

.sponsors-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}


/* ----------------------------------------------------------------
   FAQ accordion
   ---------------------------------------------------------------- */
.faq-list {
  margin: 2.5rem auto 0;
  max-width: 720px;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 1.25rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--accent);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.75;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.faq-answer li {
  margin-bottom: 0.35rem;
}


/* ----------------------------------------------------------------
   Utilities
   ---------------------------------------------------------------- */
.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}


/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 600px) {
  .steps-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .dark-band {
    padding: 3.5rem 1rem;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 2.5rem) 1rem 2.5rem;
  }
}
