:root {
  --forest: #123b28;
  --forest-soft: #486654;
  --ink: #1e2d24;
  --ink-soft: #516259;
  --ivory: #f7f3e8;
  --sand: #efe8d5;
  --gold: #c7a85e;
  --gold-deep: #b59243;
  --white: #ffffff;
  --line: rgba(18, 59, 40, 0.12);
  --shadow: 0 24px 70px rgba(17, 45, 31, 0.09);
  --radius: 28px;
  --radius-sm: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199, 168, 94, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(247,243,232,0.98), rgba(243,238,226,1));
  font-family: "Manrope", system-ui, sans-serif;
}
body.demo-locked {
  height: 100vh;
  overflow: hidden;
}
body.demo-locked > :not(.demo-gate) {
  visibility: hidden;
}
body.demo-unlocked > :not(.demo-gate) {
  visibility: visible;
}
.demo-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(circle at top left, rgba(199,168,94,0.16), transparent 24%), rgba(7, 23, 16, 0.82);
  backdrop-filter: blur(16px);
}
body.demo-locked .demo-gate {
  display: flex;
}
.demo-gate-card {
  width: min(32rem, 100%);
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,243,232,0.96));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}
.demo-gate-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.demo-gate-brand img {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: white;
  padding: 0.35rem;
  box-shadow: 0 18px 32px rgba(17,45,31,0.12);
}
.demo-gate-card h2 {
  margin-top: 1.2rem;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  color: var(--forest);
}
.demo-gate-card p {
  margin-top: 0.95rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.demo-gate-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
}
.demo-gate-input {
  width: 100%;
  height: 3.45rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(18,59,40,0.12);
  background: white;
  padding: 0 1rem;
  color: var(--forest);
  box-shadow: 0 12px 28px rgba(17,45,31,0.05);
}
.demo-gate-error {
  min-height: 1.4rem;
  font-size: 0.95rem;
  color: #8b1e1e;
}
.demo-gate-note {
  font-size: 0.92rem;
  color: var(--forest-soft);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, select, textarea, button { font: inherit; }
button { border: 0; }
.container { width: min(1280px, calc(100% - 2rem)); margin: 0 auto; }
.display, h1, h2, h3, h4 { font-family: "Cormorant Garamond", Georgia, serif; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; text-wrap: pretty; }
main { min-height: 60vh; }
.topbar {
  background: rgba(9, 28, 19, 0.94);
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.topbar .container,
.header > .container:not(.mobile-panel) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar .container { padding: 0.85rem 0; }
.topbar-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-announcement {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  padding: 0.42rem 0;
}
.topbar-marquee {
  display: inline-flex;
  gap: 3rem;
  min-width: max-content;
  padding-left: 100%;
  animation: monty-marquee 18s linear infinite;
}
.topbar-marquee span {
  color: #f6d98c;
  font-weight: 800;
}
@keyframes monty-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(9, 28, 19, 0.84);
  color: white;
  box-shadow: 0 12px 40px rgba(7, 19, 14, 0.25);
}
.header > .container:not(.mobile-panel) { padding: 1rem 0; }
.brand { display: inline-flex; align-items: center; gap: 1rem; }
.brand-mark {
  width: 74px; height: 74px; border-radius: 24px; background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 18px 30px rgba(0,0,0,0.18);
  display: grid; place-items: center; overflow: hidden;
}
.brand-mark img { width: 62px; height: 62px; object-fit: contain; }
.brand-title { font-size: 2rem; color: white; }
.brand-subtitle { font-size: 0.82rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 1rem;
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  color: rgba(255,255,255,0.82);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav a:hover, .nav a.active { background: rgba(199,168,94,0.18); color: white; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.8rem; flex: 0 0 auto; }
.mobile-toggle {
  display: none; width: 48px; height: 48px; border-radius: 999px; background: rgba(255,255,255,0.08);
  color: white; border: 1px solid rgba(255,255,255,0.15); cursor: pointer; align-items: center; justify-content: center;
}
.mobile-panel {
  display: none;
  width: 100%;
  padding: 0 0 1rem;
}
.mobile-panel.open {
  display: block;
}
.mobile-menu {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.08);
  padding: 0.75rem; border-radius: 28px; backdrop-filter: blur(16px);
}
.mobile-menu a { display: flex; align-items: center; min-height: 3rem; padding: 0.9rem 1rem; border-radius: 18px; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.82rem; line-height: 1.15; }
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(255,255,255,0.10); color: white; }
.button-primary, .button-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.4rem; border-radius: 999px; font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--forest);
  box-shadow: 0 18px 38px rgba(199,168,94,0.24);
}
.button-primary:hover, .button-secondary:hover { transform: translateY(-1px); }
.button-secondary {
  background: white; color: var(--forest); border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17,45,31,0.05);
}
.chrono-embed { display: grid; gap: 1rem; }
.chrono-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 0.35rem; }
.chrono-widget-shell { padding: 1.25rem; background: rgba(255,255,255,0.92); }
.chrono-widget-shell .chrono-bookingbutton { min-height: 72px; display: grid; align-items: center; }
.hero {
  position: relative; isolation: isolate; overflow: hidden; color: white; background: var(--forest); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { background-size: cover; background-position: center; }
.hero-overlay { background: radial-gradient(circle at top left, rgba(199,168,94,0.18), transparent 22%), linear-gradient(90deg, rgba(7,23,16,0.82), rgba(7,23,16,0.42)); }
.hero .container { position: relative; min-height: 31rem; display: grid; align-items: end; padding: 5rem 0 4rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.72rem; color: rgba(255,255,255,0.82);
}
.hero h1 { max-width: 14ch; font-size: clamp(3.25rem, 8vw, 6.1rem); line-height: 0.95; margin-top: 1.25rem; }
.hero p { max-width: 48rem; margin-top: 1.25rem; font-size: 1.08rem; line-height: 1.95; color: rgba(255,255,255,0.8); }
.section { padding: 5rem 0; }
.grid-2 { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 1.25rem; grid-template-columns: repeat(4, 1fr); }
.surface {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.72)), linear-gradient(120deg, rgba(199,168,94,0.08), rgba(18,59,40,0.02));
  box-shadow: var(--shadow); backdrop-filter: blur(18px); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.55);
}
.panel { padding: 2rem; }
.intro-label { color: var(--forest-soft); text-transform: uppercase; letter-spacing: 0.26em; font-size: 0.76rem; }
.intro-title { font-size: clamp(2.5rem, 4vw, 4rem); color: var(--forest); margin-top: 0.85rem; }
.intro-text { margin-top: 1rem; line-height: 1.95; color: var(--ink-soft); font-size: 1.03rem; }
.stats { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }
.stat-card { padding: 1.4rem; border-radius: 22px; background: rgba(255,255,255,0.65); }
.stat-label { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--forest-soft); }
.stat-value { margin-top: 0.5rem; font-size: 2rem; color: var(--forest); font-family: "Cormorant Garamond", Georgia, serif; }
.media-card { overflow: hidden; background: white; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(15,47,32,0.12); }
.media-card img { height: 24rem; width: 100%; object-fit: cover; }
.media-meta { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); padding: 1.5rem; }
.media-chip { background: var(--ivory); border-radius: 22px; padding: 1rem 1.15rem; }
.media-chip p:first-child { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--forest-soft); }
.media-chip p:last-child { margin-top: 0.45rem; font-size: 1.8rem; color: var(--forest); font-family: "Cormorant Garamond", Georgia, serif; }
.table-wrap { overflow: hidden; }
.table-title {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.02;
  color: var(--forest);
  margin-top: 0.35rem;
}
.table-wrap table { width: 100%; border-collapse: collapse; }
.table-wrap thead th {
  background: rgba(18,59,40,0.06); color: var(--forest); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; text-align: left;
}
.table-wrap th, .table-wrap td { padding: 1rem 1.1rem; border-bottom: 1px solid rgba(18,59,40,0.08); }
.table-wrap tbody tr:hover { background: rgba(247,243,232,0.75); }
.table-caption { color: #244735; line-height: 1.8; margin: 0.9rem 0 1.25rem; font-size: 1.03rem; font-weight: 600; }
.feature-list { display: grid; gap: 1rem; }
.feature-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-bullet {
  width: 2rem; height: 2rem; flex: 0 0 2rem; border-radius: 999px; display: grid; place-items: center;
  background: rgba(18,59,40,0.08); color: var(--forest); font-weight: 700;
}
.feature-item p { color: var(--ink-soft); line-height: 1.85; }
.plan-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); }
.plan-card { padding: 1.8rem; }
.plan-card.featured { background: linear-gradient(160deg, #143d2a, #0d2b1d); color: white; }
.plan-card .eyebrow-text { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--forest-soft); }
.plan-card.featured .eyebrow-text { color: rgba(255,255,255,0.65); }
.plan-card h3 { margin-top: 0.9rem; font-size: 2.25rem; }
.plan-price { margin-top: 1rem; font-size: 2rem; color: var(--forest); font-family: "Cormorant Garamond", Georgia, serif; }
.plan-card.featured .plan-price, .plan-card.featured h3 { color: white; }
.plan-highlight { margin-top: 0.9rem; color: var(--gold-deep); font-weight: 700; }
.plan-card.featured .plan-highlight { color: var(--gold); }
.plan-details { margin-top: 0.8rem; line-height: 1.85; color: var(--ink-soft); }
.plan-card.featured .plan-details { color: rgba(255,255,255,0.78); }
.booking-wrap {
  position: relative; z-index: 10; margin-top: 0; padding: 2.5rem 0 2rem;
}
.booking-card {
  overflow: hidden; border: 1px solid rgba(22,77,52,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,246,238,0.96));
  box-shadow: 0 35px 90px rgba(12,37,25,0.16); backdrop-filter: blur(18px);
  border-radius: 34px;
}
.booking-grid { display: grid; gap: 2rem; grid-template-columns: 0.92fr 1.08fr; padding: 2rem; }
.field-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); margin-top: 1.4rem; }
.field label { display: block; margin-bottom: 0.55rem; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--forest-soft); }
.field input, .field select, .field textarea {
  width: 100%; height: 3.35rem; border-radius: 1.2rem; border: 1px solid rgba(22,77,52,0.10); background: white;
  padding: 0 1rem; color: var(--forest); box-shadow: 0 12px 28px rgba(17,45,31,0.05);
}
.field textarea { min-height: 10rem; padding: 1rem; resize: vertical; }
.booking-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.suggestion-board {
  border-radius: 28px; background: linear-gradient(145deg, #123b28, #0d2b1d); color: white; padding: 1.8rem;
  box-shadow: 0 24px 50px rgba(8,26,18,0.24);
}
.suggestion-note { margin-top: 0.8rem; color: rgba(255,255,255,0.74); line-height: 1.8; }
.suggestions { display: grid; gap: 0.9rem; margin-top: 1.2rem; }
.slot { border-radius: 22px; border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.08); padding: 1rem; }
.slot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.slot-time { font-size: 2.3rem; line-height: 1; font-family: "Cormorant Garamond", Georgia, serif; }
.slot-label { margin-top: 0.4rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; }
.slot-group { border-radius: 999px; background: rgba(255,255,255,0.10); padding: 0.42rem 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.68rem; color: rgba(255,255,255,0.76); }
.slot-note { margin-top: 0.8rem; color: rgba(255,255,255,0.72); line-height: 1.8; font-size: 0.95rem; }
.accent-card {
  border-radius: 28px; border: 1px solid rgba(199,168,94,0.18); background: linear-gradient(160deg, #f7f3e8, #efe3c6); padding: 1.5rem;
  box-shadow: 0 18px 38px rgba(199,168,94,0.16);
}
.contact-card { padding: 2rem; }
.contact-list { display: grid; gap: 0.9rem; margin-top: 1rem; }
.contact-list a, .contact-list p { line-height: 1.85; color: var(--ink-soft); }
.footer {
  border-top: 1px solid rgba(22,77,52,0.14);
  background: linear-gradient(180deg, rgba(247,243,232,0.96), rgba(234,226,208,0.96));
  padding: 4rem 0;
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.15fr 0.85fr; }
.footer-brand {
  display: inline-flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.75); border: 1px solid rgba(22,77,52,0.12); padding: 0.9rem 1.1rem; border-radius: 999px;
  box-shadow: 0 18px 40px rgba(17,45,31,0.08);
}
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-copy { margin-top: 1.2rem; max-width: 44rem; line-height: 1.95; color: var(--ink-soft); }
.footer-nav { display: grid; gap: 0.75rem; margin-top: 1.2rem; }
.footer-nav a {
  display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.15rem; border-radius: 22px; background: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.82rem; color: var(--forest);
}
.footer-aside { display: grid; gap: 1.1rem; }
.notice { color: var(--ink-soft); line-height: 1.85; }
@media (max-width: 1080px) {
  .nav, .header-actions .button-primary { display: none; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .grid-2, .booking-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-3, .stats, .plan-grid, .media-meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 740px) {
  .container { width: min(100% - 1.2rem, 1280px); }
  .topbar-meta, .brand-copy { display: none; }
  .topbar-announcement { width: 100%; }
  .topbar-marquee { gap: 2rem; }
  .hero .container { min-height: 28rem; padding: 4rem 0 3.5rem; }
  .grid-3, .grid-4, .stats, .plan-grid, .field-grid, .media-meta { grid-template-columns: 1fr; }
  .booking-wrap { margin-top: 0; padding-top: 1.5rem; }
  .booking-grid, .panel, .contact-card { padding: 1.35rem; }
}
