/* ============================================================
   Janae & Kerry · Lake Maggiore · September 4, 2027
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500&display=swap');

/* ---- Variables ---- */
:root {
  --lake-green:  #1D3B2A;
  --olive:       #55684E;
  --sage:        #A7B89A;
  --seafoam:     #C7D6C1;
  --ivory:       #F4F6F1;
  --gold:        #A07848;
  --teal:        #4B7544;
  --teal-light:  #72A069;
  --white:       #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-height:   72px;
  --max-width:    1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--ivory);
  color: var(--lake-green);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 56px;
  height: var(--nav-height);
  transition: background 0.5s ease, border-color 0.5s ease;
}

.nav.scrolled {
  background: rgba(244, 246, 241, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(29, 59, 42, 0.1);
}

.nav__links {
  display: flex;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.nav.scrolled .nav__links {
  opacity: 1;
  pointer-events: auto;
}
.nav__links--right { justify-content: flex-end; }

.nav__links a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 246, 241, 0.82);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--gold); }

.nav.scrolled .nav__links a        { color: var(--olive); }
.nav.scrolled .nav__links a:hover  { color: var(--lake-green); }

.nav__logo {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ivory);
  transition: color 0.5s;
}
.nav.scrolled .nav__logo { color: var(--lake-green); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 59, 42, 0.28) 0%,
    rgba(29, 59, 42, 0.18) 45%,
    rgba(29, 59, 42, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0.9;
}

.hero__monogram {
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--ivory);
}

.hero__rule {
  width: 100px;
  height: 1px;
  background: var(--gold);
  margin: 22px 0;
  opacity: 0.75;
}

.hero__names {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 30px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.hero__date {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.78;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(244, 246, 241, 0.5);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: line-pulse 2.2s ease-in-out infinite;
}
@keyframes line-pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.9;  }
}

/* ================================================================
   PHOTO TRIO  (home editorial strip)
   ================================================================ */
.photo-trio {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 3px;
  height: 600px;
  background: var(--lake-green);
}
.photo-trio__cell {
  overflow: hidden;
  position: relative;
}
.photo-trio__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.93);
}
.photo-trio__cell:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* ================================================================
   WEEKEND SECTION
   ================================================================ */
.weekend {
  background: var(--ivory);
  padding: 110px 60px;
}
.weekend__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.weekend__header {
  text-align: center;
  margin-bottom: 80px;
}
.weekend__events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(29, 59, 42, 0.12);
}
.weekend__event {
  padding: 52px 40px;
  border-right: 1px solid rgba(29, 59, 42, 0.12);
  transition: background 0.35s;
}
.weekend__event:last-child { border-right: none; }
.weekend__event:hover { background: rgba(160, 120, 72, 0.04); }

.weekend__ghost-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 300;
  color: rgba(244, 246, 241, 0.07);
  line-height: 1;
  margin-bottom: -22px;
}
.weekend__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.weekend__event-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  color: var(--lake-green);
  margin-bottom: 14px;
}
.weekend__detail {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--sage);
  line-height: 1.9;
}

/* ================================================================
   TAGLINE / QUOTE
   ================================================================ */
.tagline-section {
  background: var(--ivory);
  padding: 130px 60px;
  text-align: center;
}
.tagline-section__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
  display: block;
}
.tagline-section__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 44px;
  color: var(--lake-green);
  line-height: 1.35;
  max-width: 780px;
  margin: 0 auto 28px;
}
.tagline-section__rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.tagline-section__sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ================================================================
   SHARED SECTION ATOMS
   ================================================================ */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label--sage { color: var(--sage); }
.section-label--teal { color: var(--teal-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
}
.section-title--ivory  { color: var(--ivory); }
.section-title--italic { font-style: italic; }

/* ================================================================
   PAGE HEADER  (inner pages)
   ================================================================ */
.page-header {
  background: var(--lake-green);
  padding: 72px 60px 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-header__label {
  color: var(--sage);
  margin-bottom: 16px;
}
.page-header__title {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 18px;
}
.page-header__sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 20px;
  color: var(--seafoam);
}

/* ================================================================
   OUR STORY  — alternating rows
   ================================================================ */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.story-row--flip { direction: rtl; }
.story-row--flip > * { direction: ltr; }

.story-row__img {
  aspect-ratio: 9/10;
  overflow: hidden;
}
.story-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  display: block;
}

