:root {
    --ink: #0b0908;
    --ink-soft: #15100d;
    --ink-warm: #21150f;
    --oxblood: #4f0d14;
    --oxblood-deep: #28070c;
    --cream: #efe6d5;
    --cream-soft: #f8f2e8;
    --sand: #c7ab83;
    --sand-deep: #9c7651;
    --gold: #c9a55c;
    --gold-bright: #ead18f;
    --gold-dark: #80602c;
    --ivory: #fbf5e9;
    --text-on-dark: #ddd0bc;
    --text-muted: #9e907f;
    --line-dark: rgba(234, 209, 143, .19);
    --line-light: rgba(38, 23, 15, .17);
    --display-font: Cambria, Georgia, "Times New Roman", serif;
    --body-font: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
    --wrapper: 1200px;
    --header-height: 82px;
    --section-space: clamp(5.5rem, 10vw, 9.5rem);
    --shadow-deep: 0 30px 70px rgba(0, 0, 0, .34);
}

*,
*::before,
*::after { box-sizing: border-box; }

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p { margin: 0; padding: 0; }

ul,
ol { margin: 0; padding: 0; list-style: none; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
    background: var(--ink);
    color-scheme: dark;
}

body {
    min-width: 320px;
    background: var(--ink);
    color: var(--text-on-dark);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu_open { overflow: hidden; }

::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; }

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

img { max-width: 100%; }

.svg_icon_sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.svg_icon {
    display: block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wrapper {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 3rem), var(--wrapper));
    margin-inline: auto;
}

.section { position: relative; z-index: 1; overflow: hidden; }
.section_pad { padding-block: var(--section-space); }
.section_cream { background: var(--cream); color: #241810; }
.section_sand { background: var(--sand); color: #241810; }
.section_ink { background: var(--ink); color: var(--text-on-dark); }
.section_oxblood { background: var(--oxblood); color: var(--text-on-dark); }

.skip_link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000000000;
    padding: .75rem 1rem;
    background: var(--gold-bright);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-200%);
    transition: transform .2s ease;
}

.skip_link:focus { transform: translateY(0); }

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 4px;
}

.scroll_progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    width: 100%;
    height: 2px;
    pointer-events: none;
}

.scroll_progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
    box-shadow: 0 0 12px rgba(234, 209, 143, .55);
}

.site_header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    padding-top: var(--safe-top);
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site_header.is_scrolled {
    border-color: var(--line-dark);
    background: rgba(11, 9, 8, .9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    backdrop-filter: blur(18px) saturate(120%);
}

.header_inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    color: var(--ivory);
    text-decoration: none;
}

.brand_logo { display: block; width: 252px; height: auto; }

.desktop_nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.6vw, 2.2rem);
}

.desktop_nav a {
    position: relative;
    padding-block: .6rem;
    color: rgba(251, 245, 233, .78);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease;
}

.desktop_nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.desktop_nav a:hover,
.desktop_nav a.active { color: var(--gold-bright); }
.desktop_nav a:hover::after,
.desktop_nav a.active::after { transform: scaleX(1); transform-origin: left; }

.button {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: .85rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .13em;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.button::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 28%;
    height: 340%;
    background: rgba(255, 255, 255, .35);
    transform: rotate(24deg);
    transition: left .7s ease;
}

.button:hover::before { left: 120%; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button_gold {
    border-color: var(--gold);
    background: var(--gold);
    color: #160e09;
    box-shadow: 0 12px 30px rgba(128, 96, 44, .22);
}

.button_gold:hover {
    border-color: var(--gold-bright);
    background: var(--gold-bright);
    box-shadow: 0 16px 34px rgba(201, 165, 92, .24);
}

.button_small { min-height: 42px; padding: .65rem 1rem; font-size: .66rem; }

.header_cta { flex: 0 0 auto; }

.menu_toggle {
    position: relative;
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-dark);
    border-radius: 0;
    background: rgba(255, 255, 255, .02);
    color: var(--gold-bright);
    cursor: pointer;
}

.menu_icon {
    position: absolute;
    width: 22px;
    height: 22px;
    transition: transform .3s ease, opacity .3s ease;
}
.menu_icon_close { opacity: 0; transform: rotate(-90deg) scale(.72); }
.menu_toggle[aria-expanded="true"] .menu_icon_open { opacity: 0; transform: rotate(90deg) scale(.72); }
.menu_toggle[aria-expanded="true"] .menu_icon_close { opacity: 1; transform: rotate(0) scale(1); }

