/* ==========================================================================
   CSS VARIABLES & DEEP BERRY DESIGN (DISALUM.ICU)
   ========================================================================== */
:root {
    --c-berry: #831843; /* Pink 900 */
    --c-berry-light: #be185d; /* Pink 700 */
    --c-blush: #fbcfe8; /* Pink 200 */
    --c-sand: #fdf6e3; /* Warm Sand */
    --c-sand-dark: #f3e8d2;
    --c-dark: #0f172a; /* Slate 900 */
    --c-text: #475569; /* Slate 600 */
    --c-white: #ffffff;
    --c-line: #e2e8f0; /* Slate 200 */

    --pad-x: clamp(15px, 5vw, 30px);
    --pad-y: clamp(80px, 10vw, 130px);
    
    --rad-none: 0px;
    --rad-sm: 4px;
    --rad-lg: 30px;
    --rad-circle: 50%;
    
    --shadow-soft: 0 10px 30px rgba(131, 24, 67, 0.08);
    --shadow-hard: 20px 20px 0 rgba(131, 24, 67, 0.15);
    --trans: all 0.4s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background-color: var(--c-sand);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--c-dark); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); letter-spacing: -2px; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); letter-spacing: -1px; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--c-berry); }
p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); margin-bottom: 1.5rem; font-family: 'Lora', serif; }

a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--rad-none); }
ul { list-style: none; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); }
.sec-p { padding: var(--pad-y) 0; }
.txt-c { text-align: center; }

/* ==========================================================================
   HEADER (STRICT 10PX MOBILE PADDING)
   ========================================================================== */
.site-hdr { background: var(--c-white); border-bottom: 1px solid var(--c-line); position: sticky; top: 0; z-index: 1000; }

.nav-mobile-box {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 10px; /* СТРОГО 10PX НА МОБИЛЬНОМ */
    max-width: 1200px; margin: 0 auto; position: relative;
}

@media (min-width: 768px) { .nav-mobile-box { padding: 20px var(--pad-x); } }

.brand { font-size: 2.2rem; font-weight: 900; color: var(--c-dark); letter-spacing: -1px; text-transform: uppercase; }
.brand span { color: var(--c-berry-light); }

.burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.burger span { width: 30px; height: 3px; background: var(--c-dark); transition: var(--trans); }
#menu-tog { display: none; }

.desk-nav { display: none; }
.desk-nav ul { display: flex; gap: 40px; align-items: center; }
.desk-nav a { font-weight: 700; color: var(--c-dark); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px; }
.desk-nav a:hover, .desk-nav a.active { color: var(--c-berry-light); }

.mob-nav {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--c-white); padding: 15px 20px 25px; box-shadow: 0 20px 30px rgba(0,0,0,0.1); border-top: 1px solid var(--c-line);
}
.mob-nav a { display: block; font-weight: 700; color: var(--c-dark); padding: 15px 0; border-bottom: 1px solid var(--c-line); text-transform: uppercase; }
.mob-nav li:last-child a { border-bottom: none; }
#menu-tog:checked ~ .mob-nav { display: block; }