.story-row__text {
  overflow: hidden;
  padding: 48px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
.story-row--dark .story-row__text {
  background: var(--lake-green);
}

.story-row__text .section-label { color: var(--gold); }

.story-row__text h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--lake-green);
}
.story-row--dark .story-row__text h2 { color: var(--ivory); }

.story-row__text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--olive);
  line-height: 1.95;
  max-width: 480px;
}
.story-row--dark .story-row__text p { color: var(--seafoam); }

.story-row__text .accent-line {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-top: 28px;
}

/* ================================================================
   TRAVEL — MAP
   ================================================================ */
.map-band {
  background: var(--lake-green);
  padding: 80px 0 0;
}
.map-band__label {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 60px;
}
.map-band__label .section-label { color: var(--teal-light); }
.map-band__label .section-title { color: var(--ivory); }

.map-band__img {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.map-band__img img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 1px solid rgba(160, 120, 72, 0.25);
}
.map-band__wave {
  height: 60px;
  background: linear-gradient(to bottom, var(--lake-green) 0%, var(--ivory) 100%);
  margin-top: 60px;
}

/* ================================================================
   TRAVEL — AIRPORTS
   ================================================================ */
.airports {
  padding: 90px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.airports__header { margin-bottom: 60px; }
.airports__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.airport-card {
  border-top: 2px solid var(--teal);
  padding-top: 32px;
}
.airport-card__code {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  color: var(--lake-green);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 6px;
}
.airport-card__name {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}
.airport-card__detail {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--olive);
  line-height: 1.9;
}
.airport-card__detail strong {
  color: var(--lake-green);
  font-weight: 500;
}

/* ================================================================
   TRAVEL — HOME BASE
   ================================================================ */
.home-base {
  background: var(--lake-green);
  padding: 90px 60px;
  text-align: center;
}
.home-base__inner { max-width: 720px; margin: 0 auto; }
.home-base .section-label { color: var(--teal-light); }
.home-base__title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 22px;
}
.home-base__body {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--seafoam);
  line-height: 1.9;
}
.home-base__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-top: 32px;
}

/* ================================================================
   TRAVEL — HOTELS
   ================================================================ */
.hotels {
  padding: 100px 60px;
}
.hotels__inner { max-width: var(--max-width); margin: 0 auto; }
.hotels__header { margin-bottom: 60px; }

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--seafoam);
}
.hotel-card {
  background: var(--ivory);
  padding: 52px 44px;
  transition: background 0.3s;
}
.hotel-card:hover { background: var(--white); }

.hotel-card__num {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 300;
  color: rgba(29, 59, 42, 0.07);
  line-height: 1;
  margin-bottom: -18px;
}
.hotel-card__name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--lake-green);
  margin-bottom: 6px;
}
.hotel-card__location {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hotel-card__rates {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--olive);
  line-height: 1.8;
}
.hotel-card__placeholder {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: var(--sage);
  opacity: 0.7;
}

/* ================================================================
   TRAVEL — TIPS
   ================================================================ */
.tips {
  background: var(--lake-green);
  padding: 90px 60px;
}
.tips__inner { max-width: var(--max-width); margin: 0 auto; }
.tips .section-label { color: var(--sage); }
.tips .section-title--ivory { margin-bottom: 56px; }

.tips-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 80px;
}
.tips-list__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.tips-list__dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}
.tips-list__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--seafoam);
  line-height: 1.85;
}
.tips-list__text strong {
  color: var(--ivory);
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}

/* ================================================================
   RSVP
   ================================================================ */
.rsvp-wrap {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 100vh;
}

.rsvp-photo {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.rsvp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rsvp-panel {
  background: var(--ivory);
  padding: 120px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rsvp-panel .section-label { margin-bottom: 8px; }

.rsvp-panel__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  color: var(--lake-green);
  line-height: 1.05;
  margin-bottom: 16px;
}
.rsvp-panel__intro {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 17px;
  color: var(--olive);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 52px;
}

.rsvp-form { display: flex; flex-direction: column; gap: 30px; max-width: 460px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--olive);
}

.form-input, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(29, 59, 42, 0.18);
  padding: 10px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--lake-green);
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--lake-green); }
.form-textarea { resize: none; height: 72px; }

.attendance-opts { display: flex; flex-direction: column; gap: 10px; }

