/* ==========================================================================
   Stinson — Family Office
   v8. Original dark editorial aesthetic · mobile-safe.
   Mobile has no pseudo-element decorations near text.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@200;300;400;500;600&display=swap');

:root {
    --ink: #0a0a0a;
    --ink-soft: #141414;
    --ink-card: #181818;
    --paper: #f5f1ea;
    --paper-dim: #c9c4b9;
    --stone: #8a8378;
    --stone-dark: #4a463f;
    --gold: #b89968;
    --gold-dark: #8a7149;
    --line: rgba(245, 241, 234, 0.14);
    --line-strong: rgba(245, 241, 234, 0.3);

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --pad: 22px;
    --nav-h: 64px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    width: 100%;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--nav-h) + 32px);
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: clip;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.65;
    background: var(--ink);
    color: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fallback for browsers without overflow: clip support */
@supports not (overflow: clip) {
    html, body { overflow-x: hidden; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--stone-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

.wrap {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 var(--pad);
    position: relative;
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader__mark {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader__mark img {
    height: 96px;
    width: auto;
    display: block;
    filter: brightness(1.08);
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    animation: preloadRise 1s var(--ease) 0.1s forwards;
}
@keyframes preloadRise {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============ PROGRESS ============ */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    z-index: 150;
    pointer-events: none;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 100;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s var(--ease);
}
.nav__brand {
    display: flex;
    align-items: center;
    color: var(--paper);
    height: 100%;
}
.nav__logo {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(1.08);
}
.nav__menu, .nav__lang { display: none; }

.burger {
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 110;
}
.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--paper);
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 16px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mmenu {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 105;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.mmenu.open { opacity: 1; visibility: visible; }
.mmenu ul { text-align: center; margin-bottom: 40px; }
.mmenu li { margin: 14px 0; }
.mmenu a {
    font-family: var(--serif);
    font-style: italic;
    font-size: 34px;
    color: var(--paper);
    transition: color 0.3s var(--ease);
}
.mmenu a:hover { color: var(--gold); }
.mmenu__lang {
    display: flex;
    gap: 16px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper-dim);
}
.mmenu__lang a.current { color: var(--gold); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--nav-h) + 40px) var(--pad) 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

/* Mobile: each anchor-target section fills the viewport */
.about,
.team,
.ceo,
.strategy,
.contact {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 22s var(--ease) infinite alternate;
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.4) 0%,
        rgba(10,10,10,0.55) 45%,
        rgba(10,10,10,0.9) 100%);
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
}
.hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.hero__quote {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    font-size: 34px;
    line-height: 1.06;
    color: var(--paper);
    letter-spacing: -0.01em;
    max-width: 20ch;
    opacity: 0;
    animation: fadeUp 1.1s var(--ease) 0.5s forwards;
}
.hero__quote em {
    color: var(--gold);
    font-style: italic;
}
.hero__by {
    margin-top: 32px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper-dim);
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.9s forwards;
}
.hero__by span { color: var(--gold); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTION BASE ============ */
.section {
    padding: 84px 0;
    position: relative;
}
.label {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 500;
    margin-bottom: 28px;
    display: block;
}
.title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.012em;
    color: var(--paper);
    margin-bottom: 40px;
}
.title em {
    font-style: italic;
    color: var(--gold);
}

/* ============ ABOUT ============ */
.about { background: var(--ink); }
.about__intro p {
    font-size: 16px;
    line-height: 1.78;
    color: var(--paper-dim);
    margin-bottom: 22px;
    font-weight: 300;
    max-width: 58ch;
}
.about__intro p:first-child::first-letter {
    font-family: var(--serif);
    font-style: italic;
    font-size: 4.2em;
    float: left;
    line-height: 0.85;
    padding: 6px 12px 0 0;
    color: var(--gold);
    font-weight: 500;
}
.about__aside {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.about__pull {
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    line-height: 1.3;
    color: var(--paper);
    margin-bottom: 14px;
}
.about__pull-by {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============ TEAM (full-bleed with bg image) ============ */
.team {
    position: relative;
    padding: 96px 0 80px;
    overflow: hidden;
    background: var(--ink-soft);
}
.team__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.team__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}
.team__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.78) 0%,
        rgba(10,10,10,0.9) 100%);
}
.team__inner { position: relative; z-index: 1; }
.team__quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.15;
    color: var(--paper);
    margin-bottom: 18px;
    letter-spacing: -0.005em;
}
.team__by {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 52px;
}
.team__head {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    color: var(--paper);
    margin-bottom: 14px;
}
.team__body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--paper-dim);
    max-width: 60ch;
}

