/* ============================================================
   BS Paysagiste — site styles
   Palette from the business card: black, white, two greens.
   Signature device: the card's diagonal cut, used as section edges,
   list markers and the kicker bar.
   ============================================================ */

:root {
    --noir:    #141517;   /* card black */
    --noir-2:  #0f1a12;   /* forest black, hero and film sections */
    --paper:   #f6f7f3;
    --paper-2: #eceee6;
    --leaf:    #86bb4f;   /* brand light green */
    --moss:    #3b7a3d;   /* brand dark green */
    --sap:     #c8f56f;   /* young-leaf glow: focus and hover only */
    --ink:     #171a17;
    --ink-2:   #4d544b;
    --line:    #dfe4d6;

    --font-display: 'Unbounded', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Onest', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --wrap: 1240px;
    --gutter: clamp(16px, 4vw, 48px);
    --header-h: 78px;
    --wedge: clamp(36px, 6vw, 96px);
    --ease-out: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.modal-open, body.nav-open { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; }
button { font: inherit; color: inherit; }
a { color: inherit; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }

.hero-title, .section-title, .trade-title, .step-title, .step-num,
.modal-title, .form-title, .contact-phone, .brand-name, .work-social { font-family: var(--font-display); }

:focus-visible { outline: 2px solid var(--sap); outline-offset: 3px; border-radius: 4px; }

.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 200;
    padding: 10px 14px; border-radius: 10px;
    background: var(--sap); color: var(--noir); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ── the diagonal bar: the card's cut, as a marker ───────────── */
.hero-kicker::before, .trade-list li::before, .work-facts li::before, .modal-list li::before {
    content: ""; display: inline-block; flex: none;
    width: 9px; height: 13px; margin-right: 10px; vertical-align: -1px;
    background: var(--leaf); transform: skewX(-22deg); border-radius: 1px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 22px; border-radius: 999px;
    font-weight: 600; font-size: 15px; line-height: 1;
    text-decoration: none; border: 1px solid transparent; cursor: pointer;
    transition: transform .25s var(--ease-out), box-shadow .25s, background-color .25s, color .25s, border-color .25s;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--leaf); color: var(--noir); }