.mobile_menu {
    position: fixed;
    inset: 0;
    z-index: 10002;
    visibility: hidden;
    opacity: 0;
    transition: visibility .4s ease, opacity .4s ease;
}
.mobile_menu.is_open { visibility: visible; opacity: 1; }
.mobile_menu_backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(0, 0, 0, .68);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.mobile_menu_panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 420px);
    height: 100%;
    flex-direction: column;
    padding: calc(var(--safe-top) + 1.5rem) 1.5rem calc(var(--safe-bottom) + 1.5rem);
    border-left: 1px solid var(--line-dark);
    background: var(--ink-soft);
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.21, 1, .32, 1);
}
.mobile_menu.is_open .mobile_menu_panel { transform: translateX(0); }
.mobile_menu_top { display: flex; align-items: center; justify-content: space-between; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.mobile_menu_top button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line-dark); background: transparent; color: var(--ivory); cursor: pointer; }
.mobile_menu_top button .svg_icon { width: 20px; height: 20px; }
.mobile_menu nav { display: flex; flex: 1; flex-direction: column; justify-content: center; }
.mobile_menu nav a { display: flex; align-items: baseline; gap: 1rem; padding: .72rem 0; border-bottom: 1px solid rgba(255, 255, 255, .06); color: var(--ivory); font-family: var(--display-font); font-size: clamp(1.4rem, 7vw, 2rem); text-decoration: none; }
.mobile_menu nav a span { color: var(--gold); font-family: var(--body-font); font-size: .62rem; letter-spacing: .12em; }
.mobile_menu_contact { padding-top: 1.25rem; border-top: 1px solid var(--line-dark); }
.mobile_menu_contact small { display: block; color: var(--text-muted); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.mobile_menu_contact a { color: var(--gold-bright); font-family: var(--display-font); font-size: 1.45rem; text-decoration: none; }

.hero {
    position: relative;
    z-index: 1;
    min-height: max(740px, 100svh);
    overflow: hidden;
    background: #0a0807;
}

.hero_media,
.hero_overlay,
.hero_threads { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero_media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; filter: saturate(.72) contrast(1.06) brightness(.73); transform: scale(1.015); animation: heroBreath 18s ease-in-out infinite alternate; }
.hero_overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 6, 5, .97) 0%, rgba(8, 6, 5, .87) 35%, rgba(8, 6, 5, .32) 70%, rgba(8, 6, 5, .5) 100%),
        linear-gradient(180deg, rgba(7, 5, 4, .38) 0%, transparent 35%, rgba(7, 5, 4, .78) 100%);
}
.hero_overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(234, 209, 143, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 209, 143, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 75%);
    mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.hero_threads { z-index: 2; opacity: .38; pointer-events: none; }
.hero_threads path { fill: none; stroke: var(--gold); stroke-width: .65; vector-effect: non-scaling-stroke; stroke-dasharray: 7 14; animation: threadFlow 26s linear infinite; }
.hero_threads path:nth-child(2) { opacity: .45; animation-direction: reverse; animation-duration: 34s; }
.hero_threads path:nth-child(3) { opacity: .2; stroke-dasharray: 2 16; }
.hero_safe { position: relative; z-index: 3; }
.hero_inner { display: flex; min-height: max(740px, 100svh); align-items: center; padding-top: calc(var(--header-height) + 3rem); padding-bottom: 6rem; }
.hero_content { width: min(840px, 72%); }

.eyebrow {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 0 0 1.35rem;
    color: var(--gold);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .22em;
    line-height: 1.5;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; flex: 0 0 34px; background: currentColor; }
.hero h1 {
    max-width: 820px;
    margin: 0;
    color: var(--ivory);
    font-family: var(--display-font);
    font-size: clamp(3.4rem, 7.2vw, 7rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .91;
}
.hero h1 em { display: inline-block; color: var(--gold-bright); font-style: italic; font-weight: 400; white-space: nowrap; }
.hero_lead { max-width: 660px; margin-top: 2rem; padding-left: 1.2rem; border-left: 1px solid var(--gold); color: rgba(251, 245, 233, .77); font-size: clamp(1rem, 1.6vw, 1.22rem); line-height: 1.75; }
.hero_actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; }
.text_link { position: relative; display: inline-flex; align-items: center; gap: .65rem; padding: .5rem 0; color: var(--ivory); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.text_link::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: rgba(251, 245, 233, .35); transition: background .25s ease; }
.text_link:hover::after { background: var(--gold); }
.text_link .link_icon { width: 1rem; height: 1rem; color: var(--gold); transition: transform .25s ease; }
.text_link:hover .link_icon { transform: translate(3px, 3px); }
.hero_proofs { display: grid; max-width: 780px; grid-template-columns: repeat(3, 1fr); margin-top: 3.6rem; border-top: 1px solid var(--line-dark); }
.hero_proofs li { padding: 1.2rem 1.3rem 0 0; }
.hero_proofs li + li { padding-left: 1.3rem; border-left: 1px solid var(--line-dark); }
.hero_proofs strong { display: block; color: var(--gold-bright); font-family: var(--display-font); font-size: 1.25rem; font-weight: 400; letter-spacing: .025em; }
.hero_proofs span { display: block; margin-top: .2rem; color: rgba(251, 245, 233, .58); font-size: .72rem; line-height: 1.5; }
.scroll_hint { position: absolute; right: 2.5rem; bottom: 2.2rem; z-index: 5; display: flex; align-items: center; gap: 1rem; color: rgba(251, 245, 233, .62); font-size: .59rem; font-weight: 700; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll_hint i { position: relative; display: block; width: 60px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .18); }
.scroll_hint i::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scrollLine 2.6s ease-in-out infinite; }