@media (min-width: 992px) {
    .burger { display: none; }
    .desk-nav { display: block; }
    .mob-nav { display: none !important; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 45px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: var(--trans); border: 2px solid transparent; text-transform: uppercase; letter-spacing: 1px; border-radius: var(--rad-none); }
.btn-b { background: var(--c-berry); color: #fff; box-shadow: 8px 8px 0 var(--c-dark); }
.btn-b:hover { transform: translate(4px, 4px); box-shadow: 4px 4px 0 var(--c-dark); background: var(--c-berry-light); color: white; }
.btn-d { background: var(--c-dark); color: var(--c-white); box-shadow: 8px 8px 0 var(--c-berry); }
.btn-d:hover { transform: translate(4px, 4px); box-shadow: 4px 4px 0 var(--c-berry); color: white; }

/* ==========================================================================
   GENERAL GRIDS
   ========================================================================== */
.g-2 { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .g-2 { grid-template-columns: 1fr 1fr; gap: 60px; } }
.g-3 { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .g-3 { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   INDEX: SPLIT HERO & CENTRAL FOCUS GRID
   ========================================================================== */
/* Split Hero */
.hero-split { display: flex; flex-direction: column; min-height: 80vh; background: var(--c-sand-dark); }
.hs-txt { padding: 60px 20px; display: flex; flex-direction: column; justify-content: center; }
.hs-img { min-height: 300px; background: url('img/bg.jpg') center/cover; }
@media (min-width: 992px) {
    .hero-split { flex-direction: row; }
    .hs-txt { width: 55%; padding: 100px 5% 100px 10%; position: relative; z-index: 2; background: var(--c-white); box-shadow: 20px 0 50px rgba(0,0,0,0.1); clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%); }
    .hs-img { width: 55%; margin-left: -10%; z-index: 1; }
}

/* Feature Boxes */
.f-box { background: var(--c-white); padding: 40px; border: 2px solid var(--c-dark); box-shadow: 10px 10px 0 var(--c-blush); transition: var(--trans); }
.f-box:hover { transform: translate(-5px, -5px); box-shadow: 15px 15px 0 var(--c-berry); border-color: var(--c-berry); }

/* Central Focus Grid (Unique Section 4) */
.focus-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; max-width: 1000px; margin: 0 auto; }
@media (min-width: 992px) { .focus-grid { grid-template-columns: 1fr 400px 1fr; gap: 30px; } }
.fg-col { display: flex; flex-direction: column; gap: 20px; }
.fg-item { background: var(--c-white); padding: 30px; border: 1px solid var(--c-line); text-align: center; box-shadow: var(--shadow-soft); }
.fg-center { background: var(--c-berry); color: white; width: 100%; aspect-ratio: 1/1; border-radius: var(--rad-circle); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 40px; text-align: center; border: 10px solid var(--c-blush); box-shadow: var(--shadow-hard); margin: 30px 0; }
.fg-center h3 { color: white; font-size: 2.5rem; margin-bottom: 15px; }
.fg-center p { font-family: 'Outfit', sans-serif; font-size: 1.1rem; }

/* ==========================================================================
   PROGRAM: CASCADING FULL-WIDTH BANNERS & DICTIONARY FAQ
   ========================================================================== */
.cascade-banner { padding: var(--pad-y) var(--pad-x); display: flex; flex-direction: column; align-items: center; text-align: center; border-bottom: 2px solid var(--c-dark); }
.cascade-banner h2 { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 20px; }
.cascade-banner p { max-width: 800px; font-size: 1.25rem; margin: 0 auto; }
.cb-1 { background: var(--c-berry); color: white; }
.cb-1 h2 { color: var(--c-blush); }
.cb-2 { background: var(--c-sand); color: var(--c-dark); }
.cb-2 h2 { color: var(--c-berry-light); }
.cb-3 { background: var(--c-dark); color: white; }
.cb-3 h2 { color: var(--c-sand); }
.cb-3 p { color: #cbd5e1; }

/* Dictionary FAQ Layout */
.dict-faq { display: flex; flex-direction: column; max-width: 900px; margin: 0 auto; }
.dict-row { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 30px 0; border-bottom: 3px solid var(--c-dark); }
@media (min-width: 768px) { .dict-row { grid-template-columns: 1fr 2fr; gap: 40px; } }
.dict-q { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--c-berry); }
.dict-a { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--c-text); margin: 0; }

/* ==========================================================================
   MISSION: THE PLAQUE & MONDRIAN GRID
   ========================================================================== */
.plaque-2020 { background: var(--c-berry); border: 15px solid var(--c-blush); padding: clamp(40px, 8vw, 80px); text-align: center; max-width: 900px; margin: 0 auto; box-shadow: var(--shadow-hard); }
.plaque-2020 h2 { color: white; font-size: clamp(3rem, 6vw, 5rem); text-transform: uppercase; margin-bottom: 30px; letter-spacing: 2px; }
.plaque-2020 p { color: var(--c-sand); font-size: 1.25rem; line-height: 1.8; }

.mondrian-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1000px; margin: 50px auto 0; }
@media (min-width: 768px) {
    .mondrian-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(200px, auto); }
    .md-a { grid-column: span 2; grid-row: span 2; background: var(--c-dark); color: white; }
    .md-a h3 { color: var(--c-blush); font-size: 2.5rem; }
    .md-a p { color: #cbd5e1; }
    .md-b { background: var(--c-berry-light); color: white; }
    .md-b h3 { color: white; }
    .md-c { background: var(--c-sand-dark); }
    .md-d { grid-column: span 3; background: var(--c-white); border: 4px solid var(--c-dark); }
}
.md-box { padding: 40px; display: flex; flex-direction: column; justify-content: center; }

