/* ============================================================
   Vroom'Eat — Landing page (v2)
   Typos : Bricolage Grotesque (display variable)
           Fraunces (italic serif — accents éditoriaux)
           Space Grotesk (UI / corps)
           JetBrains Mono (détails techniques)
   ============================================================ */

:root {
    /* Palette ------------------------------------------------ */
    --cream      : #F6EFE0;
    --cream-2    : #EEE4D0;
    --cream-3    : #E6D9BE;
    --ink        : #0E3B38;
    --ink-2      : #0A2C2A;
    --ink-soft   : #1A5A55;
    --teal       : #13A89E;
    --teal-dark  : #0E8A82;
    --teal-soft  : #CFEFEC;
    --coral      : #FF6B4A;
    --coral-soft : #FFE2D9;
    --sun        : #F2B84B;
    --sun-soft   : #FDEFD1;
    --white      : #FFFFFF;
    --off-white  : #FBFAF5;
    --line       : rgba(14, 59, 56, 0.14);
    --line-soft  : rgba(14, 59, 56, 0.08);
    --line-dark  : rgba(246, 239, 224, 0.14);

    /* Typos ------------------------------------------------- */
    --font-display : "Bricolage Grotesque", system-ui, sans-serif;
    --font-serif   : "Fraunces", Georgia, serif;
    --font-body    : "Space Grotesk", system-ui, sans-serif;
    --font-mono    : "JetBrains Mono", ui-monospace, monospace;

    /* Rayons / ombres --------------------------------------- */
    --radius-sm : 10px;
    --radius    : 22px;
    --radius-lg : 34px;
    --radius-xl : 44px;
    --shadow    : 0 30px 60px -30px rgba(14, 59, 56, 0.28);
    --shadow-lg : 0 50px 90px -30px rgba(14, 59, 56, 0.35);

    /* Layout ------------------------------------------------ */
    --max-w       : 1240px;
    --pad-x       : clamp(20px, 5vw, 72px);
    --section-gap : clamp(90px, 14vh, 180px);
}

/* ============================================================
   Base
   ============================================================ */

html { scroll-behavior: smooth; }

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.005em;
    overflow-x: hidden;
}

section { scroll-margin-top: 110px; }

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-optical-sizing: auto;
    font-variation-settings: "opsz" 144, "SOFT" 100;
}

strong { font-weight: 600; }

/* ============================================================
   Utilitaires
   ============================================================ */

.section-label {
    display: flex;
    align-items: baseline;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-soft);
    margin-bottom: 36px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--line);
}

.section-label span:first-child {
    font-family: var(--font-mono);
    font-style: normal;
    font-weight: 500;
    color: var(--teal-contrast);
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
}

.section-label--dark {
    color: rgba(246, 239, 224, 0.7);
    border-bottom-color: var(--line-dark);
}

.section-label--dark span:first-child { color: var(--teal-contrast); }

/* Reveal ---------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0, 1),
                transform 0.9s cubic-bezier(0.2, 0.7, 0, 1);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

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

/* Buttons --------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    will-change: transform;
}

.btn svg { transition: transform 0.3s ease; }

.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -14px rgba(19, 168, 158, 0.55);
}
.btn--primary:hover svg { transform: translateX(4px) rotate(-12deg); }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--large {
    padding: 22px 34px;
    font-size: 22px;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Pulse dot ------------------------------------------------- */
.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(19, 168, 158, 0.6);
    animation: pulse 2s infinite;
}

.pulse--small { width: 6px; height: 6px; }

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(19, 168, 158, 0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(19, 168, 158, 0); }
    100% { box-shadow: 0 0 0 0 rgba(19, 168, 158, 0); }
}

/* ============================================================
   Nav
   ============================================================ */

/* Navbar pilule flottante — logo + liens + CTA dans une seule capsule */
.nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 8px 18px;
    background: rgba(246, 239, 224, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(14, 59, 56, 0.1);
    border-radius: 999px;
    box-shadow: 
        0 10px 30px -10px rgba(14, 59, 56, 0.15),
        0 0 0 1px rgba(246, 239, 224, 0.1);
    max-width: calc(100vw - 24px);
    transition: top 0.35s var(--ease), padding 0.35s var(--ease),
                background 0.35s var(--ease), box-shadow 0.35s var(--ease),
                transform 0.35s var(--ease);
}

.nav.is-scrolled {
    top: 12px;
    padding: 6px 6px 6px 16px;
    background: rgba(246, 239, 224, 0.9);
    box-shadow: 0 26px 50px -22px rgba(14, 59, 56, 0.28);
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    padding-right: 4px;
}

.nav__mark {
    display: inline-flex;
    width: 110px;
    height: 52px;
    color: var(--ink);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav__mark svg { width: 100%; height: 100%; }
.nav__brand:hover .nav__mark { color: var(--teal-contrast); transform: translateX(2px); }

.nav__wordmark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.nav__apo {
    color: var(--teal-contrast);
    font-family: var(--font-serif);
    font-style: italic;
}

.nav__links {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--line);
    padding-left: 10px;
}

.nav__links a {
    padding: 8px 13px;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 999px;
    color: var(--ink-soft);
    transition: color 0.25s ease, background 0.25s ease;
}

.nav__links a:hover { color: var(--ink); background: rgba(14, 59, 56, 0.06); }

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav__cta:hover { background: var(--teal); transform: translateY(-1px); }
.nav__cta svg { transition: transform 0.3s ease; }
.nav__cta:hover svg { transform: translateX(3px); }

@media (max-width: 980px) {
    .nav__links { display: none; }
    .nav { padding: 6px 6px 6px 16px; gap: 8px; }
}

@media (max-width: 520px) {
    .nav { padding: 4px 4px 4px 12px; top: 10px; }
    .nav__mark { width: 55px; height: 26px; }
    .nav__cta span { display: none; }
    .nav__cta { padding: 8px 10px; }
    .nav__wordmark { font-size: 15px; }
}

