/* ============================================================
   Cameron & Lauren — Wedding Website
   Pixel-faithful Figma implementation (1440px canvas)
   Colors: blush #f5bea7 | sage #c9d2c4 | dark #1b2723 | text #564340
           teal #486a6c | border-blush #f2ac93 | border-dark #3b4441
           sage-text #e8f0e4
   Fonts:  Cormorant Garamond (display) | Karla (body)
============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Karla', sans-serif;
  background: #fff;
  color: #564340;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── Reveal animation ──────────────────────────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Color backgrounds ─────────────────────────────────────── */
.bg-blush { background: #f5bea7; }
.bg-sage  { background: #c9d2c4; }
.bg-white { background: #ffffff; }
.bg-dark  { background: #1b2723; }

/* ── Pill buttons ──────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 1000px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.2px;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.pill:hover { opacity: .82; transform: translateY(-1px); }
.pill--dark  { background: #564340; color: #c4c6b5; }
.pill--white { background: #ffffff; color: #564340; }

/* ==========================================================
   HERO
   Figma: 1244px tall canvas
   Background image: edge-to-edge cover
   Hero body: pt:195px, gap:49px
   Full blooming cactus visible pointing up to the countdown
   Pink mountain silhouette at bottom connecting to blush section
========================================================== */
#hero {
  position: relative;
  width: 100%;
  min-height: 1244px;
  background: #fdf5f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top nav */
#site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 60px;
}
#site-nav a {
  position: relative;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #564340;
  white-space: nowrap;
  padding-bottom: 4px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
#site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #564340;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
#site-nav a:hover::after {
  transform: scaleX(1);
}
#site-nav a:hover {
  opacity: 0.85;
}

/* Hero background image fills full width & height */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.88;
}

/* Hero content: placed in sky above cactus */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 195px 24px 60px;
  gap: 49px;
  text-align: center;
  color: #564340;
  animation: heroIn .8s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 912px;
  max-width: 100%;
}

.hero-eyebrow {
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 4.32px;
  color: #564340;
  text-align: center;
  width: 100%;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 100px;
  line-height: 1;
  color: #564340;
  width: 100%;
  text-align: center;
}

.hero-date {
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 4.32px;
  color: #564340;
  text-align: center;
  width: 100%;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #564340;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 141px;
}
.cd-num {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 72px;
  letter-spacing: 12.96px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  width: 100%;
  text-align: center;
}
.cd-label {
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 4.32px;
  text-align: center;
  width: 100%;
}
.cd-colon {
  font-family: 'Karla', sans-serif;
  font-weight: 300;
  font-size: 48px;
  letter-spacing: 8.64px;
  line-height: 1;
  width: 39px;
  text-align: center;
  user-select: none;
  flex-shrink: 0;
}

/* Pink mountain divider at bottom of hero */
.hero-mountains {
  position: relative;
  z-index: 4;
  width: 100%;
  line-height: 0;
  margin-top: auto;
  margin-bottom: -2px; /* seamless connection to blush section */
  filter: drop-shadow(0px -8px 24px rgba(0, 0, 0, 0.08));
}
.hero-mountains img {
  width: 100%;
  display: block;
}

/* ==========================================================
   WHEN & WHERE
   Figma: bg #f5bea7, 1440px
   Seamlessly attached directly to the pink mountain silhouette
========================================================== */
#when-and-where {
  position: relative;
  background: #f5bea7;
  overflow: hidden;
  z-index: 3;
}

/* Bottom green mountain divider with silhouette shadow */
.mountain-divider--bottom {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: 60px;
  margin-bottom: -2px;
  transform: scaleX(-1);
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0px -11px 35px rgba(0, 0, 0, 0.15));
}
.mountain-divider--bottom img {
  width: 100%;
  display: block;
}

.section-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 140px;
}

#when-and-where .section-inner {
  padding-top: 60px;
  padding-bottom: 80px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 92px;
  line-height: normal;
  color: #564340;
  text-align: center;
  width: 100%;
}

.event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Arch frame */
.arch-wrap {
  position: relative;
  width: 538px;
  height: 682px;
  flex-shrink: 0;
}
.arch-photo {
  position: absolute;
  top: 13px;
  left: 14px;
  width: 510px;
  height: 655px;
  border-radius: 255px 255px 0 0;
  overflow: hidden;
}
.arch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.arch-border {
  position: absolute;
  inset: 0;
  border: 4px solid #f2ac93;
  border-radius: 350px 350px 0 0;
  pointer-events: none;
}
.arch-border--dark { border-color: #3b4441; }
.arch-wrap--dark .arch-photo { border-radius: 400px 400px 0 0; }
.arch-photo--tint::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(225,166,138,.40);
  pointer-events: none;
}

