*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #22231A;
  --olive: #616044;
  --sage: #879571;
  --sage-deep: #6B7857;
  --stone-light: #EBE9E3;
  --white: #FFFFFF;
  --peach: #E89A6A;
  --peach-light: #F2B384;
  --warm-white: #FFFFFF;
  --ember: #E89A6A;
  --ember-light: #F2B384;
  --gold: #6B7857;
  --gold-pale: #879571;
  --cream: #D4D0CB;
  --muted: #7A7D6D;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--ink); color: var(--warm-white); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: linear-gradient(to bottom, rgba(34,35,26,0.95) 0%, rgba(34,35,26,0.85) 70%, rgba(34,35,26,0) 100%); backdrop-filter: blur(6px); transition: background 0.3s; }
.site-header.scrolled { background: rgba(34,35,26,0.97); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { padding: 1rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 1500px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; flex-shrink: 0; }
.brand-logo { max-height: 64px; width: auto; transition: opacity 0.25s; }
.brand:hover .brand-logo { opacity: 0.85; }
.brand-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 300; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-pale); white-space: nowrap; }
.primary-nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
.primary-nav a { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); text-decoration: none; transition: color 0.25s; position: relative; padding: 0.4rem 0; }
.primary-nav a:hover { color: var(--ember-light); }
.primary-nav a.current { color: var(--ember-light); }
.primary-nav a.current::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ember); }
.header-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
.header-phone { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-pale); text-decoration: none; transition: color 0.25s; }
.header-phone:hover { color: var(--ember-light); }
.header-cta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: var(--ember); text-decoration: none; padding: 0.7rem 1.5rem; border-radius: 2px; transition: background 0.3s, transform 0.2s; }
.header-cta:hover { background: var(--ember-light); transform: translateY(-1px); }
.nav-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.18); width: 44px; height: 44px; border-radius: 2px; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: border-color 0.25s; }
.nav-toggle:hover { border-color: var(--ember); }
.nav-toggle span { width: 18px; height: 1.5px; background: var(--gold-pale); transition: transform 0.3s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; background: rgba(34,35,26,0.98); backdrop-filter: blur(10px); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.35s; padding: 6rem 2rem 3rem; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.mobile-menu a { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--warm-white); text-decoration: none; transition: color 0.25s; }
.mobile-menu a:hover { color: var(--gold-pale); }
.mobile-menu .mm-cta { background: var(--ember); color: #fff; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 1rem 2.5rem; border-radius: 2px; }
.mobile-menu .mm-phone { font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-pale); }
.mobile-menu .mm-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.15); }

