:root {
  --bg: #f8f3ed;
  --surface: #fffdfa;
  --surface-2: #f1e9df;
  --surface-3: #ebe0d3;
  --ink: #191816;
  --muted: #6f6962;
  --line: #ddd1c3;
  --accent: #9a7456;
  --accent-dark: #70523d;
  --accent-soft: #c9aa8d;
  --shadow: 0 18px 45px rgba(58, 44, 32, .09);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 7vw, 64px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.035em;
}
.section-lead {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 18px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(154,116,86,.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.08em;
}
.brand-divider { width: 1px; height: 36px; background: var(--line); }
.brand-copy { font-size: 13px; line-height: 1.15; font-weight: 600; }

.nav-toggle {
  width: 48px; height: 48px; border: 0; background: transparent; border-radius: 50%;
  display: grid; place-items: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--ink); transition: .25s ease;
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.nav {
  position: fixed;
  inset: 78px 16px auto;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: .2s ease;
}
.nav.open { opacity: 1; transform: none; pointer-events: auto; }
.nav a {
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover, .nav a.active { background: var(--surface-2); color: var(--ink); }
.nav .nav-cta { background: var(--ink); color: white; }

.hero {
  padding: 18px 0 56px;
  overflow: clip;
}
.hero-grid {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: 640px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 640px;
  padding: 26px 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-copy h1 {
  margin: 12px 0 18px;
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 10vw, 92px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 500;
}
.hero-copy h1 span { color: var(--accent); }
.hero-copy p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(15px, 4vw, 21px);
  color: rgba(25, 24, 22, .82);
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--surface-2); }

.hero-visual {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #efe4d7, #f9f5ef 58%, #e6dacd);
  box-shadow: var(--shadow);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,243,237,.06) 0%, rgba(248,243,237,.20) 24%, rgba(248,243,237,.72) 58%, rgba(248,243,237,.92) 74%, rgba(248,243,237,.98) 100%);
}
.hero-visual picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trust-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.trust-item {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(154,116,86,.12);
  border-radius: 16px;
}
.trust-icon, .card-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: var(--surface-2); color: var(--accent-dark); font-size: 20px;
}
.trust-item strong { font-size: 14px; line-height: 1.2; }

.grid { display: grid; gap: 16px; }
.grid-2, .grid-3 { grid-template-columns: 1fr; }
.card {
  padding: 24px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(154,116,86,.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(68,49,33,.05);
}
.card h3 { margin: 18px 0 8px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; line-height: 1.08; }
.card p { margin: 0; color: var(--muted); }
.card .arrow { margin-top: 22px; color: var(--accent-dark); font-weight: 700; display: inline-flex; gap: 8px; align-items: center; }

.metric-wrap {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--surface-2), #f7f1e9);
  border: 1px solid var(--line);
}
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.metric { padding: 18px 6px; border-bottom: 1px solid var(--line); }
.metric:nth-last-child(-n+2) { border-bottom: 0; }
.metric strong { display: block; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.metric span { color: var(--muted); font-size: 13px; }

.split { display: grid; gap: 28px; align-items: center; }
.split-visual { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); background: var(--surface-2); }
.split-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.bullet-list { display: grid; gap: 16px; margin-top: 28px; }
.bullet { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.bullet strong { display: block; margin-bottom: 3px; }
.bullet p { margin: 0; color: var(--muted); }

.steps { position: relative; display: grid; gap: 14px; margin-top: 32px; }
.step {
  display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 20px;
  background: rgba(255,255,255,.55); border: 1px solid rgba(154,116,86,.15); border-radius: 18px;
}
.step-number {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: white; font-family: Georgia, serif; font-size: 22px;
}
.step h3 { margin: 2px 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); }

.quote-card { position: relative; }
.quote-card::before { content: "“"; position: absolute; top: 10px; right: 18px; font-family: Georgia, serif; font-size: 84px; line-height: 1; color: var(--surface-3); }
.quote-card blockquote { margin: 0 0 18px; font-family: Georgia, serif; font-size: 23px; line-height: 1.25; }
.quote-card footer { color: var(--muted); font-size: 14px; }
.stars { margin-top: 14px; letter-spacing: 2px; color: #b8823d; }

.article-card { padding: 0; overflow: hidden; }
.article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--surface-2); }
.article-card .content { padding: 22px; }
.article-card .meta { font-size: 12px; color: var(--accent-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.article-card h3 { margin-top: 10px; font-size: 26px; }

.cta-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  background: var(--ink);
  color: white;
  border-radius: 28px;
}
.cta-panel p { margin: 8px 0 0; color: rgba(255,255,255,.7); }
.cta-panel .btn { border-color: white; background: white; color: var(--ink); }

.form { display: grid; gap: 15px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 52px; padding: 13px 14px; border-radius: 13px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink); outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(154,116,86,.1); }
.form-status { min-height: 24px; color: var(--accent-dark); font-weight: 600; }


.contact-media {
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.contact-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-options { display: grid; gap: 12px; }
.contact-option {
  display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center;
  padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.56);
}
.contact-option small { color: var(--muted); display: block; margin-top: 2px; }

.page-hero { padding: 44px 0 34px; }
.page-hero .section-title { max-width: 900px; }
.page-hero + .section { padding-top: 28px; }

.footer { padding: 40px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 24px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 20px; color: var(--muted); font-size: 14px; }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 13px; }

.floating-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 20;
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%; background: var(--accent); color: white; box-shadow: 0 12px 30px rgba(58,44,32,.22); font-weight: 800;
}

.reveal { opacity: 0; transform: translateY(14px); transition: .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 420px) {
  .hero-grid, .hero-copy { min-height: 590px; }
  .hero-copy { padding: 20px 18px 20px; }
  .hero-copy h1 { font-size: clamp(34px, 9.6vw, 44px); }
  .hero-copy p { font-size: 14px; }
  .btn { min-height: 50px; }
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
  .btn { width: auto; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .metrics { grid-template-columns: repeat(4, 1fr); }
  .metric { border-bottom: 0; border-right: 1px solid var(--line); }
  .metric:last-child { border-right: 0; }
  .cta-panel { grid-template-columns: 1fr auto; align-items: center; padding: 36px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  .site-header { position: relative; background: transparent; border-bottom: 0; backdrop-filter: none; }
  .header-inner { min-height: 96px; }
  .nav-toggle { display: none; }
  .nav {
    position: static; inset: auto; display: flex; align-items: center; gap: 4px; padding: 0; border: 0; border-radius: 0; box-shadow: none; background: transparent; opacity: 1; transform: none; pointer-events: auto;
  }
  .nav a { padding: 10px 12px; font-size: 14px; }
  .nav .nav-cta { margin-left: 8px; padding-inline: 18px; border-radius: 999px; }
  .hero { padding: 42px 0 84px; }
  .hero-grid {
    position: static;
    min-height: 0;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center;
  }
  .hero-copy {
    min-height: 0;
    padding: 0;
    display: block;
  }
  .hero-visual {
    position: relative;
    inset: auto;
    min-height: 610px;
  }
  .hero-visual::after { background: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 60px; }
  .split.reverse .split-visual { order: 2; }
  .footer-grid { grid-template-columns: 1fr auto; align-items: end; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
