/* ============================================================
   BRAND PALETTE — Rustic Retreat
   --cream     #E6E3DE   page background
   --wood      #96784E   primary accent (bronze)
   --sage      #838264   muted text
   --soft-sage #B5C1B8   soft accent
   --forest    #112917   primary text
   --rosa      #932E50   touch accent
   ============================================================ */
:root {
  --cream: #E6E3DE;
  --cream-warm: #ECE8E0;
  --cream-deep: #DCD7CC;
  --wood: #96784E;
  --wood-light: #B89A6F;
  --sage: #838264;
  --soft-sage: #B5C1B8;
  --soft-sage-bg: #DDE4DC;
  --forest: #112917;
  --forest-soft: #1F3A26;
  --rosa: #932E50;

  --serif: 'Bodoni Moda', 'Didot', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ====== RESET + BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--forest);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--wood);
  font-style: normal;
}
em, i { font-style: normal; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .2s ease; }
a:hover { color: var(--wood); }
img { max-width: 100%; display: block; }

/* ====== TOP NAV ====== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(230, 227, 222, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(150, 120, 78, 0.18);
}
.topnav__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.topnav__brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--forest);
}
.topnav__brand { color: var(--wood); white-space: nowrap; }
.topnav__brand em { color: var(--forest); margin: 0 4px; }
.topnav__links {
  display: flex;
  gap: 36px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.topnav__links a {
  color: var(--forest);
  opacity: 0.7;
  position: relative;
  padding-bottom: 4px;
}
.topnav__links a:hover { opacity: 1; color: var(--forest); }
.topnav__links a.active { opacity: 1; color: var(--wood); }
.topnav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--wood);
  transform: translateX(-50%);
}
.topnav__lang { justify-self: end; }
.topnav__links > .lang-switch { display: none; }
.topnav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.topnav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--forest); margin: 5px 0; transition: .3s; }

/* ====== LANGUAGE SWITCH ====== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--forest);
}
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
  padding: 4px 2px;
  opacity: 0.45;
  transition: opacity .2s ease;
}
.lang-switch button:hover,
.lang-switch button.active { opacity: 1; }
.lang-switch span { opacity: 0.3; }

.lang-bar {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 60;
}

/* ====== HERO (cinematic landing) ====== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--wood);
}

/* Background image with Ken Burns animation */
.hero__bg {
  position: absolute;
  inset: -4%;
  background-color: var(--wood);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(135deg, rgba(122,98,64,0.4), rgba(150,120,78,0.55)),
    url('images/hero-guadalajara.jpg');
  animation: kenburns 28s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1.5%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(90,70,40,0.55) 0%,
      rgba(90,70,40,0.18) 28%,
      rgba(90,70,40,0.40) 60%,
      rgba(60,45,25,0.88) 100%);
  z-index: 1;
}

.hero__lang { color: #fff; }
.hero__lang button { color: #fff; opacity: 0.55; }
.hero__lang button.active, .hero__lang button:hover { opacity: 1; color: #fff; }
.hero__lang span { color: #fff; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 32px;
}

.hero__names {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 400;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  flex-wrap: wrap;
}
.hero__names em { color: var(--cream); font-weight: 400; }

/* Floating portrait card */
.hero__portrait {
  width: clamp(320px, 42vw, 560px);
  aspect-ratio: 3/4;
  padding: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 28px 70px rgba(0,0,0,0.4);
  margin-bottom: 36px;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero__portrait-frame {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(150,120,78,0.3), rgba(17,41,23,0.5));
  position: relative;
  overflow: hidden;
}
.hero__portrait-frame::before {
  content: 'Add couple portrait at images/couple-portrait.jpg';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 16px;
  line-height: 1.6;
}
.hero__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 32px);
  margin: 8px 0 36px;
  color: var(--cream);
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.countdown__num {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.countdown__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  margin-top: 8px;
}
.countdown__sep {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream);
  opacity: 0.5;
  line-height: 1;
  padding-top: 6px;
}

.hero__date {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.hero__place {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 40px;
}

.hero__start {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  transition: letter-spacing .3s ease, border-color .3s ease, color .3s ease;
}
.hero__start:hover {
  letter-spacing: 0.55em;
  border-color: var(--cream);
  color: var(--cream);
}

/* ====== BOTANICAL DIVIDER ====== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  color: var(--wood);
}
.divider svg { width: 180px; height: 24px; display: block; }
.divider--lg svg { width: 260px; height: 32px; }

/* ====== PAGE LAYOUT ====== */
.page { padding: 80px 0 100px; background: var(--cream); }
.page__header { text-align: center; max-width: 900px; margin: 0 auto 72px; padding: 0 24px; }
.page__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 20px;
}
.page__title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--wood);
}
.page__lead {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--sage);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: normal;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.container--wide { max-width: 1300px; }

