:root {
  --bg: #faf7f0;
  --paper: #ffffff;
  --ink: #17130f;
  --muted: #665f56;
  --line: #e7ded2;
  --dark: #12100d;
  --dark-2: #201710;
  --gold: #d69b35;
  --gold-2: #f0c36a;
  --amber-soft: #fff1cf;
  --shadow: 0 24px 70px rgba(23, 19, 15, 0.12);
  --radius: 28px;
  --container: 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;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: 16px; top: -80px; background: #fff; color: #000; padding: 10px 14px; border-radius: 999px; z-index: 100; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 222, 210, 0.8);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 16px; background: var(--dark); color: var(--gold-2); font-weight: 800; letter-spacing: -0.04em; }
.brand-name { display: block; font-weight: 800; letter-spacing: -0.03em; }
.brand-subtitle { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 650; font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; background: var(--dark); color: #fff; font-weight: 700; font-size: 14px; }

.section { padding: 88px 0; }
.section-dark { background: radial-gradient(circle at top left, rgba(240,195,106,0.32), transparent 36%), linear-gradient(135deg, #15100d 0%, #211510 58%, #3d250c 100%); color: #fff; }
.section-muted { background: #fff; border-block: 1px solid var(--line); }

.hero { position: relative; overflow: hidden; padding: 76px 0 96px; }
.hero-bg { position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 54px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; }
.section-dark .eyebrow { color: var(--gold-2); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(48px, 7vw, 82px); line-height: 0.98; letter-spacing: -0.07em; max-width: 760px; }
h2 { margin-bottom: 18px; font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.055em; }
h3 { margin-bottom: 10px; font-size: 24px; line-height: 1.16; letter-spacing: -0.035em; }
.hero-lede { max-width: 720px; color: rgba(255,255,255,0.82); font-size: 20px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 22px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.16); }
.button-primary { background: var(--gold-2); color: var(--dark); }
.button-secondary { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.button-dark { background: var(--dark); color: #fff; }
.trust-pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pills li { border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82); padding: 8px 12px; border-radius: 999px; font-size: 14px; font-weight: 650; }

.profile-card { border: 1px solid rgba(255,255,255,0.18); border-radius: 36px; padding: 14px; background: rgba(255,255,255,0.1); box-shadow: 0 28px 100px rgba(0,0,0,0.28); backdrop-filter: blur(12px); }
.headshot-frame { overflow: hidden; border-radius: 28px; background: linear-gradient(135deg, #efe7db, #fbdc93); aspect-ratio: 1 / 1; }
.headshot-frame img { width: 100%; height: 100%; object-fit: cover; }
.profile-content { padding: 24px; border-radius: 0 0 28px 28px; background: #fff; color: var(--ink); }
.small-label { margin-bottom: 8px; color: var(--gold); font-size: 13px; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.muted { color: var(--muted); }
.contact-list { display: grid; gap: 10px; margin-top: 20px; }
.contact-list a, .contact-list span { display: block; padding: 13px 14px; border: 1px solid var(--line); border-radius: 16px; background: #fffaf2; font-weight: 700; overflow-wrap: anywhere; }
.contact-list a:hover { border-color: var(--gold); }

.trust-strip { background: var(--dark); color: #fff; border-top: 1px solid rgba(255,255,255,0.12); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.trust-strip-grid div { padding: 22px; border-inline: 1px solid rgba(255,255,255,0.08); }
.trust-strip strong { display: block; color: var(--gold-2); font-size: 18px; }
.trust-strip span { color: rgba(255,255,255,0.72); }

.section-heading { margin-bottom: 36px; }
.section-heading.wide { max-width: 820px; }
.section-heading.left { margin-bottom: 0; }
.section-heading p, .rich-text p, .area-card p, .contact-card p { color: var(--muted); font-size: 18px; line-height: 1.75; }
.card-grid { display: grid; gap: 20px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card { padding: 30px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: 0 10px 34px rgba(23,19,15,0.055); transition: transform 160ms ease, box-shadow 160ms ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 18px; background: var(--amber-soft); color: #6b410b; font-size: 28px; font-weight: 900; }
.service-card p { color: var(--muted); }

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.rich-text { font-size: 18px; }
.area-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 44px; align-items: center; }
.area-card { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 12px; }
.check-list.columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-list li { position: relative; padding-left: 30px; color: #352d25; font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: #8a5b12; font-weight: 950; }
.note { padding: 16px; border-radius: 18px; background: #fff7e4; border: 1px solid #f3dfb6; }

.process-section { padding: 92px 0; }
.process-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 52px; align-items: start; }
.process-grid p { color: rgba(255,255,255,0.74); font-size: 18px; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px; border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; background: rgba(255,255,255,0.08); }
.steps span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--gold-2); color: var(--dark); font-weight: 950; }
.steps h3 { margin-bottom: 4px; color: #fff; }
.steps p { margin: 0; color: rgba(255,255,255,0.72); }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq-grid article { padding: 26px; border-radius: 24px; border: 1px solid var(--line); background: #fff; }
.faq-grid p { margin: 0; color: var(--muted); }


.idx-section { background: linear-gradient(180deg, #fff, #faf7f0); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.idx-shell { overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: #fff; box-shadow: var(--shadow); }
.idx-toolbar { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 26px 28px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fff, #fff7e4); }
.idx-toolbar h3 { margin-bottom: 6px; }
.idx-toolbar p { margin: 0; color: var(--muted); }
.idx-frame-wrap { height: min(78vh, 760px); min-height: 620px; background: #f5efe6; }
.idx-frame-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }
.idx-note { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.contact-section { padding-top: 30px; }
.contact-card { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; padding: 44px; border-radius: 36px; background: linear-gradient(135deg, #fff, #fff3d4); border: 1px solid #ead7ad; box-shadow: var(--shadow); }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-brand { margin-bottom: 8px; color: var(--ink); font-weight: 900; font-size: 16px; }
.footer-grid p { margin-bottom: 5px; }
.footer-links { display: flex; gap: 16px; font-weight: 750; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding-top: 48px; }
  .hero-grid, .split, .area-grid, .process-grid, .contact-card, .idx-toolbar { grid-template-columns: 1fr; }
  .card-grid.three, .trust-strip-grid, .faq-grid { grid-template-columns: 1fr; }
  .contact-actions { justify-content: flex-start; }
  .idx-frame-wrap { min-height: 560px; height: 72vh; }
  .section { padding: 68px 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-cta { display: none; }
  h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .check-list.columns { grid-template-columns: 1fr; }
  .contact-card { padding: 28px; }
  .idx-toolbar { padding: 22px; }
  .idx-frame-wrap { min-height: 520px; height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}