.btn-primary:hover { background: var(--sap); transform: translateY(-1px); box-shadow: 0 12px 30px -12px rgba(134, 187, 79, .8); }
.btn-ghost { border-color: rgba(255, 255, 255, .24); color: #fff; background: rgba(255, 255, 255, .04); }
.btn-ghost small { font-weight: 400; font-size: 13px; opacity: .72; }
.btn-ghost:hover { border-color: var(--leaf); background: rgba(134, 187, 79, .12); }
.btn-light { background: #fff; color: var(--noir); }
.btn-light:hover { background: var(--sap); }
.btn-outline { border-color: var(--moss); color: var(--moss); background: transparent; }
.btn-outline:hover { background: var(--moss); color: #fff; }
.btn[disabled] { opacity: .6; cursor: default; transform: none; }

.link-btn {
    background: none; border: 0; padding: 0; cursor: pointer;
    color: inherit; text-decoration: underline; text-underline-offset: 3px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    padding: 16px 0;
    transition: background-color .35s, padding .35s, box-shadow .35s;
}
.site-header.is-scrolled {
    padding: 10px 0;
    background: rgba(15, 26, 18, .84);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.header-inner { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand-mark { width: 64px; height: auto; }
.brand-name { font-weight: 500; font-size: 17px; letter-spacing: -.01em; white-space: nowrap; }
.brand-name b { color: var(--leaf); font-weight: 700; }

.site-nav { display: flex; gap: 28px; margin-left: auto; }
.site-nav a {
    position: relative; padding: 6px 0;
    color: rgba(255, 255, 255, .84); text-decoration: none; font-weight: 500; font-size: 15px;
}
.site-nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
    background: var(--leaf); transform: skewX(-22deg); transition: right .3s var(--ease-out);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-mobile-extra { display: none; }

.header-tools { position: relative; z-index: 95; display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; padding: 3px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; }
.lang-switch button {
    padding: 6px 9px; border: 0; border-radius: 999px; background: none; cursor: pointer;
    color: rgba(255, 255, 255, .62); font-weight: 600; font-size: 12px; letter-spacing: .02em;
    transition: background-color .2s, color .2s;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button[aria-pressed="true"] { background: var(--leaf); color: var(--noir); }

.nav-burger {
    display: none; width: 44px; height: 44px; padding: 10px;
    flex-direction: column; justify-content: center; gap: 5px;
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16); border-radius: 12px; cursor: pointer;
}
.nav-burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; overflow: hidden;
    min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center;
    padding: calc(var(--header-h) + 40px) 0 calc(var(--wedge) + 60px);
    background:
        radial-gradient(60% 50% at 70% 45%, rgba(59, 122, 61, .32), transparent 70%),
        radial-gradient(40% 40% at 15% 90%, rgba(134, 187, 79, .10), transparent 70%),
        var(--noir-2);
    color: #fff;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-glow {
    position: absolute; z-index: 1; pointer-events: none;
    width: 640px; height: 640px; right: 8%; top: 50%; transform: translateY(-50%);
    background: radial-gradient(circle, rgba(134, 187, 79, .28), transparent 62%);
    filter: blur(20px);
}
/* diagonal cut into the paper section below, with the card's green sliver */
.hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3;
    height: var(--wedge);
    background: linear-gradient(to top left, var(--paper) 0 calc(50% - 5px), var(--leaf) calc(50% - 5px) 50%, transparent 50%);
}

.hero-inner {
    position: relative; z-index: 4;
    width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto;
    display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center;
    gap: clamp(32px, 6vw, 96px);
}

.hero-copy { max-width: 640px; }
.hero-kicker { display: flex; align-items: center; font-size: 15px; font-weight: 500; color: var(--leaf); }
.hero-title {
    margin-top: 18px;
    font-weight: 600; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.04; letter-spacing: -.015em;
    text-wrap: balance;
}
.hero-lead { margin-top: 22px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: rgba(255, 255, 255, .8); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trades { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 0; margin-top: 40px; }
.hero-trades li { display: flex; align-items: center; }
.hero-trades li + li::before { content: ""; width: 2px; height: 16px; margin: 0 16px; background: var(--leaf); transform: skewX(-22deg); }
.hero-trades a { color: rgba(255, 255, 255, .78); text-decoration: none; font-weight: 500; font-size: 15px; }
.hero-trades a:hover { color: var(--sap); }

/* the film: a portrait "portal" hovering in 3D */
.hero-film {
    position: relative; perspective: 1400px;
    transform: translateX(var(--film-shift, 0px)) scale(var(--film-scale, 1));
    transform-origin: center;
    transition: transform 1.2s var(--ease-out);
}
.hero--intro .hero-film { transition: none; }
.film-frame {
    position: relative; overflow: hidden;
    height: clamp(420px, 74svh, 780px); aspect-ratio: 9 / 16;
    border-radius: 30px; background: #000;
    transform: rotateY(var(--ry, 0deg)) rotateX(var(--rx, 0deg));
    transform-style: preserve-3d;
    transition: transform .5s var(--ease-out);
    box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .9);
}
.film-frame::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), inset 0 0 60px rgba(134, 187, 79, .10);
}
.film-video { width: 100%; height: 100%; object-fit: cover; }
.film-scrim {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, .28), transparent 22%, transparent 72%, rgba(0, 0, 0, .55));
}
.film-caption {
    position: absolute; left: 20px; bottom: 18px; z-index: 2;
    font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, .9);
}
.film-caption::after { content: ""; display: block; width: 34px; height: 2px; margin-top: 6px; background: var(--leaf); transform: skewX(-22deg); }
.film-controls { position: absolute; top: 14px; right: 14px; z-index: 3; display: flex; gap: 8px; }
.film-btn {
    width: 40px; height: 40px; border-radius: 50%; padding: 0;
    display: grid; place-items: center; cursor: pointer;
    background: rgba(10, 16, 11, .55); border: 1px solid rgba(255, 255, 255, .22); color: #fff;
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    transition: background-color .2s, border-color .2s, opacity .3s;
}
.film-btn:hover { border-color: var(--sap); }
.film-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.film-sound .ic-speaker { fill: currentColor; stroke: none; }
.film-sound .ic-wave { display: none; }
.film-sound[aria-pressed="true"] .ic-wave { display: block; }
.film-sound[aria-pressed="true"] .ic-mute { display: none; }
.film-replay { opacity: 0; pointer-events: none; }
.hero--done .film-replay { opacity: 1; pointer-events: auto; }
.film-skip {
    position: absolute; right: 16px; bottom: 16px; z-index: 3;
    padding: 9px 14px; border-radius: 999px; cursor: pointer;
    background: rgba(10, 16, 11, .55); border: 1px solid rgba(255, 255, 255, .24); color: #fff;
    font-size: 13px; font-weight: 600;
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s, border-color .2s;
}
.film-skip:hover { border-color: var(--sap); }
.hero.skip-ready .film-skip { opacity: 1; transform: none; }
.hero--done .film-skip { opacity: 0; visibility: hidden; pointer-events: none; }
.film-shadow {
    position: absolute; left: 10%; right: 10%; bottom: -34px; height: 60px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, .6), transparent 70%);
    filter: blur(10px); z-index: -1;
}

