:root{--gold:#e9ad28;--gold-bright:#ffd65c;--ink:#111111;--cream:#eee5cf;--paper:#f8f2e5;--blue:#143f55;--blue-deep:#092b37;--red:#ad442f;--white:#ffffff;--line:rgba(17,17,17,0.18);--shell:min(1380px,calc(100vw - 64px));--display:"Archivo Black",Impact,sans-serif;--body:"DM Sans",Arial,sans-serif}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  background:var(--ink)
}

body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:var(--body);
  overflow-x:hidden
}

body.menu-open{overflow:hidden}

a{
  color:inherit;
  text-decoration:none
}

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

button,input{font:inherit}

.shell{
  width:var(--shell);
  margin-inline:auto
}

.section{padding:112px 0}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}

/* ANNOUNCEMENT */

.announcement{
  position:relative;
  z-index:1001;
  background:var(--gold);
  color:var(--ink);
  font-family:var(--display);
  font-size:12px;
  letter-spacing:.09em
}

.announcement a{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:8px 20px
}

.announcement span{
  border-bottom:2px solid currentColor
}

/* HEADER */

.site-header{
  position:absolute;
  top:38px;
  left:0;
  width:100%;
  z-index:1000;
  color:var(--white);
  transition:background .25s ease,position .25s ease
}

.site-header.scrolled{
  position:fixed;
  top:0;
  color:var(--ink);
  background:rgba(251,248,239,.96);
  backdrop-filter:blur(12px);
  box-shadow:0 1px 0 rgba(0,0,0,.12)
}

.nav{
  height:90px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:30px
}

.brand{
  display:inline-flex;
  width:max-content;
  flex-direction:column;
  font-family:var(--display);
  line-height:.84;
  transform:rotate(-1deg)
}

.brand-small{
  font-size:11px;
  letter-spacing:.24em;
  margin-left:3px;
  margin-bottom:5px
}

.brand-large{
  font-size:27px;
  letter-spacing:-.04em
}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.07em
}

.nav-links a{
  position:relative;
  padding:8px 0
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:3px;
  width:100%;
  height:2px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .25s ease
}

.nav-links a:hover::after{
  transform:scaleX(1);
  transform-origin:left
}


/* =========================================================
   MAJOR EVENTS HOVER MENU
   Hidden until Major Events is actually hovered.
   ========================================================= */

.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center
}

.nav-dropdown-trigger{
  display:block
}

/* COMPLETELY HIDDEN BY DEFAULT */
.nav-dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;

  min-width:210px;

  padding:10px 16px 14px;

  background:rgba(9,43,55,.96);
  color:var(--white);

  box-shadow:0 14px 28px rgba(0,0,0,.18);

  flex-direction:column;
  align-items:flex-start;

  z-index:2000
}

/* Creates a small invisible hover bridge */
.nav-dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  top:-8px;
  width:100%;
  height:8px
}

/* ONLY DISPLAY WHEN MAJOR EVENTS IS HOVERED */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  display:flex
}

/* VERTICAL LINKS */
.nav-dropdown-menu a{
  display:block;
  width:100%;
  padding:9px 0;

  white-space:nowrap;

  font-size:12px;
  line-height:1.2;

  text-align:left
}

/* Don't use the normal nav underline inside dropdown */
.nav-dropdown-menu a::after{
  display:none
}

.nav-dropdown-menu a:hover{
  color:var(--gold)
}

/* Dropdown remains readable once sticky header turns light */
.site-header.scrolled .nav-dropdown-menu{
  background:var(--paper);
  color:var(--ink);
  border:1px solid var(--line)
}


/* NAV CTA */

.nav-cta{
  justify-self:end;
  padding:14px 18px;
  background:var(--gold);
  color:var(--ink);
  font-family:var(--display);
  font-size:11px;
  letter-spacing:.08em
}

.menu-button{
  display:none;
  justify-self:end;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  color:inherit;
  padding:9px;
  cursor:pointer
}

.menu-button span:not(.sr-only){
  display:block;
  height:2px;
  background:currentColor;
  margin:5px 0;
  transition:.25s ease
}

.mobile-menu{display:none}


/* HERO */

.hero{
  position:relative;
  min-height:830px;
  height:calc(100vh - 38px);
  max-height:1050px;
  color:var(--white);
  overflow:hidden
}

.hero-image{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(
      125deg,
      rgba(9,43,55,.18),
      rgba(9,43,55,.03)
    ),
    url("hero.jpg");
  background-position:center 45%;
  background-size:cover;
  background-repeat:no-repeat;
  transform:scale(1.02);
  filter:saturate(.88) contrast(1.02)
}

.hero-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(20,63,85,.35),
    rgba(217,87,63,.08)
  )
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.48),
      rgba(0,0,0,.45) 38%,
      rgba(0,0,0,.63)
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,.22),
      transparent 60%
    )
}

.hero-content{
  position:relative;
  z-index:3;
  height:100%;
  padding-top:160px;
  padding-bottom:76px;
  display:flex;
  flex-direction:column;
  justify-content:space-between
}

.hero-kicker{
  display:flex;
  align-items:center;
  gap:13px;
  font-family:var(--display);
  font-size:12px;
  letter-spacing:.14em
}

.dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold)
}

.hero-title{
  margin:auto 0 22px;
  font-family:var(--display);
  font-size:clamp(90px,15vw,235px);
  font-weight:900;
  line-height:.72;
  letter-spacing:-.075em;
  text-transform:uppercase;
  max-width:1120px
}

.hero-title span{display:block}

.hero-title span:last-child{
  color:var(--gold);
  margin-left:.23em
}

.hero-bottom{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:40px
}

.hero-bottom p{
  max-width:570px;
  margin:0;
  font-size:clamp(16px,2vw,22px);
  line-height:1.35;
  font-weight:600
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-shrink:0
}

.button{
  display:inline-flex;
  min-height:54px;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:2px solid transparent;
  font-family:var(--display);
  font-size:12px;
  letter-spacing:.07em;
  transition:
    transform .18s ease,
    background .18s ease,
    color .18s ease
}

.button:hover{transform:translateY(-3px)}

.button-gold{
  background:var(--gold);
  color:var(--ink)
}

.button-gold:hover{
  background:var(--gold-bright)
}

.button-outline{
  border-color:rgba(255,255,255,.7);
  color:var(--white);
  background:rgba(0,0,0,.12)
}

.button-outline:hover{
  background:var(--white);
  color:var(--ink)
}

.button-dark{
  background:var(--ink);
  color:var(--white)
}

.button-ghost-dark{
  border-color:var(--ink);
  color:var(--ink)
}

.scroll-cue{
  position:absolute;
  z-index:4;
  right:24px;
  bottom:44px;
  display:flex;
  align-items:center;
  gap:12px;
  transform:rotate(90deg);
  transform-origin:bottom right;
  font-family:var(--display);
  font-size:9px;
  letter-spacing:.15em
}

.scroll-line{
  display:block;
  width:54px;
  height:1px;
  background:var(--white)
}


/* TICKER */

.ticker{
  overflow:hidden;
  background:var(--gold);
  border-top:2px solid var(--ink);
  border-bottom:2px solid var(--ink)
}

.ticker-track{
  display:flex;
  width:max-content;
  animation:ticker 25s linear infinite
}

.ticker-track span{
  white-space:nowrap;
  font-family:var(--display);
  font-size:18px;
  letter-spacing:.02em;
  padding:17px 10px
}

@keyframes ticker{
  to{transform:translateX(-50%)}
}


/* SHARED TYPE */

.eyebrow{
  margin:0 0 22px;
  font-family:var(--display);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase
}

.eyebrow.light{
  color:rgba(255,255,255,.72)
}

.display-heading{
  margin:0;
  font-family:var(--display);
  font-size:clamp(52px,7.2vw,110px);
  line-height:.88;
  letter-spacing:-.06em;
  text-transform:uppercase
}

.display-heading em{
  color:var(--gold);
  font-style:normal
}

.display-heading.light{
  color:var(--white)
}


/* INTRO */

.intro{
  background:var(--cream)
}

.intro-grid{
  display:grid;
  grid-template-columns:1fr 3fr;
  gap:40px
}

