/* ============================================================
   Sound Editorial — design system
   Charcoal · off-white · deep red · editorial typography
   ============================================================ */

:root {
    --ink:        #0E0E10;   /* dark charcoal */
    --ink-soft:   #1A1A1D;
    --mute:       #5C5C61;
    --line:       #E5E5E2;
    --line-soft:  #F0EFEB;
    --paper:      #FAFAF7;   /* off-white */
    --paper-pure: #FFFFFF;
    --accent:     #C8102E;   /* deep red */
    --accent-dark:#A60D26;
    --accent-soft:#F7E0E4;
    --shadow:     0 1px 2px rgba(14,14,16,0.04);
    --shadow-lg:  0 24px 64px -16px rgba(14,14,16,0.18);
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --container: 1280px;
}

* { box-sizing: border-box; }
html, body {
    margin: 0; padding: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--paper-pure); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--mute); }
.eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mute);
}
.eyebrow .dot {
    display: inline-block; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    margin-right: 8px; vertical-align: middle;
}

/* Typography */
.h1 { font-size: clamp(2.4rem, 5.8vw, 4.4rem); line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; margin: 0; }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.08; letter-spacing: -0.025em; font-weight: 700; margin: 0; }
.h3 { font-size: 1.25rem; line-height: 1.2; letter-spacing: -0.015em; font-weight: 700; margin: 0; }
.h4 { font-size: 1rem;    line-height: 1.3; font-weight: 700; margin: 0; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--mute); line-height: 1.55; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 22px;
    border-radius: 9999px;
    font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--paper-pure); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper-pure); }
.btn-inverse { background: var(--ink); color: var(--paper-pure); }
.btn-inverse:hover { background: var(--accent); }
.btn-arrow::after { content: "→"; margin-left: 4px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,250,247,0.86);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.brand {
    display: inline-flex; align-items: baseline; gap: 8px;
    font-weight: 800; letter-spacing: -0.02em; font-size: 20px;
}
.brand .dot { color: var(--accent); }
.brand small { color: var(--mute); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

.nav-list { display: none; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
    display: inline-flex; padding: 10px 14px; border-radius: 8px;
    font-size: 14.5px; font-weight: 500; color: var(--ink);
    transition: background .15s, color .15s;
}
.nav-list a:hover, .nav-list a.is-open { background: var(--line-soft); }
.nav-list a.is-active { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 4px; }
.lang-switch {
    display: inline-flex; align-items: center;
    border: 1px solid var(--line); border-radius: 9999px;
    padding: 2px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
}
.lang-switch a {
    padding: 6px 10px; border-radius: 9999px; color: var(--mute);
    text-transform: uppercase;
}
.lang-switch a.is-active { background: var(--ink); color: var(--paper-pure); }

.icon-btn {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 9999px; border: none; background: transparent;
    color: var(--ink);
}
.icon-btn:hover { background: var(--line-soft); }
.icon-btn svg { width: 18px; height: 18px; }

@media (min-width: 1024px) {
    .nav-list { display: flex; }
    .mobile-toggle { display: none; }
}

/* Mega menu */
.mega {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper-pure);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}
.mega.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mega-inner {
    max-width: var(--container); margin: 0 auto; padding: 36px 24px 48px;
    display: grid; grid-template-columns: 280px 1fr 1fr 1.1fr; gap: 40px;
}
.mega-intro { border-right: 1px solid var(--line); padding-right: 24px; }
.mega-intro h3 { font-size: 28px; letter-spacing: -0.02em; margin: 8px 0 12px; }
.mega-intro p { color: var(--mute); font-size: 14.5px; margin: 0; }
.mega-col h4 {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--mute); margin: 0 0 14px; font-weight: 700;
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin-bottom: 8px; }
.mega-col a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 0; font-size: 15px; font-weight: 600;
    color: var(--ink);
}
.mega-col a:hover { color: var(--accent); }
.mega-feature {
    border-radius: var(--r-md); overflow: hidden;
    background: var(--ink); color: var(--paper-pure);
    display: flex; flex-direction: column;
    padding: 18px;
    background-image: radial-gradient(circle at 30% 30%, rgba(200,16,46,0.5), transparent 60%), linear-gradient(135deg, #1A1A1D 0%, #0E0E10 100%);
    aspect-ratio: 4/3;
    justify-content: flex-end;
}
.mega-feature small { font-size: 10.5px; letter-spacing: 0.2em; opacity: 0.7; text-transform: uppercase; }
.mega-feature h5 { font-size: 20px; margin: 8px 0 4px; letter-spacing: -0.015em; }
.mega-feature p { font-size: 12.5px; opacity: 0.8; margin: 0 0 12px; }
.mega-feature a { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; }
.mega-feature a::after { content: " →"; }

.mega-backdrop {
    position: fixed; inset: 72px 0 0 0; background: rgba(14,14,16,0.4);
    opacity: 0; pointer-events: none; transition: opacity .2s ease;
    z-index: 30;
}
.mega-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; background: var(--paper-pure); z-index: 60; display: none; }
.drawer.is-open { display: block; }
.drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-bottom: 1px solid var(--line);
}
.drawer-body { padding: 24px; }
.drawer-section { margin-bottom: 24px; }
.drawer-section h5 {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mute); margin: 0 0 10px;
}
.drawer-section a {
    display: block; padding: 10px 0; font-size: 18px; font-weight: 600;
    border-bottom: 1px solid var(--line-soft);
}

