/* ── TOKENS ─────────────────────────────────────── */
:root {
    --primary: #C61F65;
    --primary-dk: #A0184F;
    --secondary: #B5256B;
    --accent: #F47D34;
    --accent-dk: #D4661C;
    --bg: #FFFFFF;
    --bg-soft: #FEF5F9;
    --bg-pale: #FDE8F2;
    --border: #EAD0DC;
    --border-lt: #F4E8EE;
    --text: #191919;
    --muted: #686868;
    --err: #B91C1C;
}

/* ── RESET ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #f6eff3;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

/* ── HEADER ─────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: 66px;
    background: var(--bg);
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
a.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    width: 240px;
    height: 40px;
}

a.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* Divider */
.hdr-divider {
    width: 1px;
    height: 26px;
    background: var(--border);
    margin: 0 4px;
}

/* Nav links */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.nav-link {
    padding: 7px 13px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-soft);
}

.btn-hdr {
    margin-left: 10px;
    padding: 9px 22px;
    background: var(--primary);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-hdr:hover {
    background: var(--primary-dk);
}

.burger {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text);
    cursor: pointer;
}

/* ── HERO SWIPER ─────────────────────────────────── */
.hero {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 5, 11, 0.60);
}

/* Primary color bottom bar */
.slide-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 52px 80px;
    color: #fff;
    max-width: 820px;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 16px;
    color: #fff;
}

.slide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
}

.slide-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(198, 31, 101, 0.78);
    width: 46px;
    height: 46px;
    border-radius: 0;
    transition: background 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 15px;
    font-weight: 800;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.38);
    opacity: 1;
    transition: background 0.3s, width 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    width: 52px;
}

.swiper-pagination {
    bottom: 18px !important;
}

/* ── PAGE WRAPPER ────────────────────────────────── */
.page-wrapper {
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.section-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 520px;
}

/* ── STEPPER ─────────────────────────────────────── */
.stepper {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 36px;
    padding: 0 10px;
}

.stepper-bg {
    position: absolute;
    top: 16px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--border);
}

.stepper-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.step-item.is-active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.step-item.is-done .step-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    cursor: pointer;
}

.step-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    text-align: center;
    line-height: 1.3;
    max-width: 70px;
}

.step-item.is-active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.step-item.is-done .step-label {
    color: var(--accent);
}

/* ── FORM CARD ───────────────────────────────────── */
.form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
}

/* Height-animated container */
.form-body {
    padding: 44px 52px;
    overflow: hidden;
}

/* All panels hidden by default; JS adds .is-active */
.form-panel {
    display: none;
}

.form-panel.is-active {
    display: block;
}

.panel-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.panel-sub {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 30px;
}

/* ── FORM INPUTS ─────────────────────────────────── */
.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.f-row.full {
    grid-template-columns: 1fr;
}

.f-group {
    display: flex;
    flex-direction: column;
}

.f-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 7px;
}

.f-lbl .req {
    color: var(--primary);
    margin-left: 2px;
}

.f-ctrl {
    width: 100%;
    border: 1.5px solid var(--border);
    background: var(--bg-soft);
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: var(--text);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: border-color 0.2s, background 0.2s;
}

.f-ctrl:focus {
    border-color: var(--primary);
    background: #fff;
}

.f-ctrl.is-err {
    border-color: var(--err);
}

.f-err {
    font-size: 12px;
    color: var(--err);
    margin-top: 5px;
    display: none;
}

.f-err.show {
    display: block;
}

/* ── DATE CARDS ──────────────────────────────────── */
.date-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 6px;
}

.date-card {
    border: 1.5px solid var(--border);
    background: var(--bg-soft);
    padding: 22px 14px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    user-select: none;
}

.date-card:hover {
    border-color: var(--primary);
    background: var(--bg);
}

.date-card.is-sel {
    border-color: var(--primary);
    background: var(--bg);
    box-shadow: inset 3px 0 0 var(--primary);
}

.dc-chk {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    display: none;
    align-items: center;
    justify-content: center;
}

.date-card.is-sel .dc-chk {
    display: flex;
}

.dc-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.dc-mon {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── TIME CHIPS ──────────────────────────────────── */
#timeSection {
    display: none;
    margin-top: 24px;
}

#timeSection.show {
    display: block;
}

.time-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.t-chip {
    padding: 9px 20px;
    border: 1.5px solid var(--border);
    background: var(--bg-soft);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.18s;
    user-select: none;
}

.t-chip:hover {
    border-color: var(--primary);
    background: var(--bg);
}

.t-chip.is-sel {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ── MODE CARDS ──────────────────────────────────── */
.mode-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 6px;
}

.mode-card {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--border);
    background: var(--bg-soft);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.mode-card:hover {
    border-color: var(--secondary);
    background: var(--bg);
}

.mode-card.is-sel {
    border-color: var(--primary);
    background: var(--bg);
}

/* Left accent stripe */
.mode-stripe {
    width: 4px;
    flex-shrink: 0;
    background: transparent;
    transition: background 0.2s;
}

.mode-card.is-sel .mode-stripe {
    background: var(--primary);
}

