@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --ink: #1b2a2f;
  --ink-soft: #2a3d43;
  --paper: #f7f5f1;
  --white: #fffdfa;
  --brass: #8a7250;
  --brass-light: #b49d7a;
  --text: #475155;
  --line: #dcd6cc;
  --mist: #ebe7df;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --shadow: 0 16px 45px rgba(27, 42, 47, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--sans); font-size: 17px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--white); border: 1px solid var(--brass); }
.skip-link:focus { top: 16px; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(247,245,241,.94); border-bottom: 1px solid rgba(220,214,204,.75); backdrop-filter: blur(15px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 13px; font-weight: 600; letter-spacing: .18em; }
.brand-mark { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--brass); color: var(--brass); font-family: var(--serif); font-size: 20px; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 23px; font-size: 13px; color: var(--ink); }
.nav-links a:not(.button) { position: relative; padding: 8px 0; }
.nav-links a:not(.button)::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: var(--brass); content: ''; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav-links a:not(.button):hover::after, .nav-links a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; color: var(--ink); }
.menu-toggle span { display: block; width: 23px; height: 1px; margin: 5px 0; background: currentColor; }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 10px; padding: 11px 19px; border: 1px solid var(--brass); background: var(--brass); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .02em; line-height: 1; transition: background .25s, color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); background: var(--ink); border-color: var(--ink); }
.button--ghost { background: transparent; color: var(--brass); }
.button--ghost:hover { color: var(--white); }
.button--light { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.button--light:hover { border-color: var(--white); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--brass); font-size: 14px; font-weight: 600; }
.text-link::after { content: '→'; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.eyebrow { margin: 0 0 16px; color: var(--brass); font-size: 11px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: 1.12; }
h1 { max-width: 850px; font-size: clamp(42px, 5.3vw, 68px); letter-spacing: -.035em; }
h2 { font-size: clamp(31px, 3.5vw, 46px); letter-spacing: -.027em; }
h3 { font-size: 25px; }
p { margin: 0 0 18px; }
.lede { max-width: 670px; font-size: clamp(18px, 2vw, 21px); line-height: 1.62; }
.page-intro { padding: 84px 0 65px; background: var(--paper); }
.page-intro .lede { margin-top: 24px; }
.section { padding: 104px 0; }
.section--compact { padding: 76px 0; }
.section--white { background: var(--white); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.78); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .eyebrow { color: var(--brass-light); }
.section-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(260px, .7fr); align-items: end; gap: 70px; margin-bottom: 54px; }
.section-heading p { margin: 0; }

