:root {
    --ink: #1b1b19;
    --paper: #f1eee7;
    --paper-light: #faf9f5;
    --wine: #681d2b;
    --wine-dark: #45121c;
    --line: #d2ccc0;
    --muted: #6d6a63;
    --white: #fff;
    --serif: "Newsreader", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper-light);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
h1, h2, h3, p { margin-top: 0; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 108px 0; scroll-margin-top: 90px; }
.overline {
    margin-bottom: 14px;
    color: var(--wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.section-title {
    max-width: 720px;
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(40px, 4.2vw, 58px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.035em;
}
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 62px;
}
.section-heading > p {
    max-width: 420px;
    margin: 0 0 7px;
    color: var(--muted);
}
.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid var(--wine);
    color: var(--white);
    background: var(--wine);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { border-color: var(--wine-dark); background: var(--wine-dark); }
.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--wine);
    font-size: 12px;
    font-weight: 700;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.topbar { color: #e8dcda; background: var(--wine-dark); font-size: 11px; }
.topbar-inner {
    display: grid;
    min-height: 39px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}
.private-notice { color: #fff; font-weight: 700; letter-spacing: .02em; }
.topbar-contact { display: flex; justify-content: flex-end; gap: 24px; }
.topbar a:hover { color: var(--white); }

.header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgb(210 204 192 / 82%);
    background: rgb(250 249 245 / 96%);
    backdrop-filter: blur(12px);
}
.nav {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.logo-mark {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--wine);
    color: var(--wine);
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
}
.logo-mark::after {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 6px;
    height: 6px;
    content: "";
    background: var(--wine);
}
.brand strong {
    display: block;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}
.brand small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.1;
    text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { position: relative; font-size: 12px; font-weight: 600; }
.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--wine);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .button { min-height: 44px; padding-inline: 18px; }
.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink);
    background: transparent;
    font-size: 19px;
    cursor: pointer;
}

.hero { position: relative; min-height: 660px; color: var(--white); background: #2a201e; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { filter: saturate(.55) contrast(1.03); }
.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgb(25 15 16 / 94%) 0%, rgb(32 20 20 / 81%) 48%, rgb(32 20 20 / 23%) 100%),
        linear-gradient(0deg, rgb(20 12 12 / 28%), transparent 45%);
}
.hero-content { position: relative; z-index: 2; display: flex; min-height: 660px; align-items: center; }
.hero-copy { max-width: 730px; padding: 76px 0; }
.hero-kicker {
    margin-bottom: 22px;
    color: #e5bdb6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.hero h1 {
    margin-bottom: 25px;
    font-family: var(--serif);
    font-size: clamp(52px, 6vw, 76px);
    font-weight: 500;
    line-height: .99;
    letter-spacing: -.045em;
}
.hero-copy > p:not(.hero-disclaimer) {
    max-width: 630px;
    margin-bottom: 32px;
    color: #e5dfdc;
    font-size: 17px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .button.secondary { border-color: rgb(255 255 255 / 48%); background: transparent; }
.hero .button.secondary:hover { border-color: var(--white); background: rgb(255 255 255 / 9%); }
.hero-disclaimer {
    max-width: 650px;
    margin: 24px 0 0;
    color: #c8bbb7;
    font-size: 11px;
}

.service-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.service-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}
.service-strip span {
    position: relative;
    padding: 27px 24px;
    color: var(--wine);
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.25;
}
.service-strip span:first-child { padding-left: 0; }
.service-strip span:not(:last-child)::after {
    position: absolute;
    top: 27px;
    right: 0;
    bottom: 27px;
    width: 1px;
    content: "";
    background: var(--line);
}

.intro { background: var(--paper-light); }
.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, .75fr);
    align-items: start;
    gap: 120px;
}
.intro-copy { padding-top: 34px; border-top: 1px solid var(--ink); }
.intro-copy p { color: var(--muted); font-size: 16px; }
.intro-copy .text-link { margin-top: 10px; }