.att-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(29, 59, 42, 0.12);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  user-select: none;
}
.att-opt:hover {
  border-color: rgba(29, 59, 42, 0.3);
  background: rgba(29, 59, 42, 0.02);
}
.att-opt input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s;
}
.att-opt input[type="radio"]:checked { border-color: var(--lake-green); background: var(--lake-green); }
.att-opt input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--ivory);
}
.att-opt__label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--lake-green);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.att-opt__sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--olive);
  font-weight: 300;
}

.btn-submit {
  align-self: flex-start;
  background: var(--lake-green);
  color: var(--ivory);
  border: none;
  padding: 17px 52px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--olive); transform: translateY(-1px); }

.rsvp-success {
  display: none;
  text-align: left;
}
.rsvp-success.show { display: block; }
.rsvp-success h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  color: var(--lake-green);
  margin-bottom: 16px;
}
.rsvp-success p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  color: var(--olive);
  line-height: 1.7;
}
.rsvp-success .success-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--lake-green);
  padding: 70px 60px 50px;
  text-align: center;
}
.footer__monogram {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ivory);
  margin-bottom: 10px;
}
.footer__date {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 36px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 40px;
}
.footer__nav a {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__rule {
  display: none;
}

/* ================================================================
   NAV LOGO — image
   ================================================================ */
.nav__logo img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.5s;
}
/* Scrolled: tint to match olive nav links (#55684E) */
.nav.scrolled .nav__logo img {
  filter: invert(37%) sepia(15%) saturate(580%) hue-rotate(79deg) brightness(95%);
}

/* ================================================================
   FOOTER LOGO — image
   ================================================================ */
.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin: 0 auto 12px;
}

/* ================================================================
   TRAVEL — SPLIT HERO
   ================================================================ */
.travel-hero {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
}
.travel-hero__panel {
  background: var(--lake-green);
  padding: calc(var(--nav-height) + 72px) 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.travel-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
}
.travel-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(72px, 8vw, 110px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  color: var(--ivory);
  margin-bottom: 40px;
}
.travel-hero__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
}
.travel-hero__body {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--seafoam);
  line-height: 1.95;
  max-width: 320px;
}
.travel-hero__scroll {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(167, 184, 154, 0.45);
}
.travel-hero__img {
  position: relative;
  overflow: hidden;
}
.travel-hero__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--lake-green) 0%, transparent 8%);
  z-index: 1;
  pointer-events: none;
}
.travel-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}

/* ================================================================
   TRAVEL — GETTING THERE
   ================================================================ */
.getting-there {
  background: var(--ivory);
  padding: 110px 72px;
}
.getting-there__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.getting-there__header {
  margin-bottom: 72px;
}
.getting-there__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 400;
  color: var(--lake-green);
  line-height: 1.1;
  margin-top: 14px;
}
.getting-there__title em { font-style: italic; }
.getting-there__airports {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  gap: 0;
}
.airport-entry {
  padding: 44px 0;
  border-top: 2px solid var(--teal);
}
.airport-entry__code {
  font-family: var(--font-heading);
  font-size: clamp(72px, 7vw, 104px);
  font-weight: 300;
  color: var(--lake-green);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.airport-entry__name {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 22px;
}
.airport-entry__time {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}
.airport-entry__detail {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--olive);
  line-height: 1.85;
  max-width: 380px;
}
.airport-or {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 88px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 26px;
  color: var(--seafoam);
}
.getting-there__note {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(29,59,42,0.08);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sage);
  line-height: 1.85;
  max-width: 700px;
}

/* ================================================================
   TRAVEL — GETTING AROUND
   ================================================================ */
.getting-around {
  background: var(--lake-green);
  padding: 110px 72px;
}
.getting-around__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.getting-around__header {
  margin-bottom: 80px;
}
.getting-around__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.05;
  margin-top: 14px;
}
.getting-around__title em { font-style: italic; }
.getting-around__intro {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--seafoam);
  line-height: 1.9;
}
.transport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(199, 214, 193, 0.15);
}
.transport-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(199, 214, 193, 0.15);
}
.transport-card:last-child { border-right: none; }
.transport-card__num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 300;
  color: rgba(199, 214, 193, 0.14);
  line-height: 1;
  margin-bottom: 24px;
}
.transport-card__label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.transport-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.1;
}
.transport-card h3 a {
  color: inherit;
  border-bottom: 1px solid rgba(244, 246, 241, 0.3);
  transition: border-color 0.25s;
}
.transport-card h3 a:hover {
  border-color: rgba(244, 246, 241, 0.8);
}
.transport-card__detail {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--seafoam);
  line-height: 1.85;
}
.transport-card__time {
  display: block;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--teal-light);
}