.intro-copy{
  max-width:720px;
  margin:45px 0 0 auto;
  font-size:20px;
  line-height:1.55
}


/* EVENT CARDS */

.events{
  background:var(--paper)
}

.section-header{
  display:grid;
  grid-template-columns:2.2fr 1fr;
  gap:70px;
  align-items:end;
  margin-bottom:65px
}

.section-side-copy{
  max-width:420px;
  margin:0 0 8px;
  font-size:16px;
  line-height:1.55
}

.event-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr;
  grid-template-rows:repeat(2,minmax(330px,1fr));
  gap:16px
}

.event-card{
  position:relative;
  min-height:370px;
  overflow:hidden;
  color:var(--white);
  background:var(--blue-deep)
}

.event-card-tall{
  grid-row:1 / 3;
  min-height:760px
}

.event-image{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  transform:scale(1.015);
  transition:transform .55s cubic-bezier(.2,.65,.25,1)
}

.image-parade{
  background-image:
    linear-gradient(135deg,rgba(9,43,58,.25),transparent),
    url("parade.jpg")
}

.image-fair{
  background-image:
    linear-gradient(135deg,rgba(9,43,58,.18),transparent),
    url("street-fair.jpg")
}

.image-ducks{
  background-image:
    linear-gradient(135deg,rgba(9,43,58,.16),transparent),
    url("duck-race.jpg")
}

.event-card:hover .event-image{
  transform:scale(1.065)
}

.event-sponsor-logo{
  position:absolute;
  z-index:4;
  top:26px;
  right:26px;
  width:185px;
  height:105px;
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  pointer-events:none
}

.event-sponsor-logo-small{
  width:155px;
  height:90px
}

.event-sponsor-logo img{
  width:auto;
  max-width:100%;
  height:auto;
  max-height:100%;
  object-fit:contain;
  object-position:top right;
  display:block;
  filter:drop-shadow(0 3px 8px rgba(0,0,0,.32))
}

.event-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.83),
    rgba(0,0,0,.04) 62%
  )
}

.event-number{
  position:absolute;
  top:24px;
  right:24px;
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  background:var(--gold);
  color:var(--ink);
  border-radius:50%;
  font-family:var(--display);
  font-size:11px
}

.event-card-copy{
  position:absolute;
  z-index:2;
  left:30px;
  right:30px;
  bottom:30px
}

.event-meta{
  margin:0 0 10px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em
}

.event-card h3{
  margin:0 0 16px;
  font-family:var(--display);
  font-size:clamp(43px,5vw,83px);
  line-height:.82;
  letter-spacing:-.055em
}

.event-card:not(.event-card-tall) h3{
  font-size:clamp(34px,3.5vw,58px)
}

.event-card-copy > p:not(.event-meta){
  max-width:510px;
  margin:0 0 18px;
  font-size:14px;
  line-height:1.45
}

.event-card-copy a{
  display:inline-flex;
  gap:10px;
  border-bottom:2px solid var(--gold);
  padding-bottom:4px;
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.08em
}

.event-card-copy a span{
  color:var(--gold)
}

.all-events-cta{
  margin-top:34px;
  text-align:right
}

.text-link{
  display:inline-flex;
  gap:12px;
  align-items:center;
  border-bottom:2px solid currentColor;
  padding-bottom:5px;
  font-family:var(--display);
  font-size:12px;
  letter-spacing:.06em
}


/* EXPERIENCE */

.experience{
  background:var(--blue-deep);
  color:var(--white)
}

.experience-title{
  margin-bottom:76px
}

.photo-collage{
  display:grid;
  grid-template-columns:1.2fr .75fr .65fr;
  grid-template-rows:280px 310px;
  gap:14px
}

.collage-photo{
  min-height:220px;
  background-position:center;
  background-size:cover
}

.photo-one{
  grid-row:1 / 3;
  background-image:url("images/collage-1.jpg")
}

.photo-two{
  background-image:url("images/collage-2.jpg")
}

.photo-three{
  background-image:url("images/collage-3.jpg")
}

.photo-four{
  grid-column:2 / 4;
  background-image:url("images/collage-4.jpg")
}

.collage-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:26px;
  background:var(--gold);
  color:var(--ink)
}

.big-stat{
  margin:0;
  font-family:var(--display);
  font-size:clamp(58px,6.5vw,100px);
  letter-spacing:-.08em;
  line-height:.9
}

.collage-copy p:last-child{
  margin:10px 0 0;
  font-family:var(--display);
  font-size:13px;
  letter-spacing:.09em
}

.experience-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
  margin-top:74px
}

.experience-point{
  border-top:1px solid rgba(255,255,255,.28);
  padding-top:18px
}

.experience-point span{
  color:var(--gold);
  font-family:var(--display);
  font-size:10px
}

.experience-point h3{
  margin:28px 0 14px;
  font-family:var(--display);
  font-size:25px
}

.experience-point p{
  color:rgba(255,255,255,.75);
  line-height:1.6;
  font-size:14px
}


/* SCHEDULE */

.schedule{
  background:var(--gold)
}

.schedule-list{
  border-top:3px solid var(--ink)
}

.schedule-row{
  display:grid;
  grid-template-columns:150px 1.5fr 1fr 40px;
  gap:25px;
  align-items:center;
  min-height:112px;
  border-bottom:1px solid rgba(17,17,17,.48);
  transition:
    padding .2s ease,
    background .2s ease
}

.schedule-row:hover{
  padding-left:14px;
  padding-right:14px;
  background:rgba(255,255,255,.22)
}

.schedule-time,
.schedule-place{
  font-size:12px;
  font-weight:800;
  letter-spacing:.07em
}

.schedule-name{
  font-family:var(--display);
  font-size:clamp(22px,3vw,42px);
  letter-spacing:-.04em
}

.schedule-arrow{
  justify-self:end;
  font-size:25px
}

.schedule-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:34px
}


/* DUCK CTA */

.duck-cta{
  position:relative;
  min-height:670px;
  display:flex;
  align-items:center;
  color:var(--white);
  overflow:hidden
}

.duck-cta-art{
  position:absolute;
  inset:0;
  background:url("duck-hero.jpg") center / cover no-repeat
}

.duck-cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.12) 72%
  )
}

.duck-cta-content{
  position:relative;
  z-index:2
}

.duck-cta h2{
  max-width:900px;
  margin:0 0 22px;
  font-family:var(--display);
  font-size:clamp(58px,8vw,122px);
  line-height:.86;
  letter-spacing:-.065em
}

.duck-cta-content > p:not(.eyebrow){
  max-width:540px;
  font-size:18px;
  line-height:1.5;
  margin-bottom:30px
}


/* PARKING */

.parking-cta .duck-cta-art{
  background-image:url("downtown.jpg");
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat
}

.parking-cta .duck-cta-overlay{
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.78),
      rgba(0,0,0,.34) 58%,
      rgba(0,0,0,.12)
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,.25),
      transparent 55%
    )
}

.parking-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px
}


/* =========================================================
   GOLDEN DAYS JAIL
   ========================================================= */

.jail-section{
  position:relative;
  overflow:hidden;
  background:var(--blue-deep);
  color:var(--white);
  border-top:8px solid var(--gold);
  border-bottom:8px solid var(--gold);
  isolation:isolate
}

.jail-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 18% 28%,rgba(233,173,40,.12),transparent 28%),
    linear-gradient(120deg,rgba(173,68,47,.16),transparent 42%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.018) 0,
      rgba(255,255,255,.018) 1px,
      transparent 1px,
      transparent 42px
    )
}

.jail-section::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(to right,rgba(0,0,0,.22),transparent 45%),
    linear-gradient(to bottom,transparent 70%,rgba(0,0,0,.18))
}

.jail-backdrop-word{
  position:absolute;
  right:-4vw;
  bottom:-.15em;
  color:rgba(255,255,255,.035);
  font-family:var(--display);
  font-size:clamp(220px,34vw,560px);
  line-height:.72;
  letter-spacing:-.1em;
  pointer-events:none;
  user-select:none
}

.jail-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(360px,.95fr) minmax(0,1.05fr);
  gap:clamp(55px,7vw,110px);
  align-items:center
}

