:root {
  --bg: #f7f4ee;
  --ink: #101820;
  --muted: #58616b;
  --line: rgba(16, 24, 32, 0.12);
  --card: rgba(255, 255, 255, 0.78);
  --dark: #101820;
  --dark-soft: #182532;
  --gold: #d8b96f;
  --gold-dark: #8b6826;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(16, 24, 32, 0.12);
}

* { 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;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 244, 238, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; letter-spacing: -0.02em; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(16,24,32,.16);
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.95rem; color: var(--muted); }
.nav-links a:hover, .nav-links button:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; background: transparent; color: var(--ink); cursor: pointer; }
.hero { position: relative; overflow: hidden; padding-top: 116px; }
.hero:before {
  content: ""; position: absolute; inset: -20% -10% auto auto;
  width: 580px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,185,111,.36), rgba(216,185,111,0) 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.24fr .76fr; gap: 56px; align-items: center; position: relative; }
.eyebrow { margin: 0 0 14px; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; color: var(--gold-dark); }
h1, h2, h3 { line-height: 1.06; letter-spacing: -0.05em; margin: 0; }
h1 { font-size: clamp(3rem, 6.6vw, 6.4rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.24rem; letter-spacing: -0.035em; }
p { color: var(--muted); margin: 0; }
.hero-text { font-size: 1.22rem; max-width: 760px; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 20px; border: 0; border-radius: 999px;
  font-weight: 750; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--dark); color: white; box-shadow: 0 16px 36px rgba(16,24,32,.22); }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.62); color: var(--ink); }
.light { background: var(--gold); color: var(--dark); box-shadow: none; }
.hero-card {
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.card-topline { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 850; margin-bottom: 24px; }
.hero-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.hero-card li { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-card span { display: block; color: rgba(255,255,255,.64); font-size: .9rem; margin-bottom: 6px; }
.hero-card strong { display: block; font-size: 1.03rem; line-height: 1.35; }
.positioning { padding-top: 48px; }
.positioning-grid { display: grid; grid-template-columns: .32fr 1fr; gap: 40px; align-items: start; }
.section-heading { max-width: 800px; margin-bottom: 38px; }
.section-heading p, .lead { font-size: 1.08rem; margin-top: 18px; }
.cards { display: grid; gap: 20px; }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .contact-box, .feature-list > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 44px rgba(16,24,32,.06);
}
.number { display: inline-flex; color: var(--gold-dark); font-weight: 850; margin-bottom: 30px; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { margin-bottom: 18px; }
.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}
.service-card li::marker { color: var(--gold-dark); }
.muted { background: #ede8de; border-block: 1px solid var(--line); }
.approach-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.step { display: grid; gap: 18px; padding: 24px; background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: var(--radius); }
.step span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--dark); color: var(--gold); font-weight: 850; }
.step h3 { margin-bottom: 8px; }
.expertise-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 56px; align-items: start; }
.narrow { margin-bottom: 0; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.feature-list h3 { margin-bottom: 10px; }
.cta-section { padding-top: 46px; }
.cta-card {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  color: white;
  border-radius: 28px;
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.cta-card h2 { max-width: 740px; }
.cta-card p:not(.eyebrow) { color: rgba(255,255,255,.72); max-width: 690px; margin-top: 18px; }
.contact-section { padding-top: 50px; }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 36px; align-items: stretch; }
.contact-grid h2 { margin-bottom: 14px; }
.contact-box p:first-child { font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.contact-box a { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.04em; }
.small { margin-top: 18px; font-size: .94rem; }
.text-button {
  margin-top: 20px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 3px;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.footer { border-top: 1px solid var(--line); padding: 28px 0; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .92rem; }
.footer a { color: var(--ink); font-weight: 700; }
.disclaimer { margin-top: 8px; font-size: .84rem; max-width: 720px; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 24, 32, .58);
  backdrop-filter: blur(10px);
}
.modal-backdrop[hidden] { display: none; }
.intake-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 26px;
  background: #fbf8f1;
  box-shadow: 0 32px 100px rgba(0,0,0,.34);
  padding: clamp(24px, 4vw, 38px);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.chat-intro {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.64);
  margin-bottom: 24px;
}
.chat-intro h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 10px; }
.assistant-dot {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(16,24,32,.18);
}
.intake-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.intake-form label { display: grid; gap: 8px; font-weight: 760; color: var(--ink); }
.intake-form label span { font-size: .92rem; }
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
.intake-form textarea { resize: vertical; min-height: 132px; }
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: rgba(162, 123, 47, .7);
  box-shadow: 0 0 0 4px rgba(216,185,111,.22);
}
.hidden-field { display: none; }
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.form-actions a { color: var(--muted); font-weight: 750; }
@media (max-width: 980px) {
  .approach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .section-pad { padding: 72px 0; }
  .hero { padding-top: 78px; }
  .hero-grid, .positioning-grid, .expertise-grid, .contact-grid { grid-template-columns: 1fr; }
  .three, .feature-list { grid-template-columns: 1fr; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 18px; right: 18px; top: 72px;
    display: none; flex-direction: column; align-items: flex-start;
    padding: 18px; background: rgba(247,244,238,.97); border: 1px solid var(--line); border-radius: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { width: min(100% - 24px, 1180px); }
  h1 { font-size: 2.65rem; }
  .hero-card { transform: none; }
  .approach-grid, .form-grid { grid-template-columns: 1fr; }
  .chat-intro { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
