/* ══════════════════════════════════════════════════════════
   ServiceHop — shared stylesheet (all pages)
   ══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1E1E1E;
    background: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Tokens ── */
:root {
    --sh-blue: #5790F7;
    --sh-blue-dark: #223B86;
    --sh-blue-light: #7EC5FB;
    --sh-gray-900: #1E1E1E;
    --sh-gray-700: #4A4A4A;
    --sh-gray-500: #6B7280;
    --sh-gray-300: #D1D5DB;
    --sh-gray-100: #F3F4F6;
    --sh-bg: #F8F9FB;
    --sh-border: #E5E7EB;
    --max-width: 1120px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}


/* ══════════════════════════════════════════════════════════
   Nav
   ══════════════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sh-border);
    padding: 0.75rem 0;
}
nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}
.nav-brand img {
    height: 54px;
    width: auto;
}
.nav-brand span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sh-gray-900);
    letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
    color: var(--sh-gray-500);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--sh-gray-900); }
.nav-cta {
    background: var(--sh-gray-900) !important;
    color: #FFFFFF !important;
    padding: 0.5rem 1.125rem;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--sh-blue-dark) !important; }
.nav-burger {
    display: none;
    background: transparent;
    border: 0;
    padding: 0.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--sh-gray-900);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    background: var(--sh-gray-900);
    color: #FFFFFF;
}
.nav-mobile a {
    display: block;
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile a:hover { background: rgba(255,255,255,0.08); }


/* ══════════════════════════════════════════════════════════
   Shared buttons
   ══════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sh-blue);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--sh-blue-dark); transform: translateY(-1px); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFFFFF;
    color: var(--sh-gray-700);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--sh-border);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: border-color 0.15s, transform 0.1s;
}
.btn-secondary:hover { border-color: var(--sh-gray-300); transform: translateY(-1px); }
.btn-arrow { font-size: 1rem; transition: transform 0.15s; }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(2px); }

.section-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sh-blue);
    margin-bottom: 0.875rem;
}
.section-heading {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-sub {
    color: var(--sh-gray-500);
    max-width: 560px;
    line-height: 1.75;
    font-size: 1rem;
}


/* ══════════════════════════════════════════════════════════
   Homepage — Hero
   ══════════════════════════════════════════════════════════ */
.hero {
    padding: 9rem 0 5rem;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 20%, rgba(87,144,247,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 60%, rgba(126,197,251,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero .container { position: relative; }
.hero-content { max-width: 720px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--sh-gray-100);
    border: 1px solid var(--sh-border);
    border-radius: 100px;
    padding: 0.3rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sh-gray-500);
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}
.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sh-blue);
}
.hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--sh-gray-900);
    margin-bottom: 1.5rem;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--sh-blue), var(--sh-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.175rem;
    color: var(--sh-gray-500);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}
.hero-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}


/* ══════════════════════════════════════════════════════════
   Homepage — Insight strip
   ══════════════════════════════════════════════════════════ */
.insight-strip {
    padding: 4rem 0;
    border-top: 1px solid var(--sh-border);
    border-bottom: 1px solid var(--sh-border);
    background: var(--sh-bg);
}
.insight-strip .container {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}
.insight-item { text-align: center; }
.insight-item .value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sh-gray-900);
    letter-spacing: -0.03em;
    line-height: 1;
}
.insight-item .label {
    font-size: 0.875rem;
    color: var(--sh-gray-500);
    font-weight: 500;
    margin-top: 0.5rem;
}
.insight-divider {
    width: 1px;
    height: 40px;
    background: var(--sh-border);
}


/* ══════════════════════════════════════════════════════════
   Homepage — Problem (The Gap)
   ══════════════════════════════════════════════════════════ */
.problem { padding: 6rem 0; }
.problem-layout {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.layer-card {
    border: 1px solid var(--sh-border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.layer-card.muted { background: var(--sh-bg); }
.layer-card.emphasis {
    background: linear-gradient(160deg, #FFFFFF 0%, #F0F5FF 100%);
    border-color: var(--sh-blue);
    box-shadow: 0 0 0 1px rgba(87,144,247,0.15), 0 12px 40px rgba(87,144,247,0.1);
}
.layer-card h3 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    text-align: center;
}
.layer-card.muted h3 { color: var(--sh-gray-500); }
.layer-card.emphasis h3 { color: var(--sh-blue); }

/* Flow nodes */
.layer-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.flow-node { text-align: center; }
.flow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}
.flow-text { font-size: 0.9375rem; font-weight: 600; }
.flow-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--sh-gray-500);
    margin-top: 0.25rem;
}
.flow-line {
    width: 2px;
    height: 28px;
    margin: 0.25rem 0;
}

.layer-card.muted .flow-dot { background: var(--sh-gray-300); }
.layer-card.muted .flow-text { color: var(--sh-gray-500); }
.layer-card.muted .flow-line { background: var(--sh-gray-300); }
.layer-card.muted .flow-node:last-of-type .flow-dot { background: var(--sh-gray-500); }
.layer-card.muted .flow-node:last-of-type .flow-text { color: var(--sh-gray-700); font-weight: 700; }