/* ============ CEO STATEMENT ============ */
.ceo {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background: var(--ink);
}
.ceo__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.ceo__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.ceo__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.78) 0%,
        rgba(10,10,10,0.9) 100%);
}
.ceo__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.ceo__mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 80px;
    line-height: 0.5;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
    opacity: 0.9;
}
.ceo__quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.15;
    color: var(--paper);
    margin-bottom: 28px;
    letter-spacing: -0.008em;
}
.ceo__by {
    padding-top: 20px;
    border-top: 1px solid rgba(245, 241, 234, 0.2);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--paper-dim);
}
.ceo__by strong {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 0;
    text-transform: none;
    display: block;
    margin-bottom: 6px;
}

/* ============ STRATEGY ============ */
.strategy { background: var(--ink); }
.strategy__quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.14;
    color: var(--paper);
    margin-bottom: 16px;
    letter-spacing: -0.008em;
}
.strategy__quote em { color: var(--gold); }
.strategy__by {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
}
.strategy__body {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.78;
    color: var(--paper-dim);
    margin-bottom: 56px;
}
.pillars { display: block; }
.pillar {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar__num {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
}
.pillar__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    color: var(--paper);
    line-height: 1.2;
}

/* ============ CONTACT ============ */
.contact { background: var(--ink); }
.contact__lead {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.06;
    color: var(--paper);
    margin-bottom: 32px;
    letter-spacing: -0.015em;
}
.contact__lead em { font-style: italic; color: var(--gold); }
.contact__text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--paper-dim);
    margin-bottom: 28px;
    max-width: 52ch;
}
.contact__text a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-dark);
    padding-bottom: 1px;
}
.contact__text a:hover {
    color: var(--paper);
    border-color: var(--paper);
}
.contact__btn {
    display: inline-block;
    padding: 16px 28px;
    border: 1px solid var(--line-strong);
    color: var(--paper);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.contact__btn:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

/* ============ IMPRINT ============ */
.imprint {
    padding: 44px 0 0;
    border-top: 1px solid var(--line);
    margin-top: 60px;
}
.imprint__block { margin-bottom: 32px; }
.imprint__block h4 {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}
.imprint__block address,
.imprint__block p {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    color: var(--paper-dim);
    margin-bottom: 14px;
}
.imprint__block strong { color: var(--paper); font-weight: 500; }
.imprint__block a {
    color: var(--paper);
    border-bottom: 1px solid var(--line);
}
.imprint__block a:hover {
    color: var(--gold);
    border-color: var(--gold);
}
.imprint__links a {
    display: inline-block;
    margin-top: 6px;
    border: none;
    color: var(--gold);
    font-size: 13px;
}

/* ============ FOOTER ============ */
.footer {
    padding: 56px 0 32px;
    border-top: 1px solid var(--line);
    background: var(--ink);
}
.footer__top { margin-bottom: 40px; }
.footer__brand {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 30px;
    color: var(--paper);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.footer__tagline {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
}
.footer__bottom {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
}
.footer__legal { margin-bottom: 14px; }
.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.footer__links a { color: var(--stone); }
.footer__links a:hover { color: var(--gold); }

/* ============ SUBPAGE ============ */
.subpage {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at top right, rgba(184, 153, 104, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(184, 153, 104, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 60%);
}
.subpage__hero {
    padding: calc(var(--nav-h) + 72px) 0 48px;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.subpage__hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 80px;
    height: 2px;
    background: var(--gold);
}

/* Subpage with hero image */
.subpage--image .subpage__hero {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 48px;
    border-bottom: 0;
    position: relative;
    overflow: hidden;
}
.subpage--image .subpage__hero::after { display: none; }
.subpage-hero__media {
    position: relative;
    margin-top: var(--nav-h);
    height: 46vh;
    min-height: 280px;
    max-height: 520px;
    overflow: hidden;
}
.subpage-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.subpage-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.35) 0%,
        rgba(10,10,10,0.55) 60%,
        rgba(10,10,10,0.95) 100%);
}
.subpage-hero__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 var(--pad) 48px;
    z-index: 2;
}
.subpage-hero__caption .wrap { padding: 0; }
.subpage-hero__caption .subpage__num { color: var(--gold); }
.subpage-hero__caption .subpage__title { color: var(--paper); }
.subpage__num {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}
.subpage__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 44px;
    line-height: 1.04;
    color: var(--paper);
    letter-spacing: -0.015em;
}
.subpage__title em { font-style: italic; color: var(--gold); }
.subpage__body {
    padding: 44px 0 72px;
    max-width: 820px;
}
.subpage__body h4 {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 36px 0 16px;
    font-weight: 500;
}
.subpage__body p {
    font-size: 15px;
    line-height: 1.82;
    color: var(--paper-dim);
    margin-bottom: 18px;
}
.subpage__body a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-dark);
    word-break: break-word;
}
.subpage__body a:hover { color: var(--paper); border-color: var(--paper); }
.subpage__back {
    display: inline-block;
    margin-top: 32px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: none !important;
}

