/* =========================================================
   FIFTY & FORTY — Elegant + Modern
   Palette: ivory, deep claret, warm gold, charcoal
   Type:    Fraunces (display) + Inter Tight (body)
   ========================================================= */

:root {
  --c-bg:        #f5f1ea;        /* warm ivory */
  --c-bg-alt:    #efe8dc;        /* slightly deeper */
  --c-ink:       #1a1715;        /* near-black, warm */
  --c-ink-soft:  #4a4540;
  --c-muted:     #857d72;
  --c-line:      #d9d1c2;
  --c-claret:    #6b1f2c;        /* primary accent */
  --c-claret-2:  #8a2a3a;
  --c-gold:      #b8893d;        /* secondary accent */
  --c-gold-soft: #d9b97a;
  --c-cream:     #fbf8f3;

  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:    2px;
  --shadow-sm: 0 1px 2px rgba(26, 23, 21, 0.04), 0 2px 8px rgba(26, 23, 21, 0.04);
  --shadow-md: 0 8px 24px rgba(26, 23, 21, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 23, 21, 0.12);

  --max:       1200px;
  --gutter:    clamp(1.25rem, 4vw, 3rem);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- GRAIN ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem var(--gutter);
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--c-line); padding: 0.85rem var(--gutter); }

.nav__brand-mark {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--c-claret);
}
.nav__brand-mark .amp { color: var(--c-gold); font-style: italic; margin: 0 0.1em; }

