@charset "utf-8";

:root { --bg: #F7F3EC; --bg-alt: #EEE8DC; --bg-card: #FDFAF5; --fg: #1E1A13; --fg-mid: #3E3828; --fg-muted: #7A7160; --accent: #2D5A27; --accent-light: #3D7A35; --accent-dim: rgba(45,90,39,0.08); --rule: rgba(30,26,19,0.12); --rule-strong: rgba(30,26,19,0.22); --gold: #9B7526; --gold-light: #B8912E; --display-font: 'Cormorant Garamond', Georgia, serif; --body-font: 'DM Sans', 'Helvetica Neue', sans-serif; --nav-bg: rgba(247,243,236,0.96); --nav-border: rgba(30,26,19,0.10); --footer-bg: #1E1A13; --footer-fg: rgba(247,243,236,0.50); --footer-name: #F7F3EC; --section-pad: 5rem; }

*, ::before, ::after { box-sizing: border-box; margin: 0px; padding: 0px; }

html { scroll-behavior: smooth; }

body { font-family: var(--body-font); background: var(--bg); color: var(--fg); overflow-x: hidden; }

h1, h2, h3 { font-family: var(--display-font); font-weight: 400; line-height: 1.08; color: var(--fg); }

h1 { font-size: clamp(42px, 5.5vw, 78px); letter-spacing: -0.02em; }

h2 { font-size: clamp(32px, 3.5vw, 52px); letter-spacing: -0.015em; }

h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 400; }

em { font-style: italic; color: var(--gold); }

strong { font-weight: 600; color: var(--fg); }

p { font-size: 16px; font-weight: 300; color: var(--fg-muted); line-height: 1.8; text-wrap: pretty; }

p + p { margin-top: 1rem; }

.section-overline { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

.divider { width: 36px; height: 1px; background: var(--gold); margin: 1.5rem 0px; }

.container { max-width: 1200px; margin: 0px auto; padding: 0px 4rem; }

nav { position: fixed; top: 0px; left: 0px; right: 0px; z-index: 1000; height: 68px; padding: 0px 4rem; display: flex; align-items: center; justify-content: space-between; background: var(--nav-bg); border-bottom: 1px solid var(--nav-border); backdrop-filter: blur(12px); }

.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 1px; }

.nav-logo-name { font-family: var(--display-font); font-size: 19px; font-weight: 600; color: var(--fg); letter-spacing: 0.06em; line-height: 1; }

.nav-logo-tag { font-size: 9px; font-weight: 400; color: var(--fg-muted); letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }

.nav-links a { font-size: 12.5px; font-weight: 400; color: var(--fg-muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; position: relative; }

.nav-links a::after { content: ""; position: absolute; bottom: -3px; left: 0px; right: 0px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s; }

.nav-links a:hover, .nav-links a.active { color: var(--fg); }

.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: inline-block; padding: 9px 22px; background: var(--gold); color: white; text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; transition: background 0.2s; }

.nav-cta:hover { background: var(--gold-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; padding: 4px; }

.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--fg); transition: transform 0.3s, opacity 0.3s; }

.btn-primary { display: inline-block; padding: 14px 34px; background: var(--gold); color: white; text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 2px; transition: background 0.2s, transform 0.15s; }

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost { display: inline-flex; align-items: center; gap: 8px; color: var(--fg-muted); text-decoration: none; font-size: 13px; letter-spacing: 0.04em; transition: color 0.2s; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; background: none; cursor: pointer; }

.btn-ghost:hover { color: var(--fg); }

.btn-ghost::after { content: "→"; transition: transform 0.2s; }

.btn-ghost:hover::after { transform: translateX(4px); }

#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0px 4rem 6rem; background: rgb(247, 243, 236); position: relative; overflow: hidden; }

