:root {
  --navy: #203449;
  --navy-deep: #152739;
  --cream: #f5f0e7;
  --paper: #fffdf9;
  --stone: #ded3c4;
  --taupe: #967b63;
  --brown: #523f32;
  --ink: #27343d;
  --muted: #647078;
  --line: rgba(32, 52, 73, 0.18);
  --shadow: 0 24px 60px rgba(25, 40, 54, 0.11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .7rem 1rem; background: var(--paper); color: var(--navy); }
.skip-link:focus { top: 1rem; }
.container { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }
.narrow { width: min(760px, 100%); }
.eyebrow { margin: 0 0 .85rem; color: var(--taupe); font-size: .78rem; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-weight: 500; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.8rem, 7vw, 5.9rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0; }
.lead { max-width: 720px; color: #45535d; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.6; }
.muted { color: var(--muted); }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: #edf0ef; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .eyebrow { color: #d0bca8; }
.section-heading { display: grid; gap: 1rem; max-width: 760px; margin-bottom: 2.6rem; }
.rule { height: 1px; background: var(--line); }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(32,52,73,.1); background: rgba(255,253,249,.94); backdrop-filter: blur(16px); }
.header-inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: auto; height: 58px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 1.05rem; }
.nav-links a { position: relative; color: #3d4b55; font-size: .86rem; font-weight: 650; text-decoration: none; }
.nav-links a.button, .nav-links a.button:hover { color: #fff; }
.nav-links a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: var(--taupe); transition: right .2s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.menu-button { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--navy); cursor: pointer; }
.menu-button svg { width: 21px; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .55rem; padding: .75rem 1.2rem; border: 1px solid var(--navy); border-radius: 2px; background: var(--navy); color: #fff; font-size: .9rem; font-weight: 700; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--navy-deep); }
.button-light { border-color: #fff; background: #fff; color: var(--navy); }
.button-outline { background: transparent; color: var(--navy); }
.button-outline-light { border-color: rgba(255,255,255,.55); background: transparent; color: #fff; }
.button-arrow::after { content: "↗"; font-size: 1.05em; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

.hero { min-height: calc(100svh - 80px); display: grid; align-items: stretch; background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(3.5rem, 7vw, 7rem); }
.hero-copy { display: grid; align-content: center; }
.hero-copy h1 span { color: var(--taupe); font-style: italic; }
.hero-copy .lead { margin-top: 1.5rem; max-width: 610px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid rgba(32,52,73,.16); color: #4f5e67; font-size: .86rem; font-weight: 650; }
.hero-proof span::before { content: "—"; margin-right: .45rem; color: var(--taupe); }
.page-hero { padding: clamp(5rem, 10vw, 9rem) 0 clamp(3.5rem, 7vw, 6rem); background: var(--cream); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .82fr; align-items: end; gap: clamp(2rem, 7vw, 7rem); }
.page-hero h1 { max-width: 820px; }
.page-hero .lead { margin-top: 1.5rem; }

.photo-slot { position: relative; min-height: 370px; overflow: hidden; border: 1px solid rgba(32,52,73,.25); background: #e8e0d4; isolation: isolate; }
.photo-slot::before, .photo-slot::after { content: ""; position: absolute; z-index: -1; background: rgba(32,52,73,.17); }
.photo-slot::before { width: 1px; height: 145%; left: 50%; top: -22%; transform: rotate(54deg); }
.photo-slot::after { width: 145%; height: 1px; top: 50%; left: -22%; transform: rotate(32deg); }
.photo-slot img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: 0; transition: opacity .25s ease; }
.photo-slot.has-image img { opacity: 1; }
.photo-slot-copy { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: .55rem; padding: 1.5rem; text-align: center; color: var(--navy); }
.photo-slot.has-image .photo-slot-copy { display: none; }
.photo-slot-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(32,52,73,.35); border-radius: 50%; font-family: var(--serif); font-size: 1.25rem; }
.photo-slot-label { font: 700 .72rem/1.2 var(--sans); letter-spacing: .17em; text-transform: uppercase; }
.photo-slot-hint { max-width: 260px; color: #5a6871; font-size: .83rem; line-height: 1.45; }
.photo-slot-file { padding: .28rem .55rem; background: rgba(255,255,255,.5); color: var(--brown); font: 650 .72rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; }
.photo-slot-hero { min-height: min(67vh, 680px); box-shadow: var(--shadow); }
.photo-slot-wide { min-height: 490px; }
.photo-slot-portrait { min-height: 540px; }
.photo-slot-small { min-height: 330px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.split-reverse > :first-child { order: 2; }
.copy-stack { display: grid; gap: 1.15rem; }
.copy-stack h2 { margin-bottom: .4rem; }
.copy-stack p { color: #4e5b63; }
.section-navy .copy-stack p { color: #cfd7dc; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.2rem; background: var(--line); border: 1px solid var(--line); }
.metric { padding: 1.5rem; background: var(--paper); }
.metric strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.metric span { display: block; margin-top: .55rem; color: var(--muted); font-size: .78rem; line-height: 1.4; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.card { display: grid; gap: 1.2rem; padding: clamp(1.5rem, 3vw, 2.3rem); border: 1px solid var(--line); background: var(--paper); }
.card-number { color: var(--taupe); font-family: var(--serif); font-size: 1.15rem; }
.card p { color: #56636b; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.principle { min-height: 265px; padding: clamp(1.6rem, 3vw, 2.4rem); background: var(--paper); }
.principle span { display: block; margin-bottom: 2.8rem; color: var(--taupe); font: 500 1.2rem/1 var(--serif); }
.principle p { margin-top: .9rem; color: var(--muted); font-size: .94rem; }
.section-navy .principle h3 { color: var(--navy); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.service { min-height: 230px; padding: 2rem; background: var(--paper); }
.service-icon { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 2.1rem; border: 1px solid var(--stone); border-radius: 50%; color: var(--taupe); font-family: var(--serif); }
.service p { margin-top: .75rem; color: var(--muted); font-size: .93rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.16); }
.step { min-height: 250px; padding: 1.8rem; background: var(--navy); }
.step span { color: #d2bba4; font-family: var(--serif); font-size: 1.2rem; }
.step h3 { margin-top: 2.5rem; }
.step p { margin-top: .8rem; color: #c8d0d5; font-size: .9rem; }
.quote-panel { padding: clamp(2rem, 5vw, 4.5rem); border-left: 3px solid var(--taupe); background: var(--cream); }
.quote-panel blockquote { margin: 0; color: var(--navy); font: 500 clamp(1.6rem, 3.6vw, 2.8rem)/1.3 var(--serif); }
.quote-panel cite { display: block; margin-top: 1.3rem; color: var(--muted); font-size: .83rem; font-style: normal; }

.fee-panel { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; padding: clamp(2rem, 5vw, 4.5rem); background: var(--navy); color: #d7dde1; }
.fee-figure { color: #fff; font-family: var(--serif); font-size: clamp(5rem, 12vw, 9rem); line-height: .8; letter-spacing: -.07em; }
.fee-figure span { font-size: .32em; }
.fee-copy { display: grid; gap: 1rem; }
.fee-copy h2 { color: #fff; }
.fine-print { font-size: .78rem; color: #aeb9c0; }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--paper); }
.comparison { width: 100%; min-width: 690px; border-collapse: collapse; text-align: left; }
.comparison th, .comparison td { padding: 1.15rem 1.25rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison th { color: var(--navy); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.comparison th:first-child, .comparison td:first-child { width: 28%; }
.comparison td { color: #56636b; font-size: .92rem; }
.comparison tr:last-child td { border-bottom: 0; }
.comparison .managed { background: rgba(245,240,231,.7); color: var(--navy); font-weight: 600; }

.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.route { display: grid; align-content: start; gap: 1rem; padding: clamp(1.7rem, 4vw, 3rem); border: 1px solid var(--line); background: var(--paper); }
.route-primary { border-top: 4px solid var(--navy); }
.route-secondary { border-top: 4px solid var(--taupe); }
.route ul, .fit-list { margin: .2rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.route li + li, .fit-list li + li { margin-top: .45rem; }
.route .button { margin-top: auto; justify-self: start; }

.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.area-card { min-height: 220px; padding: 1.8rem; border: 1px solid var(--line); background: var(--paper); }
.area-card p { margin-top: .8rem; color: var(--muted); }
.place-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.place-list span { padding: .55rem .85rem; border: 1px solid var(--line); background: var(--paper); color: var(--navy); font-size: .85rem; font-weight: 650; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; color: var(--navy); font: 500 clamp(1.08rem, 2vw, 1.3rem)/1.35 var(--serif); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .35rem; top: 1.22rem; color: var(--taupe); font: 400 1.5rem/1 var(--sans); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 3rem 1.4rem 0; color: var(--muted); }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.proof-stat { padding: clamp(1.6rem, 4vw, 2.8rem); background: var(--paper); }
.proof-stat strong { display: block; color: var(--navy); font: 500 clamp(2.5rem, 5vw, 4.2rem)/1 var(--serif); }
.proof-stat span { display: block; margin-top: .65rem; color: var(--muted); font-size: .85rem; line-height: 1.45; }

.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.2rem; }
.gallery-stack { display: grid; gap: 1.2rem; }
.gallery-stack .photo-slot { min-height: 255px; }

.founder-card { display: grid; grid-template-columns: minmax(270px,.75fr) 1.25fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.signature { color: var(--navy); font: italic 1.35rem/1 var(--serif); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.contact-details { display: grid; gap: 1.7rem; }
.contact-item { padding-top: 1.1rem; border-top: 1px solid var(--line); }
.contact-item span { display: block; color: var(--taupe); font-size: .73rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.contact-item a, .contact-item p { margin-top: .4rem; display: inline-block; color: var(--navy); font-family: var(--serif); font-size: 1.15rem; text-decoration: none; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); background: var(--cream); }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .82rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: .75rem .85rem; border: 1px solid #bcb1a4; border-radius: 0; background: var(--paper); color: var(--ink); }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--taupe); outline-offset: 2px; }
.form-status { grid-column: 1/-1; min-height: 1.3em; color: var(--brown); font-size: .85rem; }
.form-status.is-success { color: #285c3b; font-weight: 700; }
.form-status.is-error { color: #8a2f2f; font-weight: 700; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form .button:disabled { cursor: wait; opacity: .65; transform: none; }

.coming-soon { min-height: calc(100svh - 80px); display: grid; align-items: center; background: var(--navy); color: #e4e8ea; }
.coming-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2.5rem, 7vw, 7rem); padding-block: clamp(4rem, 8vw, 8rem); }
.coming-soon h1 { color: #fff; }
.coming-soon .lead { color: #ced6da; }
.coming-soon .photo-slot { border-color: rgba(255,255,255,.28); background: #33495d; }
.coming-soon .photo-slot-copy, .coming-soon .photo-slot-hint { color: #e4e8ea; }
.coming-soon .photo-slot-file { background: rgba(255,255,255,.1); color: #fff; }

.legal { max-width: 800px; }
.legal h2 { margin: 2.5rem 0 1rem; font-size: 1.8rem; }
.legal p, .legal li { color: #4d5a62; }
.legal ul { padding-left: 1.2rem; }
.legal-note { padding: 1rem 1.2rem; border-left: 3px solid var(--taupe); background: var(--cream); }

.cta-band { background: var(--brown); color: #f4eee8; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.cta-inner h2 { max-width: 720px; color: #fff; }
.site-footer { padding: 4.5rem 0 2rem; background: var(--cream); color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2.5rem; }
.footer-brand .brand { padding: 0; background: transparent; }
.footer-brand .brand-logo { height: 62px; }
.footer-brand p { max-width: 410px; margin-top: 1.3rem; color: var(--muted); }
.footer-heading { margin-bottom: .8rem; color: var(--taupe); font-size: .72rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; gap: .5rem; }
.footer-links a { color: var(--navy); font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: var(--brown); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }

@media (max-width: 900px) {
  .menu-button { display: inline-flex; }
  .nav-links { position: fixed; inset: 80px 0 auto; display: none; padding: 1.3rem; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 15px 30px rgba(20,35,49,.12); }
  .nav-links.open { display: grid; }
  .nav-links .button { width: 100%; margin-top: .4rem; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid, .coming-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 4rem; }
  .page-hero-grid { align-items: start; }
  .hero-copy { max-width: 760px; }
  .photo-slot-hero { min-height: 540px; }
  .split, .founder-card, .contact-grid { grid-template-columns: 1fr; }
  .split-reverse > :first-child { order: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .principles, .area-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 1.5rem, 1160px); }
  .header-inner { min-height: 72px; }
  .nav-links { inset-block-start: 72px; }
  .brand-logo { height: 50px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-proof { display: grid; }
  .photo-slot-hero, .photo-slot-wide, .photo-slot-portrait { min-height: 420px; }
  .cards, .service-grid, .metric-row, .gallery-grid, .fee-panel, .form, .principles, .route-grid, .area-grid, .proof-strip { grid-template-columns: 1fr; }
  .metric-row { gap: 1px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 210px; }
  .field-full { grid-column: auto; }
  .cta-inner { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
}

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