/* ============================================================
   Lucia & Thor — wedding site
   Modern & minimal. Edit the color/font variables below to
   restyle the whole site at once.
   ============================================================ */

:root {
  --ink:        #1f1d1a;   /* primary text */
  --ink-soft:   #6b6660;   /* secondary text */
  --paper:      #ffffff;   /* base background */
  --paper-alt:  #f6f4f0;   /* alternating section background */
  --line:       #e7e3dc;   /* hairline borders */
  --accent:     #1f1d1a;   /* buttons / emphasis */
  --max:        980px;     /* content max width */
  --gutter:     24px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin: 0; }

a { color: inherit; }

/* ===== Welcome gate ===== */
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper-alt);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.gate--hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Hide the page scroll while the gate is open. */
body.is-gated { overflow: hidden; }

.gate__card { width: 100%; max-width: 440px; text-align: center; }
.gate__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.gate__names { font-size: clamp(2.6rem, 9vw, 4rem); font-weight: 400; }
.gate__lead { color: var(--ink-soft); margin: 18px 0 32px; }

.gate__form { display: grid; gap: 14px; text-align: left; }
.gate__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--ink-soft);
}
.gate__input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
.gate__input:focus { outline: none; border-color: var(--ink); }
.gate__btn { width: 100%; cursor: pointer; margin-top: 4px; border: 1px solid var(--accent); }

/* autocomplete dropdown */
.gate__field { position: relative; }
.gate__suggestions {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 5;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--ink);
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.gate__suggestion {
  padding: 11px 16px;
  cursor: pointer;
  font-size: 0.98rem;
  border-top: 1px solid var(--line);
}
.gate__suggestion:first-child { border-top: none; }
.gate__suggestion:hover,
.gate__suggestion.is-active { background: var(--paper-alt); }

.gate__error { margin-top: 20px; color: var(--ink-soft); font-size: 0.92rem; }
.gate__link {
  background: none; border: none; padding: 0;
  color: var(--ink); text-decoration: underline;
  font: inherit; cursor: pointer;
}

/* ===== Nav "Not you?" reset ===== */
.nav__reset {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__reset:hover { color: var(--ink); }

/* ===== Personalized welcome panel ===== */
.personal { padding-top: 72px; padding-bottom: 72px; }
.personal__card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line);
  padding: 48px 36px;
  background: var(--paper);
}
.personal__greeting { font-size: clamp(2rem, 6vw, 2.8rem); margin: 8px 0 16px; }
.personal__note { color: var(--ink-soft); font-size: 1.05rem; margin: 0 auto; max-width: 520px; }

.personal__meta { margin-top: 28px; }
.personal__meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.personal__meta-value { font-family: var(--font-display); font-size: 1.4rem; }

.personal__events { margin-top: 28px; }
.personal__event-list { list-style: none; padding: 0; margin: 8px 0 0; }
.personal__event-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.personal__event-list li:first-child { border-top: none; }
.personal__event-list strong { color: var(--ink); font-weight: 500; }
.personal__cta { margin-top: 24px; color: var(--ink-soft); font-size: 0.98rem; }
.personal__cta a { color: var(--ink); }