.hero { position: relative; overflow: hidden; padding: 92px 0 102px; background: var(--ink); color: rgba(255,255,255,.8); }
.hero::before { position: absolute; right: -10vw; bottom: -25vw; width: min(67vw, 900px); height: min(67vw, 900px); border: 1px solid rgba(180,157,122,.34); border-radius: 50%; content: ''; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: center; gap: clamp(38px, 7vw, 100px); }
.hero h1 { color: var(--white); }
.hero .lede { margin: 29px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-visual { position: relative; min-height: 448px; overflow: hidden; background: #ced8d3; box-shadow: 16px 18px 0 rgba(138,114,80,.38); }
.hero-visual::before { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(150deg, rgba(247,245,241,.85), rgba(247,245,241,.08) 47%), linear-gradient(110deg, rgba(27,42,47,.1), transparent 50%); content: ''; }
.hero-window { position: absolute; inset: 34px 30px 32px 34px; border: 12px solid rgba(36,51,52,.77); background: linear-gradient(180deg, #c5d6d3 0 43%, #8ca4a0 44% 48%, #78918e 49% 100%); }
.hero-window::before { position: absolute; top: 0; bottom: 0; left: 51%; width: 9px; background: rgba(36,51,52,.8); content: ''; }
.hero-window::after { position: absolute; right: -8%; bottom: 25%; left: -9%; height: 31%; background: linear-gradient(147deg, transparent 47%, rgba(43,70,67,.62) 48% 54%, transparent 55%), linear-gradient(34deg, transparent 49%, rgba(61,87,81,.6) 50% 58%, transparent 59%); content: ''; }
.hero-caption { position: absolute; right: 25px; bottom: 20px; color: var(--white); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.pillars, .service-grid, .values-grid, .reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar, .service-card, .value-card, .reason { min-height: 245px; padding: 34px; background: var(--white); }
.pillar-number, .step-number { display: block; margin-bottom: 28px; color: var(--brass); font-family: var(--serif); font-size: 23px; }
.pillar h3, .service-card h3, .value-card h3, .reason h3 { margin-bottom: 14px; }
.pillar p, .service-card p, .value-card p, .reason p { margin: 0; font-size: 15px; }

.service-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 358px; }
.service-card ul { margin: 21px 0 27px; padding: 0; list-style: none; font-size: 14px; }
.service-card li { position: relative; padding: 9px 0 9px 18px; border-bottom: 1px solid var(--mist); }
.service-card li::before { position: absolute; top: 17px; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--brass); content: ''; }

.method { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { position: relative; padding: 28px 22px 0 0; min-height: 214px; }
.step:not(:last-child)::after { position: absolute; top: 40px; right: 0; width: 1px; height: 110px; background: var(--line); content: ''; }
.step-number { margin-bottom: 20px; }
.step h3 { margin-bottom: 12px; font-size: 21px; }
.step p { max-width: 185px; margin: 0; font-size: 14px; }

.split { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(42px, 9vw, 155px); align-items: start; }
.quote { padding: 28px 0 0 30px; border-left: 1px solid var(--brass); color: var(--ink); font-family: var(--serif); font-size: 29px; line-height: 1.34; }
.check-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 18px 0 18px 28px; border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; top: 27px; left: 2px; width: 11px; height: 6px; border-bottom: 1px solid var(--brass); border-left: 1px solid var(--brass); content: ''; transform: rotate(-45deg); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; padding: 0 0 45px; border-bottom: 1px solid rgba(255,255,255,.2); }
.stat-label { display: block; margin-bottom: 10px; color: var(--brass-light); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.stat-value { color: var(--white); font-family: var(--serif); font-size: 29px; line-height: 1.2; }
.note { margin-top: 38px; font-size: 14px; }

.cta-band { padding: 75px 0; background: var(--brass); color: rgba(255,255,255,.85); }
.cta-band h2 { max-width: 690px; color: var(--white); }
.cta-band .split { align-items: end; }
.cta-band p { max-width: 390px; margin: 0 0 22px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; color: var(--ink); font-family: var(--serif); font-size: 22px; line-height: 1.25; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { flex: 0 0 auto; color: var(--brass); content: '+'; font-family: var(--sans); font-size: 25px; font-weight: 300; }
.faq-item[open] summary::after { content: '–'; }
.faq-answer { max-width: 760px; padding: 0 45px 25px 0; }

.comparison { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow); }
.comparison th, .comparison td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison th { background: var(--ink); color: var(--white); font-size: 13px; font-weight: 500; }
.comparison th:last-child { color: #f3e7d2; }
.comparison td { font-size: 15px; }
.comparison tr:last-child td { border-bottom: 0; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 9vw, 130px); }
.contact-aside { padding-top: 12px; }
.contact-aside .quote { margin-top: 36px; font-size: 24px; }
.contact-form { padding: clamp(25px, 4vw, 48px); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 7px; margin-bottom: 22px; }
.field--full { grid-column: 1 / -1; }
.field label, .consent { color: var(--ink); font-size: 13px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); outline: none; background: transparent; color: var(--ink); border-radius: 0; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); }
.field textarea { min-height: 122px; resize: vertical; }
.consent { display: flex; gap: 9px; align-items: flex-start; margin: 5px 0 25px; color: var(--text); font-weight: 400; }
.consent input { width: 15px; height: 15px; margin-top: 4px; accent-color: var(--brass); }
.form-status { margin: 16px 0 0; color: var(--brass); font-size: 14px; }

.founder-panel { min-height: 480px; padding: 38px; background: linear-gradient(150deg, #9c8b72, #394d4b 80%); color: var(--white); }
.founder-panel p { max-width: 235px; margin: 0; font-family: var(--serif); font-size: 27px; line-height: 1.3; }
.founder-panel span { display: block; margin-top: 15px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.testimonials-placeholder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-placeholder { min-height: 235px; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.testimonial-placeholder span { display: block; margin-bottom: 25px; color: var(--brass); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.testimonial-placeholder p { color: var(--ink); font-family: var(--serif); font-size: 23px; line-height: 1.35; }

.site-footer { padding: 68px 0 26px; background: #132025; color: rgba(255,255,255,.72); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 55px; padding-bottom: 58px; border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-brand { margin-bottom: 19px; color: var(--white); }
.footer-text { max-width: 315px; margin: 0; }
.footer-title { margin: 0 0 18px; color: var(--brass-light); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 7px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-bottom a:hover { color: var(--white); }

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

@media (max-width: 980px) {
  .nav-links { gap: 15px; font-size: 12px; }
  .hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 365px; max-width: 680px; width: 100%; }
  .method { grid-template-columns: 1fr 1fr; gap: 0 42px; }
  .step { min-height: auto; padding: 25px 0; border-bottom: 1px solid var(--line); }
  .step:not(:last-child)::after { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 34px, 1180px); }
  .nav { min-height: 66px; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; top: 66px; right: 0; bottom: 0; left: 0; display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 3px; padding: 27px 18px; background: var(--paper); font-size: 17px; overflow-y: auto; }
  .nav-links.is-open { display: flex; }
  .nav-links a:not(.button) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-links .button { margin-top: 14px; }
  .section, .page-intro { padding: 70px 0; }
  .section--compact { padding: 55px 0; }
  .hero { padding: 62px 0 70px; }
  .hero h1 { font-size: clamp(38px, 11vw, 53px); }
  .hero-visual { min-height: 290px; box-shadow: 10px 11px 0 rgba(138,114,80,.38); }
  .hero-window { inset: 23px; border-width: 8px; }
  .section-heading, .split { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .pillars, .service-grid, .values-grid, .reasons-grid, .testimonials-placeholder, .stats { grid-template-columns: 1fr; }
  .pillar, .service-card, .value-card, .reason { min-height: 0; padding: 28px; }
  .method { grid-template-columns: 1fr; }
  .step p { max-width: none; }
  .stats { gap: 27px; }
  .comparison { display: block; overflow-x: auto; white-space: nowrap; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
}

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

/* Gutenberg / Kadence integration */
.content-area .entry-content,
.content-area .entry-content-wrap,
.content-area .content-wrap { max-width: none; padding: 0; }
.entry-content > .wp-block-group:first-child { margin-top: 0; }
.entry-content .wp-block-cover.hero { margin-top: 0; }
.entry-content .wp-block-columns { margin-bottom: 0; }
.entry-content .wp-block-button__link { border-radius: 0; }
.entry-content .wp-block-details { padding: 0; border-bottom: 1px solid var(--line); }
.entry-content .wp-block-details summary { padding: 22px 0; color: var(--ink); font-family: var(--serif); font-size: 22px; cursor: pointer; }
.entry-content .wp-block-details > :not(summary) { max-width: 760px; padding: 0 0 22px; }
.editor-styles-wrapper .shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