/* intro gate: the copy waits for the film, then slides in */
.hero-copy { opacity: 0; pointer-events: none; transform: translateX(-24px); transition: opacity .9s .35s, transform 1s .35s var(--ease-out); }
.hero--done .hero-copy { opacity: 1; pointer-events: auto; transform: none; }
.hero-scroll {
    position: absolute; left: 50%; bottom: calc(var(--wedge) * .55 + 18px); z-index: 4;
    transform: translateX(-50%) translateY(10px);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255, 255, 255, .85); text-decoration: none; font-size: 13px; font-weight: 600;
    opacity: 0; transition: opacity .8s .9s, transform .8s .9s var(--ease-out), color .2s;
}
.hero--done .hero-scroll { opacity: 1; transform: translateX(-50%); }
.hero-scroll:hover { color: var(--sap); }
.hero-scroll i { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--leaf), transparent); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0%, 100% { transform: scaleY(.5); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section-head { max-width: 64ch; margin-bottom: clamp(32px, 4vw, 52px); }
.section-title { font-weight: 600; font-size: clamp(27px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -.015em; text-wrap: balance; }
.section-sub { margin-top: 14px; font-size: clamp(16px, 1.3vw, 18px); color: var(--ink-2); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper); padding: clamp(64px, 9vw, 130px) 0 clamp(72px, 10vw, 150px); }

.trade-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; grid-auto-rows: minmax(0, auto); gap: 18px;
    perspective: 1600px;
}
.trade {
    position: relative; overflow: hidden; border-radius: 26px;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transform-style: preserve-3d; transition: transform .4s var(--ease-out), box-shadow .4s;
}
.trade-body { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 40px); }
.trade-title { font-weight: 500; font-size: clamp(20px, 1.8vw, 25px); line-height: 1.15; }
.trade-text { margin-top: 12px; font-size: 15.5px; line-height: 1.6; }
.trade-list { list-style: none; margin-top: 18px; display: grid; gap: 8px; font-size: 14.5px; }
.trade-list li { display: flex; align-items: center; }
.trade .btn { align-self: flex-start; margin-top: 26px; }

