:root {
    --paper: #fbf8f2;
    --ivory: #f4efe7;
    --charcoal: #1d1d1b;
    --ink: #2d2a26;
    --muted: #6e675f;
    --stone: #cec2b2;
    --clay: #a55e45;
    --olive: #5f6857;
    --button-grey: #555b61;
    --button-grey-hover: #636a71;
    --button-blue: #d8eef6;
    --button-blue-hover: #ecf8fc;
    --white: #ffffff;
    --container: 1240px;
    --header-height: 88px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.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;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--charcoal);
    background: var(--white);
    transform: translateY(-180%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
    height: 72px;
    color: var(--charcoal);
    background: rgba(251, 248, 242, .96);
    border-bottom-color: rgba(29, 29, 27, .08);
    box-shadow: 0 8px 28px rgba(29, 29, 27, .08);
    backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; letter-spacing: .035em; }
.brand span { font-size: 21px; font-weight: 800; }
.main-navigation { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.main-navigation a { position: relative; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}
.main-navigation a:hover::after, .main-navigation a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.language-switcher { display: flex; gap: 8px; padding-left: 20px; border-left: 1px solid currentColor; }
.language-switcher a { font-size: 11px; opacity: .56; }
.language-switcher a[aria-current="page"] { opacity: 1; font-weight: 800; }
.legal-home-link { margin-left: auto; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.legal-home-link:hover, .legal-home-link:focus-visible { color: var(--clay); }
.menu-button { display: none; width: 42px; height: 42px; margin-left: auto; padding: 10px; color: inherit; background: transparent; border: 0; }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }

.hero { position: relative; min-height: 760px; height: 100svh; color: var(--white); background: var(--charcoal); overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 10, 9, .96) 0%, rgba(10, 10, 9, .88) 34%, rgba(10, 10, 9, .28) 70%, rgba(10, 10, 9, .12) 100%); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 760px; height: 100svh; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: var(--header-height); }
.kicker { margin: 0 0 26px; color: #d88968; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.kicker-dark { color: var(--clay); }
.hero h1, .section-heading h2, .method-intro h2, .contact-heading h2, .documents-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.03;
}
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(58px, 7vw, 106px); }
.hero-copy { max-width: 580px; margin: 34px 0 0; color: rgba(255, 255, 255, .76); font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 24px; border: 1px solid transparent; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.hero-actions .button { color: var(--button-blue); background: var(--button-grey); border-color: rgba(216, 238, 246, .58); }
.hero-actions .button:hover, .hero-actions .button:focus-visible { color: var(--button-blue-hover); background: var(--button-grey-hover); border-color: var(--button-blue); }
.scroll-cue { position: absolute; z-index: 3; right: 48px; bottom: 40px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255, 255, 255, .38); border-radius: 50%; }
.scroll-cue span { width: 8px; height: 8px; border-right: 1px solid var(--white); border-bottom: 1px solid var(--white); transform: translateY(-2px) rotate(45deg); }

.vision { background: var(--ivory); }
.split-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }
.section-heading h2, .method-intro h2, .contact-heading h2, .documents-copy h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); }
.section-heading-wide { max-width: 880px; margin-bottom: 62px; }
.vision-copy > p { max-width: 590px; margin: 0 0 42px; color: var(--muted); font-size: 20px; line-height: 1.75; }
.material-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.material-strip img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; }

