@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #1d2724;
  --ink-soft: #46514d;
  --paper: #f4f0e8;
  --paper-deep: #e8e0d3;
  --white: #fffdf8;
  --sage: #7d9285;
  --sage-dark: #425d50;
  --copper: #b76b4f;
  --line: rgba(29, 39, 36, .16);
  --shadow: 0 24px 70px rgba(29, 39, 36, .12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --radius: 22px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(29,39,36,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,39,36,.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font: 400 16px/1.7 var(--sans);
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 16px; background: var(--ink); color: #fff; }
.skip-link:focus { top: 16px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.eyebrow { margin: 0 0 14px; color: var(--copper); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: .98; letter-spacing: -.025em; }
h1 { font-size: clamp(56px, 8vw, 112px); }
h2 { font-size: clamp(42px, 5.8vw, 76px); }
h3 { font-size: clamp(27px, 3vw, 38px); line-height: 1.05; }
p { margin: 0; }
.lead { max-width: 720px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.muted { color: var(--ink-soft); }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: #fff; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--sage-dark); }
.button--light { border-color: rgba(255,255,255,.48); background: transparent; }
.button--ghost { background: transparent; color: var(--ink); }
.button--ghost:hover { color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(244,240,232,.9); backdrop-filter: blur(16px); }
.header-row { display: grid; grid-template-columns: auto 1fr auto; min-height: 82px; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font: 600 19px/1 var(--serif); }
.brand__name { display: grid; font-size: 13px; font-weight: 700; line-height: 1.2; letter-spacing: .04em; text-transform: uppercase; }
.brand__name small { color: var(--ink-soft); font-size: 9px; letter-spacing: .13em; }
.nav { display: flex; justify-content: center; gap: clamp(14px, 2vw, 28px); }
.nav a { position: relative; font-size: 13px; font-weight: 600; }
.nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ''; background: var(--copper); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav a:hover::after, .nav a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.header-phone { display: grid; justify-items: end; font-size: 15px; font-weight: 700; line-height: 1.25; }
.header-phone small { color: var(--ink-soft); font-size: 10px; font-weight: 500; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }

.hero { padding: 28px 0 76px; }
.hero-grid { display: grid; min-height: 720px; grid-template-columns: 1.05fr .95fr; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: var(--white); box-shadow: var(--shadow); }
.hero-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 90px); }
.hero-copy::before { position: absolute; top: 36px; left: 42px; color: var(--sage); content: '20'; font: 600 156px/.8 var(--serif); opacity: .09; }
.hero h1 { max-width: 700px; }
.hero h1 em { color: var(--copper); font-style: normal; }
.hero .lead { margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 18px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof strong { font: 600 44px/1 var(--serif); }
.hero-proof span { max-width: 190px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.hero-photo { position: relative; min-height: 520px; background: var(--paper-deep); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }
.hero-photo::after { position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.5); border-radius: 18px; content: ''; pointer-events: none; }
.hero-note { position: absolute; right: 28px; bottom: 28px; max-width: 260px; padding: 18px 20px; border-radius: 14px; background: rgba(29,39,36,.92); color: white; font-size: 13px; backdrop-filter: blur(8px); }

.section { padding: 110px 0; }
.section--ink { color: #fff; background: var(--ink); }
.section--white { background: var(--white); }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-head .lead { justify-self: end; }
.route-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.route-card { position: relative; grid-column: span 4; min-height: 270px; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.75); transition: transform .25s ease, box-shadow .25s ease; }
.route-card:nth-child(1), .route-card:nth-child(2) { grid-column: span 6; min-height: 330px; }
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.route-card__index { color: var(--copper); font: 600 14px/1 var(--serif); }
.route-card h3 { max-width: 350px; margin-top: 40px; }
.route-card p { max-width: 400px; margin-top: 18px; color: var(--ink-soft); }
.route-card .arrow { position: absolute; right: 26px; bottom: 22px; font-size: 26px; }
.route-card--dark { background: var(--sage-dark); color: white; }
.route-card--dark p { color: rgba(255,255,255,.74); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 7vw, 100px); align-items: center; }
.portrait-frame { position: relative; padding: 18px; border: 1px solid var(--line); border-radius: 180px 180px 24px 24px; }
.portrait-frame img { width: 100%; max-height: 700px; object-fit: cover; border-radius: 160px 160px 16px 16px; }
.portrait-frame::before { position: absolute; top: 14%; right: -26px; width: 90px; height: 90px; border: 1px solid var(--copper); border-radius: 50%; content: ''; }
.copy-stack > * + * { margin-top: 24px; }
.checks { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.checks li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.checks li::before { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid var(--sage); border-radius: 50%; color: var(--sage-dark); content: '✓'; font-size: 12px; }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.24); }
.process article { position: relative; min-height: 270px; padding: 30px 22px; border-right: 1px solid rgba(255,255,255,.18); counter-increment: step; }
.process article:last-child { border-right: 0; }
.process article::before { color: #d89b80; content: '0' counter(step); font: 600 18px/1 var(--serif); }
.process h3 { margin-top: 70px; font-size: 29px; }
.process p { margin-top: 14px; color: rgba(255,255,255,.65); font-size: 14px; }

.service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-group { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.service-group h3 { padding-bottom: 20px; border-bottom: 1px solid var(--line); font-size: 31px; }
.service-group ul { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 14px; }
.service-group li { padding-left: 18px; position: relative; }
.service-group li::before { position: absolute; left: 0; color: var(--copper); content: '—'; }

.page-hero { padding: 80px 0 60px; }
.breadcrumbs { margin-bottom: 46px; color: var(--ink-soft); font-size: 12px; }
.breadcrumbs span { margin: 0 8px; opacity: .45; }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; }
.page-hero h1 { font-size: clamp(54px, 7vw, 94px); }
.page-hero .lead { margin-top: 28px; }
.page-index { justify-self: end; color: var(--copper); font: 600 clamp(100px, 15vw, 210px)/.7 var(--serif); opacity: .18; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 12px; }

.info-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 120px); }
.sticky-title { position: sticky; top: 130px; align-self: start; }
.content-cards { display: grid; gap: 14px; }
.content-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.74); }
.content-card h3 { font-size: 30px; }
.content-card p, .content-card ul { margin-top: 14px; color: var(--ink-soft); }
.content-card ul { padding-left: 20px; }