/* ============================================================
   HOME
   ============================================================ */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.hero h1 { margin: 16px 0 24px; }
.hero p { max-width: 560px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-visual {
    position: relative; aspect-ratio: 1; border-radius: var(--r-lg);
    background: linear-gradient(135deg, #1A1A1D 0%, #0E0E10 100%);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-visual::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(200,16,46,0.55), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200,16,46,0.25), transparent 55%);
}
.hero-visual-label {
    position: absolute; bottom: 28px; left: 28px; right: 28px;
    color: var(--paper-pure); z-index: 1;
}
.hero-visual-label small { font-size: 10.5px; letter-spacing: 0.22em; opacity: 0.7; text-transform: uppercase; }
.hero-visual-label h3 { font-size: 32px; margin: 8px 0 4px; letter-spacing: -0.02em; }
.hero-visual-label p { font-size: 13px; opacity: 0.7; margin: 0; }
@media (max-width: 900px) {
    .hero { padding: 56px 0 72px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Info strip */
.info-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper-pure);
}
.info-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.info-cell {
    padding: 20px 24px;
    border-right: 1px solid var(--line);
    display: flex; align-items: center; gap: 14px;
}
.info-cell:last-child { border-right: 0; }
.info-cell .label {
    font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mute); display: block;
}
.info-cell .value { font-size: 14px; font-weight: 600; margin-top: 4px; }
.info-cell .pulse {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    flex-shrink: 0; position: relative;
}
.info-cell .pulse::after {
    content: ""; position: absolute; inset: -3px; border-radius: 50%;
    border: 2px solid var(--accent); opacity: 0;
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%   { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}
@media (max-width: 720px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .info-cell:nth-child(2) { border-right: 0; }
    .info-cell:nth-child(1), .info-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Section */
.section { padding: 96px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.section-head p { color: var(--mute); margin: 12px 0 0; max-width: 560px; }
.section-link { font-size: 14px; font-weight: 600; }
.section-link::after { content: " →"; }
.section-link:hover { color: var(--accent); }

/* Playlist grid */
.playlist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1023px) { .playlist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .playlist-grid { grid-template-columns: 1fr; } }

.pl-card {
    display: flex; flex-direction: column; gap: 14px;
    color: inherit;
    transition: transform .25s ease;
}
.pl-card:hover { transform: translateY(-3px); }
.pl-cover {
    position: relative; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden;
    background: linear-gradient(135deg, #1A1A1D 0%, #0E0E10 100%);
    box-shadow: 0 1px 2px rgba(14,14,16,0.06);
}
.pl-cover img { width: 100%; height: 100%; object-fit: cover; }
.pl-cover-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; padding: 16px;
    color: rgba(255,255,255,0.85);
    background:
        radial-gradient(circle at 30% 30%, rgba(200,16,46,0.45), transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(200,16,46,0.18), transparent 55%);
}
.pl-cover-fallback span {
    font-size: 22px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.05;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.pl-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--paper-pure); color: var(--ink);
    padding: 4px 10px; border-radius: 9999px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.pl-meta-top { display: flex; align-items: center; justify-content: space-between; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.pl-title { font-size: 18px; font-weight: 700; letter-spacing: -0.012em; line-height: 1.2; }
.pl-desc { font-size: 13.5px; color: var(--mute); line-height: 1.5; }
.pl-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pl-tag {
    font-size: 11px; padding: 3px 9px; border-radius: 9999px;
    background: var(--line-soft); color: var(--mute); font-weight: 500;
}

/* Editorial / stories */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
.story-card { color: inherit; display: block; }
.story-thumb {
    aspect-ratio: 16/10; border-radius: var(--r-md); overflow: hidden;
    background: linear-gradient(135deg, #1A1A1D 0%, #0E0E10 100%); margin-bottom: 18px;
    position: relative;
}
.story-thumb-fallback {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(200,16,46,0.3), transparent 50%);
    display: flex; align-items: flex-end; padding: 18px;
    color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
}
.story-card .cat-date { display: flex; gap: 12px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.story-card h3 { margin: 10px 0; font-size: 22px; letter-spacing: -0.018em; line-height: 1.18; }
.story-card p { color: var(--mute); font-size: 14.5px; }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1023px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-md); overflow: hidden;
    background: linear-gradient(135deg, #1A1A1D 0%, #0E0E10 100%);
    color: var(--paper-pure); padding: 22px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: transform .25s ease;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-card::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(200,16,46,0.45), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(200,16,46,0.18), transparent 55%);
    pointer-events: none;
}
.cat-card > * { position: relative; z-index: 1; }
.cat-card small { font-size: 10.5px; letter-spacing: 0.22em; opacity: 0.7; text-transform: uppercase; }
.cat-card h3 { font-size: 24px; letter-spacing: -0.02em; line-height: 1.12; margin: 8px 0 0; }
.cat-card .meta { font-size: 12px; opacity: 0.7; margin-top: 14px; }

/* Pitch CTA section */
.pitch-cta {
    background: var(--ink); color: var(--paper-pure);
    padding: 96px 0; text-align: center;
    position: relative; overflow: hidden;
}
.pitch-cta::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(200,16,46,0.25), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(200,16,46,0.18), transparent 60%);
}
.pitch-cta > * { position: relative; z-index: 1; }
.pitch-cta h2 { margin: 14px auto 22px; max-width: 760px; }
.pitch-cta p { color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto 32px; }
.pitch-cta .btn-primary { background: var(--paper-pure); color: var(--ink); }
.pitch-cta .btn-primary:hover { background: var(--accent); color: var(--paper-pure); }

/* Regions / cities — plate style */
.region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
}
@media (max-width: 1024px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .region-grid { grid-template-columns: 1fr; } }