/* Wanted poster / jail-bar visual */
.jail-visual{
  position:relative;
  min-height:650px;
  display:grid;
  place-items:center
}

.jail-poster{
  position:relative;
  width:min(100%,510px);
  min-height:590px;
  padding:38px 34px 34px;
  display:flex;
  flex-direction:column;
  align-items:center;
  background:var(--gold);
  color:var(--ink);
  border:2px solid rgba(17,17,17,.85);
  box-shadow:
    18px 20px 0 var(--red),
    28px 31px 0 rgba(0,0,0,.24),
    0 30px 70px rgba(0,0,0,.32);
  transform:rotate(-2.2deg)
}

.jail-poster::before,
.jail-poster::after{
  content:"";
  position:absolute;
  left:17px;
  right:17px;
  height:8px;
  border-top:2px solid var(--ink);
  border-bottom:2px solid var(--ink)
}

.jail-poster::before{top:18px}
.jail-poster::after{bottom:18px}

.jail-poster-top{
  margin-top:4px;
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.18em
}

.jail-wanted{
  margin:25px 0 18px;
  font-family:var(--display);
  font-size:clamp(62px,7vw,104px);
  line-height:.78;
  letter-spacing:-.065em
}

.jail-bars{
  position:relative;
  width:82%;
  height:285px;
  margin:8px 0 24px;
  display:flex;
  justify-content:space-between;
  align-items:stretch;
  overflow:hidden;
  border-top:14px solid var(--ink);
  border-bottom:14px solid var(--ink);
  background:
    radial-gradient(circle at 50% 46%,rgba(255,255,255,.24),transparent 35%),
    var(--blue-deep)
}

.jail-bars::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:16px;
  transform:translateY(-50%);
  background:var(--ink)
}

.jail-bars span{
  position:relative;
  z-index:2;
  width:15px;
  height:100%;
  background:var(--ink)
}

.jail-poster-bottom{
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:6px
}

.jail-poster-bottom strong{
  font-family:var(--display);
  font-size:27px;
  line-height:1
}

.jail-poster-bottom span{
  font-size:10px;
  font-weight:800;
  letter-spacing:.13em
}

/* Copy side */
.jail-copy{
  max-width:690px
}

.jail-heading{
  margin:0 0 30px;
  font-family:var(--display);
  font-size:clamp(68px,8vw,124px);
  line-height:.78;
  letter-spacing:-.065em;
  text-transform:uppercase
}

.jail-heading em{
  color:var(--gold);
  font-style:normal
}

.jail-copy > p:not(.eyebrow){
  max-width:630px;
  margin:0 0 18px;
  color:rgba(255,255,255,.8);
  font-size:17px;
  line-height:1.62
}

.jail-copy .jail-lead{
  color:var(--white);
  font-size:clamp(19px,1.8vw,24px);
  line-height:1.45;
  font-weight:600
}

.jail-copy strong{
  color:var(--white)
}

.jail-rule{
  width:100%;
  height:1px;
  margin:34px 0 28px;
  background:rgba(255,255,255,.24)
}

.jail-volunteer{
  display:grid;
  grid-template-columns:190px 1fr;
  gap:28px;
  align-items:start;
  margin-bottom:25px
}

.jail-volunteer-label,
.jail-contact-label{
  color:var(--gold);
  font-family:var(--display);
  font-size:9px;
  line-height:1.5;
  letter-spacing:.14em
}

.jail-volunteer p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.55
}

.jail-contact-card{
  display:grid;
  grid-template-columns:210px 1fr;
  gap:28px;
  margin:0 0 28px;
  padding:24px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.18);
  border-left:6px solid var(--gold)
}

.jail-contact-card > div{
  display:flex;
  flex-direction:column;
  gap:6px
}

.jail-contact-card > div strong{
  font-family:var(--display);
  font-size:17px;
  line-height:1.05
}

.jail-contact-card p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.6
}

.jail-contact-card a{
  color:var(--gold);
  font-weight:700;
  border-bottom:1px solid rgba(233,173,40,.45)
}

.jail-contact-card a:hover{
  color:var(--gold-bright)
}

.jail-button{
  background:var(--gold);
  color:var(--ink);
  border-color:var(--gold)
}

.jail-button:hover{
  background:var(--gold-bright)
}

/* Jail section responsive */
@media (max-width:1040px){
  .jail-grid{
    grid-template-columns:.9fr 1.1fr;
    gap:45px
  }

  .jail-visual{
    min-height:560px
  }

  .jail-poster{
    min-height:510px;
    padding-inline:26px
  }

  .jail-bars{
    height:235px
  }

  .jail-volunteer,
  .jail-contact-card{
    grid-template-columns:1fr;
    gap:10px
  }
}

@media (max-width:760px){
  .jail-section{
    border-top-width:6px;
    border-bottom-width:6px
  }

  .jail-grid{
    grid-template-columns:1fr;
    gap:45px
  }

  .jail-copy{
    order:1
  }

  .jail-visual{
    order:2;
    min-height:0;
    padding:12px 20px 34px;
    overflow:visible
  }

  .jail-heading{
    font-size:clamp(44px,12.8vw,60px);
    line-height:.82;
    letter-spacing:-.045em;
    padding-right:.12em;
    margin-bottom:24px
  }

  .jail-poster{
    width:min(100%,420px);
    min-height:500px;
    margin-inline:auto;
    padding:32px 22px 30px;
    box-shadow:
      9px 11px 0 var(--red),
      15px 18px 0 rgba(0,0,0,.24);
    transform:rotate(-1.35deg);
    transform-origin:center center
  }

  .jail-wanted{
    font-size:clamp(58px,18vw,82px)
  }

  .jail-bars{
    width:86%;
    height:230px
  }

  .jail-volunteer{
    grid-template-columns:1fr
  }

  .jail-contact-card{
    grid-template-columns:1fr;
    padding:20px
  }

  .jail-button{
    width:100%
  }
}

@media (max-width:480px){
  .jail-copy .jail-lead{
    font-size:18px
  }

  .jail-copy > p:not(.eyebrow){
    font-size:15px
  }

  .jail-poster{
    min-height:440px
  }

  .jail-bars{
    height:190px
  }

  .jail-poster-bottom strong{
    font-size:22px
  }
}


/* PARTNERS */

.partners{
  background:var(--cream)
}

.partner-heading{
  margin:0 0 60px;
  font-family:var(--display);
  font-size:clamp(52px,8vw,118px);
  letter-spacing:-.06em;
  line-height:.9
}

.partner-heading em{
  color:var(--red);
  font-style:normal
}

.partner-feature{
  border-top:2px solid var(--ink);
  border-bottom:1px solid var(--line);
  padding:24px 0 45px
}

.partner-feature > p{
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.12em
}

.partner-logos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:30px
}

.logo-placeholder{
  min-height:170px;
  display:grid;
  place-items:center;
  text-align:center;
  background:var(--white);
  border:1px solid var(--line);
  font-family:var(--display);
  font-size:clamp(18px,2vw,29px);
  line-height:.92
}

.partner-marquee{
  overflow:hidden;
  margin:50px 0;
  border-top:1px solid var(--ink);
  border-bottom:1px solid var(--ink)
}

.partner-marquee-track{
  display:flex;
  width:max-content;
  animation:ticker 30s linear infinite reverse
}

.partner-marquee span{
  white-space:nowrap;
  padding:18px 12px;
  font-family:var(--display);
  font-size:18px
}

.partner-cta{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center
}

.partner-cta p{
  max-width:560px;
  font-size:20px;
  line-height:1.5
}


/* ABOUT */

.about{
  background:var(--red);
  color:var(--white)
}

.about-grid{
  display:grid;
  grid-template-columns:1.5fr .8fr;
  gap:80px;
  align-items:end
}

.about-copy{
  padding-bottom:10px
}

.about-copy p{
  font-size:18px;
  line-height:1.55;
  color:rgba(255,255,255,.88)
}

.light-link{
  color:var(--white);
  margin-top:22px
}


/* NEWSLETTER */

.newsletter{
  padding:65px 0;
  background:var(--gold)
}

.newsletter-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:end
}