.process { border-top: 1px solid var(--line); background: var(--paper); }
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}
.process-step {
    position: relative;
    min-height: 270px;
    padding: 36px 34px 0 0;
    border-top: 1px solid var(--ink);
}
.process-step:not(:last-child) { margin-right: 30px; }
.process-step::before {
    position: absolute;
    top: -5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    content: "";
    background: var(--wine);
}
.step-number {
    display: block;
    margin-bottom: 35px;
    color: var(--wine);
    font-size: 11px;
    font-weight: 700;
}
.process-step h3 {
    margin-bottom: 13px;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.13;
}
.process-step p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.company-types { background: var(--paper-light); }
.type-list { border-top: 1px solid var(--ink); }
.type-row {
    display: grid;
    min-height: 132px;
    grid-template-columns: 70px minmax(220px, .8fr) minmax(300px, 1.25fr) 42px;
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid var(--line);
    transition: color .2s ease, padding .2s ease;
}
.type-row > span { color: var(--wine); font-size: 11px; font-weight: 700; }
.type-row h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.12;
}
.type-row p { margin: 0; color: var(--muted); font-size: 13px; }
.type-row > a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--wine);
    font-size: 20px;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.type-row:hover { color: var(--wine); }
.type-row:hover > a { border-color: var(--wine); color: var(--white); background: var(--wine); }

.requirements { color: var(--white); background: var(--wine-dark); }
.requirements-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, .8fr);
    align-items: center;
    gap: 95px;
}
.requirements .overline { color: #e5bdb6; }
.requirements-copy > p { max-width: 620px; margin: 25px 0 36px; color: #d7cac7; }
.requirements-list { margin: 0; padding: 0; list-style: none; }
.requirements-list li {
    position: relative;
    padding: 15px 0 15px 32px;
    border-top: 1px solid rgb(255 255 255 / 18%);
    color: #f0e9e6;
    font-size: 13px;
}
.requirements-list li::before {
    position: absolute;
    top: 14px;
    left: 0;
    color: #e5bdb6;
    content: "✓";
    font-weight: 700;
}
.requirements-image { position: relative; height: 590px; }
.requirements-image img { filter: saturate(.55); }
.image-note {
    position: absolute;
    right: -22px;
    bottom: -24px;
    width: min(340px, calc(100% - 24px));
    padding: 24px 26px;
    color: var(--ink);
    background: var(--paper);
}
.image-note strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 21px; font-weight: 600; }
.image-note span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.resources { background: var(--paper); }
.resource-list { border-top: 1px solid var(--ink); }
.resource-row {
    display: grid;
    min-height: 125px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    border-bottom: 1px solid var(--line);
}
.resource-row h3 {
    margin-bottom: 4px;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    transition: color .2s ease;
}
.resource-row p { margin: 0; color: var(--muted); font-size: 13px; }
.resource-row > span { color: var(--wine); font-size: 11px; font-weight: 700; }
.resource-row:hover h3 { color: var(--wine); }

.faq { background: var(--paper-light); }
.faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, .75fr) minmax(0, 1fr);
    align-items: start;
    gap: 100px;
}
.faq-intro { max-width: 450px; margin-top: 25px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
    position: relative;
    padding: 26px 50px 26px 0;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.25;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    position: absolute;
    top: 24px;
    right: 5px;
    color: var(--wine);
    content: "+";
    font-family: var(--sans);
    font-size: 21px;
    font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin: -5px 50px 25px 0; color: var(--muted); }