.nav__right { display: flex; align-items: center; gap: 8px; }

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    background: var(--ink);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.is-menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
    .nav__toggle { display: flex; }
}

/* --- Drawer (mobile menu) --- */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(14, 59, 56, 0.2);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}

.drawer.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.drawer__inner {
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(246, 239, 224, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 24px 30px;
    box-shadow: 0 40px 80px rgba(14, 59, 56, 0.2);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.drawer.is-open .drawer__inner { transform: translateY(0); }

.drawer__nav { display: flex; flex-direction: column; gap: 14px; }

.drawer__nav a {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.drawer__nav a em { color: var(--teal-contrast); font-style: normal; }
.drawer__nav a:hover { color: var(--teal-contrast); }

.drawer__cta {
    margin-top: 10px;
    display: block;
    padding: 20px;
    background: var(--ink);
    color: var(--cream) !important;
    text-align: center;
    border-radius: 999px;
    font-size: 18px !important;
    font-weight: 500;
}

.drawer__footer {
    padding-top: 30px;
    border-top: 1px dashed var(--line);
}

.drawer__footer p { font-size: 14px; color: var(--ink-soft); margin-bottom: 6px; }
.drawer__footer a { font-family: var(--font-mono); font-size: 15px; color: var(--teal-contrast); }

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    padding-top: clamp(110px, 14vh, 160px);
    overflow: hidden;
}

.hero__grain {
    position: absolute;
    inset: -20% -10%;
    background:
        radial-gradient(800px 500px at 85% 10%, rgba(19, 168, 158, 0.28), transparent 60%),
        radial-gradient(700px 400px at 10% 90%, rgba(255, 107, 74, 0.18), transparent 60%),
        radial-gradient(500px 400px at 60% 60%, rgba(242, 184, 75, 0.12), transparent 60%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 14px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--white) 50%, transparent);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    backdrop-filter: blur(6px);
}

.hero__title {
    margin-top: 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(42px, 10vw, 148px);
    line-height: 0.9;
    letter-spacing: -0.045em;
    color: var(--ink);
    font-variation-settings: "opsz" 96;
    max-width: 14ch;
}

.hero__title em {
    color: var(--teal-contrast);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero__title-row {
    display: inline-block;
    position: relative;
}

.hero__lede {
    margin-top: 36px;
    max-width: 620px;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.55;
    color: var(--ink-soft);
}

.hero__lede em { color: var(--ink); }

.hero__ctas {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Stickers flottants -------------------------------------- */
.hero__stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
}

@media (min-width: 1100px) {
    .hero__stickers { display: block; }
}

.sticker {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 16px 30px -18px rgba(14, 59, 56, 0.2);
    animation: float 6s ease-in-out infinite;
}

.sticker svg { width: 14px; height: 14px; color: var(--teal-contrast); }

.sticker--1 {
    top: 14%;
    right: 6%;
    transform: rotate(4deg);
    animation-delay: 0s;
}

.sticker--2 {
    top: 36%;
    right: -2%;
    transform: rotate(-6deg);
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal-contrast);
    animation-delay: 1.5s;
}

.sticker--2 svg { color: var(--white); }

.sticker--3 {
    top: 58%;
    right: 10%;
    transform: rotate(2deg);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -10px; }
}

/* KPI bar --------------------------------------------------- */
.hero__kpis {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 80px auto 0;
    padding: 36px var(--pad-x) 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px dashed var(--line);
}

.hero__kpi {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 20px;
}

.hero__kpi:not(:last-child) { border-right: 1px dashed var(--line); }

.hero__kpi strong {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(34px, 4.5vw, 56px);
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.hero__kpi strong span {
    font-size: 0.55em;
    color: var(--teal-contrast);
    font-family: var(--font-serif);
    font-style: italic;
}

.hero__kpi strong em {
    color: var(--teal-contrast);
    font-size: 0.82em;
    font-weight: 400;
}

.hero__kpi span:last-child {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
}

@media (max-width: 820px) {
    .hero__kpis { grid-template-columns: repeat(2, 1fr); gap: 26px; border-top: 1px dashed var(--line); padding-top: 24px; }
    .hero__kpi { border-right: 0 !important; padding-right: 0; }
    .hero__kpi:nth-child(even) { text-align: right; align-items: flex-end; }
}

/* ============================================================
   Marquee
   ============================================================ */

.marquee {
    margin-top: 100px;
    padding: 26px 0;
    background: var(--ink);
    color: var(--cream);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    overflow: hidden;
    transform: rotate(-1.5deg);
    margin-left: -4vw;
    margin-right: -4vw;
}

.marquee__track {
    display: flex;
    gap: 36px;
    width: max-content;
    animation: scroll 45s linear infinite;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.marquee__track .dot { color: var(--teal-contrast); }

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   Manifeste
   ============================================================ */

.manifeste {
    max-width: var(--max-w);
    margin: var(--section-gap) auto 0;
    padding: 0 var(--pad-x);
}

.manifeste__text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(24px, 3.2vw, 42px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 980px;
}

.manifeste__text em {
    color: var(--teal-contrast);
    font-weight: 400;
}

/* ============================================================
   Stack
   ============================================================ */

.stack {
    max-width: var(--max-w);
    margin: var(--section-gap) auto 0;
    padding: 0 var(--pad-x);
}

.stack__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(36px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 50px;
    max-width: 16ch;
}

.stack__title em {
    color: var(--teal-contrast);
    font-weight: 400;
}

.stack__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.stack__card {
    grid-column: span 2;
    position: relative;
    padding: 28px 26px 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.stack__card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--accent, var(--teal));
    transform: scaleX(0.15);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0, 1);
}

.stack__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}

.stack__card:hover::before { transform: scaleX(1); }

.stack__card--wide { grid-column: span 6; }