.newsletter h2{
  margin:0;
  font-family:var(--display);
  font-size:clamp(34px,4vw,64px);
  line-height:.95;
  letter-spacing:-.05em
}

.signup-form{
  display:flex;
  border-bottom:3px solid var(--ink)
}

.signup-form input{
  width:100%;
  border:0;
  background:transparent;
  padding:16px 2px;
  outline:none;
  font-size:15px;
  font-weight:700
}

.signup-form input::placeholder{
  color:rgba(17,17,17,.62)
}

.signup-form button{
  border:0;
  background:transparent;
  padding:10px;
  font-family:var(--display);
  font-size:11px;
  white-space:nowrap;
  cursor:pointer
}


/* FOOTER */

.footer{
  background:var(--ink);
  color:var(--white);
  padding:80px 0 25px
}

.footer-top{
  display:grid;
  grid-template-columns:1.3fr 2fr;
  gap:100px;
  padding-bottom:80px
}

.footer-brand .brand-large{
  font-size:clamp(38px,5vw,75px)
}

.footer-brand .brand-small{
  font-size:14px
}

.footer-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px
}

.footer-links div{
  display:flex;
  flex-direction:column;
  gap:10px
}

.footer-links p{
  color:var(--gold);
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.12em;
  margin:0 0 10px
}

.footer-links a{
  color:rgba(255,255,255,.7);
  font-size:13px
}

.footer-links a:hover{
  color:var(--white)
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.22);
  padding-top:22px;
  color:rgba(255,255,255,.45);
  font-size:10px;
  letter-spacing:.08em
}


/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:
    opacity .75s cubic-bezier(.2,.7,.2,1),
    transform .75s cubic-bezier(.2,.7,.2,1)
}

.reveal.visible{
  opacity:1;
  transform:translateY(0)
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:1040px){

  :root{
    --shell:min(1380px,calc(100% - 40px))
  }

  .nav{
    grid-template-columns:1fr auto
  }

  .nav-links,
  .desktop-cta{
    display:none
  }

  .menu-button{
    display:block
  }

  .mobile-menu{
    position:fixed;
    inset:90px 0 auto 0;
    min-height:calc(100vh - 90px);
    background:var(--paper);
    color:var(--ink);
    padding:45px 20px 70px;
    flex-direction:column;
    gap:7px
  }

  .site-header:not(.scrolled) .mobile-menu{
    top:128px
  }

  .mobile-menu.open{
    display:flex
  }

  .mobile-menu > a:not(.nav-cta){
    font-family:var(--display);
    font-size:38px;
    letter-spacing:-.04em;
    border-bottom:1px solid var(--line);
    padding:14px 0
  }

  .mobile-menu .nav-cta{
    margin-top:30px;
    align-self:stretch;
    text-align:center
  }


  /* MOBILE MAJOR EVENTS */

  .mobile-events-dropdown{
    border-bottom:1px solid var(--line)
  }

  .mobile-events-dropdown summary{
    list-style:none;
    position:relative;
    cursor:pointer;
    padding:14px 34px 14px 0;
    font-family:var(--display);
    font-size:38px;
    line-height:1;
    letter-spacing:-.04em
  }

  .mobile-events-dropdown summary::-webkit-details-marker{
    display:none
  }

  .mobile-events-dropdown summary::after{
    content:"+";
    position:absolute;
    right:2px;
    top:50%;
    transform:translateY(-50%);
    font-family:var(--body);
    font-size:25px;
    font-weight:400
  }

  .mobile-events-dropdown[open] summary::after{
    content:"−"
  }

  .mobile-events-submenu{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:0 0 14px 18px
  }

  .mobile-events-submenu a{
    display:block;
    width:100%;
    padding:9px 0;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.06em
  }

  .hero{
    min-height:780px
  }

  .hero-bottom{
    align-items:flex-start;
    flex-direction:column
  }

  .hero-actions{
    flex-wrap:wrap
  }

  .event-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:620px 390px
  }

  .event-card-tall{
    grid-column:1 / 3;
    grid-row:1;
    min-height:620px
  }

  .photo-collage{
    grid-template-columns:1fr 1fr;
    grid-template-rows:380px 230px 300px
  }

  .photo-one{
    grid-row:1;
    grid-column:1 / 3
  }

  .photo-four{
    grid-column:1 / 3
  }

  .photo-three{
    display:none
  }

  .about-grid{
    grid-template-columns:1fr
  }

  .about-copy{
    max-width:650px
  }
}


@media (max-width:760px){

  :root{
    --shell:calc(100vw - 30px)
  }

  .section{
    padding:80px 0
  }

  .announcement a{
    justify-content:space-between;
    font-size:9px
  }

  .announcement span{
    display:none
  }

  .nav{
    height:74px
  }

  .site-header:not(.scrolled) .mobile-menu{
    top:112px
  }

  .mobile-menu{
    inset:74px 0 auto 0;
    min-height:calc(100vh - 74px)
  }

  .hero{
    height:92vh;
    min-height:670px
  }

  .hero-content{
    padding-top:130px;
    padding-bottom:42px
  }

  .hero-title{
    font-size:clamp(74px,27vw,130px);
    line-height:.75
  }

  .hero-title span:last-child{
    margin-left:0
  }

  .hero-kicker{
    font-size:9px
  }

  .hero-bottom p{
    font-size:16px;
    max-width:90%
  }

  .button{
    min-height:49px;
    font-size:10px
  }

  .scroll-cue{
    display:none
  }

  .ticker-track span{
    font-size:13px;
    padding:13px 8px
  }

  .intro-grid,
  .section-header,
  .newsletter-grid{
    grid-template-columns:1fr;
    gap:28px
  }

  .display-heading{
    font-size:clamp(46px,14.5vw,72px);
    letter-spacing:-.05em;
    max-width:100%
  }

  .intro-copy{
    margin:28px 0 0;
    font-size:17px
  }

  .event-grid{
    display:flex;
    flex-direction:column
  }

  .event-card,
  .event-card-tall{
    min-height:520px
  }

  .event-card-copy{
    left:22px;
    right:22px;
    bottom:22px
  }

  .event-card h3,
  .event-card:not(.event-card-tall) h3{
    font-size:52px
  }

  .all-events-cta{
    text-align:left
  }

  .experience-title{
    margin-bottom:45px
  }

  .photo-collage{
    display:flex;
    flex-direction:column
  }

  .collage-photo{
    min-height:310px
  }

  .photo-two,
  .photo-three{
    display:none
  }

  .collage-copy{
    min-height:200px
  }

  .experience-points{
    grid-template-columns:1fr;
    gap:30px;
    margin-top:50px
  }

  .schedule-row{
    grid-template-columns:88px 1fr 28px;
    gap:12px;
    min-height:105px
  }

  .schedule-place{
    display:none
  }

  .schedule-name{
    font-size:22px
  }

  .schedule-time{
    font-size:10px
  }

  .schedule-actions{
    justify-content:flex-start;
    flex-direction:column
  }

  .schedule-actions .button{
    width:100%
  }

  .duck-cta{
    min-height:590px
  }

  .duck-cta h2{
    font-size:clamp(50px,14.5vw,72px);
    letter-spacing:-.05em
  }

  .duck-cta-content > p:not(.eyebrow){
    font-size:16px
  }

  .partner-logos{
    grid-template-columns:1fr
  }

  .logo-placeholder{
    min-height:130px
  }

  .partner-cta{
    align-items:flex-start;
    flex-direction:column
  }

  .about-grid{
    gap:38px
  }

  .signup-form{
    margin-top:8px
  }

  .signup-form button{
    font-size:9px
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:60px;
    padding-bottom:55px
  }

  .footer-links{
    grid-template-columns:1fr 1fr
  }

  .footer-bottom{
    flex-direction:column;
    gap:8px
  }
}


@media (prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important
  }

  .reveal{
    opacity:1;
    transform:none
  }
}


/* =========================================================
   2027 75TH ANNIVERSARY
   ========================================================= */

.anniversary-banner{
  background:var(--gold);
  border-bottom:1px solid rgba(17,17,17,.45)
}

.anniversary-banner a{
  min-height:44px;
  gap:17px
}

.anniversary-banner span{
  border:0
}

