:root {
  --ink: #161311;
  --ink-soft: #2a241f;
  --cream: #f4efe6;
  --paper: #fbf8f2;
  --gold: #b8956c;
  --gold-deep: #9a754d;
  --mute: #7a6b5d;
  --line: rgba(22, 19, 17, 0.12);
  --white: #fffdf9;
  --shadow: 0 24px 60px rgba(22, 19, 17, 0.12);
  --radius: 2px;
  --header: 92px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}
.announce a { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(22,19,17,.04);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.18em;
}
.logo span {
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 6px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.nav a:hover, .nav a.is-active { color: var(--gold-deep); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 10px 16px;
  letter-spacing: 0.08em;
  font-size: 12px !important;
  text-transform: uppercase;
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span, .burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--ink);
}
.burger span { top: 20px; }
.burger::before { top: 14px; }
.burger::after { top: 26px; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: end start;
  color: var(--cream);
  overflow: hidden;
}
.hero-media, .hero-media img, .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img {
  animation: ken 18s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.ticker {
  overflow: hidden;
  margin-top: 48px;
  border-top: 1px solid rgba(244,239,230,.14);
  padding-top: 22px;
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,.7);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cookies .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,19,17,.72) 0%, rgba(22,19,17,.28) 52%, rgba(22,19,17,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 8vw 72px;
  max-width: 820px;
}
.kicker {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1, h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 84px);
  margin-bottom: 22px;
}
.lede {
  font-size: 18px;
  max-width: 52ch;
  color: rgba(244,239,230,.88);
  margin-bottom: 32px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  transition: .2s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #c9a87c; }
.btn-ghost { border-color: rgba(244,239,230,.5); color: var(--cream); }
.btn-ghost:hover { background: rgba(244,239,230,.1); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--ink-soft); }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--cream); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(34px, 4.5vw, 56px); margin: 8px 0 16px; }
.muted { color: var(--mute); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--paper);
  padding: 32px 28px;
}
.pillar h3 { font-size: 26px; margin-bottom: 10px; }
.pillar p { color: var(--mute); font-size: 15px; }

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process article {
  padding: 36px 28px;
  background: var(--cream);
  min-height: 280px;
}
.process .num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
}
.process h3 { font-size: 28px; margin: 18px 0 10px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }
.split img { width: 100%; height: 620px; object-fit: cover; }
.split h2 { font-size: clamp(32px, 4vw, 52px); margin: 10px 0 18px; }

.services {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}
.service {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(22,19,17,.78));
}
.service div { position: relative; z-index: 1; }
.service h3 { font-size: 34px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
}
.stats span { color: var(--mute); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }

.dark {
  background: var(--ink);
  color: var(--cream);
}
.dark .muted { color: rgba(244,239,230,.62); }
.dark .kicker { color: var(--gold); }

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

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--line);
}
.quote p { font-family: var(--serif); font-size: 24px; line-height: 1.35; margin-bottom: 18px; }
.quote span { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 28px;
}
.price.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.price h3 { font-size: 30px; margin-bottom: 8px; }
.price .from { font-family: var(--serif); font-size: 42px; margin: 18px 0; }
.price ul { margin: 18px 0 28px; }
.price li {
  padding: 8px 0 8px 18px;
  position: relative;
  font-size: 15px;
}
.price li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 16px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-family: var(--serif);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--mute); margin-top: 10px; max-width: 70ch; }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--line);
}
.form .full { grid-column: 1 / -1; }
.form label { display: grid; gap: 6px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); }
.form input, .form select, .form textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  color: var(--ink);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .check { display: flex; gap: 10px; align-items: flex-start; text-transform: none; letter-spacing: 0; font-size: 14px; color: var(--ink); }
.form-ok { display: none; padding: 16px; background: #e8efe4; color: #335028; grid-column: 1 / -1; }
.form.is-sent .form-ok { display: block; }

.page-hero {
  padding: 72px 0 40px;
  background: var(--cream);
}
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); max-width: 16ch; }
.crumbs { font-size: 13px; color: var(--mute); margin-bottom: 16px; }
.crumbs a:hover { color: var(--gold-deep); }

.blog-list { display: grid; gap: 22px; }
.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.article { max-width: 760px; }
.article p, .article li { margin-bottom: 16px; }
.article h2 { font-size: 34px; margin: 32px 0 12px; }
.article ul { list-style: disc; padding-left: 20px; }

.legal { max-width: 800px; }
.legal h1 { margin-bottom: 18px; }
.legal h2 { font-size: 28px; margin: 28px 0 10px; }
.legal p { margin-bottom: 14px; color: var(--mute); }

.zones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.zones a, .zones span {
  display: block;
  padding: 18px;
  background: var(--cream);
  font-size: 15px;
}

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer h3 { font-size: 18px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; color: var(--gold); }
.footer a, .footer p { color: rgba(244,239,230,.78); font-size: 15px; }
.footer a:hover { color: var(--gold); }
.footer li { margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(244,239,230,.12);
  padding-top: 18px;
  font-size: 13px;
  color: rgba(244,239,230,.55);
}

.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.cookies {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
}
.cookies.is-on { display: flex; }
.cookies p { font-size: 14px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22,19,17,.92);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}
.lightbox.is-on { display: grid; }
.lightbox img { max-height: 88vh; max-width: 92vw; }
.lead-grid { display:grid;grid-template-columns:1fr 1.1fr;gap:40px;align-items:start; }
.include-list { display:grid;grid-template-columns:1fr 1fr;gap:12px 32px;margin-top:24px; }
.video-frame img { width: 100%; height: min(72vh, 640px); object-fit: cover; }

@media (max-width: 1120px) {
  .nav { gap: 14px; }
  .nav a { font-size: 13px; }
}
@media (max-width: 980px) {
  .burger { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 28px 28px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.is-open { display: flex; }
  .pillars, .process, .quotes, .price-grid, .stats, .zones, .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse, .services, .blog-card, .form, .lead-grid, .include-list { grid-template-columns: 1fr; }
  .split.reverse .split-copy { order: 0; }
  .split img { height: 380px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery a:first-child { grid-row: auto; grid-column: 1 / -1; height: 280px; }
}
@media (max-width: 640px) {
  .pillars, .process, .quotes, .price-grid, .stats, .zones, .footer-grid { grid-template-columns: 1fr; }
  .nav-wrap { padding: 12px 16px; }
  .wrap { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero-content { padding: 56px 20px 48px; }
  .cookies { flex-direction: column; align-items: stretch; }
}
