/* jost-200 - latin */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 200;
  src: url('/fonts/jost-v20-latin-200.woff2') format('woff2');
}
/* jost-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/jost-v20-latin-300.woff2') format('woff2');
}
/* jost-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/jost-v20-latin-regular.woff2') format('woff2');
}
/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
/* cormorant-garamond-300italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  src: url('/fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
/* cormorant-garamond-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}
/* cormorant-garamond-600italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  src: url('/fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #faf7f2;
  --white: #fefcf8;
  --sand: #ede5d8;
  --taupe: #7a6b59;
  --brown: #3e2e1e;
  --dark: #1e1710;
  --gold: #6b5230;
  --black: #0f0c08;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196, 180, 154, 0.25);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--dark);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.25s;
}
.nav-links a:hover {
  opacity: 1;
}

/* LANGUAGE TOGGLE */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(122, 107, 89, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 300;
  padding: 8px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--dark);
  opacity: 0.4;
  transition: all 0.2s;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
.lang-btn.active {
  background: var(--dark);
  color: var(--cream);
  opacity: 1;
}
.lang-btn:not(.active):hover {
  opacity: 0.8;
  background: var(--sand);
}

@media (max-width: 700px) {
  nav {
    padding: 14px 18px;
  }
  .nav-links {
    display: none;
  }
}


/* HERO */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 32px 80px;
}
.hero::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 28px;
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(184, 154, 106, 0.2);
  pointer-events: none;
}
.corner {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
}
.corner svg {
  width: 100%;
  height: 100%;
}
.corner-tl {
  top: 68px;
  left: 16px;
}
.corner-tr {
  top: 68px;
  right: 16px;
  transform: scaleX(-1);
}
.corner-bl {
  bottom: 16px;
  left: 16px;
  transform: scaleY(-1);
}
.corner-br {
  bottom: 16px;
  right: 16px;
  transform: scale(-1, -1);
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 32px;
  animation: fadeUp 1s ease both;
}
.hero-names {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.92;
  color: var(--dark);
  animation: fadeUp 1s 0.15s ease both;
}
.hero-names .amp {
  display: block;
  font-style: italic;
  font-size: 0.45em;
  line-height: 1.6;
  color: var(--brown);
  font-weight: 400;
}
.hero-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px auto;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-rule span {
  display: block;
  height: 1px;
  width: 72px;
  background: var(--taupe);
}
.hero-rule i {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--taupe);
  font-size: 0.9rem;
}
.hero-date {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  color: var(--dark);
  opacity: 0.6;
  margin-bottom: 6px;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-location {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brown);
  animation: fadeUp 1s 0.5s ease both;
}
.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.65s ease both;
}

/* BUTTONS */
.btn {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 34px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary {
  background: var(--dark);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--taupe);
}
.btn-outline:hover {
  background: var(--sand);
}

/* COUNTDOWN */
.countdown-section {
  background: var(--dark);
  padding: 72px 32px;
  text-align: center;
}
.cd-label {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 300;
  color: #a89880;
  margin-bottom: 48px;
  display: block;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
  align-items: flex-start;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  min-width: 1.8ch;
}
.cd-unit {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  color: #a89068;
  margin-top: 8px;
}
.cd-sep {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--gold);
  opacity: 0.3;
  padding-top: 4px;
  align-self: flex-start;
}

/* SECTIONS */
section {
  padding: 96px 32px;
}
.section-inner {
  max-width: 800px;
  margin: 0 auto;
}
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 8px;
}
.section-title em {
  font-style: italic;
  color: var(--brown);
}
.section-sub {
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(44, 35, 24, 0.85);
  margin-bottom: 52px;
}

/* TIMELINE */
.timeline-section {
  background: var(--white);
}
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 146px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--taupe) 8%,
    var(--taupe) 92%,
    transparent
  );
}
.tl-item {
  display: grid;
  grid-template-columns: 130px 32px 1fr;
  gap: 0 28px;
  padding: 22px 0;
  align-items: start;
}
.tl-time {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
  text-align: right;
  padding-top: 2px;
}
.tl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  outline: 1px solid var(--taupe);
  margin: 5px auto 0;
  z-index: 1;
  position: relative;
}
.tl-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.tl-content p {
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(44, 35, 24, 0.85);
}
@media (max-width: 520px) {
  .timeline::before {
    left: 104px;
  }
  .tl-item {
    grid-template-columns: 90px 28px 1fr;
    gap: 0 16px;
  }
}