/* ===== Schedule timeline ===== */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 680px; }
.timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline__item:first-child { border-top: none; }
.timeline__time {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.timeline__body h3 { margin: 6px 0 8px; font-family: var(--font-display); font-size: 1.5rem; }
.timeline__body p { color: var(--ink-soft); margin: 0; }

/* timeline item with a sketch beside the text */
.timeline__item--media {
  position: relative;
  padding-right: 392px; /* reserve room for the sketch */
}
.timeline__item--media .timeline__text { display: grid; gap: 4px; }
.timeline__sketch {
  position: absolute;           /* out of flow, so it won't stretch the row */
  right: 0;
  top: 50%;
  transform: translateY(-50%);  /* centered; free to overlap the divider lines */
  width: 360px;
  height: auto;
}
/* barn sketch — 20%, then 10% smaller again */
.timeline__sketch--barn { width: 259px; }
/* gazebo — matched 10% smaller, centered under the barn (shift right by half the
   width difference) — horizontal only, no change to its row/vertical position */
.timeline__sketch--center-barn { width: 324px; right: -32px; transform: translateY(calc(-50% - 45px)); }
/* mobile-only gazebo that sits under the Rumble's text (hidden on desktop) */
.timeline__gazebo-mobile { display: none; }

@media (max-width: 760px) {
  .timeline__item--media { padding-right: 0; }
  .timeline__sketch {
    position: static;
    transform: none;
    display: block;
    width: 100%;
    max-width: 390px;
    margin: 12px auto 0;
  }
  /* on mobile, move the gazebo from under After-party to under Rumble's */
  .timeline__sketch--center-barn { display: none; }
  .timeline__gazebo-mobile {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 14px auto 0;
  }
}

/* ===== Where to Stay ===== */
.stay-banner {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  padding: 14px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.stay-group-title {
  max-width: 920px;
  margin: 40px auto 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.stay-group-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 40px auto 16px;
}
.stay-group-head .stay-group-title { margin: 0; }
.stay-group-note {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-transform: none;
  white-space: nowrap;
}
.stay-group-sub {
  max-width: 920px;
  margin: -8px auto 18px;
  color: var(--ink-soft);
}
.stay-group-sub a { color: var(--ink); }
.stay {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.stay-card {
  border: 1px solid var(--line);
  padding: 26px 24px;
  background: var(--paper);
}
.stay-card--feature { border-color: var(--ink); }
.stay-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 12px;
  margin-bottom: 12px;
}
.stay-card__head h4 { margin: 0; font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; }
.stay-card__price {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.stay-card p { margin: 0; color: var(--ink-soft); }
.stay-card p + p { margin-top: 12px; }
.stay-card__link a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}
.stay-card__link a:hover { border-bottom-color: var(--accent); }
.stay-card p a { color: var(--accent); }
.stay-card__manage {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.stay-card__manage a { color: var(--accent); }
.stay-card strong { color: var(--ink); font-weight: 500; }
.stay-note {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--ink-soft);
}
.stay-note a { color: var(--ink); }
.stay-howto {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.stay-howto a { color: var(--ink); }
.stay-howto summary {
  cursor: pointer;
  color: var(--accent);
  letter-spacing: 0.02em;
  list-style: none;
}
.stay-howto summary::-webkit-details-marker { display: none; }
.stay-howto summary::after { content: " ›"; }
.stay-howto[open] summary::after { content: " ⌄"; }
.stay-howto p { margin: 10px 0 0; color: var(--ink-soft); }

/* ===== Timeline footnote ===== */
.timeline__note {
  margin-top: 8px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* ===== "Let us know your plan" CTA ===== */
.stay-cta { text-align: center; margin: 0 0 36px; }
.btn--lg {
  font-size: 0.9rem;
  padding: 18px 48px;
  letter-spacing: 0.18em;
  box-shadow: 0 8px 24px rgba(31, 29, 26, 0.22);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn--lg:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(31, 29, 26, 0.28); }

/* ===== Lodging intro ===== */
.stay-intro {
  max-width: 880px;
  margin: 0 auto 44px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.stay-intro > p { margin: 0 0 14px; }
.stay-intro__lead {
  max-width: 880px;
  margin: 0 auto 22px !important;
  text-align: center;
  font-size: 1.2rem;
}
.stay-intro ul { max-width: 820px; margin: 0 auto; padding-left: 22px; }
.stay-intro li { margin-bottom: 12px; }
.stay-intro strong { color: var(--ink); font-weight: 500; }

/* ===== RSVP form ===== */
.rsvp-form { max-width: 620px; margin: 0 auto; }
.rsvp-part {
  border: 1px solid var(--line);
  margin: 0 0 20px;
}
.rsvp-part > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rsvp-part > summary::-webkit-details-marker { display: none; }
.rsvp-part > summary::after { content: "+"; font-size: 1.5rem; color: var(--ink-soft); line-height: 1; }
.rsvp-part[open] > summary::after { content: "–"; }
.rsvp-part[open] > summary { border-bottom: 1px solid var(--line); }
.rsvp-part__body { padding: 22px 24px 6px; }
.field--conditional {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 2px solid var(--line);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field .opt { text-transform: none; letter-spacing: 0; font-size: 0.78rem; opacity: 0.7; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; }

.rsvp-form__footer { text-align: center; }
.rsvp-form__msg { margin-top: 18px; font-size: 1rem; }
.rsvp-form__msg.is-ok { color: var(--ink); }
.rsvp-form__msg.is-error { color: #9a1b1b; }

/* ===== Intro note (Vermont ceremony / NYC reception) ===== */
.intro-note {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px;
  text-align: center;
}
.intro-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}
.intro-note strong { color: var(--ink); font-weight: 500; }

/* ===== Map & Directions ===== */
.maps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.map-card {
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--paper);
  text-align: center;
}
.map-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 4px;
  font-size: 1.4rem;
}
.map-card__addr { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 14px; }
.map-card__frame {
  width: 100%;
  height: 240px;
  border: 0;
  margin-bottom: 16px;
  filter: grayscale(0.15);
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__monogram {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.nav__links { display: flex; gap: 28px; }

.nav__links a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ink); }

/* ===== Top tabs (Ceremony / Reception) — underline style ===== */
.tabs { display: flex; gap: 36px; }
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0 8px;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.tab__kicker {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.tab__main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
/* the underline indicator */
.tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--ink); }
.tab.is-active::after { transform: scaleX(1); }
@media (max-width: 600px) {
  .nav__monogram { display: none; }
  .tabs { gap: 20px; }
  .tab__kicker { font-size: 0.54rem; letter-spacing: 0.14em; }
  .tab__main { font-size: 0.95rem; }
}

/* ===== Hero ===== */
.hero {
  min-height: 86vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px var(--gutter);
  color: #fff;
  background-color: #2a2622; /* fallback before photo loads */
  background-image: linear-gradient(rgba(22, 19, 16, 0.45), rgba(22, 19, 16, 0.55)),
    url("images/winter-barn.jpg");
  background-size: cover;
  background-position: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
}

.hero__names {
  font-size: clamp(3.2rem, 12vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.hero__names span { display: inline-block; font-style: italic; color: rgba(255, 255, 255, 0.8); margin: 0 0.12em; }

.hero__meta {
  margin: 26px 0 40px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
}

/* keep the hero RSVP button legible on a photo */
.hero .btn { border-color: #fff; background: rgba(255, 255, 255, 0.12); color: #fff; }
.hero .btn:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* New York hero — no photo yet, so a clean cream panel with dark text */
.hero--ny {
  background-color: #fff;
  background-image: url("images/manhattan.png");
  background-size: 92% auto;
  background-position: center calc(100% + 16vh); /* ~20% lower than the bottom */
  background-repeat: no-repeat;
  color: var(--ink);
}
.hero--ny .hero__eyebrow { color: var(--ink-soft); }
.hero--ny .hero__names { text-shadow: none; }
.hero--ny .hero__names span { color: var(--ink-soft); }
.hero--ny .hero__meta { color: var(--ink-soft); }
.hero--ny .btn { background: var(--accent); color: #fff; border-color: var(--accent); }
.hero--ny .btn:hover { background: transparent; color: var(--ink); border-color: var(--accent); }

/* ===== Full-width photo bands ===== */
.photo-band {
  width: 100%;
  height: clamp(260px, 52vh, 540px);
  overflow: hidden;
  background-color: var(--paper-alt);
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 15% taller band — shows more of the sketch.
   White background to match the page (the SVG is transparent line art). */
.photo-band--xl {
  height: auto;
  aspect-ratio: 16 / 10;   /* the approved couple-and-barn crop */
  background: var(--paper);
  position: relative;
  z-index: 1;
  /* modest, width-relative overlap: the box covers the empty sky above their
     heads; the head always stays clear because there's sky buffer to spare. */
  margin-top: -7.5%;
}
.photo-band--xl img { object-position: center 30%; }  /* frame the couple, trim empty sky */

/* the Where-to-Stay cards sit on top of the sketch's sky strip */
#stay { position: relative; z-index: 2; padding-bottom: 4px; }

/* taller crop for portrait-oriented photos */
.photo-band--tall { height: clamp(360px, 72vh, 720px); }
.photo-band--tall img { object-position: center 40%; }

/* anchor the mountains shot to the bottom so the sky is what gets cropped */
.photo-band--mountains img { object-position: center bottom; }


/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  border: 1px solid var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: transparent; color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===== Sections ===== */
.section { padding: 96px var(--gutter); max-width: var(--max); margin: 0 auto; }
.section--alt { background: var(--paper-alt); max-width: none; }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section__head { text-align: center; margin-bottom: 56px; }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.section__title { font-size: clamp(2rem, 6vw, 3rem); }
.section__sub { margin-top: 16px; color: var(--ink-soft); }

/* ===== Our Story ===== */
.story { max-width: 620px; margin: 0 auto; text-align: center; }
.story p { margin: 0 0 1.2em; font-size: 1.05rem; }

/* ===== Details ===== */
.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.detail-card { background: var(--paper); padding: 34px 28px; }
.section--alt .detail-card { background: var(--paper-alt); }
.detail-card h3 {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.detail-card__lead { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 10px; }
.detail-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ===== RSVP ===== */
.rsvp { max-width: 720px; margin: 0 auto; }
.rsvp__frame { width: 100%; border: 0; }
.rsvp__placeholder {
  border: 1px dashed var(--line);
  background: var(--paper-alt);
  padding: 56px 28px;
  text-align: center;
  color: var(--ink-soft);
}
.rsvp__placeholder p { margin: 0 0 8px; }
.rsvp__placeholder strong { color: var(--ink); font-size: 1.1rem; }

/* ===== Info / Travel / Registry / FAQ ===== */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}
.info-block h3 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.info-block p { color: var(--ink-soft); margin: 0 0 1em; }
.info-block__links { margin-top: 18px; }

.faq { margin: 0; }
.faq dt { font-weight: 500; color: var(--ink); margin-top: 16px; }
.faq dd { margin: 4px 0 0; color: var(--ink-soft); }

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 72px var(--gutter);
  border-top: 1px solid var(--line);
}
.footer__names { font-family: var(--font-display); font-size: 2rem; margin: 0 0 6px; }
.footer__note { color: var(--ink-soft); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.74rem; margin: 0; }

/* ===== Small screens ===== */
@media (max-width: 640px) {
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 0.72rem; letter-spacing: 0.08em; }
  .section { padding: 72px var(--gutter); }
}

/* ===== Mobile photo fixes ===== */
@media (max-width: 600px) {
  /* Hero: show the FULL width of the photo (no horizontal crop); let it letterbox
     vertically against the dark background instead. */
  .hero {
    min-height: 64vh;
    /* fill with no black bars, zoomed out to the minimum cover (shows more of the barn) */
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
  }
  /* New York hero is line art, not a photo — keep the skyline sized to the bottom */
  .hero--ny {
    background-size: 100% auto;
    background-position: center bottom;
  }
  /* Green Sugarbush band: match the photo's own shape so nothing (esp. the right
     side / ski trails) gets cropped. */
  .photo-band--mountains {
    height: auto;
    aspect-ratio: 1170 / 748;
  }
  .photo-band--mountains img { object-position: center; }
}
