:root {
    --ink: #171814;
    --ink-soft: #272820;
    --paper: #f5f1e8;
    --paper-deep: #ebe4d7;
    --white: #fffdf8;
    --gold: #ad8745;
    --gold-light: #d6bd83;
    --muted: #69695f;
    --line: rgba(23, 24, 20, .16);
    --serif: "Newsreader", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --shadow: 0 24px 60px rgba(35, 29, 17, .12);
    --radius: 2px;
    --container: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; }
h1 { font-size: clamp(3.6rem, 7vw, 7.6rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.6rem, 4.8vw, 5rem); letter-spacing: -.035em; }
h3 { font-size: 1.75rem; letter-spacing: -.02em; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { max-width: 980px; }
.section { padding: 120px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    padding: .8rem 1rem;
    background: var(--white);
    color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.draft-bar {
    min-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 24px;
    background: var(--gold);
    color: var(--ink);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 241, 232, .96);
}

.header-inner { min-height: 94px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.2rem;
    letter-spacing: -.08em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.brand-copy small { color: var(--gold); font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.4vw, 38px); margin-left: auto; }
.main-nav a { position: relative; padding: 35px 0; color: #45463e; font-size: .87rem; font-weight: 500; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 25px; height: 1px; background: var(--gold); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 24px; }
.language-switcher { display: flex; gap: 6px; color: #8b887f; font-size: .72rem; font-weight: 600; letter-spacing: .08em; }
.language-switcher a:hover, .language-switcher a.active { color: var(--gold); }
.menu-toggle { display: none; border: 0; background: transparent; }

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--white);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { background: #957137; transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 10px 17px; font-size: .67rem; }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { color: var(--white); }
.button-light { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--white); color: var(--ink); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--ink); font-size: .77rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.eyebrow { margin-bottom: 20px; color: var(--gold); font-size: .73rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hero-lead { max-width: 700px; color: #55564d; font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.75; }

.hero { position: relative; overflow: hidden; min-height: 760px; background: var(--paper); }
.hero-grid { min-height: 760px; display: grid; grid-template-columns: 1.15fr .72fr; align-items: center; gap: clamp(60px, 8vw, 140px); padding-block: 70px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 820px; margin-bottom: 30px; }
.hero-copy .hero-lead { max-width: 660px; margin-bottom: 38px; }
.hero-signature { position: absolute; right: -2vw; bottom: -5vw; color: rgba(173, 135, 69, .07); font-family: var(--serif); font-size: clamp(9rem, 24vw, 24rem); font-style: italic; line-height: .7; pointer-events: none; }

.portrait-card { position: relative; z-index: 2; box-shadow: var(--shadow); }
.portrait-art { position: relative; overflow: hidden; aspect-ratio: .82; display: grid; place-items: center; background: linear-gradient(145deg, #34352c 0%, #151612 72%); }
.portrait-art::before { content: ""; position: absolute; inset: 7%; border: 1px solid rgba(214, 189, 131, .38); }
.portrait-art::after { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border: 1px solid rgba(214, 189, 131, .25); border-radius: 50%; }
.portrait-art span { z-index: 2; color: var(--gold-light); font-family: var(--serif); font-size: clamp(7rem, 15vw, 12rem); font-style: italic; font-weight: 400; }
.portrait-art i { position: absolute; width: 1px; height: 125%; background: rgba(214, 189, 131, .14); transform: rotate(35deg); }
.portrait-art i:nth-of-type(1) { left: 20%; }
.portrait-art i:nth-of-type(2) { left: 50%; }
.portrait-art i:nth-of-type(3) { left: 80%; }
.portrait-caption { padding: 29px 32px 34px; background: var(--white); }
.portrait-caption p { margin-bottom: 7px; color: var(--gold); font-size: .67rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.portrait-caption h2 { margin-bottom: 10px; font-size: 2.1rem; }
.portrait-caption span { display: block; color: var(--muted); font-size: .88rem; line-height: 1.65; }

.intro-section { background: var(--white); }
.split-heading { display: grid; grid-template-columns: 70px 1fr .8fr; gap: 40px; align-items: end; margin-bottom: 75px; }
.split-heading h2 { max-width: 650px; margin-bottom: 0; }
.section-number { align-self: start; color: var(--gold); font-size: .75rem; }
.section-lead { margin-bottom: 0; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.value-card { padding: 50px 40px 15px 0; border-right: 1px solid var(--line); }
.value-card + .value-card { padding-left: 40px; }
.value-card:last-child { border-right: 0; }
.value-card > span { color: var(--gold); font-size: .7rem; }
.value-card h3 { margin: 45px 0 18px; }
.value-card p { color: var(--muted); font-size: .92rem; }

.services-preview { background: var(--paper-deep); }
.section-header { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 0; }
.section-header > p { color: var(--muted); }
.service-links { border-top: 1px solid var(--line); }
.service-link { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 25px; min-height: 110px; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.service-link:hover { padding-inline: 20px; background: rgba(255, 253, 248, .5); }
.service-link > span { color: var(--gold); font-size: .7rem; }
.service-link strong { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.65rem); font-weight: 400; }
.service-link i { color: var(--gold); font-size: 1.4rem; font-style: normal; }
.align-right { display: flex; justify-content: flex-end; margin-top: 50px; }

.cta-section { padding-top: 0; background: var(--paper-deep); }
.cta-card { position: relative; overflow: hidden; padding: clamp(55px, 8vw, 100px); background: var(--ink); color: var(--white); text-align: center; }
.cta-card::before, .cta-card::after { content: ""; position: absolute; width: 340px; aspect-ratio: 1; border: 1px solid rgba(214, 189, 131, .16); border-radius: 50%; }
.cta-card::before { left: -210px; top: -160px; }
.cta-card::after { right: -210px; bottom: -160px; }
.cta-card h2 { max-width: 850px; margin: 0 auto 24px; }
.cta-card > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 34px; color: #bebdb5; }

.page-hero { padding: 125px 0 110px; background: var(--paper-deep); }
.page-hero h1 { max-width: 1000px; margin-bottom: 32px; font-size: clamp(3.5rem, 7vw, 7rem); }
.page-hero-dark { background: var(--ink); color: var(--white); }
.page-hero-dark .hero-lead { color: #c4c3ba; }

.about-story { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .83fr 1fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.about-visual { min-height: 590px; display: flex; flex-direction: column; justify-content: flex-end; padding: 55px; background: var(--ink-soft); color: var(--white); }
.about-monogram { margin: auto; color: var(--gold-light); font-family: var(--serif); font-size: clamp(6rem, 14vw, 11rem); letter-spacing: -.12em; }
.about-visual blockquote { margin: 0; padding-top: 35px; border-top: 1px solid rgba(214, 189, 131, .35); font-family: var(--serif); font-size: 1.45rem; font-style: italic; line-height: 1.35; }
.prose h2 { margin-bottom: 35px; }
.prose > p:not(.eyebrow) { margin-bottom: 22px; color: var(--muted); font-size: 1.02rem; }
.notice { margin-top: 34px; padding: 18px 20px; border-left: 2px solid var(--gold); background: var(--paper); color: var(--muted); font-size: .82rem; }
.notice-wide { max-width: 920px; margin: 0 0 60px; }

.principles-section { background: var(--paper-deep); }
.principles-section h2 { margin-bottom: 65px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.principles-grid article { min-height: 310px; padding: 44px; background: var(--paper-deep); }
.principles-grid span { color: var(--gold); font-size: .7rem; }
.principles-grid h3 { margin: 70px 0 18px; }
.principles-grid p { margin: 0; color: var(--muted); }

.profile-section { background: var(--white); }
.profile-grid { display: grid; grid-template-columns: .75fr 1fr; gap: 90px; }
.profile-grid h2 { margin-bottom: 0; }
.profile-grid dl { margin: 0; border-top: 1px solid var(--line); }
.profile-grid dl div { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.profile-grid dt { color: var(--gold); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.profile-grid dd { margin: 0; color: var(--muted); }

.service-catalog { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-width: 0; min-height: 390px; display: flex; flex-direction: column; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-number { color: var(--gold); font-size: .7rem; }
.service-card h2 { margin: 50px 0 22px; font-size: 2rem; hyphens: auto; overflow-wrap: anywhere; }
.service-card p { color: var(--muted); font-size: .9rem; }
.service-card a { width: fit-content; display: flex; gap: 10px; margin-top: auto; border-bottom: 1px solid var(--gold); color: var(--gold); font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }

.process-section { background: var(--paper-deep); }
.process-section h2 { margin-bottom: 65px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; }
.process-grid article { position: relative; padding-top: 30px; border-top: 1px solid var(--gold); }
.process-grid span { position: absolute; right: 0; top: 22px; color: var(--gold); font-size: .7rem; }
.process-grid h3 { margin-bottom: 18px; }
.process-grid p { color: var(--muted); }

.contact-hero { background: var(--paper); }
.contact-section { padding-top: 30px; background: linear-gradient(to bottom, var(--paper) 0 190px, var(--ink) 190px 100%); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; box-shadow: var(--shadow); }
.contact-details { position: relative; overflow: hidden; padding: clamp(45px, 6vw, 75px); background: var(--ink-soft); }
.contact-details h2 { margin-bottom: 55px; font-size: 3.4rem; }
.contact-details dl { margin: 0; }
.contact-details dl div { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-details dt { color: var(--gold-light); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-details dd { margin: 5px 0 0; color: #cccbc4; font-size: .9rem; }
.confidentiality-mark { position: absolute; right: -45px; bottom: -90px; color: rgba(214, 189, 131, .06); font-family: var(--serif); font-size: 18rem; line-height: 1; }

.form-card { padding: clamp(45px, 6vw, 75px); background: var(--white); color: var(--ink); }
.form-card > h2 { margin-bottom: 40px; font-size: 3.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-card label { display: block; margin-bottom: 24px; color: #42433c; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.form-card input:not([type="checkbox"]), .form-card select, .form-card textarea { width: 100%; margin-top: 9px; padding: 14px 0; border: 0; border-bottom: 1px solid #bcb9af; outline: none; background: transparent; color: var(--ink); border-radius: 0; text-transform: none; transition: border .2s ease; }
.form-card textarea { resize: vertical; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--gold); }
.checkbox-label { display: flex !important; align-items: flex-start; gap: 12px; color: var(--muted) !important; font-weight: 400 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.checkbox-label input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); flex: 0 0 auto; }
.form-disclaimer { margin: 28px 0 0; color: var(--muted); font-size: .72rem; }
.form-message { margin-bottom: 28px; padding: 16px 18px; border-left: 2px solid var(--gold); background: var(--paper); color: var(--muted); font-size: .84rem; }
.form-message.error { border-color: #a0473c; }

.site-footer { padding-top: 85px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .8fr .85fr; gap: 70px; padding-bottom: 70px; }
.brand-light .brand-copy small { color: var(--gold-light); }
.footer-brand > p { max-width: 300px; margin: 30px 0 0; color: #a8a8a1; font-size: .86rem; }
.site-footer h2 { margin-bottom: 25px; color: var(--gold-light); font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 11px; color: #b7b6af; font-size: .82rem; }
.site-footer a:hover { color: var(--gold-light); }
.muted-links span { color: #6f706a; }
.footer-contact p { margin-bottom: 9px; color: #b7b6af; font-size: .82rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #777872; font-size: .67rem; letter-spacing: .06em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
    .header-inner { min-height: 82px; }
    .header-actions .button { display: none; }
    .main-nav { gap: 22px; }
    .hero-grid { grid-template-columns: 1fr .7fr; gap: 55px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
    h1 { font-size: clamp(3.2rem, 12vw, 5.5rem); }
    .container { width: min(calc(100% - 36px), var(--container)); }
    .section { padding: 85px 0; }
    .header-inner { min-height: 76px; }
    .menu-toggle { width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; gap: 7px; margin-left: auto; }
    .menu-toggle span:not(.sr-only) { width: 25px; height: 1px; display: block; background: var(--ink); transition: transform .2s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 104px 0 0; z-index: 90; display: none; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; padding: 35px 24px; background: var(--paper); }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.8rem; }
    .main-nav a::after { display: none; }
    .header-actions { gap: 10px; }
    .hero, .hero-grid { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; padding-block: 80px; }
    .portrait-card { width: min(100%, 520px); }
    .portrait-art { aspect-ratio: 1.08; }
    .split-heading, .section-header { grid-template-columns: 1fr; gap: 25px; }
    .section-number { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card, .value-card + .value-card { padding: 35px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .value-card h3 { margin-top: 25px; }
    .page-hero { padding: 85px 0 75px; }
    .about-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-visual { min-height: 470px; }
    .principles-grid, .process-grid { grid-template-columns: 1fr; }
    .principles-grid article { min-height: 240px; }
    .principles-grid h3 { margin-top: 40px; }
    .profile-grid { gap: 45px; }
    .contact-section { background: var(--ink); padding-top: 0; }
    .contact-details { min-height: 560px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: auto; }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .draft-bar { font-size: .57rem; }
    .brand-mark { width: 42px; height: 42px; }
    .brand-copy strong { font-size: 1.08rem; }
    .brand-copy small { font-size: .57rem; }
    .header-actions { position: absolute; right: 62px; }
    .main-nav { inset-block-start: 98px; }
    .hero-grid { padding-block: 60px; }
    .hero-copy h1 { margin-bottom: 24px; }
    .button-row { align-items: flex-start; flex-direction: column; }
    .portrait-caption { padding: 24px; }
    .service-link { grid-template-columns: 42px 1fr auto; min-height: 92px; gap: 12px; }
    .service-link strong { font-size: 1.45rem; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 330px; padding: 30px; }
    .about-visual { min-height: 430px; padding: 32px; }
    .profile-grid dl div { grid-template-columns: 1fr; gap: 7px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-details, .form-card { padding: 42px 28px; }
    .contact-details h2, .form-card > h2 { font-size: 2.6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-brand, .footer-contact { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}