/* LOCATION */
.location-section {
  background: var(--cream);
}
.location-box {
  border: 1px solid var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 580px) {
  .location-box {
    grid-template-columns: 1fr;
  }
}
.loc-info {
  padding: 48px 40px;
}
.loc-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 14px;
  display: block;
}
.loc-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.loc-info address {
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(44, 35, 24, 0.85);
}
.loc-info a {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(62, 46, 30, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.loc-info a:hover {
  border-color: var(--brown);
}
.loc-map {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 220px;
  color: rgba(44, 35, 24, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  padding: 32px;
}
.loc-map svg {
  width: 32px;
  height: 32px;
  fill: var(--taupe);
}

/* HOTELS */
.hotels-section {
  background: var(--white);
}
.hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--sand);
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }
}
.hotel-item {
  background: var(--cream);
  padding: 32px 28px;
  border: 1px solid var(--sand);
}
.hotel-stars {
  display: none;
}
.hotel-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.hotel-addr {
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(44, 35, 24, 0.65);
  margin-bottom: 10px;
  line-height: 1.5;
}
.hotel-desc {
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(44, 35, 24, 0.8);
  margin-bottom: 16px;
}
.hotel-link {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(62, 46, 30, 0.25);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.hotel-link:hover {
  border-color: var(--brown);
}
.hotel-category {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--taupe);
  margin-bottom: 12px;
  display: block;
}

/* WISHLIST */
.wishlist-section {
  background: var(--cream);
}
.wish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--sand);
  margin-bottom: 32px;
}
@media (max-width: 560px) {
  .wish-grid {
    grid-template-columns: 1fr;
  }
}
.wish-item {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--sand);
}
.wish-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.wish-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.wish-item p {
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(44, 35, 24, 0.8);
}
.wish-note {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(44, 35, 24, 0.6);
  text-align: center;
  line-height: 1.7;
}

/* FORMS */
.rsvp-section {
  background: var(--white);
}
.rsvp-inner {
  max-width: 560px;
  margin: 0 auto;
}
.message-section {
  background: var(--cream);
}
.message-inner {
  max-width: 560px;
  margin: 0 auto;
}
.rsvp-form,
.message-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(44, 35, 24, 0.65);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1px solid var(--sand);
  padding: 12px 16px;
  font-family: "Jost", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--taupe);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(44, 35, 24, 0.7);
  line-height: 1.7;
}
.rsvp-form .btn,
.message-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}
.form-success {
  display: none;
  border: 1px solid var(--sand);
  padding: 40px 32px;
  text-align: center;
}
.form-success h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--brown);
}
.form-success p {
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(44, 35, 24, 0.8);
  line-height: 1.8;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 32px 96px;
}
.legal-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 14px;
}
.legal-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 8px;
}
.legal-updated {
  font-weight: 200;
  font-size: 0.82rem;
  color: rgba(44, 35, 24, 0.6);
  margin-bottom: 48px;
}
.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p {
  font-weight: 200;
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(44, 35, 24, 0.85);
  margin-bottom: 16px;
}
.legal-content address {
  font-style: normal;
  font-weight: 200;
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(44, 35, 24, 0.85);
  margin-bottom: 16px;
}
.legal-content ul {
  font-weight: 200;
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(44, 35, 24, 0.85);
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content li {
  margin-bottom: 4px;
}

/* FOOTER */
footer {
  background: var(--black);
  color: rgba(254, 252, 248, 0.35);
  text-align: center;
  padding: 56px 32px 44px;
}
.footer-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-rule span {
  display: block;
  height: 1px;
  width: 60px;
  background: rgba(184, 154, 106, 0.3);
}
.footer-rule svg {
  width: 14px;
  fill: var(--gold);
  opacity: 0.5;
}
.footer-names {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2.2rem;
  color: rgba(254, 252, 248, 0.8);
  display: block;
  margin-bottom: 10px;
}
.footer-date {
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(254, 252, 248, 0.5);
  display: block;
  margin-bottom: 6px;
}
.footer-city {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(254, 252, 248, 0.5);
  margin-bottom: 20px;
}
.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.footer-legal a {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(254, 252, 248, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-legal a:hover {
  color: rgba(254, 252, 248, 0.75);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