.hero-ornament { position: absolute; top: 6rem; right: 4rem; width: 320px; height: 320px; border: 1px solid rgba(155, 117, 38, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.hero-ornament::before { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(155, 117, 38, 0.1); border-radius: 50%; }

.hero-ornament-text { font-family: var(--display-font); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(155, 117, 38, 0.6); text-align: center; line-height: 1.8; }

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-overline { font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }

.hero-headline { font-family: var(--display-font); font-size: clamp(48px, 6.5vw, 90px); font-weight: 400; line-height: 1.04; color: rgb(26, 24, 20); letter-spacing: -0.025em; }

.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub { margin-top: 2rem; font-size: 16px; font-weight: 300; color: var(--fg-muted); max-width: 540px; line-height: 1.75; }

.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--fg-muted); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; }

.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

@keyframes fadeUp { 
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0px); }
}

.hero-animate .hero-overline { animation: 0.7s ease 0.1s 1 normal both running fadeUp; }

.hero-animate .hero-headline { animation: 0.8s ease 0.2s 1 normal both running fadeUp; }

.hero-animate .hero-sub { animation: 0.8s ease 0.35s 1 normal both running fadeUp; }

.hero-animate .hero-actions { animation: 0.8s ease 0.5s 1 normal both running fadeUp; }

.hero-overline, .hero-headline, .hero-sub, .hero-actions { opacity: 1; }

.trust-bar { padding: 3rem 4rem; border-bottom: 1px solid var(--rule); background: var(--bg-card); }

.trust-label { font-size: 10px; font-weight: 500; color: var(--fg-muted); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.75rem; text-align: center; }

.trust-items { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }

.trust-item { display: flex; align-items: center; gap: 10px; color: var(--fg-muted); }

.trust-icon { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.6; }

.trust-text { font-size: 12px; font-weight: 400; letter-spacing: 0.02em; white-space: nowrap; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.stat-box { background: var(--bg-card); padding: 3rem 2.5rem; text-align: center; }

.stat-box-num { font-family: var(--display-font); font-size: 56px; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }

.stat-box-label { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); }

#services-preview { padding: 6rem 0px; background: var(--bg); }

.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }

.services-intro { font-size: 15px; font-weight: 300; color: var(--fg-muted); line-height: 1.8; }

.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); }

.card { background: var(--bg-card); padding: 2.5rem; position: relative; overflow: hidden; transition: background 0.3s; }

.card:hover { background: var(--bg-alt); }

.card::before { content: ""; position: absolute; top: 0px; left: 0px; width: 2px; height: 0px; background: var(--gold); transition: height 0.4s; }

.card:hover::before { height: 100%; }

.card-num { font-family: var(--display-font); font-size: 52px; font-weight: 300; color: var(--rule); line-height: 1; margin-bottom: 1.25rem; transition: color 0.3s; }

.card:hover .card-num { color: rgba(155, 117, 38, 0.15); }

.card h3 { margin-bottom: 0.75rem; }

.card p { font-size: 15px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; }

.tag { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(155, 117, 38, 0.2); padding: 4px 10px; border-radius: 2px; }

.dmod-section { padding: 6rem 0px; background: var(--bg-card); border-top: 1px solid var(--rule); }

.dmod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.dmod-stats { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }

.dmod-stat { background: var(--bg-alt); padding: 2rem 2.5rem; }

.dmod-stat-num { font-family: var(--display-font); font-size: 42px; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }

.dmod-stat-title { font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 0.4rem; }

.dmod-stat-detail { font-size: 15px; font-weight: 300; color: var(--fg-muted); line-height: 1.6; }

.narrative-section { padding: 6rem 0px; background: var(--bg-alt); border-top: 1px solid var(--rule); }

.narrative-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.narrative-quote { font-family: var(--display-font); font-size: clamp(24px, 2.5vw, 38px); font-weight: 300; font-style: italic; color: var(--fg); line-height: 1.35; letter-spacing: -0.01em; }

.narrative-quote span { color: var(--gold); }

.narrative-attr { margin-top: 1.5rem; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); }

.cta-section { padding: 6rem 0px; background: var(--bg); border-top: 1px solid var(--rule); }