.stack__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stack__num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent, var(--teal));
    letter-spacing: 0.05em;
}

.stack__tag {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-soft);
}

.stack__card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 12px;
}

.stack__card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 22px;
    flex: 1;
}

.stack__card p em { color: var(--ink); }

.stack__card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.stack__card li {
    padding: 6px 11px;
    font-size: 12.5px;
    color: var(--ink-soft);
    background: var(--cream-2);
    border-radius: 999px;
}

.stack__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.02em;
}

@media (max-width: 980px) {
    .stack__grid { grid-template-columns: repeat(4, 1fr); }
    .stack__card { grid-column: span 2; }
    .stack__card--wide { grid-column: span 4; }
}

@media (max-width: 640px) {
    .stack__grid { grid-template-columns: 1fr; }
    .stack__card, .stack__card--wide { grid-column: span 1; }
}

/* ============================================================
   Features deep dive
   ============================================================ */

.features {
    max-width: var(--max-w);
    margin: var(--section-gap) auto 0;
    padding: 0 var(--pad-x);
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--line);
}

.feature:last-child { border-bottom: 1px solid var(--line); }

.feature--reverse .feature__text { order: 2; }

.feature__kicker {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--teal-contrast);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.feature__text h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 20px;
    max-width: 14ch;
}

.feature__text p {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 24px;
    max-width: 46ch;
}

.feature__bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature__bullets li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.feature__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 16px;
    height: 1px;
    background: var(--teal);
}

.feature__bullets strong { color: var(--ink); font-weight: 600; }

.feature__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 440px;
}

@media (max-width: 820px) {
    .feature { grid-template-columns: 1fr; gap: 40px; }
    .feature--reverse .feature__text { order: 0; }
    .feature__visual { min-height: 380px; }
}

/* --- Phone mockup --- */
.phone {
    width: 280px;
    aspect-ratio: 9 / 18;
    background: var(--ink);
    border-radius: 42px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    transform: rotate(-4deg);
    transition: transform 0.6s ease;
    position: relative;
    z-index: 1;
}

.feature:hover .phone { transform: rotate(-2deg) translateY(-6px); }

.phone__notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: #000;
    border-radius: 999px;
    z-index: 2;
}

.phone__screen {
    width: 100%;
    height: 100%;
    background: var(--cream);
    border-radius: 32px;
    padding: 40px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--font-body);
}

.phone__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.phone__row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--ink-soft);
    padding: 4px 0;
}

.phone__row span:last-child { font-family: var(--font-mono); color: var(--ink); }

.phone__pay { margin-top: auto; padding-top: 10px; }

.phone__paybtn {
    display: flex;
    justify-content: center;
    padding: 12px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

.phone__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--ink-soft);
    padding-top: 6px;
}

.dot--green {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(19, 168, 158, 0.2);
}

/* --- Ticket --- */
.ticket {
    position: absolute;
    bottom: 40px;
    right: 10%;
    width: 170px;
    transform: rotate(8deg);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.ticket__tear {
    height: 10px;
    background: var(--coral);
    -webkit-mask-image: radial-gradient(circle 5px at 10px 10px, transparent 98%, black 100%);
    mask-image: radial-gradient(circle 5px at 10px 10px, transparent 98%, black 100%);
    -webkit-mask-size: 20px 10px;
    mask-size: 20px 10px;
}

.ticket__body {
    padding: 16px 18px 18px;
    background: var(--coral);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 0 0 6px 6px;
}

.ticket__body span:first-child {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.ticket__body strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-top: 2px;
}

.ticket__body small {
    margin-top: 8px;
    font-size: 11px;
    opacity: 0.8;
    font-style: italic;
    font-family: var(--font-serif);
}

/* --- Calendar mockup --- */
.calendar {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
    transition: transform 0.6s ease;
}

.feature:hover .calendar { transform: rotate(0deg) translateY(-4px); }

.calendar__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--line);
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
}

.calendar__dots { display: inline-flex; gap: 4px; }
.calendar__dots i {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cream-3);
}

.calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal__day {
    position: relative;
    aspect-ratio: 1 / 1.2;
    padding: 8px 6px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    min-height: 64px;
}

.cal__day span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cal__day em {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.cal__pin {
    margin-top: auto;
    padding: 4px 6px;
    background: var(--teal);
    color: var(--white);
    border-radius: 6px;
    font-size: 9.5px;
    line-height: 1.25;
    font-weight: 500;
}

.cal__pin--coral { background: var(--coral); }
.cal__pin--sun   { background: var(--sun); color: var(--ink); }

@media (max-width: 520px) {
    .cal__day { min-height: 52px; padding: 6px 4px; }
    .cal__pin { font-size: 8.5px; padding: 3px 4px; }
}

/* ============================================================
   Dashboard section
   ============================================================ */

.dashboard {
    margin-top: var(--section-gap);
    padding: clamp(80px, 12vh, 130px) var(--pad-x);
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.dashboard::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 400px at 90% 10%, rgba(19, 168, 158, 0.3), transparent 60%),
        radial-gradient(500px 400px at 5% 90%, rgba(255, 107, 74, 0.15), transparent 60%);
    pointer-events: none;
}

.dashboard__inner {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
}

.dashboard__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(36px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--cream);
    margin-bottom: 18px;
    max-width: 14ch;
}

.dashboard__title em { color: var(--teal-contrast); font-weight: 400; }

.dashboard__lede {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(246, 239, 224, 0.7);
    max-width: 520px;
    margin-bottom: 48px;
}

/* Browser frame --------------------------------------------- */
.browser {
    border-radius: 18px;
    overflow: hidden;
    background: var(--off-white);
    box-shadow: 0 60px 120px -30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
}

.browser__chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #E8E1D0;
    border-bottom: 1px solid rgba(14, 59, 56, 0.08);
}

.browser__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #CDBF9E;
}