/* ==========================================================================
   FORM (4 FIELDS)
   ========================================================================== */
.frm-box { background: var(--c-white); padding: clamp(40px, 6vw, 60px); box-shadow: var(--shadow-hard); border: 2px solid var(--c-dark); }
.f-row { margin-bottom: 25px; }
.f-row label { display: block; font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--c-dark); margin-bottom: 10px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.f-row input, .f-row textarea { width: 100%; padding: 18px; border: 2px solid var(--c-line); font-family: 'Lora', serif; font-size: 1rem; background: var(--c-bg); transition: var(--trans); border-radius: 0; }
.f-row input:focus, .f-row textarea:focus { outline: none; border-color: var(--c-berry); background: var(--c-white); box-shadow: 4px 4px 0 var(--c-blush); }
.f-row textarea { min-height: 150px; resize: vertical; }

/* ==========================================================================
   FOOTER (STRICT DATES)
   ========================================================================== */
.site-ftr { background: var(--c-dark); color: #cbd5e1; padding: 80px 0 30px; border-top: 10px solid var(--c-berry); }
.ftr-g { display: grid; grid-template-columns: 1fr; gap: 50px; margin-bottom: 60px; }
@media (min-width: 768px) { .ftr-g { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.f-logo { font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 15px; display: block; text-transform: uppercase; letter-spacing: -1px; }
.f-logo span { color: var(--c-berry-light); }
.f-desc { font-size: 1rem; line-height: 1.7; font-family: 'Outfit', sans-serif; }
.f-h { color: #fff; font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.f-links li { margin-bottom: 15px; }
.f-links a { font-family: 'Outfit', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.f-links a:hover { color: var(--c-blush); padding-left: 8px; }
.f-copy { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 0.95rem; color: #94a3b8; font-family: 'Outfit', sans-serif; }

/* ==========================================================================
   COOKIE BANNER (2 BUTTONS, LINK IN TEXT)
   ========================================================================== */
#ck-b { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--c-white); padding: 30px; z-index: 9999; display: flex; flex-direction: column; gap: 20px; transform: translateY(150%); transition: 0.5s ease; box-shadow: var(--shadow-hard); border: 4px solid var(--c-dark); max-width: 900px; margin: 0 auto; }
#ck-b.show { transform: translateY(0); }
.ck-txt { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--c-text); font-family: 'Lora', serif; }
.ck-txt a { color: var(--c-berry); font-weight: 800; text-decoration: underline; font-family: 'Outfit', sans-serif; }
.ck-acts { display: flex; gap: 15px; }
.b-ck { font-family: 'Outfit', sans-serif; padding: 15px 30px; border: none; font-weight: 800; cursor: pointer; flex: 1; transition: var(--trans); font-size: 1rem; text-align: center; text-transform: uppercase; letter-spacing: 1px; }
.b-ck.y { background: var(--c-berry); color: #fff; }
.b-ck.y:hover { background: var(--c-dark); }
.b-ck.n { background: var(--c-line); color: var(--c-dark); }
.b-ck.n:hover { background: var(--c-dark); color: #fff; }
@media (min-width: 768px) { #ck-b { flex-direction: row; align-items: center; justify-content: space-between; } .ck-acts { width: auto; flex-shrink: 0; } .b-ck { flex: none; } }