.cta-inner { text-align: center; max-width: 680px; margin: 0px auto; }

.cta-inner h2 { margin-bottom: 2.5rem; }

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }

footer { background: var(--footer-bg); color: var(--footer-fg); padding: 4rem; }

.footer-inner { max-width: 1200px; margin: 0px auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(247, 243, 236, 0.1); }

.footer-brand-name { font-family: var(--display-font); font-size: 22px; font-weight: 400; color: var(--footer-name); letter-spacing: 0.06em; margin-bottom: 0.5rem; }

.footer-brand-tag { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--footer-fg); margin-bottom: 1.25rem; }

.footer-brand-desc { font-size: 13px; font-weight: 300; color: var(--footer-fg); line-height: 1.7; }

.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--footer-name); margin-bottom: 1.25rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; list-style: none; }

.footer-links a { font-size: 13px; font-weight: 300; color: var(--footer-fg); text-decoration: none; transition: color 0.2s; }

.footer-links a:hover { color: var(--footer-name); }

.footer-bottom { max-width: 1200px; margin: 0px auto; padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--footer-fg); flex-wrap: wrap; gap: 1rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }

.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  nav { padding: 0px 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0px; right: 0px; background: var(--nav-bg); padding: 2rem 1.5rem; border-bottom: 1px solid var(--nav-border); gap: 1.5rem; }
  #hero { padding: 0px 1.5rem 5rem; }
  .hero-ornament { display: none; }
  .container { padding: 0px 1.5rem; }
  .trust-bar { padding: 2rem 1.5rem; }
  .trust-items { gap: 1.5rem; justify-content: flex-start; }
  .trust-text { white-space: normal; }
  .stats-row { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .dmod-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .narrative-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner h2 { font-size: clamp(28px, 5vw, 40px); }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}

:root { --bg: #F7F3EC; --bg-alt: #EEE8DC; --bg-card: #FDFAF5; --fg: #1E1A13; --fg-mid: #3E3828; --fg-muted: #7A7160; --accent: #2D5A27; --accent-light: #3D7A35; --accent-dim: rgba(45,90,39,0.08); --rule: rgba(30,26,19,0.12); --rule-strong: rgba(30,26,19,0.22); --gold: #9B7526; --gold-light: #B8912E; --display-font: 'Cormorant Garamond',Georgia,serif; --body-font: 'DM Sans','Helvetica Neue',sans-serif; --nav-bg: rgba(247,243,236,0.96); --nav-border: rgba(30,26,19,0.10); --footer-bg: #1E1A13; --footer-fg: rgba(247,243,236,0.50); --footer-name: #F7F3EC; }

.overline { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

section { padding: 5rem 0px; }

.page-hero { padding: 9rem 4rem 5rem; background: var(--bg-alt); border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; }

.page-hero-inner { max-width: 780px; position: relative; }

.page-hero h1 { color: var(--fg); }

.page-hero p { margin-top: 1.5rem; font-size: 16px; font-weight: 300; color: var(--fg-muted); line-height: 1.75; max-width: 580px; }

.cred-list { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }

.cred-item { background: var(--bg-card); padding: 1.25rem 1.5rem; display: grid; grid-template-columns: 28px 1fr; gap: 1rem; align-items: start; transition: background 0.2s; }

.cred-item:hover { background: var(--bg-alt); }

.cred-check { margin-top: 3px; width: 20px; height: 20px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.cred-check svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; }

.cred-title { font-size: 16px; font-weight: 500; color: var(--fg); margin-bottom: 3px; }

.cred-detail { font-size: 14px; font-weight: 300; color: var(--fg-muted); line-height: 1.5; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); }

.proof-card { background: var(--bg-card); padding: 2.25rem; transition: background 0.3s; }

.proof-card:hover { background: var(--bg-alt); }

.proof-stat { font-family: var(--display-font); font-size: 44px; font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }

.proof-label { font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 0.4rem; }

.proof-detail { font-size: 14px; font-weight: 300; color: var(--fg-muted); line-height: 1.6; }

.steps { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }

.step { background: var(--bg-alt); display: grid; grid-template-columns: 90px 1fr; transition: background 0.3s; }

.step:hover { background: var(--bg-card); }

.step-num { font-family: var(--display-font); font-size: 52px; font-weight: 300; color: var(--gold); padding: 1.75rem 0px 1.75rem 2rem; line-height: 1; }

.step-body { padding: 1.75rem 2rem; border-left: 1px solid var(--rule); }

.step-title { font-size: 17px; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }

.step-text { font-size: 16px; font-weight: 300; color: var(--fg-muted); line-height: 1.75; }

.service-block { padding: 5rem 0px; border-bottom: 1px solid var(--rule); }

.service-block:last-of-type { border-bottom-width: medium; border-bottom-style: none; border-bottom-color: currentcolor; }

.service-block.alt { background: var(--bg-alt); }

.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.who-list { margin-top: 2rem; }

.who-list h4 { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

.who-list ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.who-list li { font-size: 15px; font-weight: 300; color: var(--fg-muted); padding-left: 1.1rem; position: relative; line-height: 1.5; }

.who-list li::before { content: "—"; position: absolute; left: 0px; color: var(--gold); font-size: 11px; top: 1px; }

.diff-box { background: var(--bg-card); border-left: 2px solid var(--gold); padding: 1.75rem 2rem; margin-top: 2rem; }

.diff-box h4 { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }

.diff-box p { font-size: 15px; color: var(--fg-muted); line-height: 1.8; }

.ai-banner { background: var(--bg-card); border-left: 2px solid var(--gold); padding: 2rem 2.5rem; margin-bottom: 5rem; }

.ai-banner p { font-size: 17px; font-weight: 300; color: var(--fg-mid); line-height: 1.75; }

.ai-banner strong { color: var(--gold); }

.info-table { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }

.info-row { display: grid; grid-template-columns: 140px 1fr; padding: 1.1rem 1.5rem; background: var(--bg-card); }

.info-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); align-self: center; }

