:root {
  --warm-white: #f4efe8;
  --surface: #fffaf4;
  --surface-2: #ede5db;
  --espresso: #0e0f10;
  --near-black: #070809;
  --charcoal: #1a1d1f;
  --charcoal-2: #24282b;
  --teal: #2a8c87;
  --deep-teal: #175e5a;
  --copper: #b96a3d;
  --soft-copper: #d39a73;
  --divider: #d9d2c7;
  --wine: #6f1d35;
  --deep-wine: #43111f;
  --gold: #c9a35a;
  --shadow: 0 24px 70px rgba(14, 15, 16, 0.10);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--espresso);
  background: var(--warm-white);
  line-height: 1.55;
}

body.menu-open { overflow: hidden; }

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

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

p { color: rgba(26, 29, 31, 0.78); font-size: 1.03rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--copper));
  border-radius: 999px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 232, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 210, 199, 0.72);
}

.navbar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.18rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 163, 90, 0.95), transparent 34%),
    linear-gradient(135deg, var(--deep-wine), var(--wine) 50%, var(--teal));
  box-shadow: 0 12px 30px rgba(67, 17, 31, 0.22);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 12px 17px;
  border-left: 2px solid rgba(255, 250, 244, 0.85);
  border-right: 2px solid rgba(255, 250, 244, 0.55);
  transform: skewX(-12deg);
}

.brand small {
  display: block;
  color: rgba(26, 29, 31, 0.55);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(26, 29, 31, 0.76);
  font-weight: 750;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--wine);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(14, 15, 16, 0.08);
}

.mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--espresso);
  margin: 4px auto;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 78px 0 auto 0;
  background: rgba(244, 239, 232, 0.98);
  border-bottom: 1px solid var(--divider);
  box-shadow: var(--shadow);
  padding: 20px;
}

.mobile-panel a {
  display: block;
  padding: 15px 0;
  color: var(--charcoal);
  font-weight: 850;
  border-bottom: 1px solid rgba(217, 210, 199, 0.8);
}

.mobile-panel .btn { margin-top: 18px; display: inline-flex; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 850;
  font-size: 0.93rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--deep-wine), var(--wine));
  box-shadow: 0 18px 42px rgba(111, 29, 53, 0.24);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--divider);
  color: var(--espresso);
}

.btn-teal {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--deep-teal), var(--teal));
  box-shadow: 0 18px 42px rgba(42, 140, 135, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 29, 53, 0.17), transparent 68%);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--near-black);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: .92;
  letter-spacing: -0.065em;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--wine);
}

.hero .lead,
.page-hero .lead {
  margin: 24px 0 0;
  max-width: 690px;
  color: rgba(26, 29, 31, 0.76);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, var(--surface), #f7f0e8);
  border: 1px solid rgba(217, 210, 199, 0.9);
  border-radius: 38px;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 12%, rgba(201, 163, 90, 0.22), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(42, 140, 135, 0.14), transparent 34%);
  pointer-events: none;
}

.visual-frame {
  min-height: 520px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(7, 8, 9, 0.04), rgba(7, 8, 9, 0.22)),
    radial-gradient(circle at 34% 26%, rgba(255, 250, 244, .92), transparent 9%),
    radial-gradient(circle at 66% 36%, rgba(255, 250, 244, .65), transparent 7%),
    linear-gradient(135deg, #261017, #6f1d35 42%, #175e5a 100%);
  position: relative;
  overflow: hidden;
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.18);
  border: 1px solid rgba(255, 250, 244, 0.22);
}

.visual-frame::before {
  width: 78%;
  height: 48%;
  left: 11%;
  top: 28%;
  transform: rotate(-7deg);
}

.visual-frame::after {
  width: 54%;
  height: 18%;
  right: -8%;
  bottom: 10%;
  transform: rotate(-12deg);
}

.reservation-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(7, 8, 9, 0.24);
}