/* ============ COOKIE ============ */
.cookie {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 620px;
    margin: 0 auto;
    padding: 22px;
    background: var(--ink-card);
    border: 1px solid var(--line-strong);
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}
.cookie.visible { transform: translateY(0); opacity: 1; }
.cookie__head {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.cookie__text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--paper-dim);
    margin-bottom: 18px;
}
.cookie__text a { color: var(--gold); border-bottom: 1px solid var(--gold-dark); }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btn {
    padding: 11px 20px;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border: 1px solid var(--line-strong);
    color: var(--paper);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.cookie__btn:hover { border-color: var(--paper); }
.cookie__btn--primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}
.cookie__btn--primary:hover {
    background: var(--paper);
    border-color: var(--paper);
}

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
    will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ==========================================================================
   TABLET (≥ 720 px)
   ========================================================================== */
@media (min-width: 720px) {
    :root { --pad: 40px; --nav-h: 80px; }

    .section { padding: 140px 0; }
    .team { padding: 160px 0 140px; }
    .ceo { padding: 140px 0; }

    .nav__logo { height: 50px; }

    /* (min-height: 100vh already applied in base styles for all anchor-target sections) */

    .hero__quote { font-size: 56px; max-width: 18ch; }
    .title, .contact__lead { font-size: 56px; }
    .team__quote, .ceo__quote, .strategy__quote { font-size: 38px; }
    .subpage__title { font-size: 64px; }
    .team__inner, .ceo__inner { max-width: 760px; }

    .about__grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 72px;
        align-items: start;
    }
    .about__aside {
        margin-top: 0;
        padding-top: 0;
        padding-left: 32px;
        border-top: 0;
        border-left: 1px solid var(--line);
    }

    .pillars {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .pillar { padding-top: 22px; border-bottom: 0 !important; }
    .pillar:last-child { border-bottom: 0; }

    .strategy__top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
        margin-bottom: 48px;
    }
    .strategy__by { margin-bottom: 0; }
    .strategy__body {
        padding-top: 0;
        border-top: 0;
        margin-top: 0;
        margin-bottom: 72px;
        padding-left: 0;
    }

    .contact__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
    }

    .imprint__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }

    .footer__top { display: flex; justify-content: space-between; align-items: baseline; }
    .footer__brand { margin-bottom: 0; }
    .footer__bottom { display: flex; justify-content: space-between; align-items: center; }
    .footer__legal { margin-bottom: 0; }
}

/* ==========================================================================
   DESKTOP (≥ 980 px)
   ========================================================================== */
@media (min-width: 980px) {
    :root { --pad: 64px; }

    .nav__menu {
        display: flex;
        gap: 36px;
        align-items: center;
    }
    .nav__menu a {
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--paper);
        position: relative;
        padding: 6px 0;
    }
    .nav__menu a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s var(--ease);
    }
    .nav__menu a:hover::after, .nav__menu a.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    .nav__lang {
        display: flex;
        gap: 14px;
        align-items: center;
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
    }
    .nav__lang a { opacity: 0.5; }
    .nav__lang a.current, .nav__lang a:hover { opacity: 1; color: var(--gold); }
    .nav__lang span { color: var(--stone-dark); }
    .burger { display: none; }

    /* Decorative horizontal lines — desktop only, never near mobile text */
    .label {
        display: inline-flex;
        align-items: center;
        gap: 14px;
    }
    .label::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--gold);
    }
    .hero__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 14px;
    }
    .hero__eyebrow::before {
        content: '';
        width: 44px;
        height: 1px;
        background: var(--gold);
    }

    .hero__quote { font-size: 84px; line-height: 1.03; }
    .title, .contact__lead { font-size: 72px; }
    .team__quote, .ceo__quote { font-size: 48px; }
    .strategy__quote { font-size: 58px; }
    .subpage__title { font-size: 88px; }
}

@media (min-width: 1200px) {
    .about__grid { grid-template-columns: 1fr 1.15fr; gap: 100px; }
    .hero__quote { font-size: 96px; max-width: 17ch; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