.section { padding: 80px 0; }
.section--sage { background: var(--soft-sage-bg); }
.section--cream-warm { background: var(--cream-warm); }
.section--forest { background: var(--wood); color: var(--cream); }
.section--forest h2, .section--forest h3 { color: var(--cream); }

.section__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 18px;
  text-align: center;
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  text-align: center;
  margin-bottom: 56px;
}

/* ====== VENUE ====== */
.venue { padding: 120px 0; background: var(--cream); }
.venue__title { text-align: center; max-width: 900px; margin: 0 auto 80px; padding: 0 24px; }
.venue__label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--wood); margin-bottom: 24px; }
.venue__label--center { text-align: center; margin-bottom: 32px; }
.venue__name { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 8vw, 110px); line-height: 1; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--wood); }
.venue__location { font-family: var(--serif); font-size: clamp(16px, 1.8vw, 22px); letter-spacing: 0.1em; color: var(--sage); font-style: normal; }
.venue__strip { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 12px; max-width: 1400px; margin: 0 auto 100px; padding: 0 24px; }
.venue-img { overflow: hidden; background: var(--cream-deep); }
.venue-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.venue-img:hover img { transform: scale(1.04); }
.venue-img--tall { aspect-ratio: 3/4; }
.venue-img--wide { aspect-ratio: 4/3; }
.venue-img--square { aspect-ratio: 1/1; }
.venue__body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto 120px; padding: 0 24px; }
.venue__text p { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); font-weight: 400; line-height: 1.5; margin-bottom: 24px; }
.venue__text p:last-child { margin-bottom: 0; }
.venue__map { max-width: 1100px; margin: 0 auto; padding: 0 24px; text-align: center; }
.map-frame { width: 100%; aspect-ratio: 16/9; background: var(--soft-sage); margin-bottom: 24px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(15%) sepia(8%) contrast(1.02); }
.venue__postcard { margin-top: 40px; }
.venue__postcard img { width: 100%; display: block; }
.venue__directions {
  display: inline-block; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.4em; text-transform: uppercase; padding: 14px 0;
  border-bottom: 1px solid var(--wood); color: var(--wood);
}

/* ====== PLACEHOLDERS ====== */
.ph {
  background:
    linear-gradient(135deg, rgba(150,120,78,0.18), rgba(131,130,100,0.22)),
    linear-gradient(45deg, var(--soft-sage), var(--cream-warm));
  display: flex; align-items: center; justify-content: center;
  color: var(--sage); font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; position: relative;
}
.ph::after { content: attr(data-label); }
.ph--photo::after { content: none; }
.ph--tall { aspect-ratio: 3/4; }
.ph--wide { aspect-ratio: 4/3; }
.ph--square { aspect-ratio: 1/1; }
.ph--hero { aspect-ratio: 21/9; }