.trade--landscape {
    grid-row: 1 / span 2; min-height: 620px; color: #fff; background: var(--noir-2);
    box-shadow: 0 30px 70px -40px rgba(15, 26, 18, .7);
}
.trade--landscape .trade-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform 1.2s var(--ease-out); }
.trade--landscape:hover .trade-bg { transform: scale(1.04); }
.trade--landscape::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(15, 26, 18, .05) 20%, rgba(15, 26, 18, .82) 62%, rgba(15, 26, 18, .95));
}
.trade--landscape .trade-body { justify-content: flex-end; }
.trade--landscape .trade-text { color: rgba(255, 255, 255, .82); }
.trade--landscape .trade-list { grid-template-columns: 1fr 1fr; color: rgba(255, 255, 255, .9); }

.trade--garden { background: #fff; border: 1px solid var(--line); }
.trade--tree { background: #e4ecd9; }
.trade-icon { display: block; width: 44px; height: 44px; margin-bottom: 18px; color: var(--moss); }
.trade-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.trade--garden .trade-text, .trade--tree .trade-text { color: var(--ink-2); }

/* ============================================================
   WORK (dark band, diagonal edges top and bottom)
   ============================================================ */
.work {
    position: relative; background: var(--noir-2); color: #fff;
    padding: calc(var(--wedge) + clamp(48px, 6vw, 90px)) 0 calc(var(--wedge) + clamp(48px, 6vw, 90px));
}
.work::before {
    content: ""; position: absolute; left: 0; right: 0; top: -1px; height: var(--wedge);
    background: linear-gradient(to bottom right, var(--paper) 0 calc(50% - 5px), var(--leaf) calc(50% - 5px) 50%, transparent 50%);
}
.work::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: var(--wedge);
    background: linear-gradient(to top left, var(--paper-2) 0 calc(50% - 5px), var(--leaf) calc(50% - 5px) 50%, transparent 50%);
}
.work .section-sub { color: var(--leaf); }
.section-head--row { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 32px clamp(32px, 6vw, 96px); align-items: end; }
.work-intro { font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, .78); max-width: 56ch; }

.work-strip {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
    padding: 6px var(--gutter) 22px; margin: 0 calc(-1 * var(--gutter));
    scrollbar-width: none;
}
.work-strip::-webkit-scrollbar { display: none; }
.work-card, .work-social {
    display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
    padding: 24px; text-decoration: none; color: #fff; cursor: pointer;
    background: linear-gradient(160deg, var(--moss), #1f4a26);
    font-weight: 400; font-size: 15px; line-height: 1.35;
}
.work-social:hover { background: linear-gradient(160deg, #4a9148, var(--moss)); }
.work-social-icons { display: flex; gap: 10px; }
.work-social-icons svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--paper-2); padding: clamp(56px, 8vw, 110px) 0 clamp(72px, 10vw, 140px); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { position: relative; padding-top: 22px; border-top: 2px solid var(--moss); }
.step-num { font-weight: 700; font-size: 44px; line-height: 1; color: var(--leaf); }
.step-title { margin-top: 14px; font-weight: 500; font-size: 18px; line-height: 1.2; }
.step-text { margin-top: 8px; font-size: 15px; color: var(--ink-2); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--paper); padding: clamp(64px, 9vw, 130px) 0 clamp(72px, 9vw, 130px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.contact-info .section-head { margin-bottom: 0; }
.contact-phone {
    display: inline-block; margin-top: 30px;
    font-weight: 600; font-size: clamp(24px, 2.8vw, 38px); letter-spacing: -.01em; line-height: 1.1;
    color: var(--ink); text-decoration: none; transition: color .2s;
}
.contact-phone:hover { color: var(--moss); }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 14px; }
.contact-link { display: inline-flex; align-items: center; gap: 8px; color: var(--moss); font-weight: 600; text-decoration: none; }
.contact-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; }
.contact-address { margin-top: 26px; font-style: normal; line-height: 1.6; color: var(--ink-2); }
.contact-address strong { color: var(--ink); }
.contact-zone { margin-top: 14px; font-size: 15px; color: var(--ink-2); max-width: 54ch; }
.contact-map {
    position: relative; margin-top: 26px; aspect-ratio: 16 / 9; overflow: hidden;
    border-radius: 20px; border: 1px solid var(--line); background: var(--paper-2);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.75); }