.browser__dot:nth-of-type(1) { background: #FF6B5B; }
.browser__dot:nth-of-type(2) { background: #F2B84B; }
.browser__dot:nth-of-type(3) { background: #13A89E; }

.browser__url {
    margin-left: 14px;
    padding: 6px 14px;
    background: rgba(14, 59, 56, 0.06);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--ink-soft);
    flex: 1;
    max-width: 360px;
}

.browser__url span { color: var(--teal-contrast); margin-right: 6px; }
.browser__url strong { color: var(--ink); font-weight: 600; }

.browser__body {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 460px;
    background: var(--off-white);
    color: var(--ink);
}

/* Dash nav */
.dash__nav {
    padding: 22px 18px;
    border-right: 1px solid var(--line-soft);
    background: var(--cream);
}

.dash__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
    color: var(--ink);
}

.dash__brand svg {
    width: 80px; height: 38px;
    color: var(--ink);
}

.dash__nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash__nav li {
    padding: 10px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: default;
}

.dash__nav li.is-active {
    background: var(--ink);
    color: var(--cream);
}

.dash__nav li:not(.is-active):hover {
    background: rgba(14, 59, 56, 0.05);
    color: var(--ink);
}

/* Dash main */
.dash__main {
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.dash__topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash__topline h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.dash__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(19, 168, 158, 0.12);
    color: var(--teal-dark);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dash__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.dash__stat {
    padding: 14px 16px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line-soft);
}

.dash__stat span {
    font-size: 11.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dash__stat strong {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(22px, 2.4vw, 28px);
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1;
    margin-top: 4px;
}

.dash__stat small {
    font-size: 11.5px;
    color: var(--ink-soft);
    font-family: var(--font-mono);
}

.dash__stat small.up { color: var(--teal-contrast); }
.dash__stat small.down { color: var(--coral); }

.dash__orders {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash__order {
    display: grid;
    grid-template-columns: 90px 60px 1fr 1.5fr 80px;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    background: var(--cream);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    font-size: 13px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.dash__order:hover {
    transform: translateX(2px);
    border-color: var(--line);
}

.dash__pill {
    padding: 5px 9px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: center;
}

.dash__pill--ready { background: var(--teal); color: var(--white); }
.dash__pill--cook  { background: var(--sun); color: var(--ink); }
.dash__pill--new   { background: var(--coral); color: var(--white); }

.dash__order strong {
    font-family: var(--font-mono);
    color: var(--ink);
    font-weight: 500;
}

.dash__name { font-weight: 500; color: var(--ink); }
.dash__items { color: var(--ink-soft); font-size: 12.5px; }
.dash__amount {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    text-align: right;
    letter-spacing: -0.02em;
}

@media (max-width: 880px) {
    .browser__body { grid-template-columns: 1fr; }
    .dash__nav { display: none; }
    .dash__stats { grid-template-columns: repeat(2, 1fr); }
    .dash__order {
        grid-template-columns: 60px 1fr 70px;
        gap: 8px;
        padding: 10px;
    }
    .dash__order strong, .dash__name { display: none; }
    .dash__items { font-size: 11px; }
    .dash__amount { font-size: 12px; }
}

/* ============================================================
   Clients
   ============================================================ */

.clients {
    max-width: var(--max-w);
    margin: var(--section-gap) auto 0;
    padding: 0 var(--pad-x);
}

.client-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 48px 48px 44px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -24px rgba(19, 168, 158, 0.45);
}

.client-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.18) 1px, transparent 0);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
}

.client-card__tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255, 0.25);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.client-card__tag em {
    font-family: var(--font-serif);
    text-transform: lowercase;
    letter-spacing: 0;
    color: var(--coral-soft);
}

.client-card__content { position: relative; z-index: 1; }

.client-card__content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}

.client-card__content h3 em {
    color: var(--cream);
    font-weight: 400;
}

.client-card__content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 26px;
    max-width: 520px;
}

.client-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.client-card__meta span {
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    font-size: 12.5px;
    backdrop-filter: blur(6px);
}

.client-card__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
}

.client-card__visual img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.15;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.client-card:hover .client-card__visual img {
    opacity: 0.3;
    scale: 1.05;
}


.client-card__sticker {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-align: center;
    padding: 46px 30px;
    background: var(--coral);
    color: var(--ink);
    border-radius: 50%;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.35);
    transform: rotate(-8deg);
    animation: wobble 8s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%      { transform: rotate(-5deg) translateY(-10px); }
}

@media (max-width: 820px) {
    .client-card { grid-template-columns: 1fr; padding: 40px 28px; }
    .client-card__visual { order: -1; min-height: 200px; margin-top: 12px; }
    .client-card__sticker { width: 160px; height: 160px; }
}

.clients__note {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--ink-soft);
}

.clients__note .arrow {
    font-family: var(--font-body);
    font-style: normal;
    color: var(--teal-contrast);
    font-size: 28px;
}

/* ============================================================
   Process
   ============================================================ */

.process {
    max-width: var(--max-w);
    margin: var(--section-gap) auto 0;
    padding: 0 var(--pad-x);
}

.process__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process__list li {
    position: relative;
    padding: 30px 24px 30px 0;
    border-top: 1px solid var(--line);
    transition: padding 0.4s ease;
}

.process__list li:not(:last-child) {
    border-right: 1px dashed var(--line);
    padding-right: 24px;
}

.process__list li:hover { padding-top: 22px; }

.process__step {
    display: block;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--teal-contrast);
    margin-bottom: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.process__list h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 12px;
}

.process__list p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}

@media (max-width: 900px) {
    .process__list { grid-template-columns: 1fr; }
    .process__list li:not(:last-child) { border-right: 0; padding-right: 0; }
}

/* ============================================================
   Pricing
   ============================================================ */

.pricing {
    max-width: var(--max-w);
    margin: var(--section-gap) auto 0;
    padding: 0 var(--pad-x);
}