/* ====== CELEBRATION SECTION (background image + map illustration) ====== */
.celebration {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--cream);
  display: flex;
  align-items: center;
}
.celebration__bg {
  position: absolute;
  inset: -3%;
  background-color: var(--wood);
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(135deg, rgba(122,98,64,0.35), rgba(60,45,25,0.65)),
    url('images/chapala-promenade.jpg');
  animation: kenburns 32s ease-in-out infinite alternate;
}
.celebration__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(60,45,25,0.85) 0%,
    rgba(90,70,45,0.45) 50%,
    rgba(122,98,64,0.55) 100%);
  z-index: 1;
}
.celebration__inner {
  position: relative; z-index: 2;
  max-width: 1300px; width: 100%;
  margin: 0 auto;
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.celebration__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.celebration__sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  margin-top: 24px;
}
.celebration__map {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.mex-map {
  width: 100%;
  max-width: 580px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.35));
}
.mex-map__land {
  fill: rgba(245, 240, 232, 0.05);
  stroke: var(--cream);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.mex-map__halo {
  fill: none;
  stroke: #fff;
  stroke-width: 1.4;
  opacity: 0.65;
}
.mex-map__dot {
  fill: #fff;
  stroke: none;
}
.mex-map__country {
  font-family: var(--serif);
  font-size: 44px;
  fill: var(--cream);
  opacity: 0.42;
  letter-spacing: 0.14em;
}
.mex-map__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  fill: #fff;
  letter-spacing: 0.01em;
}

/* ====== COMING SOON ====== */
.coming-soon { text-align: center; margin: 0 24px 72px; }
.coming-soon__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  color: var(--wood);
  margin-top: 16px;
}

.attractions-map { margin: 24px auto 56px; max-width: 860px; }
.attractions-map img { width: 100%; display: block; box-shadow: 0 18px 44px rgba(0,0,0,0.12); }

/* ====== LUMA RSVP EMBED ====== */
.rsvp-wrap--luma { padding: 0; overflow: hidden; }
.luma-embed { width: 100%; height: 760px; border: 0; display: block; }
.rsvp-fallback { text-align: center; padding: 14px 20px 20px; }
.rsvp-fallback a {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.08em; color: var(--wood);
}

/* ====== JUMP MENU (recommendations) ====== */
html { scroll-behavior: smooth; }
.jump { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 24px 8px; }
.jump a {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--cream-deep);
  color: var(--forest); text-decoration: none;
  border-radius: 999px; transition: all .2s ease;
}
.jump a:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.recos-sec { scroll-margin-top: 90px; }

/* ====== RECOS SECTIONS (flights + road trips) ====== */
.recos-sec { text-align: center; margin: 96px 24px 44px; }
.recos-sec--first { margin-top: 20px; }
.recos-sec__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  color: var(--forest);
  margin-top: 12px;
}
.recos-sec .page__lead { margin-top: 14px; }
.flights { max-width: 720px; margin: 0 auto; }
.flight { padding: 30px 0; border-bottom: 1px solid var(--cream-deep); }
.flight:first-child { border-top: 1px solid var(--cream-deep); }
.flight h3 { font-family: var(--serif); font-weight: 500; font-size: 25px; color: var(--forest); margin-bottom: 8px; }
.flight p { margin-bottom: 10px; }
.flight .reco__meta { margin-bottom: 0; }
.flights__tip {
  margin-top: 26px; text-align: center;
  font-family: var(--sans); font-size: 13px;
  letter-spacing: 0.06em; color: var(--sage);
}
.flight-visa {
  margin-top: 34px; padding: 26px 30px;
  border: 1px solid var(--cream-deep);
}
.flight-visa h3 {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--wood); margin-bottom: 10px;
}
.flight-plan { margin-top: 20px; background: rgba(150,120,78,0.07); border-color: transparent; }
.skyband { margin-top: 44px; }
.skyband__label {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--wood); text-align: center; margin-bottom: 18px;
}
.sky-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.sky-tab {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--cream-deep);
  background: transparent; color: var(--forest);
  border-radius: 999px; cursor: pointer;
  transition: all .2s ease;
}
.sky-tab:hover { border-color: var(--wood); }
.sky-tab.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.sky-panel { min-height: 340px; }
.reco__route {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--wood);
  margin: 2px 0 10px;
}

