:root {
  --brown: #592519;
  --brown-900: #35150f;
  --brown-700: #6f3323;
  --cream: #fbf7f1;
  --off-white: #fffdf9;
  --champagne: #d7b778;
  --champagne-soft: #efe1c3;
  --ink: #241714;
  --muted: #75655e;
  --line: rgba(89, 37, 25, 0.16);
  --shadow: 0 24px 80px rgba(53, 21, 15, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body::selection {
  background: var(--champagne);
  color: var(--brown-900);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--off-white);
  color: var(--brown);
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--off-white);
  transition: background 260ms ease, box-shadow 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(53, 21, 15, 0.9);
  box-shadow: 0 14px 40px rgba(22, 10, 7, 0.2);
  padding-block: 12px;
  backdrop-filter: blur(16px);
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(239, 225, 195, 0.75);
  border-radius: 50%;
  color: var(--champagne-soft);
}

.main-nav {
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  opacity: 0.84;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--champagne-soft);
  opacity: 1;
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-dark {
  background: var(--brown);
  color: var(--off-white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 10vw, 7.6rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 6.6vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.05;
}

p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255, 253, 249, 0.78);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--brown);
  color: var(--off-white);
  box-shadow: 0 16px 34px rgba(89, 37, 25, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brown-900);
}

.button-light {
  background: var(--off-white);
  color: var(--brown);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 0 clamp(58px, 8vw, 92px);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(53, 21, 15, 0.86) 0%, rgba(53, 21, 15, 0.58) 42%, rgba(53, 21, 15, 0.22) 100%),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=82") center/cover;
  transform: scale(1.02);
}

.hero-shade {
  background: radial-gradient(circle at 22% 28%, rgba(215, 183, 120, 0.18), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 34px;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.microcopy {
  max-width: 240px;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.9rem;
}

.two-column {
  display: grid;
  gap: clamp(34px, 7vw, 96px);
}

.section-copy p {
  max-width: 600px;
  font-size: 1.05rem;
}

.experience-grid,
.benefits-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.benefit,
.event-panel,
.reservation-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 60px rgba(53, 21, 15, 0.07);
}

.feature-card {
  padding: 28px;
  border-radius: 8px;
}

.feature-card p,
.benefit p {
  margin-bottom: 0;
}

.card-number {
  display: block;
  margin-bottom: 30px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.event-section {
  background: linear-gradient(180deg, var(--cream), #f3eadf);
}

.event-layout {
  display: grid;
  gap: 22px;
}

.event-photo {
  min-height: 360px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(53, 21, 15, 0.08), rgba(53, 21, 15, 0.22)),
    url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=1400&q=82") center/cover;
  box-shadow: var(--shadow);
}

.event-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  padding: clamp(30px, 5vw, 58px);
}

.event-list {
  display: grid;
  gap: 0;
  margin: 16px 0 26px;
}

.event-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.event-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.event-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-list dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
}

.event-note {
  margin-bottom: 0;
  color: var(--brown);
  font-weight: 600;
}

.audience {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(53, 21, 15, 0.86), rgba(53, 21, 15, 0.88)),
    url("https://images.unsplash.com/photo-1521017432531-fbd92d768814?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.narrow {
  max-width: 820px;
  text-align: center;
}

.narrow h2,
.narrow p {
  margin-inline: auto;
}

.narrow p {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.section-heading {
  margin-bottom: 36px;
}

.benefit {
  min-height: 188px;
  border-radius: 8px;
  padding: 28px;
}

.benefit h3 {
  max-width: 310px;
}

.memory-band {
  padding: clamp(76px, 10vw, 136px) 0;
  text-align: center;
  background:
    linear-gradient(rgba(89, 37, 25, 0.9), rgba(53, 21, 15, 0.95)),
    url("https://images.unsplash.com/photo-1544148103-0773bf10d330?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.memory-band h2,
.memory-band p {
  margin-inline: auto;
}

.memory-band p {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.reservation {
  background: var(--off-white);
}

.reservation-card {
  max-width: 820px;
  border-radius: 8px;
  padding: clamp(34px, 8vw, 72px);
  text-align: center;
}

.reservation-card h2,
.reservation-card p {
  margin-inline: auto;
}

.reservation-card p {
  max-width: 560px;
  margin-bottom: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--brown-900);
  color: rgba(255, 253, 249, 0.78);
  padding: 28px 0 96px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-inner p {
  margin: 0;
  color: inherit;
}

.footer-inner a {
  color: var(--champagne-soft);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 249, 0.25);
  border-radius: 999px;
  background: #245c42;
  color: var(--off-white);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(19, 63, 44, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: #dff4e7;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(19, 63, 44, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .two-column {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

  .event-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .event-photo {
    min-height: 620px;
  }

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

@media (max-width: 719px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .brand {
    font-size: 1.32rem;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(53, 21, 15, 0.78) 0%, rgba(53, 21, 15, 0.6) 45%, rgba(53, 21, 15, 0.88) 100%),
      url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1000&q=82") center/cover;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .microcopy {
    max-width: none;
  }

  .feature-card,
  .benefit {
    padding: 24px;
  }

  .event-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .event-photo {
    min-height: 330px;
  }

  .footer-inner {
    display: grid;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 12px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