/* ================================================================
   TRAVEL — WHERE YOU'LL STAY (hotels)
   ================================================================ */
.hotels-section {
  background: var(--ivory);
  padding: 110px 72px;
}
.hotels-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.hotels-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: end;
}
.hotels-section__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 400;
  color: var(--lake-green);
  line-height: 1.05;
  margin-top: 14px;
}
.hotels-section__title em { font-style: italic; }
.hotels-section__intro {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--olive);
  line-height: 1.9;
}
.hotel-listing {
  border-top: 1px solid rgba(29, 59, 42, 0.1);
}
.hotel-entry {
  padding: 56px 0;
  border-bottom: 1px solid rgba(29, 59, 42, 0.1);
}
.hotel-entry__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.hotel-entry__num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: rgba(29, 59, 42, 0.1);
  line-height: 1;
}
.hotel-entry__name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--lake-green);
  margin-bottom: 6px;
  line-height: 1.1;
}
.hotel-entry__location {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.hotel-entry__desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--olive);
  line-height: 1.8;
}
.hotel-entry__badge {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(160, 120, 72, 0.35);
  padding: 10px 20px;
  white-space: nowrap;
}
.hotels-section__closing {
  margin-top: 64px;
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 19px;
  color: var(--sage);
  line-height: 1.6;
}

/* Hotel entry detail elements */
.hotel-dates {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  border: 1px solid rgba(160, 120, 72, 0.28);
  padding: 6px 16px;
  margin: 14px 0 22px;
}
.hotel-no-block {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(167, 184, 154, 0.35);
  padding: 6px 16px;
  margin: 14px 0 22px;
}
.hotel-rates {
  width: 100%;
  max-width: 520px;
  border-collapse: collapse;
  margin-bottom: 4px;
}
.hotel-rates tr {
  border-bottom: 1px solid rgba(29, 59, 42, 0.07);
}
.hotel-rates tr:last-child { border-bottom: none; }
.hotel-rates td {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--olive);
  padding: 9px 0;
  line-height: 1.4;
}
.hotel-rates td:last-child {
  text-align: right;
  color: var(--lake-green);
  font-weight: 400;
  white-space: nowrap;
  padding-left: 24px;
}
.hotel-booking-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(29, 59, 42, 0.08);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--olive);
  line-height: 1.85;
}
.hotel-booking-note strong { color: var(--olive); font-weight: 400; }
.hotel-booking-note a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }

/* Hotel name hyperlinks */
.hotel-entry__name a {
  color: inherit;
  border-bottom: 1px solid rgba(29, 59, 42, 0.2);
  transition: color 0.25s, border-color 0.25s;
}
.hotel-entry__name a:hover {
  color: var(--olive);
  border-color: rgba(29, 59, 42, 0.45);
}

/* Getting Around — shuttle callout */
.shuttle-note {
  margin-top: 52px;
  padding: 32px 40px;
  border: 1px solid rgba(199, 214, 193, 0.2);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.shuttle-note__label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.shuttle-note__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--seafoam);
  line-height: 1.8;
}

/* ================================================================
   HOME — STILL PHOTO (replaces carousel)
   ================================================================ */
