:root {
  color-scheme: light;
  --ink: #17221f;
  --muted: #63706b;
  --paper: #fbf8f1;
  --surface: #ffffff;
  --line: #ded8ca;
  --green: #143f35;
  --green-2: #0e2d27;
  --gold: #c49a4a;
  --coral: #d6654b;
  --shadow: 0 24px 70px rgba(23, 34, 31, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 34, 31, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  padding: 11px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-2);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 22, 19, 0.9) 0%, rgba(8, 22, 19, 0.74) 38%, rgba(8, 22, 19, 0.18) 70%),
    linear-gradient(0deg, rgba(8, 22, 19, 0.72), rgba(8, 22, 19, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  margin-left: clamp(18px, 7vw, 96px);
  padding: 160px 0 64px;
  color: #fff;
}

.eyebrow,
.section-kicker,
.package-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.restaurant-panel h2,
.contact h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8.3vw, 6.9rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #1b160a;
  box-shadow: 0 14px 34px rgba(196, 154, 74, 0.3);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin-top: 48px;
}

.hero-stats span {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
}

.section,
.feature-band,
.restaurant-panel,
.contact,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.section h2,
.restaurant-panel h2,
.contact h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.intro p:last-child,
.section-heading p,
.timeline p,
.restaurant-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-band article {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
}

.feature-band article:last-child {
  border-right: 0;
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.feature-band h3,
.package-card h3,
.timeline h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.feature-band p,
.package-card li {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 10px 40px rgba(23, 34, 31, 0.06);
}

.package-card.featured {
  border-color: rgba(196, 154, 74, 0.75);
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.package-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  margin: 14px 0 0;
  font-size: 3.2rem;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.package-button {
  width: 100%;
  background: var(--ink);
  color: #fff;
}

.featured .package-button {
  background: var(--gold);
  color: #1b160a;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 90px);
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 22px;
}

.timeline span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
}

.restaurant-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
  margin-bottom: 92px;
  padding: 56px;
  border-radius: 8px;
  background: #efe8d9;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.restaurant-grid p {
  margin: 0;
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 52px;
  border-radius: 8px;
  background: var(--green-2);
  color: #fff;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions a {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-actions span {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: 1.2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 36px;
  color: var(--muted);
}

.site-footer a {
  font-weight: 800;
  color: var(--green);
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(23, 34, 31, 0.1);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .intro,
  .split,
  .restaurant-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .package-grid,
  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-band article:last-child {
    border-bottom: 0;
  }

  .package-card {
    min-height: auto;
  }

  .restaurant-panel,
  .contact {
    padding: 32px 22px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 22, 19, 0.92), rgba(8, 22, 19, 0.58)),
      linear-gradient(0deg, rgba(8, 22, 19, 0.78), rgba(8, 22, 19, 0.12) 46%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .timeline li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .timeline span {
    width: 38px;
    height: 38px;
  }

  .site-footer {
    display: grid;
  }
}