.region {
    background: var(--paper);
    padding: 32px 28px 36px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background .2s ease;
}
.region:hover { background: var(--paper-pure); }
.region:hover .region-num { color: var(--accent); }
.region-num {
    font-family: 'Inter', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--mute);
    margin-bottom: 36px;
    transition: color .2s ease;
}
.region::before {
    content: "";
    position: absolute;
    left: 28px; top: 50px;
    height: 1px;
    background: var(--accent);
    width: 24px;
    transition: width .25s ease;
}
.region:hover::before { width: 48px; }
.region small {
    font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute); font-weight: 700;
    margin-bottom: 6px;
}
.region h3 {
    font-size: 24px; margin: 0 0 10px;
    letter-spacing: -0.02em; font-weight: 700;
    color: var(--ink); line-height: 1.15;
}
.region p {
    color: var(--mute); font-size: 14px;
    margin: 0; line-height: 1.55;
    max-width: 260px;
}

/* ============================================================
   ABOUT — What we listen for
   ============================================================ */
.listen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
}
@media (max-width: 1024px) { .listen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .listen-grid { grid-template-columns: 1fr; } }

.listen-item {
    background: var(--paper);
    padding: 32px 28px 36px;
    position: relative;
    transition: background .2s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}
.listen-item:hover { background: var(--paper-pure); }
.listen-item:hover .listen-num { color: var(--accent); }