.reservation-card strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.signal-row span {
  display: block;
  padding: 12px;
  border-radius: 16px;
  background: rgba(244, 239, 232, 0.95);
  color: rgba(26, 29, 31, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.section {
  padding: 84px 0;
}

.section-tight { padding: 54px 0; }

.section-title {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-title h2,
.split-content h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-title p,
.split-content p {
  margin-top: 18px;
  max-width: 720px;
}

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

.card,
.feature-card,
.price-card {
  background: var(--surface);
  border: 1px solid rgba(217, 210, 199, 0.9);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 48px rgba(14, 15, 16, 0.06);
}

.card .icon,
.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--surface);
  background: linear-gradient(135deg, var(--wine), var(--copper));
  font-weight: 950;
}

.card h3,
.feature-card h3,
.price-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

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

.band {
  background: linear-gradient(135deg, var(--deep-wine), #2a141b 58%, var(--deep-teal));
  color: var(--surface);
  padding: 74px 0;
}

.band p { color: rgba(255, 250, 244, 0.76); }

.band .eyebrow { color: var(--soft-copper); }

.band .eyebrow::before { background: var(--gold); }

.band-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric {
  background: rgba(255, 250, 244, 0.10);
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 24px;
  padding: 22px;
}

.metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 250, 244, 0.74);
  font-weight: 750;
}

.page-hero {
  padding: 78px 0 46px;
  border-bottom: 1px solid rgba(217, 210, 199, 0.74);
}

.page-hero-inner {
  max-width: 920px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.panel {
  background: var(--surface);
  border: 1px solid rgba(217, 210, 199, 0.9);
  border-radius: 36px;
  padding: 36px;
  box-shadow: var(--shadow);
}

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

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(26, 29, 31, 0.78);
  font-weight: 650;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 5px rgba(111, 29, 53, 0.12);
  margin-top: 8px;
  flex: 0 0 auto;
}

.timeline {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(217, 210, 199, 0.9);
  border-radius: 26px;
  background: var(--surface);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--surface);
  background: linear-gradient(135deg, var(--deep-wine), var(--wine));
  font-weight: 950;
}

.step h3 { margin: 0 0 6px; }
.step p { margin: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card.featured {
  border-color: rgba(111, 29, 53, 0.35);
  box-shadow: 0 28px 80px rgba(111, 29, 53, 0.14);
  transform: translateY(-8px);
}

.price {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
  margin: 20px 0 8px;
}

.price span {
  font-size: 0.95rem;
  color: rgba(26, 29, 31, 0.58);
  letter-spacing: 0;
}

.form-card {
  background: var(--surface);
  border: 1px solid rgba(217, 210, 199, 0.9);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field { display: grid; gap: 7px; }

.field.full { grid-column: 1 / -1; }

label {
  color: rgba(26, 29, 31, 0.74);
  font-size: 0.84rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--divider);
  background: #fffdfa;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--espresso);
  font: inherit;
}

textarea { min-height: 130px; resize: vertical; }

.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface), #f8f0e8);
  border: 1px solid rgba(217, 210, 199, 0.95);
  border-radius: 38px;
  padding: 46px;
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 29, 53, 0.16), transparent 66%);
}

.cta-panel p { max-width: 720px; }

.site-footer {
  border-top: 1px solid rgba(217, 210, 199, 0.88);
  background: #eee7de;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 30px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(26, 29, 31, .58);
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  color: rgba(26, 29, 31, 0.72);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 210, 199, 0.9);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(26, 29, 31, 0.58);
  font-size: .9rem;
}

.kicker {
  color: var(--wine);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .mobile-panel.open { display: block; }
  .hero-grid,
  .split-grid,
  .band-grid { grid-template-columns: 1fr; }
  .cards,
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container,
  .navbar { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 56px; }
  .hero h1,
  .page-hero h1 { font-size: clamp(2.55rem, 15vw, 4.2rem); }
  .visual-frame { min-height: 430px; }
  .signal-row { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .panel,
  .cta-panel,
  .form-card { padding: 24px; border-radius: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