.photo-still {
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
}
.photo-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(244, 246, 241, 0.22);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .nav { padding: 0 28px; grid-template-columns: 1fr auto; }
  .nav__links--right { display: none; }
  .nav__links--left li + li { display: none; }

  .hero__monogram { font-size: 64px; }
  .hero__names    { font-size: 22px; }

  .photo-trio { grid-template-columns: 1fr; height: auto; }
  .photo-trio__cell { height: 320px; }

  .weekend { padding: 70px 28px; }
  .weekend__events { grid-template-columns: 1fr; }
  .weekend__event  { border-right: none; border-bottom: 1px solid rgba(29,59,42,0.12); }

  .tagline-section { padding: 80px 28px; }
  .tagline-section__quote { font-size: 30px; }

  .page-header { padding: 130px 28px 70px; }
  .page-header__title { font-size: 54px; }

  .story-row { grid-template-columns: 1fr; }
  .story-row--flip { direction: ltr; }
  .story-row__img { height: 380px; }
  .story-row__text { height: auto; overflow: visible; padding: 60px 32px; }

  .airports { padding: 60px 28px; }
  .airports__grid { grid-template-columns: 1fr; gap: 40px; }

  .home-base { padding: 70px 28px; }
  .hotels { padding: 70px 28px; }
  .hotels-grid { grid-template-columns: 1fr; }

  .tips { padding: 70px 28px; }
  .tips-list { grid-template-columns: 1fr; }

  .rsvp-wrap { grid-template-columns: 1fr; }
  .rsvp-photo { position: relative; height: 55vh; }
  .rsvp-panel { padding: 60px 28px 60px; }
  .rsvp-panel__title { font-size: 40px; }

  .map-band__img { padding: 0 20px; }

  .footer { padding: 60px 28px 40px; }
  .footer__nav { flex-wrap: wrap; gap: 24px; }

  .intro-band { padding: 64px 24px; }
  .travel-content { padding: 60px 24px 80px; }
  .travel-grid { grid-template-columns: 1fr; }
  .travel-card { border-right: none !important; }
  .travel-card:nth-child(3) { border-bottom: 1px solid rgba(29,59,42,0.12) !important; }
  .travel-card:nth-child(4) { grid-column: 1; }
  .map-wrapper { padding: 24px; }

  /* New travel layout */
  .travel-hero { grid-template-columns: 1fr; min-height: auto; }
  .travel-hero__img { height: 60vw; min-height: 280px; max-height: 440px; }
  .travel-hero__img::before { display: none; }
  .travel-hero__panel { padding: calc(var(--nav-height) + 40px) 28px 56px; }

  .getting-there { padding: 72px 28px; }
  .getting-there__airports { grid-template-columns: 1fr; gap: 0; }
  .airport-or { display: none; }
  .airport-entry { padding: 36px 0; }
  .airport-entry__code { font-size: 64px; }

  .getting-around { padding: 72px 28px; }
  .getting-around__header { grid-template-columns: 1fr; gap: 24px; }
  .transport-grid { grid-template-columns: 1fr 1fr; }
  .transport-card { border-right: none; border-bottom: 1px solid rgba(199,214,193,0.15); }
  .transport-card:nth-child(odd) { border-right: 1px solid rgba(199,214,193,0.15); }
  .transport-card:last-child { border-bottom: none; }

  .hotels-section { padding: 72px 28px; }
  .hotels-section__header { grid-template-columns: 1fr; gap: 24px; }
  .hotel-entry__num { font-size: 36px; }
  .hotel-entry__name { font-size: 22px; }
  .hotel-entry__badge { display: none; }
  .hotel-rates td { font-size: 12px; }
  .shuttle-note { flex-direction: column; gap: 10px; padding: 24px; }
}

/* ================================================================
   RESPONSIVE — PHONE  (max 480px)
   ================================================================ */
@media (max-width: 480px) {
  /* Nav — single row, all links, no logo */
  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-height: unset;
    padding: 0 16px;
    gap: 16px;
  }
  .nav__logo { display: none; }
  .nav__links--right { display: flex; }
  .nav__links--left li + li { display: list-item; }
  .nav__links { gap: 22px; }
  .nav__links a { font-size: 9px; letter-spacing: 0.16em; }

  /* Hero */
  .hero { min-height: 560px; }
  .hero__names-stacked { font-size: 56px; }
  .hero__date-loc { font-size: 10px; letter-spacing: 0.16em; }

  /* Countdown */
  .countdown-section { padding: 40px 16px; }
  .countdown { gap: 28px; flex-wrap: wrap; }
  .countdown-number { font-size: 42px; }

  /* Weekend */
  .weekend { padding: 56px 20px; }
  .weekend__event { padding: 36px 20px; }

  /* Photo still */
  .photo-still { height: 60vw; min-height: 280px; }

  /* Story rows — portrait aspect ratio for portrait engagement photos */
  .story-row__img { aspect-ratio: 3/4; height: auto; }
  .story-row__text { padding: 48px 24px; }
  .story-row__text h2 { font-size: 32px; }

  /* Page header */
  .page-header { padding: 96px 20px 56px; }
  .page-header__title { font-size: 42px; }

  /* Travel hero */
  .travel-hero__panel { padding: calc(var(--nav-height) + 32px) 20px 48px; }
  .travel-hero__title { font-size: 56px; }
  .travel-hero__img { height: 56vw; min-height: 240px; }

  /* Getting there */
  .getting-there { padding: 56px 20px; }
  .airport-entry__code { font-size: 52px; }

  /* Getting around */
  .getting-around { padding: 56px 20px; }
  .transport-grid { grid-template-columns: 1fr; }
  .transport-card { border-right: none; border-bottom: 1px solid rgba(199,214,193,0.15); }
  .transport-card:nth-child(odd) { border-right: none; }
  .transport-card:last-child { border-bottom: none; }
  .shuttle-note { padding: 20px; }

  /* Hotels */
  .hotels-section { padding: 56px 20px; }
  .hotel-entry__name { font-size: 20px; }
  .hotel-rates td { font-size: 11px; }

  /* RSVP */
  .rsvp-panel { padding: 48px 20px 48px; }
  .rsvp-panel__title { font-size: 34px; }
  .rsvp-panel__intro { font-size: 15px; }
  .att-opt__label { font-size: 16px; }

  /* Footer */
  .footer { padding: 48px 20px 36px; }
  .footer__nav { gap: 18px; }
  .footer__logo-img { height: 44px; }
}

