
:root {
  --bg: #f7f3ee;
  --surface: #efe7df;
  --surface-2: #fbf8f4;
  --text: #222730;
  --muted: #61646c;
  --line: #d8cdc0;
  --gold: #b68a45;
  --gold-light: #d4b17d;
  --dark: #171c24;
  --white: #fffdfa;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(23, 28, 36, 0.08);
  --shadow-soft: 0 16px 36px rgba(23, 28, 36, 0.05);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: rgba(182,138,69,0.22); }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(247,243,238,0.84);
  border-bottom: 1px solid rgba(216,205,192,0.75);
}
.nav-wrap { display:flex; align-items:center; justify-content:space-between; min-height:82px; gap:24px; }
.brand { display:flex; align-items:center; gap:14px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 18px;
  display:grid; place-items:center; background: linear-gradient(145deg,#f4ece2,#e8ddd0);
  border: 1px solid rgba(182,138,69,0.22); color: var(--gold); font-weight:700;
  box-shadow: var(--shadow-soft);
}
.brand-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; }
.brand-sub { font-size: .72rem; text-transform: uppercase; letter-spacing: .28em; color: var(--muted); }
.nav-links { display:flex; align-items:center; gap:26px; }
.nav-links a { font-size: .95rem; color: rgba(34,39,48,.82); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a::after { content:''; position:absolute; left:0; bottom:-7px; width:0; height:1px; background:var(--gold); transition:.28s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius: 999px; padding: 15px 24px; font-weight: 600; transition: .28s ease;
  border:1px solid transparent; cursor:pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--dark); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-outline { border-color: rgba(255,253,250,.3); color: var(--white); background: transparent; }
.btn-outline-dark { border-color: var(--line); color: var(--text); background: transparent; }
.mobile-toggle { display:none; width:46px; height:46px; border-radius:999px; border:1px solid var(--line); background: var(--surface-2); }
.mobile-menu { display:none; padding: 0 0 18px; }
.mobile-menu a { display:block; padding:14px 18px; border-radius:18px; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--surface); color: var(--text); }
.hero {
  position:relative; overflow:hidden; min-height: calc(100vh - 82px); display:flex; align-items:center;
  background: var(--dark);
}
.hero > .overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(23,28,36,.70),rgba(23,28,36,.88)); }
.hero > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-grid { position:relative; display:grid; align-items:center; padding: 96px 0 104px; }
.eyebrow { font-size:.82rem; text-transform:uppercase; letter-spacing:.34em; color: var(--gold-light); }
.hero h1, .page-hero h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height:1.08; margin:0; }
.hero h1 { color: var(--white); font-size: clamp(2.7rem, 6vw, 5.2rem); max-width: 900px; margin-top: 18px; }
.lead { color: rgba(255,253,250,.86); font-size: clamp(1.07rem, 2vw, 1.3rem); max-width: 760px; margin-top: 22px; }
.hero-cards { display:grid; gap:14px; grid-template-columns:repeat(3, minmax(0,1fr)); margin-top:36px; max-width: 980px; }
.glass-card { border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); backdrop-filter: blur(14px); border-radius: 28px; padding: 20px; color: var(--white); }
.glass-card strong { display:block; margin-bottom:8px; font-size:1rem; }
.section { padding: 92px 0; }
.section-muted { background: rgba(239,231,223,.48); }
.section-accent { background: linear-gradient(180deg, rgba(182,138,69,.08), rgba(182,138,69,.02)); }
.grid-2 { display:grid; gap:28px; grid-template-columns: 1.05fr .95fr; }
.grid-3 { display:grid; gap:24px; grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid-4 { display:grid; gap:20px; grid-template-columns: repeat(4,minmax(0,1fr)); }
.card { background: var(--surface-2); border:1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft); }
.card.dark { background: var(--dark); color: var(--white); border-color: rgba(255,255,255,.1); box-shadow: none; }
.card p:last-child { margin-bottom: 0; }
.kicker { color: var(--gold); font-size:.82rem; text-transform:uppercase; letter-spacing:.28em; }
.section h2 { font-size: clamp(2rem, 4vw, 3.7rem); margin-top: 14px; max-width: 880px; }
.section-intro { max-width: 720px; color: var(--muted); font-size: 1.05rem; margin-top: 22px; }
.list-check { display:grid; gap:12px; margin: 20px 0 0; padding:0; list-style:none; }
.list-check li { background: rgba(239,231,223,.54); border-radius: 18px; padding: 14px 16px; }
.stat { padding:22px; border-radius:24px; border:1px solid var(--line); background: var(--surface); }
.stat strong { display:block; font-size:1.4rem; font-family:'Playfair Display', Georgia, serif; }
.person-photo { border-radius: 34px; overflow:hidden; box-shadow: var(--shadow); border:1px solid var(--line); }
.testimonial { background: var(--surface-2); border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.testimonial p { font-size:1.08rem; line-height:1.9; }
.testimonial footer { margin-top:18px; font-size:.78rem; text-transform:uppercase; letter-spacing:.18em; color: var(--muted); }
.cta-banner { display:grid; gap:26px; align-items:center; grid-template-columns: 1.1fr .9fr; padding: 42px; border-radius: 36px; background: var(--dark); color: var(--white); box-shadow: var(--shadow); }
.page-hero { position:relative; overflow:hidden; border-bottom:1px solid var(--line); background:
  radial-gradient(circle at top left, rgba(182,138,69,.12), transparent 30%), var(--bg); }
.page-hero .container { padding: 90px 0 96px; }
.page-hero h1 { font-size: clamp(2.3rem,5vw,4.6rem); margin-top:16px; max-width:900px; }
.page-hero p { max-width:760px; color: var(--muted); font-size:1.08rem; margin-top:22px; }
.cards-2 { display:grid; gap:24px; grid-template-columns:repeat(2,minmax(0,1fr)); }
.cards-3 { display:grid; gap:24px; grid-template-columns:repeat(3,minmax(0,1fr)); }
.site-footer { border-top:1px solid var(--line); background: rgba(239,231,223,.48); }
.footer-grid { display:grid; gap:28px; grid-template-columns:1.25fr .9fr .9fr; padding: 64px 0 20px; }
.footer-bottom { border-top:1px solid rgba(216,205,192,.8); padding:18px 0 30px; font-size:.82rem; color: var(--muted); display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.form-grid { display:grid; gap:18px; grid-template-columns:repeat(2,minmax(0,1fr)); }
.field { display:grid; gap:8px; }
.field span { font-size:.92rem; }
.field input, .field textarea {
  width:100%; border:1px solid var(--line); background: var(--surface); color: var(--text);
  border-radius:20px; padding: 14px 16px; min-height: 54px;
}
.field textarea { min-height: 170px; resize: vertical; }
.prose-block h2 { font-size:1.8rem; margin-top:1.8rem; }
.prose-block p { color: var(--muted); }
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }
.text-link { color: var(--gold); font-weight: 600; }
.note { font-size: .92rem; color: var(--muted); }
@media (max-width: 1024px) {
  .nav-links, .desktop-cta { display:none; }
  .mobile-toggle { display:inline-grid; place-items:center; }
  .grid-2, .grid-3, .grid-4, .cards-2, .cards-3, .cta-banner, .footer-grid, .form-grid, .hero-cards { grid-template-columns:1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 720px) {
  .section, .page-hero .container, .hero-grid { padding-top: 72px; padding-bottom: 72px; }
  .container { width:min(1200px, calc(100% - 22px)); }
  .card, .testimonial, .cta-banner { padding: 22px; }
  .brand-sub { display:none; }
}