.section_divider { position: relative; z-index: 4; width: 100%; height: clamp(70px, 8vw, 128px); overflow: hidden; }
.section_divider svg { display: block; width: 100%; height: 100%; }
.section_divider .divider_seam { fill: none; stroke: var(--gold); stroke-width: 1; vector-effect: non-scaling-stroke; stroke-dasharray: 8 12; animation: dividerDash 24s linear infinite; }
.divider_stitch { background: var(--ink); }
.divider_stitch .divider_fill { fill: var(--cream); }
.divider_chevron { height: clamp(62px, 7.2vw, 112px); background: var(--cream); }
.divider_chevron .divider_fill { fill: var(--ink); }
.divider_thread { background: var(--ink); }
.divider_thread .divider_fill { fill: var(--oxblood); }
.divider_fold { height: clamp(62px, 7.2vw, 112px); background: var(--oxblood); }
.divider_fold .divider_fill { fill: var(--sand); }
.divider_stitch_reverse { background: var(--sand); }
.divider_stitch_reverse .divider_fill { fill: var(--ink); }
.divider_price { background: var(--ink); }
.divider_price .divider_fill { fill: var(--cream); }
.divider_contact { background: var(--sand); }
.divider_contact .divider_fill { fill: #110c0a; }
.divider_fold svg,
.divider_chevron.divider_contact svg { transform: scaleY(-1); transform-origin: 50% 50%; }

.fabric_motif { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
.fabric_motif path,
.fabric_motif circle { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.motif_pinstripe { color: rgba(71, 48, 31, .1); transform: scale(1.08); animation: motifDrift 24s ease-in-out infinite alternate; }
.motif_pinstripe > path { color: rgba(79, 13, 20, .15); stroke-dasharray: 9 13; animation: threadFlow 34s linear infinite; }
.motif_herringbone { color: rgba(201, 165, 92, .075); transform: scale(1.1); animation: motifDrift 32s ease-in-out infinite alternate-reverse; }
.motif_herringbone path { stroke-dasharray: 2 4; }
.motif_windowpane { color: rgba(234, 209, 143, .09); transform: rotate(-1deg) scale(1.05); animation: fabricShift 28s ease-in-out infinite alternate; }
.motif_threads { color: rgba(79, 13, 20, .15); }
.motif_threads path { stroke-dasharray: 10 16; animation: threadFlow 30s linear infinite; }
.motif_threads path:nth-child(2) { animation-direction: reverse; }
.motif_selvedge { color: rgba(201, 165, 92, .075); transform: scale(1.08); }
.motif_selvedge path:nth-child(2) { stroke-dasharray: 4 9; animation: threadFlow 28s linear infinite; }
.motif_chalk { color: rgba(79, 13, 20, .105); animation: motifDrift 30s ease-in-out infinite alternate; }
.motif_chalk path { stroke-dasharray: 8 12; animation: threadFlow 32s linear infinite; }
.motif_contact { color: rgba(234, 209, 143, .055); transform: rotate(2deg) scale(1.1); animation: fabricShift 36s ease-in-out infinite alternate; }

.has_js [data-scroll-spy] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease, transform .9s cubic-bezier(.21, 1, .32, 1);
}
.has_js [data-scroll-spy].is_visible { opacity: 1; transform: translateY(0); }
.has_js .sector_grid [data-scroll-spy]:nth-child(2),
.has_js .identity_grid [data-scroll-spy]:nth-child(2),
.has_js .pricing_grid [data-scroll-spy]:nth-child(2) { transition-delay: .09s; }
.has_js .sector_grid [data-scroll-spy]:nth-child(3),
.has_js .identity_grid [data-scroll-spy]:nth-child(3),
.has_js .pricing_grid [data-scroll-spy]:nth-child(3) { transition-delay: .18s; }
.has_js .sector_grid [data-scroll-spy]:nth-child(4),
.has_js .identity_grid [data-scroll-spy]:nth-child(4) { transition-delay: .27s; }
.has_js .sector_grid [data-scroll-spy]:nth-child(5) { transition-delay: .36s; }

.section_heading { position: relative; z-index: 2; }
.section_heading h2,
.identity_header h2,
.advantage_content > h2,
.process_intro h2,
.contact_header h2 {
    max-width: 920px;
    margin: 0;
    color: inherit;
    font-family: var(--display-font);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.03;
}
.section_heading_center { max-width: 920px; margin-inline: auto; text-align: center; }
.section_heading_center .eyebrow { justify-content: center; }
.section_description { max-width: 760px; color: currentColor; font-size: 1rem; line-height: 1.8; opacity: .7; }
.section_cream .eyebrow,
.section_sand .eyebrow { color: var(--oxblood); }
.section_cream .section_description,
.section_sand .section_description { opacity: .78; }
.section_heading_center .section_description { margin: 1.5rem auto 0; }

.intro_grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); align-items: end; gap: clamp(3rem, 7vw, 7rem); }
.intro_copy { padding-top: 3rem; border-top: 1px solid var(--line-light); }
.intro_copy p { margin: 0; }
.intro_copy p + p { margin-top: 1.15rem; }
.intro_copy .lead_quote { color: var(--oxblood); font-family: var(--display-font); font-size: clamp(1.4rem, 2.5vw, 2rem); font-style: italic; line-height: 1.35; }
.intro_visual { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr); align-items: end; gap: 2rem; margin-top: clamp(4rem, 8vw, 7rem); }
.image_frame { position: relative; margin: 0; }
.image_frame_wide { height: clamp(430px, 57vw, 680px); max-width: 780px; }
.image_frame_tall { height: clamp(560px, 72vw, 790px); }
.image_frame .lazy_image_container { box-shadow: var(--shadow-deep); }
.image_frame::before { content: ""; position: absolute; top: -16px; left: -16px; z-index: 0; width: 45%; height: 45%; border-top: 1px solid var(--gold-dark); border-left: 1px solid var(--gold-dark); }
.image_frame figcaption { position: absolute; right: -1px; bottom: -1px; z-index: 4; padding: .85rem 1.1rem; background: var(--cream); color: #382319; font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.image_frame figcaption span { margin-right: .55rem; color: var(--oxblood); font-family: var(--display-font); font-size: 1.1rem; }
.image_frame_wide img { object-position: center 52%; }
.intro_statement { padding: 2.5rem 0 2rem; }
.statement_rule { display: block; width: 1px; height: 90px; margin-bottom: 1.5rem; background: linear-gradient(var(--gold-dark), transparent); }
.intro_statement p { color: #3e281c; font-family: var(--display-font); font-size: clamp(1.35rem, 2.4vw, 2.1rem); font-style: italic; line-height: 1.45; }

.sectors_section { margin-top: -1px; }
.sectors_section .section_heading h2 { color: var(--ivory); }
.sector_grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-top: 4.5rem; border: 1px solid var(--line-dark); background: var(--line-dark); }
.sector_card { position: relative; min-height: 330px; grid-column: span 2; overflow: hidden; padding: 2rem; background: rgba(16, 12, 10, .94); transition: background .35s ease, color .35s ease; }
.sector_card:nth-child(4) { grid-column: 2 / span 2; }
.sector_card_featured { grid-column: span 2; background: rgba(79, 13, 20, .72); }
.sector_card::before { content: ""; position: absolute; right: -70px; bottom: -95px; width: 180px; height: 180px; border: 1px solid rgba(201, 165, 92, .13); transform: rotate(45deg); transition: transform .5s ease, border-color .5s ease; }
.sector_card:hover { background: var(--oxblood); }
.sector_card:hover::before { border-color: rgba(234, 209, 143, .38); transform: rotate(68deg) scale(1.18); }
.card_number { display: block; color: rgba(234, 209, 143, .68); font-family: var(--display-font); font-size: 1.15rem; }
.card_kicker { margin: 2.4rem 0 .65rem; color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.sector_card h3 { max-width: 280px; margin: 0; color: var(--ivory); font-family: var(--display-font); font-size: 1.65rem; font-weight: 400; line-height: 1.25; }
.sector_card > p:last-child { max-width: 280px; margin-top: 1.1rem; color: rgba(221, 208, 188, .66); font-size: .86rem; line-height: 1.7; }

.advantage_grid { display: grid; grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr); align-items: center; gap: clamp(3.5rem, 7vw, 7rem); }
.advantage_media { position: relative; padding: 1.25rem 0 0 1.25rem; }
.advantage_media::before { content: ""; position: absolute; inset: 0 25% 25% 0; border: 1px solid rgba(234, 209, 143, .28); }
.advantage_media img { object-position: center top; }
.media_badge { position: absolute; right: -1rem; bottom: 2.5rem; z-index: 5; display: flex; min-width: 230px; flex-direction: column; padding: 1.2rem 1.5rem; border-left: 3px solid var(--gold); background: var(--ink); box-shadow: var(--shadow-deep); }
.media_badge strong { color: var(--gold-bright); font-family: var(--display-font); font-size: 1.15rem; font-weight: 400; }
.media_badge span { margin-top: .2rem; color: var(--text-muted); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.advantage_content > h2 { color: var(--ivory); }
.advantage_list { margin-top: 2.5rem; border-top: 1px solid rgba(234, 209, 143, .2); }
.advantage_list article { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(234, 209, 143, .14); }
.advantage_list article > span { color: var(--gold); font-family: var(--display-font); font-size: .95rem; }
.advantage_list h3 { margin: 0; color: var(--ivory); font-family: var(--display-font); font-size: 1.18rem; font-weight: 400; }
.advantage_list p { margin-top: .25rem; color: rgba(221, 208, 188, .7); font-size: .84rem; line-height: 1.65; }

.identity_header { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr); align-items: end; gap: clamp(2.5rem, 6vw, 6rem); }
.identity_header .section_description { padding-bottom: .5rem; }
.identity_grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4.5rem; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.identity_grid article { min-height: 310px; padding: 2rem 1.7rem; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: rgba(239, 230, 213, .09); }
.identity_grid article > span { display: inline-block; padding-bottom: .65rem; border-bottom: 1px solid var(--oxblood); color: var(--oxblood); font-size: .59rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.identity_grid h3 { margin: 4.7rem 0 0; color: #291a12; font-family: var(--display-font); font-size: 1.5rem; font-weight: 400; line-height: 1.25; }
.identity_grid p { margin-top: .8rem; color: rgba(36, 24, 16, .78); font-size: .83rem; line-height: 1.7; }

.process_intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 4rem; }
.process_intro h2 { color: var(--ivory); }
.process_timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 5rem; }
.process_timeline::before { content: ""; position: absolute; top: 31px; right: 7%; left: 7%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.process_timeline li { position: relative; padding: 0 1rem; text-align: center; }
.process_timeline li > span { position: relative; z-index: 2; display: grid; width: 62px; height: 62px; margin-inline: auto; place-items: center; border: 1px solid rgba(201, 165, 92, .5); background: var(--ink); color: var(--gold-bright); font-family: var(--display-font); font-size: 1rem; transform: rotate(45deg); }
.process_timeline li > span::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(201, 165, 92, .12); }
.process_timeline li > span { line-height: 1; }
.process_timeline li > span::after { content: attr(data-label); }
.process_timeline li > div { margin-top: 2.2rem; }
.process_timeline .card_kicker { margin: 0 0 .55rem; }
.process_timeline h3 { margin: 0; color: var(--ivory); font-family: var(--display-font); font-size: 1.15rem; font-weight: 400; line-height: 1.35; }
.process_timeline li p:last-child { margin-top: .65rem; color: rgba(221, 208, 188, .62); font-size: .76rem; line-height: 1.65; }
.process_timeline li > span { writing-mode: horizontal-tb; }
.process_timeline li > span { transform: rotate(45deg); }
.process_timeline li > span { color: transparent; }
.process_timeline li > span::after { content: none; }
.process_timeline li > span { text-shadow: 0 0 0 var(--gold-bright); }
.process_timeline li > span { font-variant-numeric: lining-nums; }
.process_timeline li > span { padding: 0; }
.process_timeline li > span { --number-rotation: -45deg; }
.process_timeline li > span { font-size: 0; }
.process_timeline li > span::after { content: attr(aria-label); transform: rotate(-45deg); color: var(--gold-bright); font-family: var(--display-font); font-size: 1rem; }
.process_timeline li:nth-child(1) > span::after { content: "01"; }
.process_timeline li:nth-child(2) > span::after { content: "02"; }
.process_timeline li:nth-child(3) > span::after { content: "03"; }
.process_timeline li:nth-child(4) > span::after { content: "04"; }
.process_timeline li:nth-child(5) > span::after { content: "05"; }
.process_visuals { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1.2rem; margin-top: 5.5rem; }
.process_visuals figure { position: relative; height: 430px; margin: 0; overflow: hidden; }
.process_visuals figure:last-child { height: 350px; align-self: end; }
.process_visuals img { object-position: center; }
.process_visuals figure:last-child img { object-position: center 48%; }
.process_visuals figcaption { position: absolute; right: 0; bottom: 0; z-index: 4; padding: .7rem 1rem; border-left: 1px solid var(--gold); background: rgba(11, 9, 8, .88); color: var(--gold-bright); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.pricing_section .section_heading h2 { color: #291a12; }
.pricing_grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 1.2rem; margin-top: 4.5rem; }
.price_card { position: relative; min-height: 500px; padding: 2.2rem; border: 1px solid var(--line-light); background: rgba(248, 242, 232, .58); box-shadow: 0 20px 45px rgba(38, 23, 15, .08); }
.price_card::before { content: ""; position: absolute; top: 0; left: 0; width: 72px; height: 3px; background: var(--gold-dark); }
.price_card_featured { border-color: var(--oxblood); background: var(--oxblood); color: var(--text-on-dark); transform: translateY(-1.5rem); box-shadow: 0 30px 60px rgba(79, 13, 20, .25); }
.price_card_featured::before { width: 100%; background: var(--gold); }
.price_badge { position: absolute; top: 0; right: 0; padding: .55rem .8rem; background: var(--gold); color: var(--ink); font-size: .56rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.price_card .card_kicker { margin-top: .9rem; }
.price_card:not(.price_card_featured) .card_kicker { color: var(--oxblood); }
.price_card h3 { max-width: 260px; margin: 0; color: #2b1b13; font-family: var(--display-font); font-size: 1.75rem; font-weight: 400; line-height: 1.2; }
.price_card_featured h3 { color: var(--ivory); }
.price { margin-top: 2.6rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--line-light); color: var(--oxblood); font-family: var(--display-font); font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; }
.price_card_featured .price { border-color: rgba(234, 209, 143, .2); color: var(--gold-bright); }
.price small { display: block; margin-bottom: .45rem; color: currentColor; font-family: var(--body-font); font-size: .61rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.price span { display: inline-block; margin-left: .25rem; font-family: var(--body-font); font-size: .67rem; font-weight: 700; letter-spacing: .05em; }
.price_card ul { margin-top: 1.8rem; }
.price_card li { position: relative; padding-left: 1.15rem; color: rgba(36, 24, 16, .7); font-size: .82rem; line-height: 1.65; }
.price_card_featured li { color: rgba(251, 245, 233, .7); }
.price_card li + li { margin-top: .75rem; }
.price_card li::before { content: ""; position: absolute; top: .7em; left: 0; width: 6px; height: 6px; border: 1px solid var(--gold-dark); transform: rotate(45deg); }
.price_card_featured li::before { border-color: var(--gold); }
.pricing_note { max-width: 760px; margin: 2.5rem auto 0; color: rgba(36, 24, 16, .68); font-size: .72rem; line-height: 1.7; text-align: center; }

.consultation_banner { position: relative; z-index: 2; overflow: hidden; padding: clamp(5rem, 9vw, 8rem) 0; border-block: 1px solid rgba(234, 209, 143, .18); background: linear-gradient(110deg, var(--oxblood-deep), var(--oxblood) 58%, #6b1720); color: var(--ivory); }
.consultation_banner::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(107deg, transparent 0 16px, rgba(234, 209, 143, .035) 16px 17px); }
.consultation_threads { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .4; }
.consultation_threads path { fill: none; stroke: var(--gold); stroke-width: .8; vector-effect: non-scaling-stroke; stroke-dasharray: 7 15; animation: threadFlow 34s linear infinite; }
.consultation_threads path:nth-child(2) { animation-direction: reverse; }
.consultation_inner { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3rem; }
.consultation_inner .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.consultation_inner h2 { max-width: 850px; margin: 0; font-family: var(--display-font); font-size: clamp(2.6rem, 5.4vw, 5rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.03; }

.faq_grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(3.5rem, 7vw, 7rem); }
.faq_grid .section_heading { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq_grid .section_description { margin-top: 1.4rem; }
.faq_list { overflow-anchor: none; border-top: 1px solid var(--line-light); }
.faq_list details { overflow: hidden; border-bottom: 1px solid var(--line-light); }
.faq_list summary { position: relative; display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1rem 3rem 1rem 0; color: #2c1c13; cursor: pointer; font-family: var(--display-font); font-size: 1.2rem; line-height: 1.35; list-style: none; }
.faq_list summary::-webkit-details-marker { display: none; }
.faq_list summary .faq_icon { position: absolute; top: 50%; right: .25rem; width: 22px; height: 22px; color: var(--oxblood); transform: translateY(-50%) rotate(0); transition: transform .45s cubic-bezier(.22, 1, .36, 1); }
.faq_list details[open] summary .faq_icon,
.faq_list details.is_expanded summary .faq_icon { transform: translateY(-50%) rotate(180deg); }
.faq_list.faq_ready details:not(.is_expanded) summary .faq_icon { transform: translateY(-50%) rotate(0); }
.faq_list details p { max-width: 720px; margin: 0; padding: 0 3rem 1.6rem 0; color: rgba(36, 24, 16, .78); font-size: .88rem; line-height: 1.75; }
.has_js .faq_list.faq_ready details p { opacity: 0; transform: translateY(-7px); transition: opacity .28s ease, transform .42s cubic-bezier(.22, 1, .36, 1); }
.has_js .faq_list.faq_ready details.is_expanded p { opacity: 1; transform: translateY(0); }
.faq_list details.is_animating { will-change: height; }

.contact_section { margin-top: -1px; background: #110c0a; color: var(--text-on-dark); }
.contact_header { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); align-items: end; gap: 4rem; }
.contact_header h2 { color: var(--ivory); }
.contact_grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 1px; margin-top: 4.5rem; border: 1px solid var(--line-dark); background: var(--line-dark); }
.contact_form { padding: clamp(1.5rem, 4vw, 3.2rem); background: #17110e; }
.form_row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact_form label { display: block; margin: 0 0 1.25rem; color: rgba(251, 245, 233, .78); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact_form label > span { color: var(--gold); }
.contact_form input:not([type="checkbox"]),
.contact_form select,
.contact_form textarea { display: block; width: 100%; margin-top: .48rem; padding: .85rem 0; border: 0; border-bottom: 1px solid rgba(234, 209, 143, .42); border-radius: 0; outline: 0; background: transparent; color: var(--ivory); font-family: var(--body-font); font-size: max(16px, .92rem); font-weight: 400; letter-spacing: normal; line-height: 1.5; text-transform: none; transition: border-color .25s ease, background .25s ease; }
.contact_form input:not([type="checkbox"]):focus,
.contact_form select:focus,
.contact_form textarea:focus { border-color: var(--gold); background: rgba(234, 209, 143, .025); }
.contact_form input::placeholder,
.contact_form textarea::placeholder { color: rgba(221, 208, 188, .6); opacity: 1; }
.contact_form select { cursor: pointer; }
.contact_form select option { background: var(--ink); color: var(--ivory); }
.contact_form textarea { min-height: 130px; resize: vertical; }
.contact_form .consent { display: flex; align-items: flex-start; gap: .75rem; margin: 1.6rem 0; cursor: pointer; color: rgba(221, 208, 188, .6); font-weight: 500; letter-spacing: normal; line-height: 1.55; text-transform: none; }
.consent input { width: 18px; height: 18px; flex: 0 0 18px; margin: .15rem 0 0; accent-color: var(--gold); }
.consent span { color: inherit !important; }
.form_submit { display: flex; align-items: center; gap: 1.2rem; }
.form_status { margin: 0; color: var(--gold-bright); font-size: .72rem; line-height: 1.5; }
.contact_details { padding: clamp(1.5rem, 4vw, 3rem); background: var(--oxblood-deep); }
.contact_primary { padding-bottom: 2rem; border-bottom: 1px solid rgba(234, 209, 143, .18); }
.contact_primary .card_kicker,
.locations .card_kicker { margin: 0 0 .8rem; }
.contact_primary > a { color: var(--gold-bright); font-family: var(--display-font); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; text-decoration: none; }
.contact_primary > p:last-child { margin-top: 1rem; color: rgba(221, 208, 188, .58); font-size: .78rem; line-height: 1.7; }
.contact_channels { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0 -1rem; padding: 1.4rem 0; border-bottom: 1px solid rgba(234, 209, 143, .18); background: rgba(234, 209, 143, .12); }
.contact_channels a { padding: .4rem 1rem; color: var(--ivory); font-size: .75rem; line-height: 1.4; text-decoration: none; }
.contact_channels a + a { border-left: 1px solid rgba(234, 209, 143, .16); }
.contact_channels span { display: block; margin-bottom: .3rem; color: var(--gold); font-size: .56rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.locations { padding-top: 1.8rem; }
.locations address { display: grid; grid-template-columns: 62px 1fr auto; align-items: start; gap: .8rem; padding: 1rem 0; border-bottom: 1px solid rgba(234, 209, 143, .12); font-style: normal; }
.locations address:last-child { border-bottom: 0; }
.locations strong { color: var(--gold-bright); font-family: var(--display-font); font-size: .98rem; font-weight: 400; }
.locations address span { color: rgba(221, 208, 188, .65); font-size: .7rem; line-height: 1.55; }
.locations address a { display: inline-flex; align-items: center; gap: .35rem; color: var(--gold); font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.external_link_icon { width: 1em; height: 1em; }
.map_frame { position: relative; height: 500px; margin-top: 1.2rem; overflow: hidden; border: 1px solid var(--line-dark); background: var(--ink); }
.map_frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) sepia(.2) contrast(1.1) brightness(.72); }
.map_label { position: absolute; bottom: 0; left: 0; z-index: 2; display: flex; min-width: min(430px, 80%); align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.4rem; border-top: 1px solid var(--gold); background: rgba(11, 9, 8, .92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.map_label span { color: var(--text-muted); font-size: .61rem; letter-spacing: .08em; }
.map_label strong { color: var(--gold-bright); font-family: var(--display-font); font-size: 1rem; font-weight: 400; }

.site_footer { position: relative; z-index: 2; padding: 5rem 0 calc(2rem + var(--safe-bottom)); border-top: 1px solid var(--line-dark); background: #080605; }
.footer_top { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); align-items: start; gap: 3.5rem 4rem; }
.brand_footer .brand_logo { width: min(100%, 300px); }
.company_name { margin-top: 1.8rem; color: var(--gold-bright); font-family: var(--display-font); font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; }
.footer_intro { max-width: 430px; margin-top: .75rem; color: rgba(221, 208, 188, .66); font-size: .82rem; line-height: 1.75; }
.footer_contact { display: flex; flex-direction: column; align-items: flex-start; gap: .2rem; margin-top: 1.25rem; }
.footer_contact a { color: var(--ivory); font-size: .75rem; text-decoration: none; }
.footer_heading { margin-bottom: 1rem; color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer_location_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line-dark); background: var(--line-dark); }
.footer_location_grid address { display: flex; min-height: 210px; flex-direction: column; align-items: flex-start; padding: 1.25rem; background: #0d0907; font-style: normal; }
.footer_location_grid strong { color: var(--gold-bright); font-family: var(--display-font); font-size: .93rem; font-weight: 400; line-height: 1.35; }
.footer_location_grid span { margin-top: .75rem; color: rgba(221, 208, 188, .72); font-size: .7rem; line-height: 1.55; }
.footer_location_grid address > a:not(.footer_map_link) { margin-top: auto; color: var(--ivory); font-size: .72rem; text-decoration: none; }
.footer_location_grid .footer_map_link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .45rem; color: var(--gold); font-size: .61rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.footer_nav { display: flex; grid-column: 1 / -1; flex-wrap: wrap; gap: .6rem 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .07); }
.footer_nav a { color: rgba(251, 245, 233, .76); font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.footer_nav a:hover { color: var(--gold); }
.footer_bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, .07); color: rgba(221, 208, 188, .62); font-size: .65rem; letter-spacing: .06em; }
.footer_bottom a { color: var(--gold); text-decoration: none; }

.contact_rail { position: fixed; right: 0; bottom: 16%; z-index: 9000; display: flex; flex-direction: column; border: 1px solid var(--line-dark); border-right: 0; background: rgba(11, 9, 8, .9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); transform: translateX(calc(100% - 42px)); transition: transform .35s cubic-bezier(.21, 1, .32, 1); }
.contact_rail:hover,
.contact_rail:focus-within { transform: translateX(0); }
.contact_rail a { position: relative; display: flex; min-width: 190px; flex-direction: column; padding: .72rem .95rem .72rem 3.3rem; color: var(--ivory); text-decoration: none; }
.contact_rail a + a { border-top: 1px solid var(--line-dark); }
.contact_rail .rail_icon { position: absolute; top: 50%; left: 13px; width: 22px; height: 22px; color: var(--gold); transform: translateY(-50%); }
.contact_rail span { color: var(--text-muted); font-size: .54rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact_rail strong { margin-top: .15rem; color: var(--gold-bright); font-family: var(--display-font); font-size: .9rem; font-weight: 400; }

#lvi-toast-container { position: fixed; right: 0; bottom: 0; z-index: 100000 !important; width: min(400px, 100%); padding: 1rem; pointer-events: none; }
#lvi-toast-container .toast { position: relative; display: flex; flex-direction: column; padding: .9rem 1rem; border: 1px solid rgba(234, 209, 143, .25); border-left: 3px solid var(--gold); border-radius: 0; background: var(--ink-soft); box-shadow: var(--shadow-deep); color: var(--ivory) !important; pointer-events: auto; animation: toastIn .35s ease both; }
#lvi-toast-container .toast + .toast { margin-top: .6rem; }
#lvi-toast-container .toast .title { color: var(--gold-bright); font-family: var(--display-font); font-size: 1rem; }
#lvi-toast-container .toast .content { margin-top: .25rem; color: rgba(251, 245, 233, .72); font-size: .76rem; line-height: 1.55; }
#lvi-toast-container .toast::before { display: none; }

@keyframes heroBreath {
    from { transform: scale(1.015); }
    to { transform: scale(1.055); }
}
@keyframes threadFlow { to { stroke-dashoffset: -240; } }
@keyframes dividerDash { to { stroke-dashoffset: -320; } }
@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}
@keyframes motifDrift {
    from { translate: -1.5% -1%; }
    to { translate: 1.5% 1%; }
}
@keyframes fabricShift {
    from { translate: -1% 0; }
    to { translate: 1% -1%; }
}
@keyframes toastIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
    :root { --header-height: 74px; }
    .desktop_nav { gap: 1rem; }
    .desktop_nav a { font-size: .65rem; }
    .hero_content { width: min(840px, 78%); }
    .identity_grid { grid-template-columns: repeat(2, 1fr); }
    .identity_grid article { min-height: 270px; }
    .identity_grid h3 { margin-top: 3.5rem; }
    .process_timeline { grid-template-columns: repeat(3, 1fr); gap: 3.5rem 1rem; }
    .process_timeline::before { display: none; }
    .process_timeline li:nth-child(4) { grid-column: 1 / 2; }
    .process_timeline li:nth-child(5) { grid-column: 2 / 3; }
    .footer_top { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
    .desktop_nav,
    .header_cta { display: none; }
    .header_inner { justify-content: space-between; }
    .menu_toggle { display: flex; }
    .hero_content { width: min(840px, 90%); }
    .intro_grid,
    .advantage_grid,
    .identity_header,
    .process_intro,
    .faq_grid,
    .contact_header { grid-template-columns: 1fr; gap: 2.2rem; }
    .intro_visual { grid-template-columns: 1fr .55fr; }
    .sector_grid { grid-template-columns: repeat(2, 1fr); }
    .sector_card,
    .sector_card:nth-child(4),
    .sector_card_featured { grid-column: auto; }
    .sector_card_featured { grid-column: 1 / -1; min-height: 260px; }
    .advantage_media { width: min(100%, 570px); margin-inline: auto; }
    .faq_grid .section_heading { position: static; }
    .contact_grid { grid-template-columns: 1fr; }
    .contact_details { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
    .contact_primary { grid-column: 1 / 2; }
    .contact_channels { grid-column: 1 / 2; margin-inline: 0; }
    .locations { grid-column: 2 / 3; grid-row: 1 / 3; padding-top: 0; }
}

@media (max-width: 720px) {
    :root { --section-space: 5.4rem; }
    body { padding-bottom: calc(62px + var(--safe-bottom)); }
    .wrapper { width: min(calc(100% - 2rem), var(--wrapper)); }
    .brand_logo { width: 210px; }
    .hero,
    .hero_inner { min-height: max(680px, 100svh); }
    .hero_inner { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 5rem; }
    .hero_media img { object-position: 62% center; }
    .hero_overlay { background: linear-gradient(90deg, rgba(8, 6, 5, .97), rgba(8, 6, 5, .75) 70%, rgba(8, 6, 5, .64)), linear-gradient(180deg, rgba(7, 5, 4, .35), transparent 30%, rgba(7, 5, 4, .82)); }
    .hero_content { width: 100%; }
    .hero h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
    .hero h1 em { display: inline; white-space: normal; }
    .hero_lead { max-width: 92%; font-size: .96rem; }
    .hero_actions { align-items: stretch; flex-direction: column; gap: 1rem; }
    .hero_actions .button { width: 100%; }
    .hero_actions .text_link { width: max-content; }
    .hero_proofs { grid-template-columns: 1fr 1fr; margin-top: 2.6rem; }
    .hero_proofs li:nth-child(3) { display: none; }
    .scroll_hint { display: none; }
    .section_divider { height: 72px; }
    .section_heading h2,
    .identity_header h2,
    .advantage_content > h2,
    .process_intro h2,
    .contact_header h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
    .intro_copy { padding-top: 1.5rem; }
    .intro_visual { grid-template-columns: 1fr; }
    .image_frame_wide { height: 480px; }
    .intro_statement { padding: 0 0 0 1.5rem; border-left: 1px solid var(--gold-dark); }
    .statement_rule { display: none; }
    .sector_grid { grid-template-columns: 1fr; }
    .sector_card,
    .sector_card_featured { min-height: 260px; grid-column: auto; }
    .advantage_grid { grid-template-columns: 1fr; }
    .media_badge { right: -.5rem; min-width: 210px; }
    .identity_grid { grid-template-columns: 1fr; }
    .identity_grid article { min-height: auto; }
    .identity_grid h3 { margin-top: 2.6rem; }
    .process_timeline { grid-template-columns: 1fr; gap: 0; margin-top: 3.5rem; }
    .process_timeline li,
    .process_timeline li:nth-child(4),
    .process_timeline li:nth-child(5) { display: grid; grid-column: auto; grid-template-columns: 58px 1fr; gap: 1.5rem; padding: 0 0 2rem; text-align: left; }
    .process_timeline li > span { width: 50px; height: 50px; margin: .3rem 0 0; }
    .process_timeline li > div { margin-top: 0; }
    .process_timeline li:not(:last-child)::after { content: ""; position: absolute; top: 54px; bottom: 0; left: 25px; width: 1px; background: rgba(201, 165, 92, .25); }
    .process_visuals { grid-template-columns: 1fr; margin-top: 2rem; }
    .process_visuals figure,
    .process_visuals figure:last-child { height: 310px; }
    .pricing_grid { grid-template-columns: 1fr; }
    .price_card { min-height: auto; }
    .price_card_featured { transform: none; }
    .consultation_inner { grid-template-columns: 1fr; gap: 2rem; }
    .consultation_inner .eyebrow { margin-bottom: 0; }
    .consultation_inner .button { width: 100%; }
    .form_row { grid-template-columns: 1fr; gap: 0; }
    .form_submit { align-items: stretch; flex-direction: column; }
    .contact_details { display: block; }
    .contact_channels { margin: 0 -1rem; }
    .locations { padding-top: 1.8rem; }
    .locations address { grid-template-columns: 56px 1fr; }
    .locations address a { grid-column: 2; }
    .map_frame { height: 420px; }
    .map_label { min-width: 100%; gap: 1rem; }
    .footer_top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer_location_grid { grid-template-columns: 1fr; }
    .footer_location_grid address { min-height: 0; }
    .footer_location_grid address > a:not(.footer_map_link) { margin-top: 1rem; }
    .footer_nav { grid-column: auto; }
    .footer_bottom { align-items: flex-start; flex-direction: column; gap: .4rem; }
    .contact_rail { right: 0; bottom: 0; left: 0; flex-direction: row; border: 0; border-top: 1px solid var(--line-dark); padding-bottom: var(--safe-bottom); transform: none; }
    .contact_rail a { min-width: 0; width: 50%; min-height: 62px; justify-content: center; padding: .55rem .75rem .55rem 2.8rem; }
    .contact_rail a + a { border-top: 0; border-left: 1px solid var(--line-dark); }
    .contact_rail .rail_icon { left: 13px; width: 20px; height: 20px; }
}

@media (max-width: 420px) {
    .brand_logo { width: 192px; }
    .hero h1 { font-size: 3.15rem; }
    .eyebrow { font-size: .59rem; letter-spacing: .17em; }
    .hero_proofs li { padding-right: .7rem; }
    .hero_proofs li + li { padding-left: .7rem; }
    .hero_proofs strong { font-size: 1.05rem; }
    .image_frame_wide { height: 410px; }
    .image_frame_tall { height: 520px; }
    .media_badge { right: 0; bottom: 1.3rem; min-width: 190px; padding: 1rem; }
    .faq_list summary { padding-right: 2.3rem; font-size: 1.08rem; }
    .contact_primary > a { font-size: 2rem; }
    .contact_channels { grid-template-columns: 1fr; }
    .contact_channels a + a { border-top: 1px solid rgba(234, 209, 143, .16); border-left: 0; }
    .map_label { align-items: flex-start; flex-direction: column; gap: .2rem; }
}

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

@media print {
    .site_header,
    .mobile_menu,
    .contact_rail,
    .scroll_progress,
    .section_divider,
    .fabric_motif { display: none !important; }
    body { padding: 0; background: #fff; color: #000; }
    .section,
    .consultation_banner,
    .site_footer { background: #fff !important; color: #000 !important; }
}