.layer-card.emphasis .flow-dot {
    background: var(--sh-blue);
    box-shadow: 0 0 0 4px rgba(87,144,247,0.12);
}
.layer-card.emphasis .flow-text { color: var(--sh-gray-900); }
.layer-card.emphasis .flow-line {
    background: linear-gradient(180deg, var(--sh-blue-light), var(--sh-blue));
}
.layer-card.emphasis .flow-node:last-of-type .flow-dot {
    width: 12px; height: 12px;
    background: var(--sh-blue-dark);
    box-shadow: 0 0 0 5px rgba(34,59,134,0.12);
}
.layer-card.emphasis .flow-node:last-of-type .flow-text {
    font-size: 1rem; font-weight: 700;
    color: var(--sh-blue-dark);
}

.layer-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-top: 1.75rem;
}
.layer-card.muted .layer-tag { background: #FEF3C7; color: #92400E; }
.layer-card.emphasis .layer-tag { background: rgba(87,144,247,0.1); color: var(--sh-blue-dark); }


/* ══════════════════════════════════════════════════════════
   Homepage — Model (dark section)
   ══════════════════════════════════════════════════════════ */
.model {
    padding: 6rem 0;
    background: var(--sh-gray-900);
    color: #FFFFFF;
}
.model .section-label { color: var(--sh-blue-light); }
.model .section-heading { color: #FFFFFF; }
.model .section-sub { color: rgba(255,255,255,0.5); }
.model-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.model-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem;
}
.model-card h3 { font-size: 0.95rem; font-weight: 600; color: #FFFFFF; margin-bottom: 0.625rem; }
.model-card p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }


/* ══════════════════════════════════════════════════════════
   Homepage — Capabilities
   ══════════════════════════════════════════════════════════ */
.capabilities { padding: 6rem 0; }
.cap-grid {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.cap-card {
    border: 1px solid var(--sh-border);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cap-card:hover {
    border-color: var(--sh-blue-light);
    box-shadow: 0 4px 24px rgba(87,144,247,0.06);
}
.cap-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(87,144,247,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.cap-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.cap-card p { font-size: 0.8125rem; color: var(--sh-gray-500); line-height: 1.65; }


/* ══════════════════════════════════════════════════════════
   Homepage — Portfolio
   ══════════════════════════════════════════════════════════ */
.portfolio {
    padding: 6rem 0;
    background: var(--sh-bg);
    border-top: 1px solid var(--sh-border);
    border-bottom: 1px solid var(--sh-border);
}
.portfolio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3.5rem;
}
.portfolio-text p { color: var(--sh-gray-700); line-height: 1.75; margin-bottom: 1.25rem; }
.portfolio-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.metric-card {
    background: #FFFFFF;
    border: 1px solid var(--sh-border);
    border-radius: 10px;
    padding: 1.375rem;
}
.metric-card .metric-value {
    font-size: 1.75rem; font-weight: 700;
    letter-spacing: -0.02em; color: var(--sh-gray-900);
}
.metric-card .metric-label {
    font-size: 0.75rem; color: var(--sh-gray-500);
    font-weight: 500; margin-top: 0.25rem;
}
.metric-card .metric-badge {
    display: inline-block;
    font-size: 0.6875rem; font-weight: 600;
    padding: 0.125rem 0.5rem; border-radius: 4px;
    margin-top: 0.625rem;
}
.badge-degraded { background: #FEF3C7; color: #92400E; }
.badge-moderate { background: #E0E7FF; color: #3730A3; }
.badge-elevated { background: #FEE2E2; color: #991B1B; }
.badge-healthy  { background: #D1FAE5; color: #065F46; }


/* ══════════════════════════════════════════════════════════
   Homepage — CTA
   ══════════════════════════════════════════════════════════ */
.cta { padding: 6rem 0; text-align: center; }
.cta-statement {
    font-size: 2.25rem; font-weight: 800; font-style: italic;
    letter-spacing: -0.03em; color: var(--sh-gray-900);
    margin-bottom: 1rem;
}
.cta-sub { color: var(--sh-gray-500); margin-bottom: 2.25rem; font-size: 1rem; }


/* ══════════════════════════════════════════════════════════
   Legal pages
   ══════════════════════════════════════════════════════════ */
.legal, .contact, .thank-you { padding-top: 9rem; }
.legal { padding-bottom: 4rem; }
.legal .container { max-width: 720px; }
.legal h1 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.legal .last-updated { font-size: 0.8125rem; color: var(--sh-gray-500); margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.125rem; font-weight: 600; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal h3 { font-size: 0.95rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--sh-gray-700); }
.legal p { color: var(--sh-gray-700); margin-bottom: 0.75rem; line-height: 1.75; }
.legal a { color: var(--sh-blue); text-decoration: none; }
.legal a:hover { color: var(--sh-blue-dark); text-decoration: underline; }
.legal ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--sh-gray-700); }
.legal ul li { margin-bottom: 0.375rem; line-height: 1.65; }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.875rem; }
.legal th { text-align: left; font-weight: 600; padding: 0.625rem 0.75rem; background: var(--sh-gray-100); border-bottom: 1px solid var(--sh-border); color: var(--sh-gray-900); }
.legal td { padding: 0.625rem 0.75rem; border-bottom: 1px solid var(--sh-gray-100); color: var(--sh-gray-700); vertical-align: top; }
.legal code { font-size: 0.8125rem; background: var(--sh-gray-100); padding: 0.125rem 0.375rem; border-radius: 3px; }


/* ══════════════════════════════════════════════════════════
   Footer
   ══════════════════════════════════════════════════════════ */
footer {
    background: var(--sh-gray-900);
    color: var(--sh-gray-300);
    padding: 2rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 3rem;
    align-items: start;
}
.footer-col-brand { padding-top: 0.125rem; }
.footer-brand-block { display: flex; align-items: center; gap: 0.625rem; }
.footer-brand-block img { height: 30px; width: auto; }
.footer-logo { filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand-block span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; color: #FFFFFF; font-size: 1.125rem;
}
.footer-col h4 {
    font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4); margin-bottom: 0.5rem;
}
.footer-col a {
    display: block; color: var(--sh-gray-300);
    text-decoration: none; font-size: 0.8125rem;
    padding: 0.1875rem 0; transition: color 0.15s;
}
.footer-col a:hover { color: #FFFFFF; }


/* ══════════════════════════════════════════════════════════
   Cookie Banner
   ══════════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--sh-gray-900);
    color: var(--sh-gray-300);
    padding: 1.25rem 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner .container {
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}
.cookie-banner p { font-size: 0.8125rem; line-height: 1.5; margin: 0; color: var(--sh-gray-300); }
.cookie-banner a { color: #FFFFFF; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn {
    padding: 0.5rem 1.125rem; border-radius: 6px;
    font-family: inherit; font-size: 0.8125rem; font-weight: 600;
    cursor: pointer; border: none; transition: background 0.15s;
}
.cookie-btn--accept { background: var(--sh-blue); color: #FFFFFF; }
.cookie-btn--accept:hover { background: var(--sh-blue-dark); }
.cookie-btn--reject {
    background: rgba(255,255,255,0.1);
    color: var(--sh-gray-300);
    border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn--reject:hover { background: rgba(255,255,255,0.15); }


/* ══════════════════════════════════════════════════════════
   Contact page
   ══════════════════════════════════════════════════════════ */
.contact { padding-bottom: 4rem; }
.contact .container { max-width: 600px; }
.contact h1 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.contact .intro { color: var(--sh-gray-500); margin-bottom: 2.5rem; font-size: 0.9375rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--sh-gray-900); margin-bottom: 0.375rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.625rem 0.75rem;
    font-family: inherit; font-size: 0.875rem;
    color: var(--sh-gray-900); background: #FFFFFF;
    border: 1px solid var(--sh-border); border-radius: 6px;
    outline: none; transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--sh-blue);
    box-shadow: 0 0 0 3px rgba(87,144,247,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--sh-gray-300); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 1.5rem; }
.form-submit button {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--sh-blue); color: #FFFFFF;
    padding: 0.75rem 1.75rem; border: none; border-radius: 8px;
    font-family: inherit; font-weight: 600; font-size: 0.875rem;
    cursor: pointer; transition: background 0.15s, transform 0.1s;
}
.form-submit button:hover { background: var(--sh-blue-dark); transform: translateY(-1px); }
.form-submit button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-result { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: 6px; font-size: 0.8125rem; font-weight: 500; display: none; }
.form-result.success { display: block; background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.form-result.error { display: block; background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }


/* ══════════════════════════════════════════════════════════
   Thank you page
   ══════════════════════════════════════════════════════════ */
.thank-you { padding-bottom: 8rem; text-align: center; }
.thank-you .container { max-width: 520px; }
.thank-you .check {
    width: 48px; height: 48px; border-radius: 50%;
    background: #D1FAE5; display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.thank-you h1 { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.thank-you p { color: var(--sh-gray-500); line-height: 1.7; margin-bottom: 2rem; }
.thank-you a {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--sh-blue); text-decoration: none;
    font-weight: 600; font-size: 0.875rem;
}
.thank-you a:hover { color: var(--sh-blue-dark); }


/* ══════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .cap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero { padding: 7rem 0 3rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .insight-strip .container { flex-wrap: wrap; gap: 1.5rem; }
    .insight-divider { display: none; }
    .problem-layout, .model-grid, .portfolio-layout { grid-template-columns: 1fr; }
    .cap-grid { grid-template-columns: 1fr; }
    .portfolio-metrics { grid-template-columns: 1fr 1fr; }
    .cta-statement { font-size: 1.75rem; }
    .legal { padding-top: 5rem; }
    .legal h1 { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    nav.is-open .nav-mobile { display: flex; }
    .cookie-banner .container { flex-direction: column; text-align: center; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
}
