:root {
  --paper: #f4ecdf;
  --paper-2: #eadcc8;
  --paper-3: #dfcfb7;
  --cream: #fbf7f0;
  --sand: #cdb99b;
  --taupe: #9e8769;
  --brown: #6a5039;
  --brown-2: #503a2a;
  --ink: #211b17;
  --ink-2: #3a3029;
  --ink-soft: #5d5046;
  --line: rgba(70, 52, 38, .22);
  --line-strong: rgba(55, 40, 29, .38);
  --white: #fffdf9;
  --shadow: 0 22px 65px rgba(55, 40, 29, .13);
  --shadow-soft: 0 10px 34px rgba(55, 40, 29, .08);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased; }
button, a { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
p { margin: 0 0 1.05em; }
h1, h2, h3 { margin: 0; line-height: 1.06; font-family: var(--serif); font-weight: 500; letter-spacing: -.025em; }
h1 { font-size: clamp(3.35rem, 7.4vw, 7.2rem); max-width: 12ch; }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.35rem); }
h3 { font-size: 1.5rem; }
/* Deliberate breathing room between headings and the copy that follows. */
h2 + p { margin-top: 24px; }
h3 + p { margin-top: 14px; }
.section-heading h2 + p { margin-top: 26px; }
.contact-copy h2 + p { margin-top: 24px; }
.dialog-card h2 + p { margin-top: 18px; }
strong { color: var(--ink); }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; background: var(--ink); color: var(--cream); padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { position: relative; padding: 108px 0; overflow: clip; }
.section-paper { background: var(--cream); }
.section-soft { background: var(--paper); }
.section-ink { background: #2d241e; color: #f8f1e6; }
.section-heading { max-width: 850px; margin-bottom: 50px; }
.section-heading > p:last-child { max-width: 760px; color: var(--ink-soft); font-size: 1.05rem; }
.section-index { font-family: var(--serif); font-size: .9rem; letter-spacing: .16em; color: var(--brown); margin-bottom: 18px; }
.section-index.light { color: #d9c7ab; }
.kicker, .mini-label { margin: 0 0 18px; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--brown); }
.kicker.light { color: #d9c7ab; }
.fine-print { margin: 28px 0 0; color: var(--ink-soft); font-size: .9rem; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(244,236,223,.94); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: grid; text-decoration: none; line-height: 1.15; }
.brand-owner { font-family: var(--serif); font-size: 1.22rem; }
.brand-service { margin-top: 4px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { text-decoration: none; font-size: .88rem; color: var(--ink-2); }
.site-nav a:hover { color: var(--brown); }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: var(--cream); padding: 10px 17px; }
.menu-toggle { display: none; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); border-radius: 999px; padding: 8px 14px; }

.hero { padding-top: 112px; background: linear-gradient(180deg, #efe4d3 0%, #f4ecdf 72%, #f7f1e8 100%); min-height: calc(100vh - 78px); }
.hero-pattern { position: absolute; inset: 0; opacity: .58; pointer-events: none; background-image: linear-gradient(rgba(78,56,39,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(78,56,39,.06) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero::after { content: ''; position: absolute; width: 580px; height: 580px; border: 1px solid rgba(106,80,57,.14); border-radius: 50%; right: -240px; top: 90px; box-shadow: 0 0 0 70px rgba(106,80,57,.035), 0 0 0 140px rgba(106,80,57,.02); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.48fr .72fr; gap: 72px; align-items: center; }
.hero-lede { max-width: 760px; margin-top: 30px; color: var(--ink-2); font-size: 1.16rem; line-height: 1.75; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 21px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 760; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--cream); box-shadow: 0 10px 24px rgba(34,28,23,.15); }
.button-primary:hover { background: #0f0c0a; }
.button-secondary { background: rgba(255,255,255,.32); border-color: var(--line-strong); color: var(--ink); }
.button-secondary:hover { background: rgba(255,255,255,.62); }
.full { width: 100%; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 30px; color: var(--ink-soft); font-size: .82rem; }
.hero-proof span { position: relative; padding-left: 14px; }
.hero-proof span::before { content: ''; position: absolute; width: 5px; height: 5px; border-radius: 50%; left: 0; top: .65em; background: var(--brown); }
.hero-card { position: relative; padding: 38px 34px 34px; background: rgba(255,253,249,.55); border: 1px solid rgba(87,63,45,.24); border-radius: 28px; box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.hero-card-no { position: absolute; right: 24px; top: 20px; font-family: var(--serif); font-size: 4.8rem; line-height: 1; color: rgba(91,66,47,.09); }
.hero-card h2 { font-size: 2.2rem; max-width: 11ch; margin-bottom: 20px; }
.hero-card > p:not(.mini-label):not(.quote-line) { color: var(--ink-soft); }
.hero-card-rule { width: 52px; border-top: 1px solid var(--brown); margin: 26px 0; }
.quote-line { font-family: var(--serif); font-size: 1.15rem; line-height: 1.45; }
.brand-signature, .closing-signature { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; margin-top: 74px; color: var(--brown-2); }
.brand-signature span, .closing-signature span { font-family: var(--serif); font-size: 1.25rem; }
.brand-signature i, .closing-signature i { display: block; width: 65px; border-top: 1px solid var(--brown); }
.brand-signature small, .closing-signature small { letter-spacing: .08em; text-transform: uppercase; font-size: .65rem; }

.editorial-grid { display: grid; grid-template-columns: 80px .78fr 1fr; gap: 40px; align-items: start; }
.editorial-title h2 { font-size: clamp(2.5rem, 4.6vw, 4.5rem); }
.editorial-copy { color: var(--ink-soft); }
.prose-large { font-size: 1.08rem; }
.pull-quote { margin-top: 34px; border-left: 2px solid var(--brown); padding: 5px 0 5px 24px; color: var(--ink); font-family: var(--serif); font-size: 1.5rem; line-height: 1.45; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.service-card { min-height: 260px; padding: 28px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); background: rgba(255,255,255,.16); transition: background .2s ease, transform .2s ease; }
.service-card:hover { background: rgba(255,255,255,.48); transform: translateY(-2px); }
.service-card > span { display: block; margin-bottom: 36px; font-size: .68rem; letter-spacing: .16em; color: var(--brown); }
.service-card h3 { margin-bottom: 15px; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.approach-grid { display: grid; grid-template-columns: .8fr 1.15fr; gap: 96px; align-items: start; }
.approach-intro h2 { color: #fff9f0; }
.approach-copy { color: #e8ddce; font-size: 1.05rem; }
.approach-copy strong { color: #fff9f0; }
.approach-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.approach-pill-row span { border: 1px solid rgba(246,237,224,.28); border-radius: 999px; padding: 8px 13px; color: #f3e9db; font-size: .75rem; letter-spacing: .05em; }

.statement-section { background: #d8c5a8; }
.statement-wrap { max-width: 980px; }
.statement { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 5.7vw, 5.8rem); line-height: 1.08; color: var(--ink); }
.statement em { font-weight: 400; color: var(--ink-soft); }
.statement strong { font-weight: 500; color: var(--ink); }
.statement-note { margin-top: 34px; max-width: 650px; color: var(--ink-2); }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: rgba(255,253,249,.42); box-shadow: var(--shadow-soft); }
.package-card.featured { background: var(--cream); box-shadow: var(--shadow); border-color: rgba(80,58,42,.52); transform: translateY(-8px); }
.featured-label { position: absolute; right: 24px; top: -13px; background: var(--brown-2); color: #fff7ec; border-radius: 999px; padding: 6px 12px; font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.package-top { display: flex; justify-content: space-between; gap: 22px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.package-tier { margin: 0 0 8px; color: var(--brown); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.package-top h3 { font-size: 1.7rem; }
.price { margin: 0; white-space: nowrap; font-size: 1.2rem; font-weight: 850; color: var(--ink); }
.package-purpose { min-height: 155px; margin: 22px 0 0; color: var(--ink-soft); }
.package-includes { margin-top: 10px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.package-includes .mini-label { margin-bottom: 12px; }
.package-includes ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.package-includes li { position: relative; padding-left: 20px; color: var(--ink-2); font-size: .92rem; }
.package-includes li::before { content: '—'; position: absolute; left: 0; color: var(--brown); }
.best-for { margin: 20px 0 24px; }
.best-for span { display: block; color: var(--brown); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 7px; }
.best-for p { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.package-card .button { margin-top: auto; }
.scope-note { margin-top: 28px; padding: 20px 22px; border-left: 3px solid var(--brown); background: rgba(255,255,255,.3); color: var(--ink-soft); }

.timeline { max-width: 980px; margin-left: auto; }
.timeline article { display: grid; grid-template-columns: 95px 1fr; gap: 30px; padding: 28px 0; border-top: 1px solid var(--line-strong); }
.timeline article:last-child { border-bottom: 1px solid var(--line-strong); }
.timeline article > span { font-family: var(--serif); font-size: 1.55rem; color: var(--brown); }
.timeline h3 { font-size: 1.6rem; margin-bottom: 10px; }
.timeline p { margin: 0; color: var(--ink-soft); }

.payment-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.payment-grid > div:first-child p:not(.kicker) { color: var(--ink-soft); }
.payment-table { border: 1px solid var(--line-strong); background: rgba(255,255,255,.36); }
.payment-row { display: grid; grid-template-columns: 1.15fr repeat(3, .85fr); gap: 12px; padding: 17px 18px; border-top: 1px solid var(--line); align-items: center; }
.payment-row:first-child { border-top: 0; }
.payment-row.head { background: var(--brown-2); color: #fff8ee; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.payment-row strong { font-size: .92rem; }

.policy-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; }
.policy-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.policy-cards article { padding: 25px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.policy-cards h3 { margin-bottom: 12px; font-size: 1.35rem; }
.policy-cards p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.16); }
.fit-card { background: #2d241e; padding: 44px; }
.fit-card h2 { color: #fff9f0; font-size: clamp(2rem, 3.6vw, 3.5rem); }
.fit-card ul { margin: 30px 0 0; padding-left: 20px; color: #eadfce; }
.fit-card li { margin-bottom: 12px; }
.fit-card.positive { background: #34291f; }
.fit-card.negative { background: #29211c; }

.boundary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.boundary-grid article { padding: 34px; background: rgba(255,255,255,.35); border: 1px solid var(--line-strong); border-radius: var(--radius); }
.boundary-label { margin: 0 0 24px; font-family: var(--serif); font-size: 2rem; }
.boundary-grid ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.boundary-grid li { margin-bottom: 11px; }

.faq-shell { max-width: 980px; }
.accordion { display: grid; gap: 10px; }
details { background: rgba(255,253,249,.46); border: 1px solid var(--line-strong); border-radius: 14px; padding: 0 20px; }
summary { cursor: pointer; list-style: none; font-weight: 760; padding: 19px 36px 19px 0; position: relative; color: var(--ink); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 0; top: 16px; font-family: var(--serif); font-size: 1.45rem; color: var(--brown); }
details[open] summary::after { content: '–'; }
details p { margin: 0; padding: 0 0 20px; color: var(--ink-soft); }

.contact-section { background: linear-gradient(135deg, #e3d2b8 0%, #f3e9da 64%, #e6d7c2 100%); }
.contact-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 72px; align-items: center; }
.contact-copy > p:not(.kicker) { max-width: 650px; color: var(--ink-2); font-size: 1.06rem; }
.contact-card { padding: 28px; background: rgba(255,253,249,.62); border: 1px solid var(--line-strong); border-radius: 24px; box-shadow: var(--shadow); }
.contact-line { width: 100%; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; text-align: left; text-decoration: none; color: var(--ink); border: 0; border-top: 1px solid var(--line); background: transparent; padding: 17px 4px; }
.contact-line:first-of-type { border-top: 0; }
.contact-line:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.contact-icon { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line-strong); border-radius: 50%; font-family: var(--serif); }
.contact-line span:nth-child(2) { display: grid; }
.contact-line small { color: var(--brown); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .62rem; }
.contact-line strong { font-size: .96rem; overflow-wrap: anywhere; }
.contact-line em { font-style: normal; color: var(--ink-soft); font-size: .78rem; }
.contact-line b { font-size: 1.2rem; }
.contact-note { display: grid; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.contact-note span { color: var(--ink-soft); font-size: .84rem; }
.closing-signature { margin-top: 64px; }

.site-footer { background: #241d18; color: #f1e6d6; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; font-size: .8rem; }
.footer-inner p { margin: 0; }
.floating-contact { position: fixed; right: 18px; bottom: 18px; z-index: 55; border: 1px solid rgba(255,255,255,.12); background: #2c241e; color: #fff8ee; padding: 13px 18px; border-radius: 999px; box-shadow: 0 14px 34px rgba(34,27,22,.28); font-weight: 800; }

.dialog { width: min(650px, calc(100% - 28px)); border: 0; padding: 0; background: transparent; }
.dialog::backdrop { background: rgba(24,19,16,.68); backdrop-filter: blur(6px); }
.dialog-card { position: relative; background: var(--cream); color: var(--ink); border: 1px solid var(--line-strong); border-radius: 24px; padding: 34px; box-shadow: var(--shadow); }
.dialog-card h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
.dialog-close { position: absolute; right: 16px; top: 12px; border: 0; background: transparent; color: var(--ink-soft); font-size: 2rem; line-height: 1; }
.dialog-intro { margin-top: 15px; color: var(--ink-soft); }
.starter-list { display: grid; gap: 10px; margin-top: 24px; }
.starter { display: grid; gap: 3px; text-align: left; border: 1px solid var(--line-strong); background: rgba(255,255,255,.46); color: var(--ink); padding: 15px 16px; border-radius: 12px; }
.starter:hover { background: var(--paper-2); }
.starter span { color: var(--ink-soft); font-size: .82rem; }
.small-dialog { width: min(520px, calc(100% - 28px)); }
.phone-action-grid { display: grid; gap: 10px; margin-top: 24px; }
.phone-action { display: grid; gap: 2px; text-align: left; text-decoration: none; border: 1px solid var(--line-strong); background: rgba(255,255,255,.46); color: var(--ink); padding: 16px; border-radius: 12px; }
.phone-action:hover { background: var(--paper-2); }
.phone-action span { font-weight: 800; }
.phone-action small { color: var(--ink-soft); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .hero-grid, .editorial-grid, .approach-grid, .payment-grid, .policy-grid, .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .editorial-grid .section-index { margin-bottom: -12px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .package-purpose { min-height: 0; }
  .policy-cards { grid-template-columns: 1fr 1fr; }
  .site-nav { position: absolute; left: 24px; right: 24px; top: 70px; display: none; flex-direction: column; align-items: stretch; gap: 4px; background: var(--cream); border: 1px solid var(--line-strong); border-radius: 18px; padding: 16px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-cta { padding: 11px 12px; }
  .menu-toggle { display: inline-flex; }
  .fit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .hero { padding-top: 78px; min-height: auto; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.4rem); }
  .hero-card { padding: 30px 24px; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .brand-service { display: none; }
  .service-grid, .policy-cards, .boundary-grid { grid-template-columns: 1fr; }
  .timeline article { grid-template-columns: 58px 1fr; gap: 14px; }
  .payment-table { overflow-x: auto; }
  .payment-row { min-width: 620px; }
  .fit-card { padding: 30px 24px; }
  .footer-inner { flex-direction: column; }
  .contact-card { padding: 20px; }
  .brand-signature, .closing-signature { flex-wrap: wrap; }
  .floating-contact { right: 12px; bottom: 12px; }
  .dialog-card { padding: 30px 20px 22px; }
}

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

/* Preserve heading-to-body spacing in cards and dense editorial sections. */
.service-card h3 + p { margin-top: 15px; }
.package-card h3 + p { margin-top: 16px; }
.approach-intro h2 + p, .editorial-title h2 + p { margin-top: 24px; }