.info-value { font-size: 14px; font-weight: 400; color: var(--fg); }

.info-value a { color: var(--gold); text-decoration: none; }

.info-value a:hover { color: var(--gold-light); }

.form { display: flex; flex-direction: column; gap: 1px; background: var(--rule); }

.form-field { background: var(--bg-card); padding: 1.25rem 1.5rem; }

.form-field:focus-within { background: var(--bg-alt); }

.form-field label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 7px; }

.form-field input, .form-field select, .form-field textarea { width: 100%; background: transparent; border-width: medium; border-style: none; border-color: currentcolor; border-image: none; outline: none; color: var(--fg); font-family: var(--body-font); font-size: 14px; font-weight: 300; resize: none; appearance: none; }

.form-field input::placeholder, .form-field textarea::placeholder { color: var(--rule-strong); }

.form-submit { padding: 1.1rem 2rem; background: var(--gold); border-width: medium; border-style: none; border-color: currentcolor; border-image: none; color: white; font-family: var(--body-font); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; align-self: start; margin: 0.75rem 0px 0px 1px; }

.form-submit:hover { background: var(--gold-light); }

.cta-section { padding: 5rem 0px; background: var(--bg-alt); border-top: 1px solid var(--rule); }

.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }

.cta-actions { display: flex; gap: 1.5rem; align-items: center; flex-shrink: 0; }

.pullquote { margin: 2rem 0px; padding-left: 1.5rem; border-left: 3px solid var(--gold); }

.pullquote p { font-family: var(--display-font); font-size: 22px; font-weight: 300; font-style: italic; color: var(--fg); line-height: 1.5; }

.response-note { margin-top: 2.5rem; padding: 1.25rem 1.5rem; background: var(--bg-card); border-left: 2px solid var(--gold); }

.response-note p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

.response-note strong { color: var(--fg); }

.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); margin-top: 3rem; }

.principle-card { background: var(--bg-alt); padding: 2.5rem; }

