:root {
  --paper: #f3eee6;
  --paper-2: #ebe4d8;
  --cream: #faf7f1;
  --ink: #1c1814;
  --ink-soft: #5a5248;
  --muted: #7a7166;
  --line: rgba(28, 24, 20, 0.12);
  --gold: #8d6e45;
  --gold-2: #c4a574;
  --terra: #7d3b2d;
  --deep: #161311;
  --white: #fffcf8;
  --ok: #2d5a45;
  --shadow: 0 20px 50px rgba(28, 24, 20, 0.08);
  --radius: 18px;
  --max: 1180px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; letter-spacing: -0.02em; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 230, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}
.logo span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

nav.desk {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14.5px;
  font-weight: 500;
}
nav.desk a { color: var(--ink-soft); }
nav.desk a:hover,
nav.desk a.active { color: var(--ink); }

.lang {
  display: flex;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.lang a.active { color: var(--ink); font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 20px;
  border-radius: 999px;
  transition: 0.2s ease;
}
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--terra); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-gold { background: var(--terra); color: #fff; }
.btn-gold:hover { background: #5f2b21; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 8px 20px 22px;
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 500; }

/* Hero */
.hero {
  position: relative;
  min-height: min(86vh, 820px);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,19,17,0.15) 0%, rgba(22,19,17,0.55) 55%, rgba(22,19,17,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
  max-width: 16ch;
  margin: 14px 0 20px;
}
.hero p.lead {
  max-width: 46ch;
  color: rgba(250, 247, 241, 0.86);
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(250,247,241,0.72);
}
.hero-meta strong { display: block; color: #fff; font-size: 15px; letter-spacing: 0; margin-bottom: 2px; }

/* Sections */
section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin: 8px 0 14px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 30px; margin: 8px 0 10px; }
.card p { color: var(--ink-soft); }
.card a.more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terra);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
}
.checklist { list-style: none; margin-top: 18px; }
.checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--gold);
}

.band {
  background: var(--deep);
  color: var(--cream);
}
.band .card { background: transparent; border-color: rgba(255,255,255,0.1); box-shadow: none; color: inherit; }
.band .card p { color: rgba(250,247,241,0.72); }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { padding: 8px 8px 0 0; }
.step .num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold-2);
  line-height: 1;
}
.step h3 { font-size: 26px; margin: 8px 0; }

.cta-box {
  background: var(--ink);
  color: var(--cream);
  border-radius: 28px;
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-box h2 { font-size: 42px; line-height: 1.05; max-width: 16ch; }

/* Page hero */
.page-hero {
  padding: 72px 0 36px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(40px, 5.5vw, 68px); line-height: 0.98; max-width: 16ch; }
.page-hero p { max-width: 58ch; color: var(--ink-soft); margin-top: 16px; }

.prose { max-width: 760px; }
.prose h2 { font-size: 36px; margin: 36px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose ul { margin: 0 0 18px 18px; color: var(--ink-soft); }

/* Form */
form.contact {
  display: grid;
  gap: 14px;
  background: var(--cream);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
}
label { font-size: 13px; font-weight: 600; }
input, select, textarea {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.note { font-size: 13px; color: var(--muted); }
.success { display: none; padding: 16px; background: #e7f0ea; color: var(--ok); border-radius: 12px; }
.error { display: none; padding: 16px; background: #f6e6e3; color: var(--terra); border-radius: 12px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.map {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 22px;
  filter: grayscale(0.25) contrast(1.05);
}

.contact-aside .item { margin-bottom: 22px; }
.contact-aside h3 { font-size: 24px; margin-bottom: 6px; }

/* Footer */
footer {
  background: var(--deep);
  color: rgba(250,247,241,0.78);
  padding: 56px 0 28px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
footer a:hover { color: #fff; }
footer strong { color: #fff; }
.logo-foot { font-family: var(--serif); font-size: 30px; color: #fff; display: block; margin-bottom: 8px; }
.legal-row {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(250,247,241,0.5);
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: #128c7e;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(18,140,126,0.35);
}
.wa svg { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 900px) {
  nav.desk, .header-inner .btn, .lang.desk { display: none; }
  .menu-toggle { display: block; }
  .grid-3, .process, .split, .foot-grid, .form-row { grid-template-columns: 1fr; }
  .split img { height: 340px; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 78vh; }
}