/* Weekend note */
.weekend__note {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ================================================================
   HERO — STACKED NAMES (v1 format)
   ================================================================ */
.hero__names-stacked {
  font-family: var(--font-heading);
  font-size: clamp(68px, 11vw, 128px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  color: var(--ivory);
}
.hero__amp {
  font-style: italic;
  font-size: 0.72em;
}
.hero__date-loc {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.88;
  line-height: 2.2;
  color: var(--ivory);
  font-family: var(--font-body);
}

/* ================================================================
   COUNTDOWN
   ================================================================ */
.countdown-section {
  background: var(--lake-green);
  padding: 52px 24px;
  text-align: center;
}
.countdown-label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-family: var(--font-body);
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: nowrap;
}
.countdown-unit { text-align: center; }
.countdown-number {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  display: block;
}
.countdown-word {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 8px;
  display: block;
  font-family: var(--font-body);
}

/* ================================================================
   INTRO BAND
   ================================================================ */
.intro-band {
  padding: 90px 48px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.intro-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.intro-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--lake-green);
}
.intro-title em { font-style: italic; }
.intro-body {
  font-size: 15px;
  color: var(--olive);
  line-height: 1.9;
  font-family: var(--font-body);
}
.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
}

/* ================================================================
   PAGE HERO (photo header for inner pages)
   ================================================================ */
.page-hero {
  height: 58vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(29,59,42,0.68) 0%,
    rgba(29,59,42,0.12) 55%,
    rgba(29,59,42,0.22) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
}
.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,246,241,0.65);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1;
}

/* ================================================================
   TRAVEL — V1 LAYOUT
   ================================================================ */
.travel-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}
.travel-intro {
  max-width: 620px;
  margin-bottom: 72px;
}
.travel-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.travel-heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--lake-green);
}
.travel-heading em { font-style: italic; }
.travel-body {
  font-size: 15px;
  color: var(--olive);
  line-height: 1.9;
  font-family: var(--font-body);
}
.map-wrapper {
  border: 1px solid rgba(29,59,42,0.12);
  padding: 48px;
  background: rgba(167,184,154,0.08);
  margin-bottom: 72px;
}
.map-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  text-align: center;
  font-family: var(--font-body);
}
.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(29,59,42,0.12);
}
.travel-card {
  padding: 44px 40px;
  border-right: 1px solid rgba(29,59,42,0.12);
  border-bottom: 1px solid rgba(29,59,42,0.12);
}
/* Row 1: Airports | Getting Around | Italy Tips */
.travel-card:nth-child(3) { border-right: none; }
/* Row 2: Accommodations full-width */
.travel-card:nth-child(4) {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
}
.travel-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.travel-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--lake-green);
}
.travel-card p,
.travel-card li {
  font-size: 14px;
  color: var(--olive);
  line-height: 1.9;
  font-family: var(--font-body);
}
.travel-card ul {
  list-style: none;
  padding: 0;
}
.travel-card ul li { padding: 3px 0; }
.travel-card ul li::before {
  content: '— ';
  color: var(--gold);
}
.hotel-placeholder {
  border: 1px dashed rgba(29,59,42,0.18);
  padding: 20px 22px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--olive);
  font-style: italic;
  font-family: var(--font-body);
}
