:root {
  --ink: #1c1915;
  --muted: #5c564c;
  --paper: #f6f1e8;
  --cream: #fbf8f2;
  --white: #fffcf7;
  --cedar: #8b5a2b;
  --cedar-deep: #6e4220;
  --forest: #24352b;
  --forest-soft: #2f4638;
  --line: #e4d9c8;
  --gold: #c4a574;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251,248,242,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.15; }
.brand strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; letter-spacing: .02em; }
.brand span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 22px; font-size: .92rem; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--forest); color: var(--white) !important;
  padding: 8px 14px; border-radius: 999px; text-decoration: none; font-size: .88rem;
}

.hero { padding: 28px 0 10px; }
.hero-grid {
  display: grid; grid-template-columns: 1.35fr .85fr; gap: 28px; align-items: center;
}
.hero img { width: 100%; height: 460px; object-fit: cover; border-radius: 18px; }
.kicker {
  letter-spacing: .18em; text-transform: uppercase; font-size: .72rem;
  color: var(--cedar); margin-bottom: 10px;
}
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1.05; margin-bottom: 12px; }
.lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 18px; }
.price { font-size: 2rem; font-family: "Cormorant Garamond", Georgia, serif; margin: 8px 0 18px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pill {
  border: 1px solid var(--line); background: var(--white);
  padding: 6px 12px; border-radius: 999px; font-size: .86rem;
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-block; text-decoration: none; border-radius: 999px;
  padding: 12px 18px; font-size: .95rem;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-ghost { border: 1px solid var(--ink); }

.specs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin: 28px 0 10px;
}
.spec {
  background: var(--white); border: 1px solid var(--line);
  padding: 16px; border-radius: 14px;
}
.spec b { display: block; font-size: 1.35rem; font-family: "Cormorant Garamond", Georgia, serif; }
.spec span { color: var(--muted); font-size: .85rem; }

section { padding: 54px 0; }
.section-title { font-size: 2.2rem; margin-bottom: 8px; }
.section-sub { color: var(--muted); margin-bottom: 24px; max-width: 62ch; }

.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 10px;
}
.gallery a:first-child { grid-row: 1 / span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 22px;
}
.card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.card p + p, .card ul { margin-top: 10px; }
ul { padding-left: 18px; color: var(--muted); }
.hold { background: var(--forest); color: var(--paper); }
.hold h2, .hold p, .hold li { color: var(--paper); }
.hold li { color: #e8e0d2; }

form { display: grid; gap: 10px; }
label { font-size: .82rem; color: var(--muted); }
input, textarea {
  width: 100%; border: 1px solid var(--line); background: var(--cream);
  padding: 11px 12px; border-radius: 10px; font: inherit;
}
button {
  border: 0; cursor: pointer; background: var(--forest); color: var(--white);
  padding: 12px 16px; border-radius: 999px; font: inherit;
}
button:disabled { opacity: .65; cursor: not-allowed; }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.captcha { margin: 4px 0 2px; min-height: 65px; }
.status-ok { color: #2f4638; font-weight: 600; }
.status-err { color: #8b2e1f; font-weight: 600; }

.fine { font-size: .82rem; color: var(--muted); }
footer {
  border-top: 1px solid var(--line); padding: 28px 0 40px;
  color: var(--muted); font-size: .88rem;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero-grid, .two, .specs, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-rows: none; }
  .gallery a:first-child { grid-row: auto; }
  .hero img, .gallery img { height: 240px; }
  .nav-links { display: none; }
}