.banner-edition,
.banner-dates,
.banner-anniversary{
  font-family:var(--display);
  white-space:nowrap
}

.banner-edition{
  font-size:13px
}

.banner-dates{
  font-size:13px;
  letter-spacing:.16em
}

.banner-anniversary{
  font-size:10px;
  letter-spacing:.18em
}

.banner-divider{
  width:34px;
  height:1px;
  background:rgba(17,17,17,.65)
}

.site-header{
  top:44px
}

.brand-large sup{
  position:relative;
  top:-.7em;
  margin-left:3px;
  font-size:.38em;
  letter-spacing:0
}


/* ANNIVERSARY HERO */

.anniversary-hero{
  min-height:880px
}

.anniversary-hero .hero-overlay{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.58),
      rgba(0,0,0,.05) 41%,
      rgba(0,0,0,.72)
    ),
    linear-gradient(
      95deg,
      rgba(0,0,0,.32),
      transparent 56%
    )
}

.anniversary-hero .hero-content{
  padding-top:158px;
  padding-bottom:66px
}

.hero-topline{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px
}

.hero-75-watermark{
  position:absolute;
  z-index:1;
  right:-3vw;
  top:10%;
  color:rgba(255,255,255,.11);
  font-family:var(--display);
  font-size:clamp(310px,47vw,740px);
  line-height:.72;
  letter-spacing:-.13em;
  pointer-events:none;
  user-select:none
}

.anniversary-seal-image{
  position:relative;
  width:150px;
  height:150px;
  flex:0 0 150px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:4
}

.anniversary-seal-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block
}

.hero-theme{
  margin:auto 0 20px
}

.hero-overline{
  margin:0 0 13px 5px;
  color:rgba(255,255,255,.72);
  font-family:var(--display);
  font-size:11px;
  letter-spacing:.2em
}

.era-title{
  margin:0;
  max-width:1180px;
  font-family:var(--display);
  font-size:clamp(88px,13.2vw,202px);
  font-weight:900;
  line-height:.69;
  letter-spacing:-.075em;
  text-transform:uppercase
}

.era-title span{
  display:block
}

.era-title span:nth-child(1){
  margin-left:.32em
}

.era-title .gold-word{
  color:var(--gold)
}

.era-title span:nth-child(3){
  margin-left:.65em
}

.hero-intro{
  display:flex;
  align-items:flex-start;
  gap:24px;
  max-width:715px
}

.hero-intro > p:last-child{
  margin:0;
  max-width:510px
}

.hero-edition{
  margin:2px 0 0 !important;
  padding-right:24px;
  border-right:1px solid rgba(255,255,255,.55);
  font-family:var(--display);
  font-size:11px !important;
  letter-spacing:.12em;
  white-space:nowrap
}


/* 75TH STORY */

.anniversary-story{
  position:relative;
  overflow:hidden;
  background:var(--cream);
  border-bottom:1px solid rgba(17,17,17,.16);
  isolation:isolate
}

.anniversary-grid{
  display:grid;
  grid-template-columns:.8fr 2.1fr;
  gap:75px;
  align-items:start
}

.anniversary-number{
  display:flex;
  position:relative;
  margin-top:-10px;
  color:var(--gold);
  font-family:var(--display);
  font-size:clamp(190px,25vw,365px);
  line-height:.72;
  letter-spacing:-.17em;
  text-shadow:6px 6px 0 rgba(17,17,17,.06)
}

.anniversary-number span:last-child{
  position:relative;
  top:54px
}

.anniversary-copy .intro-copy{
  max-width:735px;
  margin:42px 0 0
}


/* HISTORY */

.history-dropdown{
  margin-top:30px;
  border:0;
  background:var(--ink);
  color:var(--white)
}

.history-dropdown summary{
  list-style:none;
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  cursor:pointer;
  padding:0 24px;
  color:var(--white);
  font-family:var(--display);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase
}

.history-dropdown summary::-webkit-details-marker{
  display:none
}

.history-summary-copy{
  display:flex;
  flex-direction:column;
  gap:5px
}

.history-summary-copy small{
  color:var(--gold);
  font-family:var(--body);
  font-size:9px;
  font-weight:700;
  letter-spacing:.16em
}

.history-summary-copy strong{
  font-family:var(--display);
  font-size:13px;
  letter-spacing:.08em
}

.history-toggle{
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.55);
  border-radius:50%;
  color:var(--white);
  font-family:var(--body);
  font-size:25px;
  font-weight:400;
  line-height:1;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease
}

.history-dropdown[open] .history-toggle{
  transform:rotate(45deg);
  background:var(--gold);
  color:var(--ink);
  border-color:var(--gold)
}

.history-dropdown-content{
  max-width:none;
  padding:8px 24px 30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 36px
}

.history-dropdown-content p{
  margin:0 0 18px;
  color:rgba(255,255,255,.78);
  font-size:15px;
  line-height:1.72
}

.history-dropdown-content p:last-child{
  margin-bottom:0
}

.history-dropdown-content .history-finale{
  grid-column:1 / -1;
  margin-top:8px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.18);
  color:var(--white);
  font-size:17px
}

.history-finale strong{
  color:var(--gold);
  font-family:var(--display)
}

.anniversary-story::before{
  content:"GOLDEN";
  position:absolute;
  left:-2vw;
  bottom:-44px;
  z-index:-1;
  color:rgba(17,17,17,.028);
  font-family:var(--display);
  font-size:clamp(120px,18vw,290px);
  line-height:.8;
  letter-spacing:-.08em;
  pointer-events:none
}

.history-milestones{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:48px;
  border-top:1px solid rgba(17,17,17,.35);
  border-bottom:1px solid rgba(17,17,17,.35)
}

.history-milestone{
  min-height:105px;
  padding:20px 20px 18px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-right:1px solid rgba(17,17,17,.25)
}

.history-milestone:not(:first-child){
  padding-left:22px
}

.history-milestone:last-child{
  border-right:0
}

.history-year{
  color:var(--red);
  font-family:var(--display);
  font-size:34px;
  line-height:1;
  letter-spacing:-.05em
}

.history-label{
  margin-top:7px;
  font-family:var(--display);
  font-size:8px;
  letter-spacing:.13em
}


/* ANNIVERSARY STATS */

.anniversary-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:55px;
  border-top:2px solid var(--ink);
  border-bottom:1px solid rgba(17,17,17,.3)
}

.anniversary-stats > div{
  display:flex;
  align-items:center;
  gap:16px;
  min-height:115px;
  padding:20px 24px 20px 0;
  border-right:1px solid rgba(17,17,17,.3)
}

.anniversary-stats > div:not(:first-child){
  padding-left:24px
}

.anniversary-stats > div:last-child{
  border-right:0
}

.anniversary-stats strong{
  font-family:var(--display);
  color:var(--red);
  font-size:48px;
  line-height:1;
  letter-spacing:-.06em
}

.anniversary-stats span{
  font-family:var(--display);
  font-size:9px;
  line-height:1.45;
  letter-spacing:.1em
}


/* ERA MANIFESTO */

.era-manifesto{
  display:grid;
  grid-template-columns:.7fr 2.3fr;
  gap:50px;
  align-items:baseline;
  margin-top:85px;
  padding:28px 0;
  border-top:1px solid var(--ink);
  border-bottom:1px solid var(--ink)
}

.manifesto-label{
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.14em
}

.era-manifesto p{
  max-width:980px;
  margin:0;
  font-size:clamp(25px,3.1vw,47px);
  line-height:1.1;
  letter-spacing:-.035em
}

.era-manifesto strong{
  color:var(--red);
  font-family:var(--display)
}


/* EVENT ANNIVERSARY TAG */

.event-anniversary-tag{
  position:absolute;
  z-index:2;
  top:31px;
  left:28px;
  padding:7px 9px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(0,0,0,.22);
  backdrop-filter:blur(4px);
  font-family:var(--display);
  font-size:8px;
  letter-spacing:.13em
}


/* DATE BAND */

.date-band{
  margin-bottom:48px;
  border-top:3px solid var(--ink);
  border-bottom:3px solid var(--ink);
  display:grid;
  grid-template-columns:1fr auto;
  align-items:stretch
}

