:root {
  --paper: #f6f3ec;
  --paper-warm: #f3eee1;
  --panel: #fffdf7;
  --sand: #f0e8d8;
  --ink: #1c1a14;
  --muted: #5c5748;
  --line: #e3ddce;
  --gold: #9a7b3f;
  --gold-light: #c9a962;
  --rust: #b4543a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Albert Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: #7c6230; }
::selection { background: #c9a96244; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(246, 243, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.brand span { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: clamp(10px, 2.4vw, 30px); }
.nav-link { color: #3e3a2e; font-size: 13px; font-weight: 600; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.language-switch a {
  display: grid;
  min-width: 34px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  font-size: 17px;
}
.language-switch a[aria-current="page"] { background: var(--sand); box-shadow: inset 0 0 0 1px #d8cfbc; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--panel);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}
.button:hover { background: #7c6230; border-color: #7c6230; color: #fff; }
.button--light { background: var(--gold-light); border-color: var(--gold-light); color: #17211c; }
.button--ghost { background: transparent; border-color: #b8ae97; color: var(--ink); }

.hero { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.hero-grid,
.section-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(64px, 9vw, 118px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3 { text-wrap: pretty; }
h1, h2 { font-family: "Cormorant Garamond", serif; }
h1 {
  margin: 0 0 24px;
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 500;
  line-height: 1.06;
}
h1 span { display: block; color: var(--rust); }
.hero-copy {
  max-width: 56ch;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  color: #6b6555;
  font-size: 12px;
}
.trust-line span::before { content: "✓"; margin-right: 7px; color: var(--gold); font-weight: 700; }

.metric-strip { border-top: 1px solid var(--line); }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.metric { padding: 26px 22px 28px 0; }
.metric strong { display: block; color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 30px; }
.metric span { color: #6b6555; font-size: 12.5px; line-height: 1.5; }

.section { padding-block: clamp(72px, 9vw, 112px); }
.section--sand { background: var(--sand); border-block: 1px solid var(--line); }
.section--cream { background: #efeadd; border-block: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: clamp(36px, 5vw, 58px); }
.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.12;
}
.section-heading p:last-child { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 22px; }
.card {
  padding: 32px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.card-number { margin: 0 0 18px; color: var(--gold-light); font-family: "Cormorant Garamond", serif; font-size: 42px; line-height: 1; }
.card h3 { margin: 0 0 12px; font-family: "Cormorant Garamond", serif; font-size: 25px; line-height: 1.15; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 52px); }
.step strong { display: block; margin-bottom: 12px; color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 54px; font-weight: 500; }
.step h3 { margin: 0 0 9px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.person { overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
.person img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 22%; }
.person div { padding: 20px 22px 24px; }
.person h3 { margin: 0 0 5px; font-family: "Cormorant Garamond", serif; font-size: 25px; }
.person p { margin: 0; color: var(--gold); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.promise {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(32px, 5vw, 54px);
  background: #1f2b25;
  color: #fffdf7;
}
.promise h2 { margin: 0; font-size: clamp(34px, 4vw, 48px); font-weight: 500; line-height: 1.08; }
.promise-list { display: grid; gap: 16px; }
.promise-list div { padding-left: 18px; border-left: 2px solid var(--gold-light); }
.promise-list strong { display: block; margin-bottom: 4px; }
.promise-list span { color: #dad5ca; font-size: 13.5px; line-height: 1.6; }

.lead-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.lead-copy h2 { margin: 0 0 20px; font-size: clamp(36px, 4.4vw, 54px); font-weight: 500; line-height: 1.08; }
.lead-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.75; }
.lead-points { display: grid; gap: 12px; margin-top: 28px; }
.lead-points span { color: #3e3a2e; font-size: 14px; }
.lead-points span::before { content: "✓"; margin-right: 9px; color: var(--gold); font-weight: 700; }
.lead-form { padding: clamp(26px, 3vw, 38px); background: var(--panel); border: 1px solid #d8cfbc; box-shadow: 0 18px 50px rgba(28,26,20,.1); }
.lead-form h3 { margin: 0 0 6px; font-family: "Cormorant Garamond", serif; font-size: 32px; }
.lead-form > p { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.form-grid { display: grid; gap: 16px; }
.field label { display: block; margin-bottom: 7px; color: #3e3a2e; font-size: 13px; font-weight: 700; }
.field input, .field select {
  width: 100%;
  padding: 13px 14px;
  background: #fffdf7;
  border: 1px solid #dcd5c2;
  border-radius: 2px;
  color: var(--ink);
  font: 15px "Albert Sans", sans-serif;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(154,123,63,.12); }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12.5px; line-height: 1.55; }
.privacy-check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); flex: 0 0 auto; }
.form-note { margin: 11px 0 0; color: #6b6555; font-size: 12px; text-align: center; }

.site-footer { background: var(--paper-warm); border-top: 1px solid var(--line); }
.footer-main,
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; width: min(1240px, 100%); margin: 0 auto; padding-inline: clamp(20px, 5vw, 64px); }
.footer-main { padding-block: 34px; }
.footer-main p, .footer-legal p { margin: 0; }
.footer-main p { color: var(--muted); font-size: 13px; }
.footer-legal { padding-block: 18px; border-top: 1px solid var(--line); color: #7a7565; font-size: 11.5px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.mobile-cta { display: none; }

@media (max-width: 900px) {
  .nav-link { display: none; }
  .steps, .team-grid, .lead-grid, .promise { grid-template-columns: 1fr; }
  .person img { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .site-nav { padding-block: 10px; }
  .nav-cta { display: none; }
  .language-switch a { min-width: 31px; }
  .metric-grid { grid-template-columns: 1fr; padding-block: 12px; }
  .metric { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .hero-grid { padding-top: 52px; }
  .steps { gap: 34px; }
  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: calc(12px + var(--cc-h, 0px));
    left: 12px;
    z-index: 90;
    display: flex;
    min-height: 52px;
    box-shadow: 0 9px 24px rgba(28,26,20,.24);
    transition: bottom .25s ease;
  }
}
