:root {
  --ink: #1c1917;
  --forest: #1f4a3c;
  --forest-2: #16362d;
  --cream: #f6f1e8;
  --paper: #fffbf5;
  --clay: #c45c26;
  --clay-dark: #9a3f14;
  --mist: #d7e2dc;
  --line: #e6dccf;
  --muted: #6b6258;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

a { color: var(--forest); }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand svg { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 550;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.btn-clay {
  background: var(--clay);
  color: #fff;
}

.btn-clay:hover { background: var(--clay-dark); }

.btn-forest {
  background: var(--forest);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--mist);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 4rem;
}

.kicker {
  color: var(--clay-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3 { font-family: var(--serif); letter-spacing: -0.03em; line-height: 1.15; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 0.35rem 0 1rem; font-weight: 560; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 0.8rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.4rem; }

.lede { font-size: 1.2rem; color: var(--muted); max-width: 38rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }

.hero-card {
  background: var(--forest-2);
  color: #f3efe6;
  border-radius: 28px;
  padding: 1.6rem;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(22, 54, 45, 0.25);
}

.room {
  position: absolute;
  inset: 18% 14% 16%;
  border: 1px dashed rgba(243, 239, 230, 0.25);
  border-radius: 18px;
}

.dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e8b086;
  box-shadow: 0 0 0 12px rgba(232, 176, 134, 0.18);
  animation: pulse 2.8s ease-in-out infinite;
}

.dot.a { top: 28%; left: 30%; }
.dot.b { top: 48%; left: 62%; animation-delay: 0.8s; }
.chip {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
}

@keyframes pulse {
  50% { transform: scale(1.15); box-shadow: 0 0 0 22px rgba(232, 176, 134, 0.05); }
}

.section { padding: 4rem 0; }
.section.alt { background: var(--paper); }

.grid-3, .grid-2 {
  display: grid;
  gap: 1.1rem;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.3rem 1.25rem;
}

.section.alt .card { background: #fff; }

.card p { margin: 0; color: var(--muted); }

.not-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price strong {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 560;
}

form.contact {
  display: grid;
  gap: 0.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem;
}

label { font-size: 0.86rem; font-weight: 650; }

input, textarea, select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

textarea { min-height: 120px; resize: vertical; }

.ok {
  background: #e7f3ea;
  color: var(--forest-2);
  padding: 0.8rem 1rem;
  border-radius: 12px;
}

.err {
  background: #fdece6;
  color: #7a2e12;
  padding: 0.8rem 1rem;
  border-radius: 12px;
}

.site-footer {
  background: var(--forest-2);
  color: #efe8dc;
  padding: 2.2rem 0;
  font-size: 0.95rem;
}

.site-footer a { color: #f3c7a8; }

.foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
}

@media (max-width: 860px) {
  .hero, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.2rem 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero-card { min-height: 280px; }
}