.date-band-main{
  display:flex;
  align-items:baseline;
  gap:22px;
  padding:25px 0
}

.date-band-main strong{
  font-family:var(--display);
  font-size:clamp(74px,10vw,145px);
  line-height:.8;
  letter-spacing:-.08em
}

.date-month,
.date-year{
  font-family:var(--display);
  font-size:18px;
  letter-spacing:.15em
}

.date-dash{
  font-family:var(--display);
  font-size:42px
}

.date-band-side{
  min-width:220px;
  border-left:1px solid rgba(17,17,17,.42);
  padding:25px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  font-family:var(--display);
  font-size:9px;
  letter-spacing:.12em
}

.anniversary-schedule .schedule-row{
  cursor:default
}

.schedule-note{
  margin:22px 0 0;
  max-width:620px;
  font-size:13px;
  line-height:1.5;
  font-weight:700
}

.experience .big-stat{
  font-size:clamp(80px,8vw,125px)
}

.partners{
  position:relative
}

.partners::before{
  content:"75";
  position:absolute;
  right:-1vw;
  top:60px;
  color:rgba(17,17,17,.035);
  font-family:var(--display);
  font-size:clamp(260px,31vw,510px);
  line-height:.75;
  letter-spacing:-.12em;
  pointer-events:none
}

.newsletter{
  position:relative;
  overflow:hidden
}

.newsletter::after{
  content:"’27";
  position:absolute;
  right:1vw;
  bottom:-45px;
  color:rgba(17,17,17,.06);
  font-family:var(--display);
  font-size:210px;
  line-height:1;
  letter-spacing:-.08em;
  pointer-events:none
}

.newsletter-grid{
  position:relative;
  z-index:2
}


/* ANNIVERSARY TABLET */

@media (max-width:1040px){

  .site-header:not(.scrolled) .mobile-menu{
    top:134px
  }

  .anniversary-grid{
    grid-template-columns:.65fr 1.6fr;
    gap:42px
  }

  .anniversary-number{
    font-size:clamp(160px,26vw,260px)
  }

  .hero-intro{
    flex-direction:column;
    gap:10px
  }

  .hero-edition{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.45);
    padding:0 0 8px
  }
}


/* ANNIVERSARY MOBILE */

@media (max-width:760px){

  .anniversary-banner a{
    min-height:38px;
    gap:9px;
    justify-content:center;
    padding-inline:8px
  }

  .banner-divider{
    width:12px
  }

  .banner-edition,
  .banner-dates{
    font-size:9px
  }

  .banner-anniversary{
    font-size:7px
  }

  .site-header{
    top:38px
  }

  .site-header:not(.scrolled) .mobile-menu{
    top:112px
  }

  .anniversary-hero{
    min-height:750px;
    height:94vh
  }

  .anniversary-hero .hero-content{
    padding-top:116px;
    padding-bottom:42px
  }

  .anniversary-seal-image{
    width:96px;
    height:96px;
    flex-basis:96px
  }

  .hero-kicker{
    max-width:160px;
    flex-wrap:wrap
  }

  .hero-75-watermark{
    top:18%;
    right:-15vw
  }

  .hero-overline{
    font-size:8px
  }

  .era-title{
    font-size:clamp(77px,24vw,118px);
    line-height:.72
  }

  .era-title span:nth-child(1){
    margin-left:0
  }

  .era-title span:nth-child(3){
    margin-left:.28em
  }

  .hero-intro > p:last-child{
    font-size:15px
  }

  .anniversary-grid{
    display:flex;
    flex-direction:column;
    gap:34px
  }

  .anniversary-number{
    margin:0;
    font-size:clamp(165px,54vw,235px)
  }

  .anniversary-number span:last-child{
    top:30px
  }

  .anniversary-stats{
    grid-template-columns:1fr
  }

  .anniversary-stats > div,
  .anniversary-stats > div:not(:first-child){
    min-height:84px;
    padding:16px 0;
    border-right:0;
    border-bottom:1px solid rgba(17,17,17,.25)
  }

  .anniversary-stats > div:last-child{
    border-bottom:0
  }

  .anniversary-stats strong{
    width:55px;
    font-size:40px
  }

  .era-manifesto{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:55px
  }

  .era-manifesto p{
    font-size:27px
  }

  .event-anniversary-tag{
    top:22px;
    left:22px
  }

  .date-band{
    grid-template-columns:1fr
  }

  .date-band-main{
    gap:10px;
    flex-wrap:wrap
  }

  .date-band-main strong{
    font-size:clamp(65px,20vw,92px)
  }

  .date-month,
  .date-year{
    font-size:12px
  }

  .date-dash{
    font-size:25px
  }

  .date-band-side{
    min-width:0;
    border-left:0;
    border-top:1px solid rgba(17,17,17,.42);
    padding:15px 0;
    flex-direction:row;
    justify-content:space-between
  }

  .history-milestones{
    grid-template-columns:1fr
  }

  .history-milestone,
  .history-milestone:not(:first-child){
    min-height:72px;
    padding:14px 0;
    border-right:0;
    border-bottom:1px solid rgba(17,17,17,.22)
  }

  .history-milestone:last-child{
    border-bottom:0
  }

  .history-year{
    font-size:28px
  }

  .history-dropdown summary{
    min-height:78px;
    padding:0 18px
  }

  .history-dropdown-content{
    grid-template-columns:1fr;
    gap:0;
    padding:4px 18px 24px
  }

  .history-dropdown-content .history-finale{
    grid-column:auto
  }

  .event-sponsor-logo,
  .event-sponsor-logo-small{
    top:18px;
    right:18px;
    width:125px;
    height:70px
  }

  .parking-actions{
    flex-direction:column;
    align-items:stretch
  }

  .parking-actions .button{
    width:100%
  }

  .sponsor-photo,
  .sponsor-photo img{
    min-height:300px;
    max-height:460px
  }

  .newsletter::after{
    right:-18px;
    font-size:140px
  }
}


/* FULL WIDTH SPONSOR IMAGE */

.sponsor-photo-section{
  position:relative;
  background:var(--ink);
  overflow:hidden
}

.sponsor-photo{
  width:100%;
  min-height:420px;
  max-height:760px;
  background:var(--ink)
}

.sponsor-photo img{
  width:100%;
  height:100%;
  min-height:420px;
  max-height:760px;
  object-fit:cover;
  object-position:center;
  display:block
}

.sponsor-photo-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:22px 0;
  color:var(--white);
  background:linear-gradient(
    to top,
    rgba(0,0,0,.78),
    transparent
  );
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.12em
}


/* =========================================================
   FESTIVAL EVENT CALENDAR
   ========================================================= */

.festival-calendar{
  position:relative;
  overflow:hidden;
  background:var(--gold);
  color:var(--ink)
}

.festival-calendar::before{
  content:"’27";
  position:absolute;
  right:-2vw;
  top:40px;
  color:rgba(17,17,17,.045);
  font-family:var(--display);
  font-size:clamp(250px,31vw,500px);
  line-height:.8;
  letter-spacing:-.1em;
  pointer-events:none
}

.festival-calendar .shell{
  position:relative;
  z-index:2
}

.calendar-heading{
  display:grid;
  grid-template-columns:1.55fr .75fr;
  gap:70px;
  align-items:end;
  margin-bottom:58px
}

.calendar-heading-copy{
  max-width:430px;
  padding-bottom:8px
}

.calendar-heading-copy p{
  margin:0 0 24px;
  font-size:17px;
  line-height:1.55;
  font-weight:600
}

.calendar-location{
  display:inline-block;
  padding-top:10px;
  border-top:2px solid var(--ink);
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.12em
}


/* MULTIDAY */

.calendar-multiday{
  position:relative;
  display:grid;
  grid-template-columns:220px 1fr auto;
  gap:34px;
  align-items:center;
  margin-bottom:22px;
  padding:25px 30px;
  background:var(--ink);
  color:var(--white);
  overflow:hidden
}

.calendar-multiday::after{
  content:"BREAKFAST";
  position:absolute;
  right:70px;
  bottom:-21px;
  color:rgba(255,255,255,.045);
  font-family:var(--display);
  font-size:72px;
  letter-spacing:-.05em;
  pointer-events:none
}