/* Detailed service pages: editorial depth without visual overload. */
.service-hero { padding: 74px 0 82px; border-bottom: 1px solid var(--line); }
.service-hero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(42px, 7vw, 110px); align-items: end; }
.service-hero h1 { max-width: 930px; font-size: clamp(48px, 6.5vw, 92px); }
.service-hero .lead { margin-top: 28px; }
.service-hero__note { margin-top: 30px; color: var(--ink-soft); font-size: 13px; }
.expert-aside { padding: 30px; border: 1px solid var(--line); border-radius: 120px 120px 20px 20px; background: var(--white); }
.expert-aside::before { display: block; width: 48px; height: 48px; margin-bottom: 70px; border: 1px solid var(--copper); border-radius: 50%; content: '20'; text-align: center; font: 600 22px/48px var(--serif); }
.expert-aside strong { font: 600 30px/1.1 var(--serif); }
.expert-aside p { margin-top: 16px; color: var(--ink-soft); }
.expert-aside a { display: inline-block; margin-top: 24px; border-bottom: 1px solid; font-weight: 700; }
.article-nav { position: sticky; top: 82px; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(244,240,232,.94); backdrop-filter: blur(15px); }
.article-nav .wrap { display: flex; gap: 26px; overflow-x: auto; padding-block: 13px; scrollbar-width: none; }
.article-nav a { flex: 0 0 auto; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.article-nav a:hover { color: var(--copper); }
.article-split { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); gap: clamp(44px,8vw,130px); align-items: start; }
.article-copy { max-width: 780px; }
.article-copy > * + * { margin-top: 24px; }
.article-copy p:not(.lead) { color: var(--ink-soft); font-size: 17px; }
.detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.detail-card { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.76); }
.detail-card span { color: var(--copper); font: 600 15px/1 var(--serif); }
.detail-card h3 { margin-top: 48px; font-size: 28px; }
.detail-card p { margin-top: 16px; color: var(--ink-soft); font-size: 14px; }
.document-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.document-list li { padding: 18px 8px 18px 38px; border-bottom: 1px solid var(--line); position: relative; }
.document-list li::before { position: absolute; left: 4px; color: var(--copper); content: '✓'; font-weight: 700; }
.notice { margin-top: 30px; padding: 24px; border-left: 3px solid var(--copper); background: var(--paper); }
.notice p { margin-top: 8px; color: var(--ink-soft); }
.timeline { display: grid; grid-template-columns: repeat(5,1fr); margin: 0; padding: 0; list-style: none; counter-reset: timeline; }
.timeline li { min-height: 260px; padding: 24px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); counter-increment: timeline; }
.timeline li:last-child { border-right: 0; }
.timeline li::before { display: block; margin-bottom: 70px; color: var(--copper); content: '0' counter(timeline); font: 600 18px/1 var(--serif); }
.timeline strong { font: 600 28px/1.1 var(--serif); }
.timeline p { margin-top: 14px; color: var(--ink-soft); font-size: 14px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; list-style: none; font: 600 25px/1.25 var(--serif); }
.faq-list summary::after { position: absolute; right: 4px; content: '+'; color: var(--copper); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { max-width: 700px; padding: 0 50px 24px 0; color: var(--ink-soft); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.related-card { display: grid; min-height: 210px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); transition: transform .2s ease, background .2s ease; }
.related-card:hover { transform: translateY(-4px); background: var(--white); }
.related-card span { color: var(--copper); font: 600 14px/1 var(--serif); }
.related-card strong { align-self: center; font: 600 28px/1.08 var(--serif); }
.related-card em { align-self: end; font-style: normal; font-size: 13px; font-weight: 700; }

.contact-band { padding: 78px 0; background: var(--copper); color: #fff; }
.contact-band__grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.contact-band h2 { max-width: 780px; }
.contact-band p { margin-top: 18px; color: rgba(255,255,255,.78); }
.phone-display { display: block; margin-top: 16px; font: 600 clamp(30px,4vw,54px)/1 var(--serif); }

.site-footer { padding: 64px 0 28px; background: #121917; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 50px; }
.footer-grid h3 { font-size: 30px; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.65); }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid #d89b80; outline-offset: 4px; }

@media (max-width: 980px) {
  .header-row { grid-template-columns: 1fr auto auto; }
  .nav-toggle { display: grid; place-items: center; }
  .nav { position: fixed; inset: 82px 0 auto; display: none; max-height: calc(100vh - 82px); overflow: auto; padding: 30px 20px; background: var(--paper); flex-direction: column; }
  .nav-open .nav { display: flex; }
  .header-phone small { display: none; }
  .hero-grid, .split, .page-hero-grid, .info-grid, .service-hero__grid, .article-split { grid-template-columns: 1fr; }
  .hero-copy { min-height: 560px; }
  .hero-photo { min-height: 640px; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .lead { justify-self: start; }
  .route-card, .route-card:nth-child(1), .route-card:nth-child(2) { grid-column: span 6; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process article:nth-child(even) { border-right: 0; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .page-index { display: none; }
  .sticky-title { position: static; }
  .detail-grid { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .timeline li:nth-child(even) { border-right: 0; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  body { background-size: 32px 32px; }
  .header-row { min-height: 72px; gap: 12px; }
  .brand__name { display: none; }
  .header-phone { font-size: 12px; }
  .nav { inset-block-start: 72px; }
  .hero { padding-top: 14px; }
  .hero-grid { min-height: auto; border-radius: 22px; }
  .hero-copy { min-height: 520px; padding: 38px 24px; }
  .hero-copy::before { left: 22px; font-size: 110px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-photo { min-height: 490px; }
  .section { padding: 76px 0; }
  .route-card, .route-card:nth-child(1), .route-card:nth-child(2) { grid-column: 1 / -1; min-height: 250px; }
  .process { grid-template-columns: 1fr; }
  .process article { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .service-list { grid-template-columns: 1fr; }
  .contact-band__grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .portrait-frame::before { right: -8px; }
  .service-hero { padding-top: 48px; }
  .expert-aside::before { margin-bottom: 42px; }
  .article-nav { top: 72px; }
  .detail-grid, .timeline { grid-template-columns: 1fr; }
  .timeline li { min-height: 210px; border-right: 0; }
  .timeline li::before { margin-bottom: 46px; }
}

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