.listen-num {
    font-family: 'Inter', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--mute);
    margin-bottom: 36px;
    transition: color .2s ease;
}
.listen-item h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1.15;
    /* override the eyebrow-style red small text */
    text-transform: none;
}
.listen-item p {
    margin: 0;
    color: var(--mute);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 280px;
}
.listen-item::before {
    content: "";
    position: absolute;
    left: 28px; right: 28px; top: 50px;
    height: 1px;
    background: var(--accent);
    width: 24px;
    transition: width .25s ease;
}
.listen-item:hover::before { width: 48px; }

/* ============================================================
   PLAYLISTS index
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-pill {
    padding: 9px 16px; border-radius: 9999px;
    border: 1px solid var(--line);
    font-size: 13px; font-weight: 600;
    color: var(--mute);
    transition: all .15s;
}
.filter-pill:hover { color: var(--ink); border-color: var(--ink); }
.filter-pill.is-active { background: var(--ink); color: var(--paper-pure); border-color: var(--ink); }

/* ============================================================
   PLAYLIST DETAIL
   ============================================================ */
.pl-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; padding: 56px 0 80px; }
@media (max-width: 900px) { .pl-detail { grid-template-columns: 1fr; gap: 32px; } }
.pl-detail .pl-cover { aspect-ratio: 1; max-width: 480px; box-shadow: var(--shadow-lg); }
.pl-detail h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0 20px; line-height: 1.05; letter-spacing: -0.028em; }
.pl-detail .lead { margin: 0 0 24px; }
.pl-info-row { display: flex; flex-wrap: wrap; gap: 20px 32px; margin: 28px 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pl-info-row > div small { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); font-weight: 700; display: block; margin-bottom: 6px; }
.pl-info-row > div strong { font-size: 14px; font-weight: 600; }
.pl-platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0; }
@media (max-width: 600px) { .pl-platforms { grid-template-columns: 1fr; } }
.pl-platform {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    border: 1px solid var(--line); border-radius: var(--r-md);
    font-size: 13.5px; font-weight: 600;
}
.pl-platform:hover { border-color: var(--ink); }
.pl-platform svg { width: 18px; height: 18px; }

/* Editorial note */
.editorial-note {
    border-left: 3px solid var(--accent);
    padding: 8px 20px; margin: 24px 0;
    color: var(--mute); font-style: italic; font-size: 14.5px;
}

/* ============================================================
   PITCH FORM
   ============================================================ */
.form-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.form-section:last-of-type { border-bottom: 0; }
.form-section h3 {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); margin: 0 0 24px; font-weight: 700;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.span2 { grid-column: span 2; }
@media (max-width: 720px) { .form-field.span2 { grid-column: span 1; } }
.form-field label { font-size: 13px; font-weight: 600; }
.form-field .hint { font-size: 12px; color: var(--mute); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 13px 14px; border: 1px solid var(--line);
    border-radius: var(--r-sm); font-size: 14.5px;
    background: var(--paper-pure); color: var(--ink);
    font-family: inherit;
    transition: border-color .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; margin: 24px 0; }
.form-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; }
.form-consent label { font-size: 13px; color: var(--mute); }

.alert { padding: 14px 18px; border-radius: var(--r-sm); font-size: 14px; margin-bottom: 24px; }
.alert-success { background: #ECF8EE; color: #1F6F2E; }
.alert-error   { background: #FCEEEF; color: #A60D26; border-left: 3px solid var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink); color: var(--paper-pure);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}
.footer-brand .brand { color: var(--paper-pure); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 14px 0 24px; max-width: 320px; }
.footer-col h5 {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); margin: 0 0 16px; font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.85); transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.45);
    flex-wrap: wrap; gap: 12px;
}
.footer-lang { display: inline-flex; gap: 6px; }
.footer-lang a { padding: 4px 10px; border: 1px solid rgba(255,255,255,0.15); border-radius: 9999px; font-size: 11px; letter-spacing: 0.1em; }
.footer-lang a.is-active { background: var(--paper-pure); color: var(--ink); border-color: var(--paper-pure); }

/* Utility */
.hidden { display: none !important; }
.fade-in { opacity: 0; transform: translateY(16px); animation: fadeIn .8s cubic-bezier(.22,.61,.36,1) forwards; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