/* Event info: 641px wide, gap:68px */
.event-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 68px;
  width: 641px;
  flex-shrink: 0;
  text-align: center;
}

.event-top-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.event-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: -28px;
  width: 100%;
}
.event-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.event-icon--light { filter: none; opacity: 1; }

.event-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 72px;
  color: #564340;
  line-height: normal;
  text-align: center;
}
.event-name--light { color: #ffffff; }

.event-time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #564340;
  text-align: center;
  line-height: normal;
}
.et-big   { font-size: 83px; font-weight: 400; font-style: italic; }
.et-range { font-size: 72px; font-weight: 500; font-style: italic; }
.et-sm    { font-size: 54px; font-weight: 700; font-style: italic; }

.event-location {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  color: #564340;
  text-align: center;
}
.venue-link {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 1.6px;
  text-decoration: underline;
  color: #564340;
  line-height: 1.2;
  transition: opacity .2s;
}
.venue-link:hover { opacity: .7; }
.venue-address {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 4.56px;
  color: #564340;
  line-height: 1.4;
}

/* ==========================================================
   HOTELS
   Figma: bg #c9d2c4, 1440px
   Padding: pt:100px, pb:140px, px:100px, gap:140px
========================================================== */
#hotels {
  background: #c9d2c4;
}
#hotels .section-inner {
  gap: 140px;
  padding-top: 60px;
  padding-bottom: 140px;
}

.hotels-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 61px;
}

.hotels-sub {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 72px;
  color: #564340;
  text-align: center;
  line-height: normal;
  white-space: nowrap;
}

.hotel-cards {
  display: flex;
  gap: 24px;
  width: min(1190px, 100%);
  align-items: stretch;
}

.hotel-card {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: #486a6c;
  color: #e8f0e4;
  border-radius: 200px 200px 0 0;
  padding: 105px 48px 105px;
  text-align: center;
  min-width: 1px;
}
.hotel-name {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 1.2px;
  text-decoration: underline;
  color: #e8f0e4;
  line-height: normal;
  transition: opacity .2s;
  text-transform: uppercase;
  white-space: pre-line;
}
.hotel-name:hover { opacity: .8; }
.hotel-addr {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 2.88px;
  color: #e8f0e4;
  line-height: normal;
}

/* Map group */
.map-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.map-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 72px;
  color: #564340;
  text-align: center;
  line-height: normal;
  white-space: nowrap;
}

/* ── Segmented Control (Map switcher) ────────────────────── */
.segmented-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(86, 67, 64, 0.07);
  border: 1.5px solid rgba(86, 67, 64, 0.22);
  border-radius: 1000px;
  padding: 4px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.segment-btn {
  padding: 9px 22px;
  border-radius: 1000px;
  background: transparent;
  color: #564340;
  border: none;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.segment-btn:hover {
  opacity: 0.75;
}
.segment-btn.is-active {
  background: #564340;
  color: #c4c6b5;
  box-shadow: 0 2px 8px rgba(86, 67, 64, 0.25);
  opacity: 1;
}

/* Google Maps container with 4px border-radius */
.map-box {
  width: min(1200px, 100%);
  height: 750px;
  border: 4px solid #486a6c;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #eef2eb;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================================
   FAQs
   Figma: bg #fff, 1440px
========================================================== */
#faqs {
  background: #fff;
}
#faqs .section-inner {
  gap: 100px;
  padding: 100px;
  padding-bottom: 140px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.faq-row { border-bottom: 1px solid #dbc1bd; }
.faq-row--last { border-bottom: none; }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 1.44px;
  color: #564340;
  line-height: 1;
  cursor: pointer;
  transition: opacity .2s;
}
.faq-btn:hover { opacity: .7; }

.faq-btn span {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.faq-plus {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.faq-btn[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
}

.faq-panel {
  display: none;
  padding: 8px 0 36px;
}
.faq-panel.is-open {
  display: block;
  animation: faqFade 0.25s ease-out;
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.faq-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}
.faq-block:first-child {
  margin-top: 8px;
}
.faq-subhead {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #564340;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 14px;
}
.faq-text {
  font-family: 'Karla', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #564340;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.faq-text:last-child {
  margin-bottom: 0;
}
.faq-link {
  color: #564340;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.2s;
}
.faq-link:hover {
  opacity: 0.7;
}
.faq-list-items {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
  margin-top: 14px;
  margin-bottom: 24px;
}
.faq-contact-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
  margin-top: 14px;
  margin-bottom: 24px;
}

/* ==========================================================
   FOOTER CTA (landscape photo bg)
   Figma: 1441x739px, pt:268px, pb:336px, px:101px
   Image fills edge-to-edge
========================================================== */
.footer-cta {
  position: relative;
  width: 100%;
  min-height: 739px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 320px 101px 280px;
}
.footer-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.footer-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-cta-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: min(1240px, 100%);
  text-align: center;
}
.footer-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 84px;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
}

