/* ===== COSTARD2 THEME ===== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "DM Sans", sans-serif;
    background: #fff;
    color: #0E0E0E;
    -webkit-font-smoothing: antialiased;
    padding-top: 60px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* HEADER */
.cc2-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: #0E0E0E;
    height: 60px;
    border-bottom: 0.5px solid #1a1a1a;
}
.cc2-header__inner {
    max-width: 1400px; margin: 0 auto;
    padding: 0 40px; height: 100%;
    display: flex; align-items: center; gap: 32px;
}
.cc2-header__logo {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 15px; font-weight: 900;
    color: #FFF183; letter-spacing: .02em; flex-shrink: 0;
    transition: letter-spacing .3s;
}
.cc2-header__logo:hover { letter-spacing: .06em; }
.cc2-header__nav { flex: 1; }
.cc2-nav__list { display: flex; align-items: center; gap: 28px; }
.cc2-nav__list li a {
    font-size: 11px; color: #888;
    letter-spacing: .06em; text-transform: uppercase;
    position: relative; transition: color .2s;
}
.cc2-nav__list li a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: #5CC1D3;
    transition: width .25s;
}
.cc2-nav__list li a:hover { color: #fff; }
.cc2-nav__list li a:hover::after { width: 100%; }
.cc2-header__cta {
    font-size: 11px; background: #FFF183; color: #0E0E0E;
    padding: 7px 18px; border-radius: 2px;
    letter-spacing: .06em; text-transform: uppercase; flex-shrink: 0;
    transition: background .2s, transform .15s;
}
.cc2-header__cta:hover { background: #f5e560; transform: scale(1.04); }
.cc2-header__burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 4px; margin-left: auto;
}
.cc2-header__burger span {
    display: block; width: 22px; height: 1.5px;
    background: #fff; transition: transform .25s, opacity .2s;
}

/* PAGE STANDARD */
.cc2-page { max-width: 900px; margin: 0 auto; padding: 60px 40px; }

/* FOOTER */
.cc2-footer { background: #0E0E0E; color: #fff; padding: 60px 40px 0; }
.cc2-footer__inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 0.5px solid #1a1a1a;
}
.cc2-footer__logo {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px; font-weight: 900; color: #FFF183;
    display: block; margin-bottom: 12px;
}
.cc2-footer__brand p { font-size: 13px; color: #888; line-height: 1.7; margin-top: 4px; }
.cc2-footer__nav span,
.cc2-footer__contact span {
    font-size: 11px; color: #5CC1D3;
    letter-spacing: .08em; text-transform: uppercase;
    display: block; margin-bottom: 14px;
}
.cc2-footer__list { display: flex; flex-direction: column; gap: 8px; }
.cc2-footer__list li a { font-size: 13px; color: #888; transition: color .2s; }
.cc2-footer__list li a:hover { color: #fff; }
.cc2-footer__contact a { font-size: 13px; color: #5CC1D3; transition: color .2s; }
.cc2-footer__contact a:hover { color: #fff; }
.cc2-footer__bottom { max-width: 1400px; margin: 0 auto; padding: 20px 0; }
.cc2-footer__bottom p { font-size: 11px; color: #333; letter-spacing: .04em; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .cc2-header__inner { padding: 0 20px; }
    .cc2-header__nav { display: none; }
    .cc2-header__cta { display: none; }
    .cc2-header__burger { display: flex; }
    .cc2-header__nav.open {
        display: flex; position: fixed;
        top: 60px; left: 0; right: 0;
        background: #0E0E0E; padding: 24px 20px;
        flex-direction: column; border-bottom: 0.5px solid #1a1a1a;
    }
    .cc2-header__nav.open .cc2-nav__list { flex-direction: column; gap: 20px; }
    .cc2-footer { padding: 48px 20px 0; }
    .cc2-footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .cc2-page { padding: 40px 20px; }
}