.calendar-multiday-date{
  display:flex;
  align-items:baseline;
  gap:12px;
  color:var(--gold)
}

.calendar-multiday-date span{
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.15em
}

.calendar-multiday-date strong{
  font-family:var(--display);
  font-size:47px;
  line-height:1;
  letter-spacing:-.06em
}

.calendar-label,
.calendar-event-type{
  margin:0 0 8px;
  font-family:var(--display);
  font-size:8px;
  letter-spacing:.14em
}

.calendar-multiday-copy h3{
  margin:0;
  font-family:var(--display);
  font-size:clamp(25px,3vw,40px);
  line-height:.92;
  letter-spacing:-.04em
}

.calendar-multiday-copy > p:last-child{
  margin:9px 0 0;
  color:rgba(255,255,255,.7);
  font-size:13px
}

.calendar-multiday-mark{
  position:relative;
  z-index:2;
  color:var(--gold);
  font-size:32px
}


/* CALENDAR STACK */

.calendar-stack{
  border-top:3px solid var(--ink)
}

.calendar-day{
  display:grid;
  grid-template-columns:205px 1fr;
  min-height:230px;
  border-bottom:2px solid rgba(17,17,17,.55)
}

.calendar-date{
  position:relative;
  padding:27px 26px 25px 0;
  border-right:1px solid rgba(17,17,17,.45);
  display:flex;
  flex-direction:column;
  align-items:flex-start
}

.calendar-date strong{
  margin:4px 0 -3px;
  font-family:var(--display);
  font-size:clamp(78px,8vw,118px);
  line-height:.82;
  letter-spacing:-.09em
}

.calendar-date > span:not(.calendar-weekday):not(.calendar-big-day){
  font-family:var(--display);
  font-size:10px;
  letter-spacing:.15em
}

.calendar-weekday{
  font-family:var(--display);
  font-size:9px;
  letter-spacing:.14em
}

.calendar-big-day{
  margin-top:auto;
  padding:7px 9px;
  background:var(--gold);
  color:var(--ink);
  font-family:var(--display);
  font-size:8px;
  letter-spacing:.11em
}

.calendar-events{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  padding:22px 0 22px 28px
}

.calendar-events-single{
  grid-template-columns:minmax(0,1fr)
}

.calendar-events-three{
  grid-template-columns:repeat(3,minmax(0,1fr))
}

.calendar-event-card{
  position:relative;
  min-height:185px;
  padding:24px 24px 22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:rgba(248,242,229,.92);
  border:1px solid rgba(17,17,17,.32);
  overflow:hidden;
  transition:
    transform .2s ease,
    background .2s ease
}

.calendar-event-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:7px;
  height:100%;
  background:var(--red);
  transform:scaleY(.23);
  transform-origin:top;
  transition:transform .25s ease
}

.calendar-event-card:hover{
  transform:translateY(-4px);
  background:var(--paper)
}

.calendar-event-card:hover::before{
  transform:scaleY(1)
}

.calendar-event-type{
  position:absolute;
  top:20px;
  left:24px;
  color:rgba(17,17,17,.6)
}

.calendar-event-card h3{
  margin:0;
  max-width:520px;
  font-family:var(--display);
  font-size:clamp(25px,2.6vw,42px);
  line-height:.9;
  letter-spacing:-.045em
}

.calendar-event-card > p{
  margin:11px 0 0;
  font-size:13px;
  line-height:1.45
}

.calendar-event-music{
  min-height:205px
}


/* FEATURED JULY 24 */

.calendar-day-featured{
  margin-top:-2px;
  padding:20px 24px 20px 0;
  background:var(--ink);
  color:var(--white);
  border-bottom:0
}

.calendar-day-featured .calendar-date{
  padding-left:25px;
  border-right-color:rgba(255,255,255,.28)
}

.calendar-day-featured .calendar-date strong{
  color:var(--gold)
}

.calendar-day-featured .calendar-weekday,
.calendar-day-featured .calendar-date > span:not(.calendar-big-day){
  color:rgba(255,255,255,.74)
}

.calendar-day-featured .calendar-events{
  padding-right:0
}

.calendar-marquee-event{
  min-height:230px;
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.28)
}

.calendar-marquee-event::before{
  background:var(--gold)
}

.calendar-marquee-event .calendar-event-type{
  color:var(--gold)
}

.calendar-marquee-event:hover{
  background:rgba(255,255,255,.08)
}

.calendar-footer{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding-top:22px;
  font-family:var(--display);
  font-size:9px;
  letter-spacing:.12em
}


/* CALENDAR TABLET */

@media (max-width:1040px){

  .calendar-heading{
    grid-template-columns:1.25fr .75fr;
    gap:40px
  }

  .calendar-day{
    grid-template-columns:165px 1fr
  }

  .calendar-events-three{
    grid-template-columns:1fr
  }

  .calendar-day-featured .calendar-events-three{
    gap:10px
  }

  .calendar-marquee-event{
    min-height:155px
  }
}


/* CALENDAR MOBILE */

@media (max-width:760px){

  .calendar-heading{
    grid-template-columns:1fr;
    gap:28px;
    margin-bottom:40px
  }

  .calendar-heading-copy{
    padding-bottom:0
  }

  .calendar-multiday{
    grid-template-columns:1fr auto;
    gap:16px;
    padding:22px 20px
  }

  .calendar-multiday-date{
    grid-column:1 / 2
  }

  .calendar-multiday-copy{
    grid-column:1 / 2
  }

  .calendar-multiday-mark{
    grid-column:2;
    grid-row:1 / 3
  }

  .calendar-multiday::after{
    display:none
  }

  .calendar-day,
  .calendar-day-featured{
    display:block;
    padding:0
  }

  .calendar-date,
  .calendar-day-featured .calendar-date{
    min-height:0;
    padding:22px 0 18px;
    border-right:0;
    border-bottom:1px solid rgba(17,17,17,.35);
    flex-direction:row;
    align-items:baseline;
    gap:12px
  }

  .calendar-day-featured .calendar-date{
    padding-inline:18px;
    border-bottom-color:rgba(255,255,255,.22)
  }

  .calendar-date strong{
    margin:0;
    font-size:68px
  }

  .calendar-big-day{
    margin:0 0 0 auto
  }

  .calendar-events,
  .calendar-events-single,
  .calendar-events-three{
    grid-template-columns:1fr;
    padding:16px 0 22px
  }

  .calendar-day-featured .calendar-events{
    padding:16px 18px 20px
  }

  .calendar-event-card,
  .calendar-event-music,
  .calendar-marquee-event{
    min-height:170px
  }

  .calendar-event-card h3{
    font-size:31px
  }

  .calendar-footer{
    flex-direction:column;
    gap:7px
  }
}


.festival-calendar .display-heading em{
  color:var(--white)
}


/* =========================================================
   FINAL RESPONSIVE POLISH
   ========================================================= */

section[id]{
  scroll-margin-top:105px
}

.nav > *,
.anniversary-grid > *,
.section-header > *,
.about-grid > *,
.newsletter-grid > *,
.calendar-heading > *,
.calendar-events > *,
.footer-top > *,
.footer-links > *{
  min-width:0
}

.sponsor-photo{
  min-height:0;
  max-height:none
}

.sponsor-photo img{
  width:100%;
  height:auto;
  min-height:0;
  max-height:none;
  object-fit:contain
}

@media (max-width:1040px){

  .mobile-menu{
    min-height:0;
    height:calc(100dvh - 90px)
  }

  .site-header:not(.scrolled) .mobile-menu{
    height:calc(100dvh - 134px)
  }
}

@media (hover:none){

  .event-card:hover .event-image{
    transform:scale(1.015)
  }

  .calendar-event-card:hover,
  .button:hover{
    transform:none
  }
}