/* Mode letter */
.mode-letter {
    width: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--border);
    border-right: 1px solid var(--border-lt);
    transition: color 0.2s;
    padding: 14px 0;
}

.mode-card.is-sel .mode-letter {
    color: var(--primary);
}

.mode-text {
    flex: 1;
    padding: 13px 16px;
}

.mode-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.mode-desc {
    font-size: 12.5px;
    color: var(--muted);
}

/* Custom checkbox (right side) */
.mode-chk-box {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 16px auto 0;
    flex-shrink: 0;
    transition: all 0.2s;
    color: #fff;
    font-size: 11px;
}

.mode-card.is-sel .mode-chk-box {
    background: var(--primary);
    border-color: var(--primary);
}

/* ── FILE UPLOAD ─────────────────────────────────── */
.upload-zone {
    border: 1.5px dashed var(--border);
    background: var(--bg-soft);
    padding: 34px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover,
.upload-zone.drag {
    border-color: var(--primary);
    background: var(--bg);
}

.uz-icon {
    font-size: 32px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.uz-txt {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.uz-hint {
    font-size: 12px;
    color: var(--muted);
}

/* File preview grid */
.file-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.fp-card {
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fp-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(198, 31, 101, 0.10);
}

.fp-thumb {
    width: 100%;
    height: 96px;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Scaled-down iframe for PDF thumbnail */
.fp-thumb iframe {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    transform-origin: top left;
    pointer-events: none;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.fp-type-icon {
    font-size: 36px;
}

.fp-type-icon.pdf {
    color: var(--primary);
}

.fp-type-icon.pptx {
    color: var(--accent);
}

.fp-type-icon.docx {
    color: #2B579A;
}

.fp-meta {
    padding: 7px 9px;
    border-top: 1px solid var(--border-lt);
}

.fp-fname {
    font-size: 11px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-fsize {
    font-size: 10px;
    color: var(--muted);
    margin-top: 1px;
}

.fp-rm {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fp-card:hover .fp-rm {
    display: flex;
}

/* ── TERMS ───────────────────────────────────────── */
.terms-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 6px;
}

.term-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    background: var(--bg-soft);
    cursor: pointer;
    transition: border-color 0.2s;
}

.term-row:hover {
    border-color: var(--primary);
}

.term-row input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
    cursor: pointer;
}

.term-row span {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.65;
}

/* ── NAV ─────────────────────────────────────────── */
.form-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 52px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-lt);
}

.btn-ghost {
    padding: 11px 26px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
}

.btn-ghost:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.btn-primary {
    padding: 11px 32px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
}

.btn-primary:hover {
    background: var(--primary-dk);
}

/* ── SUCCESS ─────────────────────────────────────── */
#successPanel {
    display: none;
    padding: 64px 52px;
    text-align: center;
}

#successPanel.show {
    display: block;
}

.success-ring {
    width: 72px;
    height: 72px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 30px;
}

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.success-body {
    font-size: 14.5px;
    color: var(--muted);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.8;
}

.success-ref {
    display: inline-block;
    margin-top: 22px;
    padding: 9px 22px;
    background: var(--bg-pale);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* ── FILE MODAL ──────────────────────────────────── */
.fmodal-wrap {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 2, 6, 0.74);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.fmodal-wrap.open {
    display: flex;
}

.fmodal {
    background: var(--bg);
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--primary);
}

.fmodal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.fmodal-fname {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fmodal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.fmodal-dl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 0;
    transition: background 0.2s;
}

.fmodal-dl:hover {
    background: var(--primary-dk);
}

.fmodal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.fmodal-close:hover {
    color: var(--primary);
}

.fmodal-body {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fmodal-body iframe {
    width: 100%;
    height: 70vh;
    border: none;
}

.fmodal-nopreview {
    padding: 48px 32px;
    text-align: center;
}

.fmodal-nopreview i {
    font-size: 48px;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

.fmodal-nopreview p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

.fmodal-nopreview a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
    background: #454545;
    color: rgba(255, 255, 255, 0.55);
    border-top: 3px solid var(--primary);
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 52px 40px 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Footer logo */
.ft-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
    text-decoration: none;
}

.ft-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.ft-logo-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    display: block;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    max-width: 1160px;
    margin: 0 auto;
    font-size: 12px;
}

.ft-copy {
    color: rgba(255, 255, 255, 0.3);
}

.ft-credit {
    color: rgba(255, 255, 255, 0.3);
}

.ft-credit a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.ft-credit a:hover {
    color: var(--accent);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        height: 380px;
    }

    .slide-content {
        padding: 32px 24px;
    }

    .slide-title {
        font-size: 32px;
    }

    .form-body {
        padding: 28px 20px;
    }

    .form-nav {
        padding: 18px 20px;
    }

    .f-row {
        grid-template-columns: 1fr;
    }

    .date-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .dc-day {
        font-size: 32px;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: block;
    }
}

@media (max-width: 480px) {
    .footer-cols {
        grid-template-columns: 1fr;
    }

    .date-grid {
        grid-template-columns: 1fr;
    }
}
