/* The Mighty Crane — 1928 wooden tender */
:root {
  --navy: #0b1c33;
  --navy-2: #12263f;
  --navy-3: #1a3350;
  --red: #c1352c;
  --gold: #c9a24d;
  --gold-dim: #9a7a38;
  --paper: #f3eee4;
  --paper-2: #e7dfd0;
  --ink: #161512;
  --muted: #5a564e;
  --white: #faf8f4;
  --wood: #6e4428;
  --forest: #24382c;
  --rule: rgba(201, 162, 77, 0.45);
  --header-h: 3.6rem;
  --max: 72rem;
  --prose: 38rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, .display {
  font-family: Fraunces, "Iowan Old Style", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 40;
  background: var(--white);
  padding: 0.5rem 0.8rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 28, 51, 0.94);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 77, 0.28);
}
.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--red);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.1rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  width: 3.4rem;
  height: auto;
  filter: brightness(1.15);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.12rem;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem 1rem;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.86);
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88svh;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 48%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 14, 24, 0.82) 0%, rgba(8, 14, 24, 0.28) 42%, rgba(8, 14, 24, 0.12) 70%, rgba(8, 14, 24, 0.2) 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.2rem 3.2rem;
  width: 100%;
}
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  font-weight: 500;
  max-width: 14ch;
  text-wrap: balance;
}
.hero .lede {
  margin-top: 0.9rem;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  max-width: 28ch;
  color: rgba(250, 248, 244, 0.9);
  font-weight: 400;
}
.hero-cta {
  display: inline-block;
  margin-top: 1.4rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--red);
}
.hero-cta:hover { background: #a82c25; }

/* Lockup */
.lockup {
  background: var(--white);
  text-align: center;
  padding: 3.2rem 1.2rem 3rem;
  border-bottom: 1px solid var(--paper-2);
}
.lockup img {
  width: min(28rem, 88vw);
  margin: 0 auto 1.5rem;
}
.lockup p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 3.4rem 1.2rem;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.7rem);
  margin-bottom: 0.85rem;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.45rem;
}
.prose {
  max-width: var(--prose);
  font-size: 1.05rem;
  color: #2a2722;
}
.prose + .prose { margin-top: 1rem; }

.split {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 780px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}

.bleed {
  margin: 0;
}
.bleed img {
  width: 100%;
  height: min(72vh, 42rem);
  object-fit: cover;
}
figure {
  margin: 0;
}
figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.navy {
  background: var(--navy);
  color: var(--white);
}
.navy .eyebrow { color: var(--gold); }
.navy .prose { color: rgba(250, 248, 244, 0.88); }
.navy h2 { color: var(--white); }

.forest {
  background: var(--forest);
  color: var(--white);
}
.forest .eyebrow { color: var(--gold); }
.forest .prose { color: rgba(250, 248, 244, 0.88); }

.paper { background: var(--paper); }
.white { background: var(--white); }

.photo-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.facts {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.facts li {
  border-left: 3px solid var(--red);
  padding: 0.15rem 0 0.15rem 0.9rem;
}
.facts strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: 1.08rem;
}
.facts span {
  color: var(--muted);
  font-size: 0.95rem;
}
.navy .facts span { color: rgba(250, 248, 244, 0.7); }

.note {
  margin-top: 1.2rem;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: var(--prose);
}
.navy .note { color: rgba(250, 248, 244, 0.7); }

/* Weeks */
.weeks-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
@media (min-width: 640px) {
  .weeks-grid { grid-template-columns: 1fr 1fr; }
}
.week {
  background: var(--white);
  border: 1px solid var(--paper-2);
  padding: 1.15rem 1.2rem 1.2rem;
  border-top: 3px solid var(--red);
}
.week time {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}
.week small {
  display: block;
  margin-top: 0.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold-dim);
}

/* Form */
form {
  margin-top: 1.5rem;
  max-width: 36rem;
  display: grid;
  gap: 0.9rem;
}
label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
input, select, textarea {
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfc6b6;
  padding: 0.7rem 0.75rem;
  width: 100%;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold-dim);
}
textarea { min-height: 7rem; resize: vertical; }
.row-2 {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 560px) {
  .row-2 { grid-template-columns: 1fr 1fr; }
}
button[type="submit"], .btn {
  justify-self: start;
  background: var(--red);
  color: var(--white);
  border: 0;
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.3rem;
  cursor: pointer;
}
button[type="submit"]:hover { background: #a82c25; }
.form-fallback {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.form-fallback a { color: var(--navy); text-decoration: underline; }

/* Poster pair */
.posters {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .posters { grid-template-columns: 1.4fr 1fr; align-items: center; }
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(250, 248, 244, 0.82);
  padding: 2.8rem 1.2rem 2.2rem;
  text-align: center;
  border-top: 4px solid var(--red);
}
.site-footer img {
  width: min(18rem, 70vw);
  margin: 0 auto 1.2rem;
  filter: brightness(1.12);
}
.site-footer p { margin: 0.25rem 0; font-size: 0.92rem; }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.legal {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(250, 248, 244, 0.55);
}

hr.gold {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 0 auto 1.5rem;
  max-width: 6rem;
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  .site-nav { width: 100%; justify-content: flex-start; gap: 0.2rem 0.9rem; }
  .brand img { width: 2.8rem; }
  .hero { min-height: 78svh; }
  .bleed img { height: 52vh; }
}
