:root {
  --forest: #1f3d2b;
  --forest-deep: #16301f;
  --moss: #3a5a40;
  --ember: #e07a3f;
  --ember-dark: #c8622b;
  --cream: #f6f1e7;
  --cream-2: #efe7d7;
  --ink: #21261f;
  --ink-soft: #4b5346;
  --line: #dcd2bf;
  --white: #fffdf8;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(31, 61, 43, 0.12);
  --shadow-sm: 0 4px 14px rgba(31, 61, 43, 0.10);
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name { font-family: "Fraunces", Georgia, serif; }

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

a { color: var(--ember-dark); text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 640px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--forest); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--forest); font-size: 1.25rem; }
.brand-mark { font-size: 1.1rem; }
.brand-logo { height: 30px; width: auto; display: block; }
.brand-dot { color: var(--ember); }

.nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--ink); font-weight: 500; font-size: .96rem; }
.nav-menu a:hover { color: var(--ember-dark); }
.nav-cta {
  background: var(--forest); color: #fff !important; padding: 9px 18px; border-radius: 999px;
}
.nav-cta:hover { background: var(--forest-deep); }

.lang-switch { display: flex; align-items: center; gap: 6px; color: var(--ink-soft); }
.lang-btn {
  background: none; border: none; cursor: pointer; font: inherit; font-weight: 600;
  color: var(--ink-soft); padding: 2px 4px; border-radius: 6px;
}
.lang-btn.is-active { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,48,31,.90) 0%, rgba(20,48,31,.62) 52%, rgba(20,48,31,.42) 100%),
    url("hero.jpg") center/cover no-repeat,
    var(--forest-deep);
}
.hero-logo {
  position: absolute; right: 7%; top: 50%; transform: translateY(-50%);
  height: 300px; width: auto; opacity: .95; pointer-events: none; z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 92px 22px 84px; max-width: 760px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 600;
  color: var(--cream-2); margin: 0 0 14px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin: 0 0 18px; font-weight: 600; }
.hero-lead { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: #efe7d7; max-width: 620px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 1rem; padding: 13px 26px;
  border-radius: 999px; cursor: pointer; border: 2px solid transparent; transition: .2s; text-align: center;
}
.btn-primary { background: var(--ember); color: #fff !important; border-color: var(--ember); }
.btn-primary:hover { background: var(--ember-dark); border-color: var(--ember-dark); }
.btn-ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--cream-2); }
.section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 600; margin: 0 0 8px; color: var(--forest); }
.section-lead { color: var(--ink-soft); margin: 0 0 28px; max-width: 620px; }

/* ---------- Prices ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 26px; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-dur { color: var(--ink-soft); font-weight: 500; margin-bottom: 8px; }
.price-amt { font-family: "Fraunces", serif; font-size: 2.1rem; font-weight: 700; color: var(--forest); }
.price-notes { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--ink-soft); }
.price-included { font-weight: 600; color: var(--moss); }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: none; margin: 26px 0 0; padding: 0; max-width: 720px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.steps li:last-child { border-bottom: none; }
.step-num {
  flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--forest); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: "Fraunces", serif;
}
.terms-line { margin-top: 26px; }
.terms-link {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white);
  border: 1px solid var(--line); padding: 12px 20px; border-radius: 999px; font-weight: 600; color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.terms-link:hover { border-color: var(--ember); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin-top: 26px;
}
.gallery-grid img {
  width: 100%; height: 260px; object-fit: cover; border-radius: 12px;
  display: block; box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .gallery-grid img { height: 220px; } }

/* ---------- Terms ---------- */
.terms-body { color: var(--ink); font-size: .98rem; }
.terms-body > ol { padding-left: 1.4em; margin: 0; }
.terms-body > ol > li { margin: 10px 0; padding-left: 4px; }
.terms-body ul { list-style: disc; padding-left: 1.3em; margin: 8px 0; }
.terms-body ol ol { padding-left: 1.3em; margin: 8px 0; }
.terms-body li { margin: 5px 0; }
.terms-end {
  font-family: "Fraunces", serif; font-weight: 600; color: var(--forest);
  font-size: 1.15rem; margin-top: 22px;
}

/* ---------- Embeds ---------- */
.embed-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; }
.embed-frame iframe { width: 100%; display: block; }
.calendar-frame iframe { height: 620px; }
.map-frame iframe { height: 420px; }

/* ---------- Booking form ---------- */
.booking-form { margin-top: 8px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(224,122,63,.18);
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 16px; font-weight: 500; min-height: 1.4em; }
.form-status.is-ok { color: var(--moss); }
.form-status.is-err { color: #b23b2e; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: var(--cream); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: "Fraunces", serif; font-size: 1.2rem; }
.footer-ig { display: inline-flex; align-items: center; gap: 8px; color: var(--cream); font-weight: 500; }
.footer-ig:hover { color: var(--ember); }
.footer-tag { color: #b9c4b2; margin: 0; letter-spacing: .04em; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 10px 22px 20px; transform: translateY(-140%); transition: transform .28s ease; box-shadow: var(--shadow);
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu li { padding: 6px 0; border-bottom: 1px solid var(--line); }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-cta { display: inline-block; text-align: center; }
  .lang-switch { padding-top: 10px; justify-content: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .calendar-frame iframe { height: 520px; }
  .section { padding: 56px 0; }
  .hero-inner { padding: 70px 22px 60px; }
}
@media (max-width: 420px) {
  .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-logo { height: 190px; right: 3%; opacity: .5; }
}
@media (max-width: 680px) {
  .hero-logo { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  list-style-position: outside;
}
.faq-item summary:hover { color: var(--forest, var(--ink)); }
.faq-item p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  max-width: 640px;
}