/* HERO */
.hero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; padding: 0; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(to bottom, rgba(34,35,26,0.5) 0%, rgba(34,35,26,0.15) 35%, rgba(34,35,26,0.8) 80%, rgba(34,35,26,0.97) 100%),
  radial-gradient(ellipse at 70% 30%, rgba(232,154,106,0.18), transparent 55%);
}
.hero-content { position: relative; z-index: 2; padding: 0 6rem 5rem; max-width: 960px; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ember-light); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 1rem; }
.eyebrow::before { content: ''; display: block; width: 2.5rem; height: 1px; background: var(--ember); }
.hero-headline { font-family: var(--serif); font-size: clamp(2.75rem, 5.5vw, 5rem); font-weight: 300; line-height: 1.08; color: var(--warm-white); margin-bottom: 1.25rem; }
.hero-headline em { font-style: italic; color: var(--gold-pale); }
.hero-sub { font-size: 1.05rem; color: var(--cream); font-weight: 300; max-width: 600px; line-height: 1.75; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.spectrum-strip { height: 3px; background: linear-gradient(to right, #7b2fff 0%, #4466ff 14%, #00aaff 28%, #00cc88 42%, #aadd00 56%, #ffcc00 70%, #ff6600 84%, #cc1111 100%); }

section { padding: 6rem; }
.section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 300; line-height: 1.2; color: var(--warm-white); margin-bottom: 1.25rem; }
.section-title em { font-style: italic; color: var(--gold-pale); }
.section-body { font-size: 0.975rem; color: var(--cream); font-weight: 300; max-width: 600px; line-height: 1.85; }

.btn-primary { display: inline-block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; background: var(--ember); color: #fff; text-decoration: none; padding: 0.95rem 2.3rem; border-radius: 2px; transition: background 0.25s, transform 0.2s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--ember-light); transform: translateY(-1px); }
.btn-outline { display: inline-block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-pale); background: transparent; text-decoration: none; padding: 0.95rem 2rem; border: 1px solid rgba(135,149,113,0.4); border-radius: 2px; transition: border-color 0.25s, color 0.25s, background 0.25s; }
.btn-outline:hover { border-color: var(--gold-pale); color: var(--warm-white); background: rgba(135,149,113,0.05); }

/* AMENITIES */
.amenities { background: var(--stone-light); color: var(--ink); }
.amenities-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.amenities .section-label { color: var(--olive); }
.amenities .section-title { color: var(--ink); }
.amenities .section-title em { color: var(--sage-deep); }
.amenities .section-body { color: var(--olive); margin-left: auto; margin-right: auto; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.am-card { background: var(--white); border: 1px solid rgba(34,35,26,0.07); border-radius: 2px; padding: 1.75rem 1.25rem; text-align: center; transition: transform 0.3s, border-color 0.3s; }
.am-card:hover { transform: translateY(-3px); border-color: var(--peach); }
.am-icon { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--peach); }
.am-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.am-name { font-size: 0.85rem; letter-spacing: 0.04em; color: var(--ink); }

/* SCHEDULE */
.schedule { background: var(--ink); }
.schedule-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.schedule-head .section-body { margin-left: auto; margin-right: auto; }
.schedule-table-wrap { max-width: 1100px; margin: 0 auto; overflow-x: auto; }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 0.85rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.schedule-table td { padding: 1.35rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; color: var(--cream); vertical-align: middle; }
.schedule-table tbody tr { transition: background 0.25s; }
.schedule-table tbody tr:hover { background: rgba(232,154,106,0.05); }
.schedule-table td:nth-child(1) { font-family: var(--serif); font-size: 1.15rem; color: var(--warm-white); }
.schedule-table td:nth-child(2) { color: var(--ember-light); letter-spacing: 0.04em; white-space: nowrap; }
.schedule-table td:nth-child(3) { color: var(--warm-white); font-weight: 400; }
.schedule-table td:nth-child(4) { color: var(--gold-pale); font-size: 0.88rem; }
.schedule-cards { display: none; }

/* EXPERIENCE HIGHLIGHTS */
.exp-highlights { background: #1d1e16; text-align: center; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 3.5rem auto 0; text-align: left; }
.exp-card { background: #2a2b22; border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; transition: transform 0.3s, border-color 0.3s; }
.exp-card:hover { transform: translateY(-4px); border-color: rgba(232,154,106,0.35); }
.exp-img { aspect-ratio: 16/10; overflow: hidden; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.exp-card:hover .exp-img img { transform: scale(1.04); }
.exp-body { padding: 1.5rem 1.75rem 1.75rem; }
.exp-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--warm-white); margin-bottom: 0.5rem; }
.exp-body p { font-size: 0.88rem; color: var(--cream); font-weight: 300; line-height: 1.75; }

/* RESERVE */
.reserve { background: #1a1b13; display: grid; grid-template-columns: 1.05fr 1fr; gap: 5rem; align-items: start; }
.reserve-info { display: flex; flex-direction: column; gap: 2rem; min-width: 0; }
.info-block { padding-bottom: 1.75rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.info-block:last-child { border-bottom: none; }
.info-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.info-text { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: var(--warm-white); line-height: 1.4; margin-bottom: 0.5rem; }
.info-text a { color: inherit; text-decoration: none; transition: color 0.25s; }
.info-text a:hover { color: var(--ember-light); }
.info-meta { font-size: 0.85rem; color: var(--muted); }

.form-card { background: #2a2b22; border: 1px solid rgba(255,255,255,0.07); border-radius: 2px; padding: 3rem; min-width: 0; overflow: visible; }
.form-card h2 { font-family: var(--serif); font-size: 1.85rem; font-weight: 300; color: var(--warm-white); line-height: 1.2; margin-bottom: 0.5rem; }
.form-card h2 em { font-style: italic; color: var(--gold-pale); }
.form-card .lead { font-size: 0.92rem; color: var(--cream); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
#experience-form { display: block; width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; width: 100%; }
.form-field label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--warm-white);
  padding: 0.85rem 1rem;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.5;
  min-height: 48px;
  transition: border-color 0.25s, background 0.25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--ember); background: rgba(255,255,255,0.06); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255,255,255,0.04);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23E89A6A' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field select option { background: #2a2b22; color: var(--warm-white); }
.form-field input[type="date"] { color-scheme: dark; }
.form-card .btn-primary { display: inline-block; margin-top: 0.75rem; width: 100%; text-align: center; }

/* CTA */
.cta-block { background: linear-gradient(135deg, #2e3023 0%, #22231A 60%); text-align: center; padding: 7rem 6rem; border-top: 1px solid rgba(232,154,106,0.15); position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 60%; height: 100%; background: radial-gradient(ellipse, rgba(232,154,106,0.12), transparent 70%); pointer-events: none; }
.cta-actions { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* FOOTER */
.site-footer { background: #16170f; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 5rem; }
.footer-inner { max-width: 1500px; margin: 0 auto; padding: 0 6rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 4rem; }
.footer-brand .footer-logo { max-height: 110px; width: auto; margin-bottom: 1.5rem; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold-pale); margin-bottom: 1.5rem; line-height: 1.4; }
.footer-address { font-size: 0.88rem; color: var(--cream); line-height: 1.75; margin-bottom: 1rem; }
.footer-contact { font-size: 0.88rem; color: var(--cream); line-height: 1.9; }
.footer-contact a { color: var(--cream); text-decoration: none; transition: color 0.25s; }
.footer-contact a:hover { color: var(--ember-light); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--cream); transition: border-color 0.25s, color 0.25s, background 0.25s; }
.footer-social a:hover { border-color: var(--ember); color: var(--ember-light); background: rgba(232,154,106,0.08); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 { font-family: var(--serif); font-size: 0.85rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: var(--cream); text-decoration: none; transition: color 0.25s; }
.footer-col a:hover { color: var(--ember-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.75rem 6rem; max-width: 1500px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--cream); }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { opacity: 0; animation: fadeUp 0.9s ease forwards; }
.hero-content .eyebrow { animation-delay: 0.2s; }
.hero-content .hero-headline { animation-delay: 0.4s; }
.hero-content .hero-sub { animation-delay: 0.6s; }
.hero-content .hero-actions { animation-delay: 0.8s; }

@media (max-width: 1100px) {
  .primary-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; }
  .reserve { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 0 3rem 4rem; }
  .footer-bottom { padding: 1.75rem 3rem; }
}
@media (max-width: 900px) {
  section { padding: 4rem 2rem; }
  .header-inner { padding: 0.85rem 1.5rem; }
  .hero-content { padding: 0 2rem 4rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .schedule-table-wrap { display: none; }
  .schedule-cards { display: grid; gap: 1rem; max-width: 640px; margin: 0 auto; }
  .schedule-card { background: #2a2b22; border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; padding: 1.5rem; }
  .sc-day { font-family: var(--serif); font-size: 1.2rem; color: var(--warm-white); margin-bottom: 0.25rem; }
  .sc-time { font-size: 0.85rem; color: var(--ember-light); margin-bottom: 0.75rem; letter-spacing: 0.06em; }
  .sc-name { font-size: 1rem; color: var(--warm-white); margin-bottom: 0.4rem; line-height: 1.4; }
  .sc-loc { font-size: 0.82rem; color: var(--gold-pale); }
  .form-card { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-block { padding: 4rem 2rem; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 2rem 3rem; gap: 2.5rem; }
  .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; align-items: flex-start; }
  .brand-name { display: none; }
}