.principle-num { font-family: var(--display-font); font-size: 44px; font-weight: 300; color: var(--rule-strong); line-height: 1; margin-bottom: 1rem; }

.principle-title { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }

.principle-body { font-size: 15px; font-weight: 300; color: var(--fg-muted); line-height: 1.75; }

.success-msg { display: none; padding: 1.5rem; background: var(--bg-card); border-left: 2px solid var(--gold); margin-top: 1rem; }

.success-msg p { font-size: 14px; color: var(--fg); }

@media (max-width: 900px) {
  nav { padding: 0px 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0px; right: 0px; background: var(--nav-bg); padding: 2rem 1.5rem; border-bottom: 1px solid var(--nav-border); gap: 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3.5rem; }
  .container { padding: 0px 1.5rem; }
  .card-grid-2, .proof-grid, .service-layout, .principles-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  footer { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.why-layout { display: grid; grid-template-columns: 380px 1fr; gap: 6rem; align-items: start; padding: 5rem 0px; }

@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-narrative-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

.approach-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; padding: 5rem 0px 3rem; }

.means-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; max-width: 640px; }

.means-item { display: grid; grid-template-columns: 20px 1fr; gap: 0.75rem; align-items: start; }

.means-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 0.6rem; flex-shrink: 0; }

.means-text { font-size: 16px; font-weight: 300; color: var(--fg-muted); line-height: 1.7; }

.means-text strong { color: var(--fg); font-weight: 500; }

@media (max-width: 900px) {
  .approach-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .principles-grid { grid-template-columns: 1fr; }
}

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; padding: 5rem 0px; }

.story p { font-size: 15px; line-height: 1.9; }

.legal-note { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); font-size: 12px; color: var(--fg-muted); }

.founder-photo { width: 100%; aspect-ratio: 1 / 1; background: var(--bg-alt); border: 1px solid var(--rule); margin-bottom: 2rem; position: relative; overflow: hidden; }

.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.95) contrast(1.02); }

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; padding: 5rem 0px; }

.form-title { font-family: var(--display-font); font-size: 28px; font-weight: 300; color: var(--fg); margin-bottom: 1.5rem; }

.bottom-trust-grid { display: flex; gap: 4rem; flex-wrap: wrap; justify-content: center; align-items: center; }

.bottom-trust-item { text-align: center; }

.bottom-trust-num { font-family: var(--display-font); font-size: 36px; font-weight: 400; color: var(--gold); line-height: 1; }

.bottom-trust-label { font-size: 11px; color: var(--fg-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 5px; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .bottom-trust-grid { gap: 2rem; }
}


/* --- policies page --- */
.policy-nav { position: sticky; top: 68px; z-index: 900; background: var(--bg-card); border-bottom: 1px solid var(--rule); }
.policy-nav .container { display: flex; gap: 2.5rem; padding-top: 1rem; padding-bottom: 1rem; }
.policy-nav a { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.policy-nav a:hover { color: var(--gold); }
.policy-section { padding: 4.5rem 0; border-bottom: 1px solid var(--rule); }
.policy-section:nth-of-type(even) { background: var(--bg-alt); }
.policy-body { max-width: 760px; margin-top: 1.5rem; }
.policy-sub { font-family: var(--display-font); font-size: 22px; font-weight: 400; color: var(--fg); margin: 2.5rem 0 0.75rem; }
.policy-body > p { margin-bottom: 1rem; }
.policy-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 1rem 0 0.5rem; }
.policy-list li { font-size: 15.5px; font-weight: 300; color: var(--fg-muted); line-height: 1.75; padding-left: 1.25rem; position: relative; }
.policy-list li::before { content: ""; position: absolute; left: 0; top: 0.7rem; width: 7px; height: 1px; background: var(--gold); }
.policy-list li strong { color: var(--fg); font-weight: 500; }
@media (max-width: 900px) {
  .policy-nav .container { gap: 1.25rem; overflow-x: auto; }
  .policy-section { padding: 3rem 0; }
}