.contact-map-link {
    position: absolute; right: 12px; bottom: 12px;
    padding: 8px 12px; border-radius: 999px;
    background: var(--noir); color: #fff; font-size: 13px; font-weight: 600; text-decoration: none;
}
.contact-map-link:hover { background: var(--moss); }

.quote-form {
    background: var(--noir-2); color: #fff; border-radius: 28px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 40px 80px -50px rgba(15, 26, 18, .8);
}
.form-title { font-weight: 500; font-size: 22px; }
.form-sub { margin: 6px 0 22px; font-size: 15px; color: rgba(255, 255, 255, .7); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, .86); }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 14px; border-radius: 12px;
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16);
    color: #fff; font: inherit; font-size: 16px; line-height: 1.4;
    transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--sap); box-shadow: 0 0 0 3px rgba(200, 245, 111, .22);
}
.field select {
    appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386bb4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.field select option { color: var(--ink); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.quote-form .btn-block { margin-top: 6px; padding: 16px 22px; font-size: 16px; }
.form-status { min-height: 1.5em; margin-top: 12px; font-size: 15px; }
.form-status.is-ok { color: var(--sap); }
.form-status.is-err { color: #ffb4a8; }
.form-privacy { margin-top: 6px; font-size: 13px; color: rgba(255, 255, 255, .55); }


/* ── digital business card: the printed card, scannable and saveable ── */
.vcard {
    position: relative; overflow: hidden;
    margin-top: clamp(40px, 6vw, 72px);
    display: grid; grid-template-columns: 1.25fr 1fr;
    gap: clamp(24px, 4vw, 56px); align-items: center;
    padding: clamp(26px, 4vw, 46px);
    border-radius: 28px; color: #fff;
    background: linear-gradient(150deg, #1f2f22, var(--noir-2) 62%);
    box-shadow: 0 40px 90px -55px rgba(15, 26, 18, .95);
}
/* the card's diagonal cut, top-right and bottom-left, as on the printed one */
.vcard::before, .vcard::after {
    content: ""; position: absolute; width: 150px; height: 150px; pointer-events: none;
}
.vcard::before { top: 0; right: 0; background: linear-gradient(to bottom left, var(--leaf) 0 7px, transparent 7px); }
.vcard::after  { bottom: 0; left: 0; background: linear-gradient(to top right, var(--moss) 0 7px, transparent 7px); }

.vcard-face { position: relative; z-index: 1; }
.vcard-logo { width: clamp(120px, 14vw, 150px); height: auto; }
.vcard-name { margin-top: 14px; font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -.01em; }
.vcard-name b { color: var(--leaf); font-weight: 600; }
.vcard-person { margin-top: 6px; font-size: 15px; color: rgba(255, 255, 255, .8); }
.vcard-person span { color: var(--leaf); }
.vcard-person span::before { content: "· "; color: rgba(255, 255, 255, .45); }
.vcard-lines { list-style: none; margin-top: 20px; display: grid; gap: 7px; font-size: 15.5px; }
.vcard-lines a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(134, 187, 79, .55); }
.vcard-lines a:hover { color: var(--sap); }
.vcard-lines li:last-child { color: rgba(255, 255, 255, .78); }
.vcard-trades { margin-top: 18px; font-size: 14px; color: var(--leaf); }

.vcard-qr { position: relative; z-index: 1; text-align: center; }
.vcard-qr > img { width: clamp(160px, 20vw, 220px); height: auto; margin: 0 auto; padding: 10px; border-radius: 18px; background: #fff; }
.vcard-qr > p { margin-top: 12px; font-size: 14px; color: rgba(255, 255, 255, .72); }
.vcard-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.vcard-actions .btn { width: 100%; }
.btn-outline-light { border-color: rgba(255, 255, 255, .28); color: #fff; }
.btn-outline-light:hover { border-color: var(--leaf); background: rgba(134, 187, 79, .12); }

@media (max-width: 860px) {
    .vcard { grid-template-columns: 1fr; gap: 28px; }
    .vcard::before, .vcard::after { width: 110px; height: 110px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative; background: var(--noir); color: #fff;
    padding: calc(var(--wedge) + 40px) 0 28px;
}
.site-footer::before {
    content: ""; position: absolute; left: 0; right: 0; top: -1px; height: var(--wedge);
    background: linear-gradient(to bottom right, var(--paper) 0 calc(50% - 5px), var(--leaf) calc(50% - 5px) 50%, transparent 50%);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr auto; gap: 32px; align-items: start; }
.footer-brand img { width: 94px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255, 255, 255, .7); line-height: 1.5; }
.footer-brand strong { color: #fff; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--sap); }
.footer-contact span { color: rgba(255, 255, 255, .6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18); transition: border-color .2s, background-color .2s;
}
.footer-social a:hover { border-color: var(--leaf); background: rgba(134, 187, 79, .14); }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom {
    display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center;
    margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13.5px; color: rgba(255, 255, 255, .58);
}
.footer-bottom a { color: inherit; text-underline-offset: 3px; }
.footer-bottom a:hover, .footer-bottom .link-btn:hover { color: var(--sap); }

/* ============================================================
   MODALS
   ============================================================ */
.modal {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center; padding: 20px;
    background: rgba(8, 12, 9, .72);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    opacity: 0; transition: opacity .3s;
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }
.modal-box {
    position: relative; width: min(560px, 100%); max-height: min(88vh, 900px); overflow: auto;
    background: var(--paper); color: var(--ink); border-radius: 26px;
    transform: translateY(18px) scale(.97); transition: transform .45s var(--ease-out);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .7);
    scrollbar-width: thin;
}
.modal.is-open .modal-box { transform: none; }
.modal-box--wide { width: min(960px, 100%); display: grid; grid-template-columns: 320px 1fr; }
.modal-media { position: relative; background: var(--noir-2); }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: clamp(24px, 3vw, 40px); }
.modal-close {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    width: 40px; height: 40px; border-radius: 50%; padding: 0;
    background: #fff; border: 1px solid rgba(0, 0, 0, .12); color: var(--ink);
    font-size: 22px; line-height: 1; cursor: pointer; transition: background-color .2s, color .2s;
}
.modal-close:hover { background: var(--noir); color: #fff; }
.modal-title { font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.1; padding-right: 44px; }
.modal-lead { margin-top: 12px; font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.modal-h { margin: 26px 0 10px; font-weight: 600; font-size: 15px; color: var(--moss); }
.modal-list { list-style: none; display: grid; gap: 8px; }
.modal-list li { display: flex; align-items: flex-start; line-height: 1.5; }
.modal-list li::before { margin-top: 6px; }
.modal-text { line-height: 1.65; color: var(--ink-2); }
.modal-body .btn { margin-top: 26px; }
.modal-body--text .modal-text { margin-bottom: 8px; }

/* video modal */
.modal-box--video { width: min(1000px, 100%); display: grid; grid-template-columns: minmax(260px, 380px) 1fr; background: var(--noir-2); color: #fff; max-height: 92vh; }
.mv-player { background: #000; display: flex; align-items: center; justify-content: center; }
.mv-player video { width: 100%; max-height: 92vh; aspect-ratio: 9 / 16; object-fit: contain; }
.mv-body { padding: clamp(24px, 3vw, 40px); overflow: auto; }
.modal-box--video .modal-title { color: #fff; }
.mv-meta { margin-top: 8px; color: var(--leaf); font-weight: 500; }
.mv-desc { margin-top: 18px; color: rgba(255, 255, 255, .8); white-space: pre-line; }
.modal-box--video .modal-close { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .22); }
.modal-box--video .modal-close:hover { background: #fff; color: var(--noir); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1020px) {
    .site-nav {
        position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
        width: min(360px, 86vw); padding: 110px 32px 40px;
        flex-direction: column; gap: 18px;
        background: var(--noir-2); box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
        transform: translateX(105%); transition: transform .4s var(--ease-out);
    }
    .site-nav.is-open { transform: none; }
    .site-nav a { font-size: 20px; font-weight: 500; }
    .nav-mobile-extra { display: block; margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); }
    .nav-phone { font-family: var(--font-display); font-size: 17px !important; color: var(--leaf) !important; }
    .nav-burger { display: flex; }
    .header-tools { margin-left: auto; }
    .trade-grid { grid-template-columns: 1fr 1fr; }
    .trade--landscape { grid-column: 1 / -1; grid-row: auto; min-height: 520px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .section-head--row { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 860px) {
    /* phone: the film fills the screen, like on TikTok */
    .hero { display: block; padding: 0; min-height: 100vh; min-height: 100svh; }
    .hero-canvas, .hero-glow { display: none; }
    .hero-inner { display: block; width: auto; height: 100vh; height: 100svh; }
    .hero-film { position: absolute; inset: 0; perspective: none; transform: none !important; transition: none; }
    .film-frame {
        position: absolute; inset: 0; height: auto; aspect-ratio: auto;
        border-radius: 0; transform: none !important; box-shadow: none;
    }
    .film-frame::after { box-shadow: none; }
    .film-scrim { background: linear-gradient(180deg, rgba(10, 16, 11, .55), transparent 25%, transparent 40%, rgba(10, 16, 11, .7) 62%, rgba(10, 16, 11, .94) 100%); }
    .film-caption { display: none; }
    .film-controls { top: calc(var(--header-h) + 8px); }
    .film-skip { bottom: calc(var(--wedge) + 24px); }
    .film-shadow { display: none; }
    .hero-copy {
        position: absolute; left: 0; right: 0; bottom: calc(var(--wedge) * .6 + 40px); z-index: 4;
        max-width: none; padding: 0 var(--gutter);
        transform: translateY(20px); transition: opacity .9s .25s, transform 1s .25s var(--ease-out);
    }
    .hero-title { font-size: clamp(30px, 8vw, 44px); }
    .hero-lead { font-size: 16px; }
    .hero-actions { margin-top: 22px; }
    .hero-trades { margin-top: 24px; }
    .hero-scroll { display: none; }
    .hero::after { z-index: 5; }
    .header-cta { display: none; }
}

@media (max-width: 640px) {
    :root { --header-h: 68px; }
    .brand-mark { width: 54px; }
    .brand-name { font-size: 15px; }
    .header-inner { gap: 14px; }
    .lang-switch button { padding: 6px 7px; font-size: 11px; }
    .trade-grid { grid-template-columns: 1fr; }
    .trade--landscape { min-height: 460px; }
    .trade--landscape .trade-list { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 22px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .modal { padding: 12px; align-items: flex-end; }
    .modal-box { border-radius: 22px; max-height: 92vh; }
    .modal-box--wide { grid-template-columns: 1fr; }
    .modal-media { height: 200px; }
    .modal-box--video { grid-template-columns: 1fr; }
    .mv-player video { max-height: 58vh; aspect-ratio: auto; }
    .work-card, .work-social { width: 64vw; }
}

@media (max-width: 480px) {
    .brand-name { display: none; }
    .lang-switch button { padding: 6px 6px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .hero-film, .film-frame, .trade { transform: none !important; }
}
