:root {
  --bg: #e7d0c8;
  --bg-strong: #f5f3e5;
  --surface: rgba(245, 243, 229, 0.82);
  --surface-strong: #f5f3e5;
  --text: #3f352d;
  --muted: #8f7e6e;
  --line: rgba(143, 126, 110, 0.2);
  --accent: #b9bdaa;
  --accent-dark: #8f7e6e;
  --accent-soft: #e7d0c8;
  --shadow: 0 22px 60px rgba(143, 126, 110, 0.16);
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 243, 229, 0.72), transparent 34%),
    radial-gradient(circle at top right, rgba(185, 189, 170, 0.34), transparent 28%),
    linear-gradient(180deg, #f7efe8 0%, var(--bg) 42%, #efe5da 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

video {
  max-width: 100%;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(245, 243, 229, 0.72);
}

.site-nav {
  display: none;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
}

.brand,
.brand:visited {
  color: inherit;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-dark);
}

.section {
  padding: 3.75rem 0;
}

.hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
}

.travel-hero {
  padding-top: 2rem;
}

.travel-hero-card {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.travel-hero-copy,
.travel-side-card {
  min-width: 0;
}

.travel-lead {
  max-width: 40rem;
  margin: 1rem 0 0;
  font-size: 1.08rem;
}

.slideshow-section {
  padding-bottom: 1rem;
}

.slideshow-frame {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(245, 243, 229, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.slideshow-frame > * {
  min-width: 0;
}

.slideshow-copy {
  padding: 0.5rem;
}

.slideshow-copy h2 {
  margin: 0;
}

.slideshow-copy p:last-child {
  margin-bottom: 0;
  max-width: 38rem;
}

.slideshow-viewer {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  min-height: 320px;
  height: clamp(320px, 44vw, 720px);
  border-radius: 1.5rem;
  background: rgba(185, 189, 170, 0.2);
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 700ms ease;
  will-change: transform;
}

.slideshow-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.slideshow-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(143, 126, 110, 0.58);
  color: #f5f3e5;
  backdrop-filter: blur(6px);
}

.slideshow-dots {
  display: inline-flex;
  gap: 0.45rem;
}

.slideshow-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(245, 243, 229, 0.45);
}

.slideshow-dot.is-active {
  background: #f5f3e5;
}

.video-section {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.video-frame {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(245, 243, 229, 0.78);
  box-shadow: var(--shadow);
  align-items: center;
}

.video-copy {
  padding: 0.5rem;
  max-width: 32rem;
}

.video-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.94;
  max-width: 9ch;
}

.video-copy p:last-child {
  margin-bottom: 0;
}

.countdown-summary {
  margin-top: 1rem;
  max-width: 30rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.45;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
  max-width: 100%;
}

.countdown-unit {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(245, 243, 229, 0.72);
  text-align: center;
}

.countdown-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
}

.countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.video-shell {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(143, 126, 110, 0.18);
  background: rgba(185, 189, 170, 0.14);
  min-height: 320px;
  width: 100%;
}

.feature-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-copy,
.hero-card,
.panel {
  backdrop-filter: blur(8px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2rem;
  border-radius: 2rem;
}

.hero h1,
.section h2,
.panel h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 600;
}

.hero-meta {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-text {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
}

.eyebrow,
.card-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #3f352d;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
  color: #f5f3e5;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(245, 243, 229, 0.78);
}

.hero-card {
  padding: 1.5rem;
  border-radius: 1.75rem;
}

.summary-list {
  margin: 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.summary-list div:first-child {
  border-top: 0;
}

.summary-list dt {
  color: var(--muted);
}

.summary-list dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  font-weight: 600;
}

.grid-two,
.grid-three,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.airbnb-neighborhood-grid {
  display: grid;
  gap: 1rem;
}

.panel {
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.panel h3 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  font-weight: 600;
}

.panel p {
  margin: 0.7rem 0 0;
}

.embed-shell {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  border: 1px dashed rgba(143, 126, 110, 0.38);
  border-radius: 1.35rem;
  background: rgba(245, 243, 229, 0.64);
  min-height: 280px;
  padding: 1rem;
}

.embed-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.embed-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.embed-slide-copy h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.airbnb-embed-frame {
  width: min(100%, 450px) !important;
  margin: 0 auto !important;
  min-height: 420px;
}

.airbnb-embed-frame iframe {
  width: 100% !important;
  min-height: 420px !important;
  border: 0;
  border-radius: 1rem;
}

.embed-placeholder {
  display: grid;
  place-items: center;
  min-height: 246px;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(245, 243, 229, 0.9), rgba(231, 208, 200, 0.7));
  color: var(--muted);
  text-align: center;
  font-weight: 600;
  padding: 1.5rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1rem;
}

.carousel-button {
  border: 1px solid var(--line);
  background: rgba(245, 243, 229, 0.82);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex: 1;
}

.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(143, 126, 110, 0.28);
  padding: 0;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--accent-dark);
}

.travel-grid,
.hotel-grid {
  align-items: start;
}

.detail-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.detail-list li + li {
  margin-top: 0.45rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.accent-panel {
  background:
    linear-gradient(180deg, rgba(245, 243, 229, 0.96), rgba(231, 208, 200, 0.84)),
    var(--surface);
}

.callout {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(245, 243, 229, 0.72);
  border-radius: 0.9rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  gap: 0.4rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.35rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.timeline-time {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.timeline-item h3 {
  margin: 0;
  font-size: 1.65rem;
}

.panel-wide {
  padding: 1.75rem;
}

.faq-grid .panel {
  min-height: 100%;
}

.rsvp-section {
  padding-bottom: 2rem;
}

.rsvp-panel {
  text-align: left;
}

.site-footer {
  padding: 0 0 3rem;
  text-align: center;
  color: var(--muted);
}

.footer-note {
  font-size: 0.93rem;
}

@media (min-width: 760px) {
  .site-nav {
    display: flex;
  }

  .slideshow-frame {
    grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
    align-items: center;
    padding: 1.75rem;
  }

  .video-frame {
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
    align-items: center;
    padding: 1.75rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
    gap: 1.5rem;
  }

  .travel-hero-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  }

  .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .airbnb-neighborhood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
  }
}

@media (max-width: 759px) {
  .site-header {
    justify-content: center;
  }

  .slideshow-viewer {
    height: 360px;
  }

  .slideshow-overlay {
    border-radius: 1rem;
    justify-content: center;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .carousel-controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  .video-copy {
    max-width: none;
  }

  .video-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .countdown-summary {
    font-size: 1.02rem;
  }

  .hero-copy,
  .video-frame,
  .slideshow-frame,
  .hero-card,
  .panel {
    box-shadow: 0 18px 40px rgba(143, 126, 110, 0.14);
  }
}