.pricing__intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing__intro h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--ink);
    max-width: 14ch;
}

.pricing__intro h2 em { color: var(--teal-contrast); font-weight: 400; }

.pricing__intro p {
    max-width: 420px;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.plan {
    position: relative;
    padding: 34px 30px 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.plan--featured {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    transform: translateY(-10px);
}

.plan--featured:hover { transform: translateY(-14px); }

.plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    background: var(--coral);
    color: var(--ink);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}

.plan__head { margin-bottom: 26px; }

.plan__name {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.03em;
    color: inherit;
    margin-bottom: 4px;
}

.plan__desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    color: var(--ink-soft);
}

.plan--featured .plan__desc { color: rgba(246, 239, 224, 0.7); }

.plan__price {
    padding: 24px 0;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
    margin-bottom: 26px;
}

.plan--featured .plan__price { border-color: var(--line-dark); }

.plan__price strong {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(44px, 5vw, 60px);
    letter-spacing: -0.04em;
    line-height: 1;
    color: inherit;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.plan__price strong em {
    font-size: 0.7em;
    color: var(--teal-contrast);
    font-weight: 400;
}

.plan__price strong span {
    font-family: var(--font-display);
    font-size: 0.5em;
    color: var(--teal-contrast);
    font-weight: 500;
    font-style: normal;
    margin-left: 2px;
}

.plan__price small {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--ink-soft);
}

.plan--featured .plan__price small { color: rgba(246, 239, 224, 0.7); }

.plan__price small em { color: var(--teal-contrast); font-style: normal; }
.plan--featured .plan__price small em { color: var(--teal-contrast); }

.plan__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    flex: 1;
}

.plan__features li {
    position: relative;
    padding-left: 24px;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.plan--featured .plan__features li { color: rgba(246, 239, 224, 0.82); }

.plan__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal-contrast);
    font-weight: 500;
}

.plan__features em { color: inherit; font-weight: 500; }

.plan--featured .btn--primary {
    background: var(--cream);
    color: var(--ink);
}

.plan--featured .btn--primary:hover {
    background: var(--teal);
    color: var(--white);
}

@media (max-width: 980px) {
    .pricing__grid { grid-template-columns: 1fr; }
    .plan--featured { transform: none; }
    .plan--featured:hover { transform: translateY(-4px); }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
    max-width: var(--max-w);
    margin: var(--section-gap) auto 0;
    padding: 0 var(--pad-x);
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.faq__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink);
    position: sticky;
    top: 120px;
}

.faq__title em { color: var(--teal-contrast); font-weight: 400; }

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid var(--line);
}

.faq__list details {
    border-bottom: 1px solid var(--line);
    padding: 24px 4px;
    transition: background 0.3s ease;
}

.faq__list details[open] {
    background: color-mix(in srgb, var(--white) 60%, transparent);
    padding: 28px 20px;
    border-radius: 16px;
    border-bottom-color: transparent;
}

.faq__list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(17px, 2vw, 22px);
    letter-spacing: -0.02em;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}

.faq__list summary::-webkit-details-marker { display: none; }

.faq__list summary::after {
    content: "+";
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    color: var(--teal-contrast);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq__list details[open] summary::after {
    transform: rotate(45deg);
}

.faq__list details p {
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 56ch;
}

.faq__list details p em { color: var(--ink); }

@media (max-width: 880px) {
    .faq__grid { grid-template-columns: 1fr; gap: 30px; }
    .faq__title { position: static; }
}

/* ============================================================
   Contact
   ============================================================ */

.contact {
    margin-top: var(--section-gap);
    padding: clamp(80px, 14vh, 140px) var(--pad-x);
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 400px at 80% 30%, rgba(19, 168, 158, 0.35), transparent 60%),
        radial-gradient(500px 300px at 10% 90%, rgba(255, 107, 74, 0.15), transparent 60%);
    pointer-events: none;
}

.contact__inner {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.contact__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(246, 239, 224, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(246, 239, 224, 0.8);
}

.contact__title {
    margin-top: 26px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(48px, 9vw, 112px);
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.contact__title em { color: var(--teal-contrast); font-weight: 400; }

.contact__lede {
    margin: 28px auto 40px;
    max-width: 560px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(246, 239, 224, 0.75);
}

.contact__smallprint {
    margin-top: 30px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    color: rgba(246, 239, 224, 0.6);
}

.contact__smallprint em { color: var(--teal-contrast); }

.contact .btn--primary {
    background: var(--cream);
    color: var(--ink);
}

.contact .btn--primary:hover {
    background: var(--teal);
    color: var(--white);
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
    padding: 60px var(--pad-x) 40px;
    background: var(--cream);
    color: var(--ink);
}

.footer__top {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--line);
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.footer__mark {
    display: inline-flex;
    width: 70px;
    height: 34px;
    color: var(--ink);
}

.footer__mark svg { width: 100%; height: 100%; }

.footer__tagline {
    font-size: 16px;
    color: var(--ink-soft);
}

.footer__tagline em { color: var(--teal-contrast); }

.footer__cols {
    max-width: var(--max-w);
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px dashed var(--line);
}

.footer__cols h5 {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.footer__cols ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__cols a {
    font-size: 15px;
    color: var(--ink);
    transition: color 0.25s ease;
}

.footer__cols a:hover { color: var(--teal-contrast); }

@media (max-width: 980px) {
    .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .footer { padding-top: 40px; }
    .footer__top { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .footer__brand { justify-content: center; }
    .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; padding-bottom: 30px; }
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; margin-top: 24px; }
}

/* ============================================================
   Pages légales
   ============================================================ */

.nav--minimal .nav__links { display: none; }

.nav--minimal {
    width: min(520px, calc(100vw - 24px));
}

.nav--minimal .nav__utils {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.nav--minimal .nav__cta {
    margin-left: auto;
    flex-shrink: 0;
}

.nav--minimal .nav__mark {
    width: 72px;
    height: 34px;
}

.legal-hero {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(60px, 10vh, 110px) var(--pad-x) 40px;
    position: relative;
}

.legal-hero__crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.legal-hero__crumb a { color: var(--teal-contrast); }
.legal-hero__crumb a:hover { text-decoration: underline; text-underline-offset: 3px; }

.legal-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(44px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink);
    max-width: 16ch;
}

.legal-hero h1 em { color: var(--teal-contrast); font-weight: 400; }

.legal-hero__meta {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--ink-soft);
    font-family: var(--font-mono);
}

.legal-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-hero__meta em {
    color: var(--ink);
    font-family: var(--font-serif);
}

.legal-layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px var(--pad-x) var(--section-gap);
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 70px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    padding-right: 20px;
    border-right: 1px solid var(--line);
}