.collections { background: var(--paper); }
.collection-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; }
.collection-card { grid-column: span 6; border-top: 1px solid var(--stone); }
.collection-card-featured { grid-column: span 12; display: grid; grid-template-columns: 1.35fr .65fr; }
.collection-card figure { margin: 0; overflow: hidden; background: var(--stone); }
.collection-card:not(.collection-card-featured) figure { aspect-ratio: 1.55 / 1; }
.collection-card-featured figure { min-height: 500px; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.collection-card:hover img { transform: scale(1.025); }
.collection-copy { padding: 28px 12px 58px 0; }
.collection-card-featured .collection-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; background: var(--ivory); }
.collection-copy > span { color: var(--clay); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.collection-copy h3 { margin: 12px 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(27px, 3vw, 42px); font-weight: 400; line-height: 1.12; }
.collection-copy p { max-width: 520px; margin: 0; color: var(--muted); font-size: 16px; }

.method { color: var(--ivory); background: var(--charcoal); }
.method-intro { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; align-items: start; }
.method-intro h2 { max-width: 850px; }
.method-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 80px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .2); }
.method-list li { min-height: 240px; padding: 34px 28px 20px 0; border-right: 1px solid rgba(255, 255, 255, .2); }
.method-list li + li { padding-left: 28px; }
.method-list li:last-child { border-right: 0; }
.method-list span { color: #d88968; font-size: 11px; font-weight: 800; }
.method-list h3 { margin: 42px 0 12px; font-size: 22px; }
.method-list p { margin: 0; color: var(--stone); font-size: 15px; }

.value { background: var(--ivory); }
.value-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--stone); }
.value-columns article { padding: 48px 60px 10px 0; }
.value-columns article + article { padding-right: 0; padding-left: 60px; border-left: 1px solid var(--stone); }
.value-columns h3 { margin: 0 0 30px; color: var(--clay); font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
.value-columns ul { margin: 0; padding: 0; list-style: none; }
.value-columns li { position: relative; padding: 17px 0 17px 26px; border-bottom: 1px solid rgba(110, 103, 95, .22); font-size: 18px; }
.value-columns li::before { content: ""; position: absolute; top: 27px; left: 0; width: 6px; height: 6px; background: var(--clay); border-radius: 50%; }

.documents { background: var(--paper); }
.documents-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.documents-image { overflow: hidden; }
.documents-image img { width: 100%; height: 100%; object-fit: cover; }
.documents-copy { display: flex; flex-direction: column; justify-content: center; padding: 74px; background: var(--ivory); }
.documents-copy h2 { margin-bottom: 48px; }
.download-link { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border-top: 1px solid var(--stone); transition: color .2s ease; }
.download-link:last-child { border-bottom: 1px solid var(--stone); }
.download-link span { display: flex; flex-direction: column; }
.download-link strong { font-size: 17px; }
.download-link small { margin-top: 4px; color: var(--muted); }
.download-link em { color: var(--clay); font-size: 11px; font-style: normal; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.download-link:hover, .download-link:focus-visible { color: var(--clay); }

.contact { color: var(--ivory); background: #0a0a09; }
.contact-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 100px; align-items: end; }
.contact-heading > p:last-child { max-width: 720px; margin: 34px 0 0; color: var(--stone); font-size: 19px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; padding-left: 44px; border-left: 1px solid rgba(255, 255, 255, .24); font-style: normal; }
.contact-details strong { margin-bottom: 10px; font-size: 17px; }
.contact-details span { color: var(--stone); }
.contact-details a { width: fit-content; border-bottom: 1px solid rgba(255, 255, 255, .24); }
.contact-details a:hover, .contact-details a:focus-visible { color: #d88968; }
.site-footer { color: var(--stone); background: #0a0a09; border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; padding-bottom: 28px; }
.footer-inner p { margin: 0; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; font-size: 12px; }
.footer-links a { border-bottom: 1px solid rgba(255, 255, 255, .24); }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--button-blue); }

.legal-main { min-height: 70vh; padding: 150px 0 110px; background: var(--paper); }
.legal-header { max-width: 850px; margin-bottom: 70px; }
.legal-header h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(46px, 6vw, 78px); font-weight: 400; letter-spacing: -.035em; line-height: 1.03; }
.legal-header > p:last-child { margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.legal-layout { display: grid; grid-template-columns: minmax(180px, .4fr) minmax(0, 1fr); gap: 80px; align-items: start; }
.legal-summary { position: sticky; top: 110px; padding-top: 18px; border-top: 1px solid var(--stone); }
.legal-summary p { margin: 0 0 10px; color: var(--muted); font-size: 13px; }
.legal-content { max-width: 850px; }
.legal-content section { padding: 34px 0; border-top: 1px solid var(--stone); }
.legal-content h2 { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: 32px; font-weight: 400; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0; padding-left: 20px; }
.legal-content a { color: var(--clay); border-bottom: 1px solid currentColor; }
.legal-note { padding: 20px; background: var(--ivory); border-left: 3px solid var(--clay); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; }

@media (max-width: 1050px) {
    .main-navigation { gap: 16px; }
    .main-navigation a { font-size: 10px; }
    .split-intro, .contact-grid { gap: 52px; }
    .collection-card-featured { grid-template-columns: 1.15fr .85fr; }
    .method-intro { grid-template-columns: 1fr; gap: 28px; }
    .documents-copy { padding: 48px; }
}

@media (max-width: 820px) {
    :root { --header-height: 72px; }
    .container { width: min(calc(100% - 40px), var(--container)); }
    .section { padding: 88px 0; }
    .menu-button { display: block; }
    .main-navigation {
        position: fixed;
        inset: 72px 0 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        padding: 48px 24px;
        color: var(--charcoal);
        background: var(--paper);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
    }
    .main-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
    .main-navigation a { width: 100%; padding: 18px 0; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; letter-spacing: -.02em; text-transform: none; border-bottom: 1px solid var(--stone); }
    .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .language-switcher { margin-left: auto; padding-left: 0; border-left: 0; }
    .hero, .hero-content { min-height: 700px; }
    .hero-shade { background: linear-gradient(90deg, rgba(10, 10, 9, .91), rgba(10, 10, 9, .40)); }
    .hero h1 { font-size: clamp(52px, 12vw, 82px); }
    .split-intro, .contact-grid, .documents-grid { grid-template-columns: 1fr; }
    .material-strip { margin-top: 8px; }
    .collection-card, .collection-card-featured { grid-column: span 12; display: block; }
    .collection-card-featured figure { min-height: auto; aspect-ratio: 1.55 / 1; }
    .collection-card-featured .collection-copy { padding: 28px 12px 58px 0; background: transparent; }
    .method-list { grid-template-columns: 1fr 1fr; }
    .method-list li:nth-child(2) { border-right: 0; }
    .method-list li:nth-child(3), .method-list li:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .2); }
    .value-columns { grid-template-columns: 1fr; }
    .value-columns article, .value-columns article + article { padding: 42px 0; border-left: 0; }
    .value-columns article + article { border-top: 1px solid var(--stone); }
    .documents-image { min-height: 420px; }
    .documents-copy { padding: 56px 40px; }
    .contact-details { padding: 36px 0 0; border-top: 1px solid rgba(255, 255, 255, .24); border-left: 0; }
    .legal-main { padding-top: 118px; }
    .legal-layout { grid-template-columns: 1fr; gap: 30px; }
    .legal-summary { position: static; }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .brand span { font-size: 18px; }
    .language-switcher { gap: 6px; }
    .hero h1 { max-width: 520px; font-size: 51px; }
    .hero-copy { font-size: 17px; }
    .hero-actions { width: 100%; }
    .button { width: 100%; }
    .scroll-cue { right: 20px; bottom: 22px; }
    .section-heading h2, .method-intro h2, .contact-heading h2, .documents-copy h2 { font-size: 40px; }
    .vision-copy > p { font-size: 17px; }
    .material-strip { grid-template-columns: 1fr 1fr; }
    .material-strip img:last-child { display: none; }
    .collection-grid { gap: 0; }
    .collection-card:not(.collection-card-featured) figure, .collection-card-featured figure { aspect-ratio: 1.25 / 1; }
    .collection-copy { padding-bottom: 52px; }
    .method-list { grid-template-columns: 1fr; }
    .method-list li, .method-list li + li { min-height: auto; padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, .2); border-right: 0; }
    .method-list h3 { margin-top: 20px; }
    .value-columns li { font-size: 16px; }
    .documents-copy { padding: 44px 24px; }
    .download-link { align-items: flex-start; flex-direction: column; gap: 12px; }
    .contact-grid { gap: 46px; }
    .footer-inner { flex-direction: column; }
    .footer-links { justify-content: flex-start; }
}

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

@media print {
    .site-header, .scroll-cue, .hero-actions { display: none; }
    .hero, .hero-content { min-height: 620px; height: 620px; }
    .section { padding: 64px 0; }
}
