:root {
  --ink: #262624;
  --ink-soft: #5a5852;
  --paper: #f3f0e8;
  --white: #ffffff;
  --accent: #9a6b2f;
  --accent-soft: #e6dac7;
  --line: rgba(38, 38, 36, 0.14);
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(38, 38, 36, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-pad { padding: 110px 0; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  transform: translateY(-150%); background: var(--white); padding: 8px 12px;
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(243, 240, 232, 0.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(38,38,36,.05); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 39px; height: 39px; display: grid; place-items: center;
  background: var(--ink); color: var(--white); border-radius: 9px;
  font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1;
}
.brand-text { display: grid; line-height: 1.05; letter-spacing: .01em; }
.brand-text strong { font-size: 18px; }
.brand-text span { margin-top: 4px; color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; }

.site-nav { display: flex; align-items: center; gap: 31px; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.nav-cta) { color: var(--ink-soft); }
.site-nav > a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta { padding: 11px 17px; background: var(--ink); color: var(--white); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 11px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 7px 0; transition: transform .2s ease; }

.hero { padding-top: 100px; padding-bottom: 104px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); align-items: end; gap: 78px; }
.eyebrow { margin: 0 0 19px; color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 27px; max-width: 850px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6.5vw, 86px); font-weight: 500; }
h1 span { color: var(--accent); }
.hero-lead { max-width: 720px; margin: 0 0 34px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 21px; border-radius: 999px; text-decoration: none; font-weight: 750; font-size: 14px;
  border: 1px solid transparent; transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: #3a3935; }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.35); }
.button-ghost:hover { border-color: rgba(38,38,36,.28); }

.hero-card {
  padding: 28px; background: var(--ink); color: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before { content: ""; position: absolute; width: 88px; height: 88px; right: -28px; top: -28px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.hero-card-label { margin: 0 0 18px; color: rgba(255,255,255,.62); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li { position: relative; padding: 15px 0 15px 18px; border-bottom: 1px solid rgba(255,255,255,.12); font-weight: 650; }
.hero-card li::before { content: ""; position: absolute; left: 0; top: 25px; width: 7px; height: 1px; background: #c5a06b; }
.hero-card-note { margin: 21px 0 0; color: rgba(255,255,255,.64); font-size: 13px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.32); }
.trust-items { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 22px; overflow-x: auto; scrollbar-width: none; }
.trust-items::-webkit-scrollbar { display: none; }
.trust-items span { white-space: nowrap; color: var(--ink-soft); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; }

.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading h2, .about-panel h2, .cta-band h2 { margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5vw, 62px); font-weight: 500; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 28px; }
.service-card { min-height: 330px; padding: 30px 0 34px; background: transparent; border-top: 1px solid var(--ink); transition: border-color .2s ease; }
.service-card:hover { border-top-color: var(--accent); }
.service-card h3 { margin-bottom: 15px; font-size: 23px; }
.service-card > p { color: var(--ink-soft); }
.service-card ul { margin: 23px 0 0; padding: 21px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; padding: 4px 0 4px 16px; color: var(--ink-soft); font-size: 13px; }
.service-card li::before { content: ""; width: 5px; height: 5px; position: absolute; left: 0; top: 13px; border-radius: 50%; background: var(--accent); }

.approach { background: var(--ink); color: var(--white); }
.approach .eyebrow { color: #c5a06b; }
.approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.approach .section-heading { margin: 0; position: sticky; top: 120px; }
.approach .section-heading h2 { margin-bottom: 0; }
.approach-list { border-top: 1px solid rgba(255,255,255,.16); }
.approach-item { display: block; padding: 34px 0 38px; border-bottom: 1px solid rgba(255,255,255,.16); }
.approach-item h3 { margin-bottom: 10px; font-size: 25px; letter-spacing: -.02em; }
.approach-item p { max-width: 610px; margin: 0; color: rgba(255,255,255,.68); }

.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.about-panel { padding-right: 30px; }
.about-panel h2 { margin-bottom: 8px; }
.about-role { color: var(--ink-soft); font-weight: 650; }
.about-copy { max-width: 720px; }
.about-copy p { color: var(--ink-soft); font-size: 17px; }
.about-copy .about-intro { margin-top: 0; color: var(--ink); font-size: 24px; line-height: 1.48; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.about-tags span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.4); font-size: 12px; font-weight: 700; }

.cta-band { padding: 86px 0; background: var(--accent); color: var(--white); }
.cta-band .eyebrow { color: rgba(255,255,255,.72); }
.cta-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: end; }
.cta-band h2 { max-width: 800px; margin-bottom: 15px; }
.cta-band p { max-width: 690px; margin-bottom: 0; color: rgba(255,255,255,.8); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.button-light { min-width: 180px; background: var(--white); color: var(--ink); }
.text-link { font-size: 14px; font-weight: 750; text-underline-offset: 4px; }
.contact-note { font-size: 11px; line-height: 1.4; opacity: .82; }

.site-footer { background: #1d1d1b; color: rgba(255,255,255,.62); }
.footer-grid { min-height: 138px; display: grid; grid-template-columns: .8fr 1.7fr .5fr; align-items: center; gap: 28px; font-size: 12px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-mark { background: var(--white); color: var(--ink); }
.brand-footer .brand-text span { color: rgba(255,255,255,.5); }
.footer-legal { text-align: center; line-height: 1.55; }
.footer-legal p { margin: 0; }
.footer-legal p + p { margin-top: 3px; font-size: 11px; color: rgba(255,255,255,.48); }
.footer-grid > a { justify-self: end; text-underline-offset: 4px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .section-pad { padding: 86px 0; }
  .hero-grid, .approach-grid, .about-grid, .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 72px; }
  .hero-card { max-width: 620px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .approach .section-heading { position: static; }
  .about-copy { max-width: none; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; top: 72px; left: 14px; right: 14px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 12px; }
  .nav-cta { margin-top: 5px; text-align: center; }
  h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero { padding-top: 58px; }
  .hero-grid { gap: 42px; }
  .trust-items { min-height: 70px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .section-heading { margin-bottom: 38px; }
  .about-grid { gap: 28px; }
  .cta-grid { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; min-height: 0; padding: 34px 0; gap: 18px; }
  .footer-legal { text-align: left; }
  .footer-grid > a { justify-self: start; }
}