.legal-sidebar h5 {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.legal-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legal-sidebar a {
    display: block;
    padding: 9px 0;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    border-left: 2px solid transparent;
    padding-left: 12px;
    margin-left: -14px;
    transition: color 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease;
}

.legal-sidebar a:hover {
    color: var(--ink);
    padding-left: 16px;
}

.legal-sidebar a[aria-current="page"] {
    color: var(--ink);
    border-left-color: var(--teal-contrast);
    font-weight: 600;
}

.legal-sidebar__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px dashed var(--line);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--teal-contrast);
}

.legal-sidebar__back:hover { text-decoration: underline; text-underline-offset: 3px; }

.legal-content {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
}

.legal-content > p:first-of-type {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--line);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 56px 0 18px;
    scroll-margin-top: 100px;
}

.legal-content h2::before {
    content: attr(data-num) "  ";
    font-family: var(--font-mono);
    font-size: 0.5em;
    color: var(--teal-contrast);
    font-weight: 500;
    letter-spacing: 0.05em;
    vertical-align: 0.4em;
    margin-right: 4px;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 28px 0 10px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--ink);
}

.legal-content p em { color: var(--ink-soft); }

.legal-content strong { font-weight: 600; color: var(--ink); }

.legal-content a {
    color: var(--teal-contrast);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.legal-content a:hover { color: var(--teal-dark); }

.legal-content ul,
.legal-content ol {
    margin: 14px 0 20px 4px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-content ul li {
    position: relative;
    padding-left: 22px;
    color: var(--ink);
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 1px;
    background: var(--teal);
}

.legal-content ol {
    counter-reset: legal-ol;
}

.legal-content ol li {
    counter-increment: legal-ol;
    position: relative;
    padding-left: 32px;
    color: var(--ink);
}

.legal-content ol li::before {
    content: counter(legal-ol, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--teal-contrast);
    letter-spacing: 0.05em;
}

.legal-content .callout {
    margin: 28px 0;
    padding: 22px 24px;
    background: color-mix(in srgb, var(--teal) 10%, var(--cream));
    border-left: 3px solid var(--teal);
    border-radius: 0 14px 14px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink);
}

.legal-content .callout strong {
    font-family: var(--font-body);
    font-style: normal;
    color: var(--teal-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
}

.legal-content .placeholder {
    font-family: var(--font-mono);
    font-size: 0.85em;
    padding: 2px 8px;
    background: var(--sun-soft);
    color: var(--ink);
    border-radius: 4px;
    border: 1px dashed rgba(14, 59, 56, 0.25);
}

.legal-content .callout--action {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 14.5px;
}

.cookie-cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.cookie-cta:hover { background: var(--teal); transform: translateY(-1px); }
.cookie-cta svg { transition: transform 0.2s ease; }
.cookie-cta:hover svg { transform: translateX(3px); }

.legal-content .datatable {
    margin: 20px 0 30px;
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.legal-content .datatable th,
.legal-content .datatable td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.legal-content .datatable th {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    background: var(--cream-2);
}

.legal-content .datatable td strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: -0.015em;
    margin-bottom: 2px;
}

.legal-content hr {
    margin: 40px 0;
    border: 0;
    border-top: 1px dashed var(--line);
}

@media (max-width: 880px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .legal-sidebar {
        position: static;
        padding-right: 0;
        border-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--line);
    }
    .legal-sidebar ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .legal-sidebar a {
        padding: 8px 14px;
        margin: 0;
        background: var(--cream-2);
        border-radius: 999px;
        border-left: 0;
    }
    .legal-sidebar a[aria-current="page"] {
        background: var(--ink);
        color: var(--cream);
        border: 0;
    }
    .legal-sidebar__back {
        margin-top: 20px;
        padding-top: 16px;
    }
}

.footer__bottom {
    max-width: var(--max-w);
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    font-size: 13.5px;
    color: var(--ink-soft);
}

.footer__bottom em { color: var(--teal-contrast); }

/* ============================================================
   DA v1.0 — Signatures (grain, progress, cursor, ghost numbers)
   ============================================================ */

/* Easing token shared */
:root { --ease: cubic-bezier(0.2, 0.7, 0, 1); }

/* Grain overlay global — .028 opacity, SVG turbulence */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    mix-blend-mode: multiply;
}

/* Scroll progress bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--teal);
    z-index: 1000;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* Custom cursor dot — desktop pointer only */
#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.12s var(--ease), opacity 0.2s ease, width 0.2s var(--ease), height 0.2s var(--ease);
    mix-blend-mode: multiply;
    opacity: 0;
}

#cursor-dot.is-active { opacity: 1; }
#cursor-dot.is-hover { width: 22px; height: 22px; opacity: 0.6; }

@media (hover: none), (pointer: coarse) {
    #cursor-dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    #cursor-dot { display: none; }
    #scroll-progress { transition: none; }
}

/* Ghost section numbers — huge display numerals per section */
main > section { position: relative; }