@media (max-width:760px){

  .announcement a{
    justify-content:center;
    gap:12px;
    min-height:38px;
    padding:7px 12px
  }

  .announcement span{
    display:inline
  }

  .anniversary-banner .banner-dates:last-child{
    display:none
  }

  .banner-edition,
  .banner-dates{
    font-size:9px;
    letter-spacing:.1em
  }

  .menu-button{
    width:46px;
    height:46px;
    padding:10px
  }

  .mobile-menu{
    width:100%;
    height:calc(100dvh - 74px);
    overflow-y:auto;
    overscroll-behavior:contain;
    padding:
      34px max(20px,env(safe-area-inset-right))
      max(70px,calc(45px + env(safe-area-inset-bottom)))
      max(20px,env(safe-area-inset-left))
  }

  .site-header:not(.scrolled) .mobile-menu{
    height:calc(100dvh - 112px)
  }

  .mobile-menu > a:not(.nav-cta){
    font-size:clamp(27px,8vw,38px);
    line-height:1;
    padding:15px 0
  }

  .mobile-events-dropdown summary{
    font-size:clamp(27px,8vw,38px);
    padding:15px 34px 15px 0
  }

  .anniversary-hero{
    height:calc(100svh - 38px);
    min-height:680px;
    max-height:none
  }

  .anniversary-hero .hero-content{
    padding-top:112px;
    padding-bottom:34px
  }

  .hero-topline{
    gap:18px
  }

  .anniversary-seal-image{
    width:120px;
    height:120px;
    flex-basis:120px
  }

  .hero-theme{
    margin-bottom:14px
  }

  /* Keep oversized Archivo Black headings inside the phone viewport. */
  .display-heading{
    max-width:100%;
    padding-right:.12em;
    font-size:clamp(43px,13.8vw,66px);
    line-height:.9;
    letter-spacing:-.045em
  }

  .era-title{
    max-width:100%;
    padding-right:.08em;
    font-size:clamp(60px,19.5vw,92px);
    line-height:.75;
    letter-spacing:-.06em
  }

  .hero-intro{
    width:100%
  }

  .hero-intro > p:last-child{
    max-width:94%;
    font-size:15px;
    line-height:1.42
  }

  .anniversary-number{
    font-size:clamp(135px,45vw,195px)
  }

  .anniversary-number span:last-child{
    top:25px
  }

  .history-dropdown summary{
    gap:14px
  }

  .history-summary-copy strong{
    font-size:11px;
    line-height:1.2
  }

  .history-toggle{
    width:34px;
    height:34px;
    flex-basis:34px
  }

  .event-card,
  .event-card-tall{
    min-height:490px
  }

  .event-card-copy{
    left:20px;
    right:20px;
    bottom:22px
  }

  .event-card h3,
  .event-card:not(.event-card-tall) h3{
    font-size:clamp(42px,13vw,52px)
  }

  .event-card-copy > p:not(.event-meta){
    max-width:calc(100% - 4px)
  }

  .event-sponsor-logo,
  .event-sponsor-logo-small{
    top:17px;
    right:17px;
    width:148px;
    height:84px
  }

  .festival-calendar::before{
    right:-12vw;
    font-size:clamp(180px,62vw,270px)
  }

  .calendar-heading .display-heading{
    font-size:clamp(43px,13.2vw,62px)
  }

  .calendar-heading-copy p{
    font-size:15px
  }

  .calendar-multiday{
    padding:20px 18px
  }

  .calendar-multiday-date strong{
    font-size:clamp(38px,12vw,47px)
  }

  .calendar-date strong{
    font-size:clamp(58px,19vw,72px)
  }

  .calendar-event-card,
  .calendar-event-music,
  .calendar-marquee-event{
    min-height:158px;
    padding:21px 18px 19px
  }

  .calendar-event-type{
    top:17px;
    left:18px
  }

  .calendar-event-card h3{
    font-size:clamp(27px,8.5vw,34px);
    overflow-wrap:break-word
  }

  .parking-cta{
    min-height:560px
  }

  .parking-cta .duck-cta-art{
    background-position:center
  }

  .duck-cta h2{
    max-width:100%;
    padding-right:.1em;
    font-size:clamp(46px,13.5vw,64px);
    letter-spacing:-.05em
  }

  .about-copy p{
    font-size:16px
  }

  .sponsor-photo-section{
    overflow:hidden
  }

  .sponsor-photo img{
    width:118%;
    max-width:none;
    margin-left:-9%;
    height:auto
  }

  .sponsor-photo-caption{
    position:static;
    padding:16px 0;
    background:var(--ink);
    line-height:1.45
  }

  .newsletter{
    padding:54px 0
  }

  .signup-form,
  .signup-form input{
    min-width:0
  }

  .footer{
    padding-top:60px
  }

  .footer-brand{
    width:100%;
    max-width:100%
  }

  .footer-brand .brand-large{
    max-width:100%;
    font-size:clamp(30px,9.5vw,42px);
    line-height:.92
  }

  .footer-brand .brand-small{
    font-size:11px;
    letter-spacing:.14em;
    line-height:1.3
  }
}


@media (max-width:480px){

  :root{
    --shell:calc(100vw - 30px)
  }

  .section{
    padding:68px 0
  }

  .brand-small{
    font-size:9px;
    letter-spacing:.18em
  }

  .brand-large{
    font-size:24px
  }

  .display-heading{
    font-size:clamp(40px,13.2vw,58px)
  }

  .jail-heading{
    font-size:clamp(42px,12.3vw,54px)
  }

  .jail-visual{
    padding-inline:18px
  }

  .jail-poster{
    width:100%;
    transform:rotate(-1deg)
  }

  .hero-75-watermark{
    top:19%;
    right:-18vw
  }

  .hero-overline{
    margin-left:0;
    letter-spacing:.14em
  }

  .era-title span:nth-child(3){
    margin-left:.18em
  }

  .anniversary-grid{
    gap:24px
  }

  .anniversary-copy .intro-copy{
    margin-top:28px
  }

  .history-dropdown{
    margin-top:24px
  }

  .history-dropdown summary{
    min-height:72px;
    padding:0 15px
  }

  .history-dropdown-content{
    padding:4px 15px 22px
  }

  .event-grid{
    gap:12px
  }

  .event-card,
  .event-card-tall{
    min-height:460px
  }

  .calendar-heading{
    margin-bottom:32px
  }

  .calendar-multiday{
    margin-bottom:16px
  }

  .calendar-multiday-copy h3{
    font-size:27px
  }

  .calendar-date,
  .calendar-day-featured .calendar-date{
    gap:9px
  }

  .calendar-weekday{
    font-size:8px
  }

  .calendar-big-day{
    font-size:7px;
    padding:6px 7px
  }

  .signup-form{
    display:grid;
    grid-template-columns:1fr;
    border-bottom:0;
    gap:8px
  }

  .signup-form input{
    width:100%;
    min-height:52px;
    border-bottom:3px solid var(--ink)
  }

  .signup-form button{
    width:100%;
    min-height:50px;
    padding:12px 14px;
    border:2px solid var(--ink)
  }

  .footer-top{
    gap:42px;
    padding-bottom:45px
  }

  .footer-links{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px
  }

  .footer-links div{
    gap:5px;
    min-width:0
  }

  .footer-links a{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    font-size:12px;
    line-height:1.25
  }
}


@media (max-width:360px){

  .announcement a{
    gap:8px;
    padding-inline:8px
  }

  .banner-edition,
  .banner-dates{
    font-size:8px
  }

  .anniversary-hero{
    min-height:650px
  }

  .anniversary-hero .hero-content{
    padding-top:105px;
    padding-bottom:28px
  }

  .anniversary-seal-image{
    width:104px;
    height:104px;
    flex-basis:104px
  }

  .era-title{
    font-size:clamp(56px,18.5vw,68px)
  }

  .hero-intro > p:last-child{
    max-width:100%;
    font-size:14px
  }

  .display-heading{
    font-size:clamp(38px,12.6vw,48px)
  }

  .event-card,
  .event-card-tall{
    min-height:440px
  }

  .event-sponsor-logo,
  .event-sponsor-logo-small{
    width:132px;
    height:76px
  }

  .calendar-event-card h3{
    font-size:27px
  }

  .duck-cta h2{
    font-size:50px
  }

  .footer-brand .brand-large{
    font-size:28px
  }

  .footer-links{
    gap:14px
  }

  .footer-links a{
    font-size:11px
  }

  .sponsor-photo img{
    width:122%;
    margin-left:-11%
  }
}