.contact { padding: 86px 0; color: var(--white); background: var(--wine); scroll-margin-top: 90px; }
.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
    align-items: center;
    gap: 100px;
}
.contact .overline { color: #edc4bd; }
.contact h2 {
    max-width: 760px;
    margin-bottom: 20px;
    font-family: var(--serif);
    font-size: clamp(42px, 4.4vw, 61px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.035em;
}
.contact p { max-width: 690px; margin: 0; color: #ecdeda; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.light-button { width: 100%; border-color: var(--white); color: var(--wine); background: var(--white); }
.light-button:hover { border-color: var(--paper); color: var(--wine-dark); background: var(--paper); }
.contact-actions > a:not(.button) { margin-top: 8px; font-family: var(--serif); font-size: 25px; }
.contact-actions > span { color: #e3cbc6; font-size: 11px; }

.contact-page-hero {
    padding: 118px 0 105px;
    color: var(--white);
    background: var(--wine-dark);
}
.contact-page-heading { display: grid; grid-template-columns: 1.25fr .65fr; align-items: end; gap: 100px; }
.contact-page-heading .overline { grid-column: 1 / -1; margin-bottom: -65px; color: #e5bdb6; }
.contact-page-heading h1 {
    max-width: 800px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(54px, 6vw, 78px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.045em;
}
.contact-page-heading p { max-width: 450px; margin: 0 0 7px; color: #d7cac7; font-size: 16px; }
.contact-options { padding: 45px 0 100px; background: var(--paper-light); }
.contact-options .container { border-top: 1px solid var(--ink); }
.contact-option {
    display: grid;
    min-height: 190px;
    grid-template-columns: 75px 1fr auto;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid var(--line);
}
.contact-option-number { align-self: start; padding-top: 47px; color: var(--wine); font-size: 11px; font-weight: 700; }
.contact-option-label {
    display: block;
    margin-bottom: 8px;
    color: var(--wine);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-option h2 {
    margin-bottom: 6px;
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.08;
    transition: color .2s ease;
}
.contact-option p { margin: 0; color: var(--muted); font-size: 13px; }
.contact-option-action {
    padding: 13px 0;
    border-bottom: 1px solid var(--wine);
    color: var(--wine);
    font-size: 11px;
    font-weight: 700;
}
.contact-option:hover h2 { color: var(--wine); }
.contact-details-section { padding: 105px 0; background: var(--paper); }
.contact-details-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 100px; }
.contact-details-grid h2 {
    max-width: 520px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(39px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.035em;
}
.contact-details-list { margin: 0; border-top: 1px solid var(--ink); }
.contact-details-list > div {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 35px;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}
.contact-details-list dt { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-details-list dd { margin: 0; font-family: var(--serif); font-size: 22px; line-height: 1.35; }
.contact-details-list a:hover { color: var(--wine); }
.contact-page-note { padding: 30px 0; color: #d7cac7; background: var(--wine-dark); }
.contact-page-note p { max-width: 950px; margin: 0; font-size: 11px; }
.contact-page-note strong { color: var(--white); }

.footer { padding: 78px 0 28px; color: #d9cfcc; background: #191514; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .75fr 1fr .9fr;
    gap: 70px;
    padding-bottom: 55px;
}
.footer .brand { color: var(--white); }
.footer .logo-mark { border-color: #b77d79; color: #e2b2ac; }
.footer .logo-mark::after { background: #e2b2ac; }
.footer .brand small { color: #9c908d; }
.footer-intro { max-width: 300px; margin: 24px 0 0; color: #a89d9a; font-size: 12px; }
.footer h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a, .footer-address { color: #aaa09d; font-size: 12px; }
.footer-links a:hover, .footer-address a:hover { color: var(--white); }
.footer-address { margin: 0; }
.footer-disclaimer {
    padding: 22px 0;
    border-top: 1px solid #393230;
    border-bottom: 1px solid #393230;
    color: #958986;
    font-size: 11px;
}
.footer-disclaimer strong { color: #d4c8c5; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 25px;
    color: #756c69;
    font-size: 10px;
}

@media (max-width: 1080px) {
    .nav-links { gap: 17px; }
    .nav-links a { font-size: 11px; }
    .nav-actions .button { display: none; }
    .intro-grid { gap: 75px; }
    .requirements-grid { gap: 60px; }
    .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
    :root { --container: min(100% - 36px, 720px); }
    .section { padding: 82px 0; }
    .topbar-inner { grid-template-columns: 1fr auto; }
    .topbar-inner > span:first-child { display: none; }
    .topbar-contact a:first-child { display: none; }
    .menu-button { display: block; }
    .nav-links {
        position: fixed;
        z-index: 45;
        top: 127px;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        align-content: start;
        align-items: stretch;
        gap: 0;
        padding: 28px 18px 50px;
        overflow-y: auto;
        background: var(--paper-light);
    }
    .nav-links.open { display: grid; }
    .nav-links a { padding: 17px 6px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 25px; font-weight: 500; }
    .nav-links a::after { display: none; }
    .hero, .hero-content { min-height: 610px; }
    .hero-media::after { background: linear-gradient(90deg, rgb(25 15 16 / 93%), rgb(32 20 20 / 55%)); }
    .hero h1 { max-width: 650px; }
    .service-strip-inner { grid-template-columns: 1fr 1fr; }
    .service-strip span:nth-child(2)::after { display: none; }
    .service-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .service-strip span:nth-child(3) { padding-left: 0; }
    .intro-grid, .section-heading, .requirements-grid, .faq-grid, .contact-inner { grid-template-columns: 1fr; }
    .contact-page-heading, .contact-details-grid { grid-template-columns: 1fr; }
    .intro-grid, .section-heading, .faq-grid, .contact-inner { gap: 42px; }
    .contact-page-heading, .contact-details-grid { gap: 42px; }
    .contact-page-heading .overline { margin-bottom: 0; }
    .section-heading { align-items: start; margin-bottom: 48px; }
    .intro-copy { padding-top: 28px; }
    .process-list { grid-template-columns: 1fr 1fr; gap: 45px 0; }
    .process-step { min-height: 225px; }
    .type-row { grid-template-columns: 50px minmax(190px, .8fr) minmax(260px, 1fr) 40px; gap: 22px; }
    .requirements-grid { gap: 65px; }
    .requirements-image { height: 480px; }
    .image-note { right: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
    :root { --container: calc(100% - 28px); }
    body { font-size: 14px; }
    .section { padding: 68px 0; }
    .section-title { font-size: 39px; }
    .topbar-inner { min-height: 36px; }
    .private-notice { font-size: 9px; }
    .topbar-contact { gap: 0; }
    .topbar-contact a { font-size: 10px; }
    .nav { min-height: 76px; }
    .brand strong { font-size: 20px; }
    .brand small { max-width: 150px; }
    .logo-mark { width: 42px; height: 42px; }
    .nav-links { top: 112px; }
    .hero, .hero-content { min-height: 590px; }
    .hero-copy { padding: 62px 0; }
    .hero h1 { font-size: 47px; }
    .hero-copy > p:not(.hero-disclaimer) { font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .service-strip span { padding: 21px 13px; font-size: 15px; }
    .service-strip span:first-child, .service-strip span:nth-child(3) { padding-left: 0; }
    .service-strip span:nth-child(2), .service-strip span:nth-child(4) { padding-right: 0; }
    .process-list { grid-template-columns: 1fr; gap: 34px; }
    .process-step { min-height: 0; padding-top: 28px; }
    .process-step:not(:last-child) { margin-right: 0; }
    .step-number { margin-bottom: 24px; }
    .type-row {
        min-height: 0;
        grid-template-columns: 34px 1fr 35px;
        gap: 14px;
        padding: 27px 0;
    }
    .type-row h3 { font-size: 25px; }
    .type-row p { grid-column: 2 / -1; }
    .type-row > a { grid-column: 3; grid-row: 1; width: 35px; height: 35px; }
    .requirements-image { height: 390px; }
    .image-note { bottom: -30px; }
    .resource-row { min-height: 0; gap: 20px; padding: 24px 0; }
    .resource-row h3 { font-size: 23px; }
    .resource-row p { padding-right: 10px; }
    .resource-row > span { max-width: 65px; text-align: right; }
    .faq-grid { gap: 48px; }
    .faq-list summary { font-size: 21px; }
    .contact { padding: 68px 0; }
    .contact h2 { font-size: 41px; }
    .contact-page-hero { padding: 78px 0 70px; }
    .contact-page-heading h1 { font-size: 48px; }
    .contact-options { padding: 30px 0 70px; }
    .contact-option {
        min-height: 0;
        grid-template-columns: 34px 1fr;
        gap: 12px;
        padding: 30px 0;
    }
    .contact-option-number { padding-top: 4px; }
    .contact-option h2 { font-size: 29px; }
    .contact-option-action { grid-column: 2; justify-self: start; margin-top: 8px; }
    .contact-details-section { padding: 70px 0; }
    .contact-details-list > div { grid-template-columns: 1fr; gap: 8px; }
    .contact-details-list dd { font-size: 20px; overflow-wrap: anywhere; }
    .footer { padding-top: 60px; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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