.ghost-num {
    position: absolute;
    top: clamp(24px, 6vh, 60px);
    right: clamp(20px, 5vw, 72px);
    font-family: var(--font-display);
    font-size: clamp(90px, 14vw, 200px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--cream-3);
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.ghost-num--dark {
    color: rgba(246, 239, 224, 0.06);
    opacity: 1;
}

@media (max-width: 720px) {
    .ghost-num { font-size: clamp(60px, 20vw, 90px); top: 10px; right: 10px; opacity: 0.06; }
}

/* ============================================================
   Contact Form — Glassmorphism
   ============================================================ */
.contact-form {
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 59, 56, 0.1);
    padding: clamp(24px, 5vw, 48px);
    border-radius: var(--radius-lg);
    text-align: left;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ink);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(14, 59, 56, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    color: var(--ink);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-contrast);
    box-shadow: 0 0 0 4px var(--teal-soft);
}

/* ============================================================
   Brand Community Links (Social Icons Obfuscated)
   ============================================================ */
.brand-community {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    margin-top: 24px;
    list-style: none;
    padding: 0;
}


.brand-community a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--cream-2);
    color: var(--ink);
    border-radius: 50%;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.brand-community a:hover {
    transform: translateY(-4px);
    background: var(--ink);
    color: var(--cream);
}


/* ============================================================
   Cookie Banner
   ============================================================ */
.cookie-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: rgba(14, 59, 56, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.cookie-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    z-index: 9998;
    width: min(440px, calc(100vw - 32px));
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 28px 22px;
    box-shadow: 0 40px 80px -20px rgba(14, 59, 56, 0.45),
                0 0 0 1px rgba(14, 59, 56, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    text-align: center;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.cookie-banner__icon {
    margin: 0 auto 14px;
    display: flex;
    justify-content: center;
}

.cookie-banner__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    margin: 0 0 6px;
}

.cookie-banner__text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 0 16px;
}

.cookie-banner__text a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text strong { color: var(--ink); font-weight: 600; }

.cookie-banner__btns { display: flex; gap: 8px; margin-bottom: 10px; }

.cookie-banner__btn {
    flex: 1;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.cookie-banner__btn:hover { transform: translateY(-1px); }

.cookie-banner__btn--accept { background: var(--ink); color: var(--cream); }
.cookie-banner__btn--accept:hover { background: var(--teal); }

.cookie-banner__btn--refuse {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.cookie-banner__btn--refuse:hover { background: rgba(14,59,56,0.05); }

.cookie-banner__link {
    background: none;
    border: none;
    padding: 4px 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--ink-soft);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    width: 100%;
    text-align: center;
    transition: color 0.2s ease;
}
.cookie-banner__link:hover { color: var(--teal); }

@media (max-width: 480px) {
    .cookie-banner { padding: 24px 22px 20px; }
}

/* ============================================================
   Cookie Settings Modal
   ============================================================ */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.cookie-modal[hidden] { display: none; }
.cookie-modal.is-open { opacity: 1; pointer-events: auto; }

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 59, 56, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.cookie-modal__panel {
    position: relative;
    width: min(540px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 32px 28px;
    box-shadow: var(--shadow-lg);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.35s var(--ease);
}
.cookie-modal.is-open .cookie-modal__panel { transform: translateY(0) scale(1); }

.cookie-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.cookie-modal__close:hover { background: rgba(14,59,56,0.06); border-color: var(--line); }

.cookie-modal__header { margin-bottom: 20px; }
.cookie-modal__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    display: block;
    margin-bottom: 8px;
}
.cookie-modal__header h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 12px;
}
.cookie-modal__header h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--teal);
}
.cookie-modal__header p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
}

.cookie-modal__cats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cookie-cat {
    display: block;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.cookie-cat:has(input:checked) { border-color: var(--teal); background: var(--teal-soft); }

.cookie-cat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
}

.cookie-cat__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    display: block;
}

.cookie-cat__badge {
    display: inline-block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-soft);
    background: rgba(14,59,56,0.08);
    padding: 2px 8px;
    border-radius: 6px;
}

.cookie-cat__provider {
    display: inline-block;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--teal);
}

.cookie-cat__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}
.cookie-toggle__track {
    position: absolute;
    inset: 0;
    background: rgba(14,59,56,0.18);
    border-radius: 999px;
    transition: background 0.25s var(--ease);
}
.cookie-toggle__dot {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: transform 0.25s var(--ease);
}
.cookie-toggle input:checked ~ .cookie-toggle__track { background: var(--teal); }
.cookie-toggle input:checked ~ .cookie-toggle__dot { transform: translateX(20px); }

.cookie-toggle--locked {
    background: var(--teal);
    border-radius: 999px;
}
.cookie-toggle--locked .cookie-toggle__dot {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(22px, 3px);
}

.cookie-modal__footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-modal__btn {
    padding: 11px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cookie-modal__btn:hover { transform: translateY(-1px); }

.cookie-modal__btn--primary { background: var(--ink); color: var(--cream); }
.cookie-modal__btn--primary:hover { background: var(--teal); }

.cookie-modal__btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.cookie-modal__btn--ghost:hover { background: rgba(14,59,56,0.05); }

@media (max-width: 520px) {
    .cookie-modal__panel { padding: 26px 20px 22px; }
    .cookie-modal__footer { flex-direction: column-reverse; }
    .cookie-modal__btn { width: 100%; }
}

/* ============================================================
   Navbar Contact Link
   ============================================================ */
.nav__contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(19, 168, 158, 0.1);
    color: var(--teal-dark);
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px !important;
    transition: all 0.2s var(--ease);
}