.nav__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 2.25rem; align-items: center;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav__links a { position: relative; padding: 0.25rem 0; transition: color 0.2s ease; }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--c-claret); transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:hover { color: var(--c-claret); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  padding: 0.6rem 1.25rem !important;
  background: var(--c-claret); color: var(--c-cream);
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav__cta:hover { background: var(--c-claret-2); transform: translateY(-1px); }
.nav__cta::after { display: none; }

.nav__toggle {
  display: none; background: transparent; border: 0; padding: 0.5rem;
  flex-direction: column; gap: 5px;
}
.nav__toggle span {
  width: 24px; height: 1.5px; background: var(--c-ink);
  transition: all 0.3s ease;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--f-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 0; border-radius: var(--radius); cursor: pointer;
  transition: all 0.25s ease;
}
.btn--primary {
  background: var(--c-claret); color: var(--c-cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--c-claret-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem var(--gutter) 4rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 137, 61, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(107, 31, 44, 0.08), transparent 60%),
    var(--c-bg);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 4rem 2rem;
  border: 1px solid var(--c-line); pointer-events: none;
  opacity: 0; animation: frameIn 1.4s 0.3s ease-out forwards;
}
@keyframes frameIn { to { opacity: 1; } }

.hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--c-claret);
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.2s ease-out forwards;
}
.hero__eyebrow .line { width: 40px; height: 1px; background: var(--c-claret); }

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center;
  gap: 0 0.15em;
}
.hero__num {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__num--alt {
  font-style: italic; color: var(--c-claret);
  font-weight: 400;
  animation-delay: 0.9s;
}
.hero__amp {
  font-family: var(--f-display);
  font-style: italic; font-weight: 300;
  color: var(--c-gold);
  font-size: 0.7em;
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero__sub {
  margin: 2rem 0 3rem;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  opacity: 0; animation: fadeUp 1s 1.1s ease-out forwards;
}

.hero__meta {
  display: flex; align-items: center; gap: 2.5rem;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 1s 1.3s ease-out forwards;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__meta-item .label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--c-muted);
}
.hero__meta-item .value {
  font-family: var(--f-display); font-size: 1.1rem; font-weight: 400; color: var(--c-ink);
}
.hero__meta-divider {
  width: 1px; height: 40px; background: var(--c-line);
}

.hero__cta {
  opacity: 0; animation: fadeUp 1s 1.5s ease-out forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SECTION BASE ---------- */
.section {
  position: relative;
  padding: 7rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.section__head { max-width: 760px; margin-bottom: 4rem; }
.section__kicker {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--c-claret);
  margin-bottom: 1.25rem;
}
.section__title {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.section__title em {
  font-style: italic; color: var(--c-claret); font-weight: 400;
}
.section__lead {
  font-size: 1.05rem; color: var(--c-ink-soft); margin: 0;
}

/* ---------- STORY ---------- */
.story { background: var(--c-bg); }
.story__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* ===== Base card styles (applies to BOTH Sean's and Jessica's cards) ===== */
.story__card {
  padding: 3rem 2.5rem;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.story__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ===== JESSICA'S CARD (the 40 card — cream background, dark text) =====
   This uses the default .story__card styles above plus these heading/body styles. */
.story__card h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 1.5rem; margin: 0 0 1rem;
  color: var(--c-ink);
}
.story__card p { margin: 0; font-size: 1rem; line-height: 1.7; color: var(--c-ink-soft); }

/* ===== SEAN'S CARD (the 50 card — claret/red background, light text) =====
   Anything with .story__card--alt overrides Jessica's defaults above.
   To change Sean's card colors, edit THESE four lines: */
.story__card--alt              { background: var(--c-claret); color: #ffffff; border-color: var(--c-claret); }
.story__card--alt h3           { color: #ffffff; }                    /* "For Sean" heading color */
.story__card--alt p            { color: #F2EBD7; }                    /* Sean's paragraph (sub) text color */
.story__card--alt .story__age  { color: var(--c-gold-soft); }         /* The big "50" number color */

/* ===== Shared "age" number style (the big 50 / 40 numerals) ===== */
.story__age {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: 6rem; line-height: 1;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
}

/* ===== The "&" divider between the two cards ===== */
.story__divider {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-style: italic;
  font-size: 4rem; color: var(--c-gold);
  font-weight: 300;
}

/* ---------- GALLERY ---------- */
.gallery { background: var(--c-bg-alt); max-width: none; }
.gallery > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.25rem;
}
.gallery__item {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--f-display); font-style: italic; font-size: 1rem;
  text-align: center;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery__item:hover .placeholder { transform: scale(1.04); }

/* Distinct placeholder swatches so the grid feels alive */
.placeholder--1 { background: linear-gradient(135deg, #6b1f2c, #2a0a10); }
.placeholder--2 { background: linear-gradient(135deg, #b8893d, #6b4a1a); }
.placeholder--3 { background: linear-gradient(135deg, #4a4540, #1a1715); }
.placeholder--4 { background: linear-gradient(135deg, #8a2a3a, #b8893d); }
.placeholder--5 { background: linear-gradient(135deg, #d9b97a, #b8893d); }
.placeholder--6 { background: linear-gradient(135deg, #1a1715, #6b1f2c); }
.placeholder__label { padding: 1rem; }

.gallery__item figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(26, 23, 21, 0.7); color: var(--c-cream);
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- ITINERARY ---------- */
.itinerary { background: var(--c-bg); }
.itinerary__day { margin-bottom: 4rem; }
.itinerary__day:last-child { margin-bottom: 0; }
.itinerary__day-head {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding-bottom: 1.25rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.day__date {
  font-family: var(--f-display); font-weight: 400; font-size: 1.5rem;
  color: var(--c-claret);
}
.day__name {
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 500;
}

.schedule { list-style: none; margin: 0; padding: 0; }
.schedule__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-line);
  transition: padding 0.3s ease;
}
.schedule__item:last-child { border-bottom: 0; }
.schedule__item:hover { padding-left: 0.5rem; }

.schedule__time {
  font-family: var(--f-display); font-style: italic;
  font-size: 1.25rem; color: var(--c-gold);
  font-weight: 400;
}
.schedule__body h4 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 1.4rem; margin: 0 0 0.4rem;
  color: var(--c-ink);
}
.schedule__body p { margin: 0; color: var(--c-ink-soft); }

.schedule__item--feature .schedule__body h4 { color: var(--c-claret); }
.schedule__item--feature .schedule__body h4::after {
  content: ' ✦';
  color: var(--c-gold);
}

/* ---------- TRAVEL ---------- */
.travel { background: var(--c-bg-alt); max-width: none; }
.travel > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.travel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.travel__card {
  padding: 2.5rem;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.travel__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold-soft);
}
.travel__icon {
  font-size: 1.75rem; color: var(--c-gold);
  margin-bottom: 1rem;
  font-family: var(--f-display);
}
.travel__card h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 1.4rem; margin: 0 0 0.85rem;
  color: var(--c-ink);
}
.travel__card p {
  margin: 0 0 1rem; color: var(--c-ink-soft); line-height: 1.7;
}
.travel__link {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--c-claret);
  border-bottom: 1px solid var(--c-claret);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.travel__link:hover { color: var(--c-claret-2); border-color: var(--c-claret-2); }

/* ---------- RSVP ---------- */
.rsvp { background: var(--c-ink); color: var(--c-cream); max-width: none; }
.rsvp > * { max-width: 720px; margin-left: auto; margin-right: auto; }
.rsvp .section__title { color: var(--c-cream); }
.rsvp .section__title em { color: var(--c-gold-soft); }
.rsvp .section__kicker { color: var(--c-gold-soft); }
.rsvp .section__lead { color: rgba(251, 248, 243, 0.7); }
.rsvp .section__lead strong { color: var(--c-cream); }

.rsvp__form { display: grid; gap: 1.5rem; margin-top: 2rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label, .field legend {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-gold-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  font: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 209, 194, 0.2);
  color: var(--c-cream);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-gold-soft);
  background: rgba(255, 255, 255, 0.08);
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--c-gold-soft) 50%), linear-gradient(135deg, var(--c-gold-soft) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2.5rem; }

.field--row { flex-direction: row; gap: 1.5rem; }
.field--row > .field { flex: 1; }

.field--radio { border: 0; padding: 0; margin: 0; }
.field--radio legend { margin-bottom: 0.75rem; }
.radio {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 209, 194, 0.2);
  border-radius: var(--radius);
  cursor: pointer; margin-bottom: 0.5rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  text-transform: none; letter-spacing: 0;
  color: var(--c-cream); font-weight: 400;
}
.radio:hover { border-color: var(--c-gold-soft); }
.radio input[type="radio"] {
  width: auto; margin: 0;
  accent-color: var(--c-gold);
}
.radio:has(input:checked) {
  background: rgba(184, 137, 61, 0.15);
  border-color: var(--c-gold);
}

.rsvp__submit { margin-top: 1rem; justify-self: start; background: var(--c-gold); }
.rsvp__submit:hover { background: var(--c-gold-soft); color: var(--c-ink); }

.rsvp__confirmation {
  margin: 0; padding: 1rem 0 0;
  font-family: var(--f-display); font-style: italic;
  font-size: 1.1rem; color: var(--c-gold-soft);
  min-height: 2rem;
  opacity: 0; transition: opacity 0.4s ease;
}
.rsvp__confirmation.show { opacity: 1; }

/* ---------- ATTIRE NOTE (inside itinerary items) ---------- */
.attire-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--c-gold);
  line-height: 1.5;
}
.venue-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ---------- STYLE GUIDE ---------- */
.style-guide { background: var(--c-ink); max-width: none; }
.style-guide > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.style-guide .section__title { color: var(--c-cream); }
.style-guide .section__title em { color: var(--c-gold-soft); }
.style-guide .section__kicker { color: var(--c-gold-soft); }
.style-guide .section__lead { color: rgba(251, 248, 243, 0.7); }

.style-guide__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.style-card {
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 209, 194, 0.15);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.style-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 185, 122, 0.4);
}
.style-card--featured {
  background: rgba(107, 31, 44, 0.25);
  border-color: rgba(107, 31, 44, 0.5);
}
.style-card--featured:hover { border-color: var(--c-claret); }

.style-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}
.style-card__day {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin-bottom: 0.5rem;
}
.style-card h3.style-card__label {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
  color: var(--c-cream);
}
.style-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(251, 248, 243, 0.7);
}

@media (max-width: 900px) {
  .style-guide__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .style-guide__grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  padding: 3rem var(--gutter);
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}
.footer__mark {
  font-family: var(--f-display); font-weight: 400;
  font-size: 1.5rem; color: var(--c-claret);
  margin-bottom: 1rem;
}
.footer__mark .amp { color: var(--c-gold); font-style: italic; }
.footer__note { margin: 0 0 0.5rem; color: var(--c-ink-soft); font-size: 0.95rem; }
.footer__note a { color: var(--c-claret); border-bottom: 1px solid var(--c-claret); }
.footer__credit {
  margin: 0;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-muted);
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--c-cream);
    padding: 1rem var(--gutter);
    border-bottom: 1px solid var(--c-line);
  }
  .nav__links.open li { width: 100%; }
  .nav__links.open a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--c-line); }
  .nav__links.open li:last-child a { border-bottom: 0; }

  .story__grid { grid-template-columns: 1fr; }
  .story__divider { padding: 1rem 0; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 2; }

  .travel__grid { grid-template-columns: 1fr; }

  .schedule__item { grid-template-columns: 120px 1fr; gap: 1rem; }
  .schedule__time { font-size: 1.05rem; }

  .hero__meta { flex-direction: column; gap: 1.5rem; }
  .hero__meta-divider { width: 40px; height: 1px; }

  .field--row { flex-direction: column; }
}

@media (max-width: 540px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .section { padding: 5rem var(--gutter); }
  .hero { padding: 7rem var(--gutter) 3rem; }
}
