:root {
  --ink: rgba(32, 28, 23, 0.94);
  --gold: rgba(255, 204, 113, 0.88);
  --gold-soft: rgba(255, 204, 113, 0.66);
  --cream: #f4ead6;
  --cream-soft: rgba(255, 237, 215, 0.82);
  --header: #1a1613;
  --header-bar: #2b2622;
  --dark: #14110f;
  --brown: #3b2a1c;
  --link: #7c4b1b;
  --sand: #b8b3b2;
  --muted: rgba(244, 234, 214, 0.62);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Literata, "PT Serif", "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  color: var(--ink);
  background: #efeae4;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header);
  color: var(--cream);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 86px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  font-family: "Roboto Condensed", "Din Condensed", sans-serif;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: normal;
  color: rgba(255, 204, 113, 0.66);
  white-space: nowrap;
}
.nav-primary {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-primary a {
  font-family: "Din Condensed", "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(235, 224, 211, 0.85);
  padding: 0 10px;
}
.nav-primary a:hover,
.nav-primary a.is-current { color: rgb(208, 176, 96); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 204, 113, 0.55);
  color: var(--gold);
  background: transparent;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: Literata, "PT Serif", serif;
  font-size: 21px;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: 0.2s ease;
}
.btn:hover { background: rgba(255, 204, 113, 0.12); }
.btn-solid {
  background: var(--cream);
  color: var(--header);
  border-color: var(--cream);
  font-weight: 800;
}
.btn-solid:hover { background: #fff6e4; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #111;
  color: var(--cream);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #111 center/cover no-repeat;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.28) 50%, rgba(0,0,0,.45));
}
.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}
.hero-slide.is-leave {
  opacity: 0;
  transform: translateX(-40px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  font-family: Literata, "PT Serif", serif;
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 80px);
  line-height: 1;
  letter-spacing: normal;
  color: rgba(231, 219, 200, 0.85);
}
.hero p {
  display: block;
  width: 100%;
  margin: 0;
  font-family: Literata, "PT Serif", serif;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(231, 219, 200, 0.85);
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.hero-dots button.on { background: #fff; }

.section { padding: 88px 24px; }
.section-narrow { max-width: 920px; margin: 0 auto; }
.section-wide { max-width: 1180px; margin: 0 auto; }
.section h2,
.page-hero h1,
.card h3,
.team-card h3,
.panel h2 {
  font-family: Literata, "PT Serif", serif;
  font-weight: 800;
  letter-spacing: 0.1px;
}
.section h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  margin: 0 0 20px;
}
.lede { font-size: 22px; line-height: 33px; font-weight: 400; }
.dark {
  background: var(--dark);
  color: var(--cream-soft);
}
.dark h2 { color: rgba(255, 237, 215, 0.71); }
.sand { background: #d7d1cc; color: var(--ink); }
.forest {
  color: var(--cream);
  background: #1c1916 center/cover no-repeat;
  position: relative;
}
.forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.58);
}
.forest > * { position: relative; z-index: 1; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.split img { width: 100%; height: 520px; object-fit: cover; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.card h3 {
  font-size: 34px;
  line-height: 48px;
  margin: 0 0 12px;
  color: rgb(87, 67, 49);
}
.dark .card h3 { color: var(--gold-soft); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.panel {
  background: rgba(20,16,12,.42);
  padding: 36px 32px;
  min-height: 280px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-row img,
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.reviews { overflow: hidden; }
.review {
  max-width: 820px;
  margin: 0 auto;
}
.review h3 { margin-bottom: 8px; }
.stars { color: #2e7d32; letter-spacing: 2px; margin-bottom: 16px; }
.review-nav { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.review-nav button {
  background: none;
  border: 0;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.team-card {
  min-height: 220px;
  padding: 24px 16px;
  background: rgba(0,0,0,.28);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.team-card h3 { margin: 0 0 6px; font-size: 24px; color: var(--cream); }
.team-card p { margin: 0; font-size: 14px; }

.faq details {
  border-bottom: 1px solid rgba(255,204,113,.18);
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 20px;
  color: var(--gold);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 12px 0 0; }

.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: #111 center/cover no-repeat;
  padding: 120px 24px 48px;
}
.page-hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  font-weight: 400;
  color: rgba(231, 219, 200, 0.85);
}

.form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,204,113,.35);
  background: rgba(255,255,255,.06);
  color: var(--cream);
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,237,215,.5); }
.notice {
  background: rgba(255,204,113,.16);
  border: 1px solid var(--gold-soft);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.site-footer {
  background: var(--header);
  color: var(--muted);
  padding: 28px 24px 40px;
  text-align: center;
}
.site-footer a { color: var(--cream-soft); }
.subscribe { padding: 64px 24px; text-align: center; }
.subscribe form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.subscribe input {
  min-width: 260px;
  padding: 12px 14px;
  border: 1px solid rgba(255,204,113,.4);
  background: transparent;
  color: var(--cream);
}

@media (max-width: 1200px) {
  .brand { font-size: 22px; line-height: 22px; }
  .nav-primary a { font-size: 16px; padding: 0 6px; }
}
@media (max-width: 980px) {
  .menu-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .nav-primary {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 86px;
    background: var(--header);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 16px;
  }
  .nav-primary.is-open { display: flex; }
  .split, .two-col, .cards, .team-grid, .gallery-row, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .split img { height: 320px; }
  .subscribe form { flex-direction: column; align-items: center; }
}