/* ====== JOURNEY SECTION (route map) ====== */
.journey {
  padding: 100px 28px 110px;
  background: var(--cream);
  text-align: center;
}
.journey__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--forest);
  margin: 14px 0 8px;
}
.journey__map { max-width: 820px; margin: 26px auto 0; }
.journey__map svg { width: 100%; height: auto; }
.journey__note {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--sage);
  max-width: 560px;
  margin: 10px auto 0;
}
.jmap-lake { fill: var(--soft-sage-bg); stroke: var(--sage); stroke-width: 1.5; stroke-linejoin: round; }
.jmap-route { fill: none; stroke: var(--wood); stroke-width: 3.5; stroke-dasharray: 1.5 10; stroke-linecap: round; stroke-linejoin: round; }
.jmap-route--alt { stroke-width: 2.5; opacity: 0.7; stroke-dasharray: 1 8; }
.jmap-time { font-family: var(--sans); font-size: 18px; letter-spacing: 0.06em; fill: var(--forest); opacity: 0.8; }
.jmap-dot { fill: var(--forest); }
.jmap-dot--venue { fill: var(--rosa); }
.jmap-halo { fill: none; stroke: var(--rosa); stroke-width: 1.4; opacity: 0.55; }
.jmap-city { font-family: var(--serif); font-style: italic; font-size: 30px; fill: var(--forest); }
.jmap-town { font-family: var(--serif); font-style: italic; font-size: 21px; fill: var(--sage); }
.jmap-lakelbl { font-family: var(--serif); font-style: italic; font-size: 26px; fill: var(--sage); letter-spacing: 0.04em; }
.jmap-badge { fill: #fff; stroke: var(--cream-deep); }
.jmap-badge-txt { font-family: var(--sans); font-size: 20px; letter-spacing: 0.06em; fill: var(--forest); }
.jmap-cart { stroke: var(--forest); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.jmap-scale { stroke: var(--sage); stroke-width: 1.5; fill: none; }
.jmap-scaletxt { font-family: var(--sans); font-size: 16px; letter-spacing: 0.12em; fill: var(--sage); }

@media (max-width: 900px) {
  .celebration { min-height: 0; }
  .celebration__inner {
    grid-template-columns: 1fr;
    padding: 64px 28px;
    gap: 40px;
    text-align: center;
  }
  .mex-map { max-width: 440px; margin: 0 auto; }
}

/* ====== INFO CARDS ====== */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 32px; }
.info-card {
  background: var(--cream-warm);
  border: 1px solid rgba(150, 120, 78, 0.15);
  padding: 40px 36px;
  transition: border-color .3s ease, transform .3s ease;
}
.info-card:hover { border-color: var(--wood); transform: translateY(-2px); }
.info-card__icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--wood); margin-bottom: 20px; }
.info-card__icon svg { width: 100%; height: 100%; }
.info-card h3 { font-family: var(--serif); font-size: 28px; line-height: 1.15; margin-bottom: 14px; }
.info-card p { color: var(--forest-soft); font-size: 15px; line-height: 1.65; }
.info-card p + p { margin-top: 12px; }
.info-card strong { color: var(--forest); font-weight: 500; }

/* ====== RECOMMENDATIONS ====== */
.recos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px; margin-top: 32px; }
.reco { display: grid; grid-template-rows: auto auto; gap: 20px; }
.reco__image { aspect-ratio: 4/3; }
.reco__num { font-family: var(--serif); font-size: 22px; color: var(--wood); font-style: normal; }
.reco__body { padding-top: 4px; }
.reco h3 { font-family: var(--serif); font-size: clamp(28px, 3vw, 36px); line-height: 1.1; margin: 8px 0 12px; }
.reco p { color: var(--forest-soft); font-size: 15px; line-height: 1.7; }
.reco__meta { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sage); margin-top: 14px; }

/* ====== RSVP ====== */
.rsvp-wrap {
  background: var(--cream-warm);
  border: 1px solid rgba(150, 120, 78, 0.2);
  padding: 56px 48px;
  margin-top: 32px;
}
.rsvp-wrap .ph--form {
  min-height: 320px;
  border: 1px dashed rgba(150, 120, 78, 0.45);
  background: transparent;
  color: var(--sage);
  padding: 24px;
  text-align: center;
}
.rsvp-deadline { font-family: var(--serif); font-size: 18px; color: var(--wood); margin-top: 24px; text-align: center; font-style: normal; }