.nav__contact-btn:hover {
    background: var(--teal);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.nav__contact-btn svg {
    opacity: 0.8;
}

@media (max-width: 960px) {
    .nav__links .nav__contact-btn { display: none; }
}

.contact-page-form-wrapper {
    position: relative;
    background: var(--white);
    padding: clamp(30px, 5vw, 60px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.contact-sidebar-item {
    margin-bottom: 40px;
}

.contact-sidebar-label {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--teal-contrast);
    margin-bottom: 12px;
}

.contact-sidebar-value {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
}

.contact-form-fullwidth-btn {
    width: 100%;
}

.success-back-link {
    margin-top: 24px;
    color: var(--teal) !important;
}

.contact-info__item h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 12px;
}

/* ============================================================
   Form Validation & Success States
   ============================================================ */
.form-group input:not(:placeholder-shown):valid,
.form-group textarea:not(:placeholder-shown):valid {
    border-color: #13A89E;
    background: rgba(19, 168, 158, 0.03);
}

.form-group input:not(:placeholder-shown):invalid:not(:focus) {
    border-color: #FF6B5B;
    background: rgba(255, 107, 74, 0.03);
    animation: shake 0.4s var(--ease);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.contact-success-overlay {
    display: none !important;
    display: none;
    position: absolute;
    inset: 0;
    background: var(--ink);
    z-index: 10;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    border-radius: var(--radius-lg);
    animation: fadeIn 0.4s var(--ease) forwards;
}

.contact-success-overlay.is-active {
    display: flex !important;
    display: flex;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-title {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--cream);
    margin-bottom: 12px;
}

.success-p {
    color: rgba(246, 239, 224, 0.7);
    max-width: 320px;
}

/* Local Analytics Dashboard Stub */
.v-analytics-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--ink);
    color: var(--teal-contrast);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    border: 1px solid var(--teal-soft);
    z-index: 9999;
    opacity: 0.5;
    transition: opacity 0.3s;
    cursor: default;
    pointer-events: none;
}

/* Error Page (404) */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--pad-x);
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.error-page__truck {
    width: 180px;
    height: auto;
    margin-bottom: 48px;
    color: var(--ink);
    opacity: 0.1;
    position: absolute;
    z-index: 0;
    filter: blur(2px);
}

.error-page__content {
    position: relative;
    z-index: 1;
}

.error-page h1 {
    font-size: clamp(80px, 15vw, 160px);
    font-family: var(--font-display);
    line-height: 0.8;
    margin-bottom: 24px;
    color: var(--ink);
}

.error-page h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-family: var(--font-serif);
    margin-bottom: 24px;
}

.error-page p {
    max-width: 480px;
    margin: 0 auto 48px;
    color: var(--ink-soft);
}

.nav__contact-btn--spaced {
    margin-right: 12px;
}

/* Hidden Socials (Placeholders) */
.brand-community a[href="#"] {
    opacity: 0.3;
    pointer-events: none;
    filter: grayscale(1);
    display: none; /* User requested to hide properly */
}

/* Page Transition & Entry */
body {
    animation: pageFadeIn 0.8s var(--ease) forwards;
    opacity: 0;
}

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

/* Scroll to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--ink);
    color: var(--teal-contrast);
    border: 1px solid var(--teal-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s var(--ease);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal);
    color: var(--ink);
    transform: translateY(-4px) scale(1.1);
}

/* SEO Keywords Footer (Visually hidden but readable by bots) */
.seo-keywords {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* Loyalty Card Visual Component */
.loyalty-card {
    background: var(--ink);
    padding: 300px; /* Big padding for visual */
    padding: 30px;
    border-radius: var(--radius-lg);
    width: 320px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--teal-soft);
    position: relative;
    overflow: hidden;
}
.loyalty-card::after {
    content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
    background: var(--teal); filter: blur(80px); opacity: 0.3;
}
.loyalty-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.loyalty-card__brand { font-family: var(--font-display); font-size: 24px; }
.loyalty-card__level { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 8px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
.loyalty-card__progress { height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: 3px; margin-bottom: 12px; }
.loyalty-card__bar { height: 100%; background: var(--teal); border-radius: 3px; box-shadow: 0 0 15px var(--teal); }
.loyalty-card__footer { display: flex; flex-direction: column; gap: 4px; }
.loyalty-card__reward { color: var(--sun); font-weight: 600; }

/* ── Fidélité — mockup phone DA v1.0 ──────────────────────── */
.fid-visual { position: relative; }

.phone--loyalty {
    background: linear-gradient(145deg, var(--ink-2) 0%, var(--ink) 100%);
    border: 1px solid rgba(246, 239, 224, 0.08);
}

.fid-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: linear-gradient(160deg, #0D3532 0%, #0A2A28 60%, #0E3B38 100%);
    padding: 44px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--cream);
    overflow: hidden;
    position: relative;
}

.fid-screen::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: var(--teal);
    filter: blur(70px);
    opacity: 0.18;
    pointer-events: none;
}

.fid-screen__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fid-screen__brand {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
}

.fid-screen__level {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(242, 184, 75, 0.15);
    color: var(--sun);
    border-radius: 999px;
    border: 1px solid rgba(242, 184, 75, 0.25);
}

.fid-stamps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 4px 0;
}

.fid-stamp {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1.5px solid rgba(246, 239, 224, 0.15);
    background: transparent;
    transition: all 0.3s ease;
}

.fid-stamp.is-filled {
    background: var(--teal);
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(19, 168, 158, 0.5);
}

.fid-screen__count {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(246, 239, 224, 0.45);
    line-height: 1.6;
}

.fid-reward {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding: 14px;
    background: rgba(242, 184, 75, 0.1);
    border: 1px solid rgba(242, 184, 75, 0.2);
    border-radius: 14px;
}

.fid-reward__amount {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--sun);
    flex-shrink: 0;
}

.fid-reward__label {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(246, 239, 224, 0.6);
    line-height: 1.6;
}

.fid-notif {
    position: absolute;
    top: -16px;
    right: -12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    box-shadow: 0 16px 30px -18px rgba(14, 59, 56, 0.25);
    white-space: nowrap;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

@media (max-width: 820px) {
    .fid-notif { display: none; }
}