/* ==========================================================
   OUR STORY (dark bg)
   Figma: bg #1b2723, 1440x872px
========================================================== */
#our-story {
  background: #1b2723;
}
#our-story .section-inner {
  gap: 0;
  min-height: 872px;
  justify-content: center;
  padding: 100px;
}

.story-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.story-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 68px;
  width: 641px;
  flex-shrink: 0;
  text-align: center;
}
.story-top-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.story-body {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 3.36px;
  color: #ffffff;
  line-height: normal;
  width: 100%;
  text-align: center;
  white-space: pre-wrap;
}

/* ==========================================================
   CONTACT FOOTER
   Figma: bg #1b2723, px:512px, py:100px
========================================================== */
.contact-footer {
  background: #1b2723;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
}
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 417px;
  text-align: center;
}
.contact-line {
  width: 2px;
  height: 300px;
  background: rgba(255,255,255,.25);
}
.contact-icon-wrap { display: flex; justify-content: center; }
.contact-icon {
  width: 48px;
  height: 48px;
  opacity: 0.95;
  filter: none;
}
.contact-name-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.contact-info-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.contact-names {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
}
.contact-q {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-family: 'Karla', sans-serif;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.96px;
  color: #ffffff;
  white-space: nowrap;
  width: 100%;
}
.contact-link { text-decoration: underline; color: #ffffff; }
.contact-link:hover { opacity: .7; }

/* ==========================================================
   RESPONSIVE — Large Desktop (>= 1800px)
========================================================== */
@media (min-width: 1800px) {
  #hero { min-height: 1350px; }
  .hero-content { padding-top: 220px; }
}

/* ==========================================================
   RESPONSIVE — Tablet (<= 1200px)
========================================================== */
@media (max-width: 1200px) {
  #hero { min-height: 900px; }
  .hero-content { padding: 150px 24px 40px; gap: 32px; }
  .hero-header-group { width: 100%; gap: 8px; }
  .hero-title { font-size: 68px; }
  .hero-eyebrow, .hero-date { font-size: 18px; letter-spacing: 2px; }
  .cd-num { font-size: 48px; letter-spacing: 6px; }
  .cd-label { font-size: 16px; letter-spacing: 2px; }
  .cd-colon { font-size: 32px; width: 28px; }
  .cd-unit { width: 90px; }
  #site-nav { padding: 32px 40px; gap: 32px; }
  #site-nav a { font-size: 14px; }

  .mountain-divider--bottom { margin-top: 40px; }

  .section-inner { padding: 60px 48px; gap: 80px; }
  .section-title { font-size: 64px; }

  .event-row { flex-direction: column; align-items: center; gap: 40px; }
  .arch-wrap { width: 380px; height: 480px; }
  .arch-photo { width: 358px; height: 460px; left: 10px; top: 10px; border-radius: 180px 180px 0 0; }
  .arch-border { border-radius: 250px 250px 0 0; }
  .arch-wrap--dark .arch-photo { border-radius: 200px 200px 0 0; }
  .event-info { width: 100%; max-width: 540px; gap: 40px; }
  .event-name { font-size: 52px; }
  .et-big { font-size: 60px; }
  .et-range { font-size: 52px; }
  .et-sm { font-size: 40px; }
  .venue-link { font-size: 28px; }
  .venue-address { font-size: 24px; letter-spacing: 2px; }

  .hotels-group { gap: 40px; }
  .hotels-sub { font-size: 48px; }
  .hotel-cards { flex-direction: column; align-items: center; gap: 16px; }
  .hotel-card { width: min(480px, 100%); padding: 80px 40px 80px; }
  .map-box { height: 500px; border-radius: 4px; }
  .map-label { font-size: 48px; }

  .faq-btn { font-size: 24px; padding: 20px 0; } .faq-plus { width: 26px; height: 26px; } 
  .faq-plus { width: 44px; height: 44px; }

  .footer-cta { padding: 190px 60px 170px; min-height: 500px; }
  .footer-cta-text { font-size: 56px; white-space: normal; }

  .story-row { flex-direction: column; align-items: center; gap: 40px; }
  .story-info { width: 100%; max-width: 540px; }
  .story-body { font-size: 22px; letter-spacing: 2px; }

  .contact-footer { padding: 80px 40px; }
  .contact-inner { width: 100%; max-width: 417px; }

  .pill { font-size: 16px; padding: 12px 28px; }
}

/* ==========================================================
   RESPONSIVE — Mobile (<= 680px)
========================================================== */
@media (max-width: 680px) {
  #hero { min-height: 640px; }
  .hero-content { padding: 100px 16px 30px; gap: 20px; }
  .hero-header-group { gap: 6px; }
  .hero-title { font-size: 38px; }
  .hero-eyebrow, .hero-date { font-size: 12px; letter-spacing: 1.5px; }

  #site-nav { gap: 12px; padding: 20px 16px; flex-wrap: wrap; justify-content: center; }
  #site-nav a { font-size: 11px; letter-spacing: 0.04em; }

  .countdown { gap: 6px; }
  .cd-unit { width: 56px; gap: 4px; }
  .cd-num { font-size: 28px; letter-spacing: 2px; }
  .cd-label { font-size: 9px; letter-spacing: 1px; }
  .cd-colon { font-size: 20px; width: 14px; }

  .pill { font-size: 13px; padding: 10px 20px; }

  .mountain-divider--bottom { margin-top: 30px; }

  .section-inner { padding: 48px 20px; gap: 56px; }
  .section-title { font-size: 44px; }

  .arch-wrap { width: min(300px, 88vw); height: auto; aspect-ratio: 538/682; }
  .arch-photo {
    top: calc(13/682 * 100%);
    left: calc(14/538 * 100%);
    width: calc(510/538 * 100%);
    height: calc(655/682 * 100%);
    border-radius: 50% 50% 0 0;
  }
  .arch-border { border-radius: 60% 60% 0 0; }
  .arch-wrap--dark .arch-photo { border-radius: 55% 55% 0 0; }

  .event-info { gap: 28px; }
  .event-icon { width: 60px; height: 60px; }
  .event-name { font-size: 40px; }
  .et-big { font-size: 44px; }
  .et-range { font-size: 36px; }
  .et-sm { font-size: 28px; }
  .venue-link { font-size: 20px; }
  .venue-address { font-size: 18px; letter-spacing: 1.5px; }

  .hotels-group { gap: 28px; }
  .hotels-sub { font-size: 36px; white-space: normal; }
  .hotel-card { padding: 60px 24px 60px; }
  .hotel-name { font-size: 22px; }
  .hotel-addr { font-size: 18px; letter-spacing: 1.5px; }
  .map-box { height: 380px; border-radius: 4px; }
  .map-group { gap: 28px; }
  .map-label { font-size: 36px; white-space: normal; }

  .faq-btn { font-size: 18px; padding: 16px 0; } .faq-plus { width: 22px; height: 22px; } 
  .faq-plus { width: 32px; height: 32px; }
  .faq-content-inner { padding: 4px 12px 24px; gap: 18px; }
  .faq-subhead { font-size: 18px; }
  .faq-text, .faq-list-items, .faq-contact-list { font-size: 16px; line-height: 1.6; }

  .footer-cta { padding: 130px 24px 110px; min-height: 420px; }
  .footer-cta-text { font-size: 36px; white-space: normal; }

  .story-row { gap: 36px; }
  .story-info { gap: 32px; }
  .story-body { font-size: 18px; letter-spacing: 1.5px; }

  .contact-footer { padding: 60px 20px; }
  .contact-line { height: 160px; }
  .contact-names { font-size: 24px; }
  .contact-q { font-size: 18px; flex-wrap: wrap; }
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  #site-nav, #hotels, #faqs, #rsvp, #our-story, #contact { display: none !important; }
  #when-and-where { background: none !important; }
  * { color: #000 !important; }
}