/* ====== REGISTRY ====== */
.gift { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.gift__card {
  background: var(--cream-warm);
  border: 1px solid rgba(150, 120, 78, 0.18);
  padding: 48px 40px;
  text-align: center;
}
.gift__card h3 { font-family: var(--serif); font-size: 32px; margin-bottom: 16px; color: var(--wood); }
.gift__card p { color: var(--forest-soft); margin-bottom: 24px; font-size: 15px; }
.gift__details {
  background: var(--cream);
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--forest);
  text-align: left;
  letter-spacing: 0.05em;
  border-left: 2px solid var(--wood);
}
.gift__details div { padding: 4px 0; }
.gift__details span { color: var(--sage); }

/* ====== BUTTON ====== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--wood);
  color: var(--cream);
  border: 1px solid var(--wood);
  cursor: pointer;
  transition: all .3s ease;
}
.btn:hover { background: transparent; color: var(--wood); letter-spacing: 0.45em; }
.btn--outline { background: transparent; color: var(--wood); }
.btn--outline:hover { background: var(--wood); color: var(--cream); }
.btn--rosa { background: var(--wood); border-color: var(--wood); }
.btn--rosa:hover { background: transparent; color: var(--wood); }

/* ====== FOOTER (now wood, cream type) ====== */
.footer {
  background: var(--wood);
  color: var(--cream);
  padding: 80px 24px 40px;
}
.footer h1, .footer h2, .footer h3, .footer h4 { color: var(--cream); }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.footer__brand { font-family: var(--serif); }
.footer__names { font-size: 44px; line-height: 1; margin-bottom: 16px; color: var(--cream); }
.footer__names em { color: var(--cream-warm); }
.footer__tag { font-size: 16px; color: var(--cream); opacity: 0.85; line-height: 1.5; font-style: normal; }

.footer__col h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 18px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--cream); font-family: var(--serif); font-size: 18px; opacity: 0.92; }
.footer__links a:hover { color: #fff; opacity: 1; }
.footer__contact p { font-family: var(--serif); font-size: 18px; color: var(--cream); opacity: 0.92; margin-bottom: 8px; }
.footer__contact a { color: var(--cream); border-bottom: 1px solid rgba(230,227,222,0.4); }
.footer__contact a:hover { color: #fff; border-color: #fff; }
.footer__person { font-family: var(--sans) !important; font-size: 10px !important; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.65 !important; margin: 16px 0 6px !important; }
.footer__hint { font-family: var(--sans); font-size: 12px; opacity: 0.7; letter-spacing: 0.04em; }
.footer__where { opacity: 0.75; margin-top: 12px; font-size: 15px; font-style: normal; }

.footer__bottom {
  max-width: 1200px;
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(230, 227, 222, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--cream);
  opacity: 0.7;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVE ====== */
/* Nav collapses earlier — six links need the room */
@media (max-width: 1100px) {
  .topnav__inner { grid-template-columns: 1fr auto; padding: 16px 20px; }
  .topnav__links {
    position: fixed; top: 64px; right: 0; bottom: 0; width: 80%;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 40px 32px; gap: 28px; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .topnav__links.open { transform: translateX(0); }
  .topnav__toggle { display: block; }
  .topnav__lang { display: none; }
  .topnav__links > .lang-switch { display: flex; padding-top: 16px; border-top: 1px solid rgba(150,120,78,0.2); width: 100%; }
}
@media (max-width: 900px) {
  .venue { padding: 80px 0; }
  .venue__strip { grid-template-columns: 1fr; gap: 12px; margin-bottom: 64px; }
  .venue__body { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .map-frame { aspect-ratio: 4/3; }

  .info-grid { grid-template-columns: 1fr; gap: 20px; }
  .info-card { padding: 32px 28px; }

  .recos { grid-template-columns: 1fr; gap: 32px; }

  .gift { grid-template-columns: 1fr; gap: 16px; }
  .gift__card { padding: 36px 28px; }

  .rsvp-wrap { padding: 32px 24px; }

  .footer { padding: 60px 24px 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .hero__content { padding: 60px 20px 40px; }
  .hero__portrait { width: 60vw; }
}
