:root {
  --bg: #f7f2e8;
  --bg-soft: #efe5d2;
  --paper: #fffdf8;
  --text: #1d1c19;
  --muted: #5f5a50;
  --brand: #6a7b4d;
  --brand-dark: #4d5d36;
  --line: rgba(29, 28, 25, 0.09);
  --form-border: rgba(15, 15, 14, 0.5);
  --shadow: 0 20px 60px rgba(31, 32, 26, 0.1);
  --shadow-md: 0 10px 30px rgba(31, 32, 26, 0.08);
  --shadow-lg: 0 30px 80px rgba(31, 32, 26, 0.15);
  --radius: 24px;
  --radius-lg: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {  
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}
.overflow-hidden { overflow: hidden; }
[x-cloak] { display: none !important; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 242, 232, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand img { height: 44px; }
.nav { display: flex; gap: 28px; }
.nav a { color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--brand); }

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  z-index: 100;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  background-color: #fffdf8 !important; 
  background: #fffdf8 !important;
  opacity: 1 !important;
  z-index: 999999 !important;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  backdrop-filter: none !important;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu a {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  text-decoration: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: .25s ease;
}
.btn-primary { background: var(--brand); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.hero {
  padding: 88px 0 44px;
  background:
    radial-gradient(circle at top left, rgba(106,123,77,.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(209,182,128,.18), transparent 25%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow, .section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(106,123,77,.12);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.section-tag.light {
  background: rgba(255,255,255,.12);
  color: #ecf0e6;
}
.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: .98;
  letter-spacing: -0.04em;
}
.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-points li {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}
.hero-visual {
  position: relative;
  min-height: 415px;
  border-radius: 36px;
  background: linear-gradient(140deg, #7f9062 0%, #d8c09b 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.hero-visual::before { width: 300px; height: 300px; top: -80px; right: -40px; }
.hero-visual::after { width: 220px; height: 220px; bottom: -70px; left: -60px; }
.glass-card {
  position: absolute;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 24px;
  color: white;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.glass-card.large {
  left: 36px;
  top: 44px;
  width: min(76%, 360px);
  padding: 28px;
}
.mini-label { margin: 0 0 10px; font-size: 12px; letter-spacing: .16em; opacity: .85; }
.glass-card h3 { margin: 0 0 10px; font-size: 32px; line-height: 1.05; }
.glass-card p { margin: 0; color: rgba(255,255,255,.92); }
.glass-card.small {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 18px;
}
.card-a { left: 36px; bottom: 44px; }
.card-b { right: 34px; top: 210px; }
.card-c { right: 54px; bottom: 80px; }

.stats { padding: 0 0 34px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(31,32,26,.05);
}
.stat-card strong { display: block; font-size: 28px; margin-bottom: 4px; }
.stat-card span { color: var(--muted); }

.section { padding: 84px 0; }
.section.alt { background: rgba(255,255,255,.42); }
.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
}
.two-col h2, .section-head h2, .cta-band h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.04; margin: 16px 0; letter-spacing: -0.03em; }
.two-col p, .section-head p { color: var(--muted); line-height: 1.8; font-size: 17px; }
.info-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.info-box h3 { margin-top: 0; margin-bottom: 18px; }
.info-item { padding: 14px 0; border-top: 1px solid var(--line); }
.info-item:first-of-type { border-top: 0; padding-top: 0; }
.info-item span { display: block; font-size: 14px; color: var(--muted); margin-bottom: 6px; }

.section-head { max-width: 780px; margin-bottom: 30px; }
.section-head.narrow { max-width: 640px; }
.cards-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card, .benefit {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(31,32,26,.05);
}
.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin: 24px 0;
  font-weight: 800;
}

.kez-engine-box {
  padding: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
}

@media (max-width: 980px) {
  .hero-title { font-size: 38px; }
  .kez-engine-box { padding: 40px 24px; }
  .about-hero { padding-top: 80px !important; }
}

.feature-card h3, .benefit h3 { margin-top: 0; margin-bottom: 12px; }
.feature-card p, .benefit p { color: var(--muted); line-height: 1.7; margin: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(106,123,77,.14);
  color: var(--brand-dark);
  font-weight: 800;
  margin-bottom: 18px;
}
.benefits-grid { grid-template-columns: repeat(4, 1fr); }

.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #49593b 0%, #7d8e5f 55%, #cab188 100%);
  color: white;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}
.cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.btn-light { background: white; color: var(--brand-dark); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.3); color: white; }

.site-footer {
  padding: 36px 0 50px;
  background: #f0e6d5;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 28px;
}
.footer-grid p { color: var(--muted); line-height: 1.8; margin: 8px 0; }
.footer-grid h4 { margin-bottom: 8px; }
.footer-logo { height: 44px; width: auto; }

@media (max-width: 980px) {
  .nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .site-header .btn-primary { display: none; } /* Hide reservation button on small header, move to mobile menu */
  
  .hero-grid, .two-col, .cta-grid, .footer-grid, .benefits-grid, .stats-grid, .cards-grid, .grid-3 {
    grid-template-columns: 1fr;
  }
  .hero-visual, .about-visual, .footer-logo { display: none; }
  .glass-card h3 { font-size: 26px; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero { padding-top: 56px; }
  .hero h1 { font-size: 42px; }
  .glass-card.large { width: calc(100% - 40px); left: 20px; top: 20px; }
  .card-a { left: 20px; bottom: 20px; }
  .card-b { right: 18px; top: auto; bottom: 120px; }
  .card-c { right: 18px; bottom: 20px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.pricing-card h3, .pricing-card h4 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.price {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand);
}

.currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.feat-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a7b4d' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}


@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card.popular {
  border-color: var(--brand);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Forms */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--form-border);
  background: #fcfbf7;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px rgba(106,123,77,0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235f5a50'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 48px;
}

