*, *::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; } .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: 20px; 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: 16px; 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-nav__list li.has-dropdown > a {
padding-right: 14px;
}
.cc2-nav__list li.has-dropdown > a::before {
content: '▾';
position: absolute;
right: 0; top: 50%;
transform: translateY(-50%);
font-size: 12px;
color: #5CC1D3;
transition: transform .25s;
line-height: 1;
}
.cc2-nav__list li.has-dropdown.is-open > a,
.cc2-nav__list li.has-dropdown.is-open > a::after { color: #fff; }
.cc2-nav__list li.has-dropdown.is-open > a::before {
transform: translateY(-50%) rotate(180deg);
} .cc2-nav__dropdown {
position: fixed;
top: 60px; left: 0; right: 0;
background: #FFF183;
border-top: none;
border-bottom: 0.5px solid #e8d94a;
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
list-style: none;
padding: 0;
opacity: 0;
pointer-events: none;
transform: translateY(-6px);
transition: opacity .22s ease, transform .22s ease;
z-index: 99;
} .cc2-nav__dropdown::before {
content: '';
position: fixed;
top: 48px; left: 0; right: 0;
height: 18px; z-index: 98;
}
.cc2-nav__list li.has-dropdown.is-open .cc2-nav__dropdown {
opacity: 1;
pointer-events: auto;
transform: translateY(0);
} .cc2-nav__dropdown li {
display: flex;
align-items: center;
border-right: 0.5px solid rgba(0,0,0,.12);
}
.cc2-nav__dropdown li:first-child { border-left: 0.5px solid rgba(0,0,0,.12); }
.cc2-nav__dropdown li a {
display: flex;
align-items: center;
height: 52px; padding: 0 26px; font-size: 13px;
color: rgba(0,0,0,.55);
letter-spacing: .08em;
text-transform: uppercase;
white-space: nowrap;
transition: color .15s, background .15s;
}
.cc2-nav__dropdown li a::after  { display: none; }
.cc2-nav__dropdown li a::before { display: none; }
.cc2-nav__dropdown li a:hover {
color: #0E0E0E;
background: rgba(0,0,0,.06);
} .cc2-nav__dropdown-all a {
color: #0E0E0E !important;
font-weight: 700;
padding: 0 32px 0 28px; }
.cc2-nav__dropdown-all a:hover { background: rgba(0,0,0,.08) !important; } .cc2-nav__dropdown-active a { color: #0E0E0E !important; font-weight: 700; } .cc2-drop-toggle          { display: none; }
.cc2-nav__dropdown-mobile { display: none; } @media (max-width: 768px) { .cc2-nav__dropdown { display: none; }
.cc2-nav__list li.has-dropdown > a::before { display: none; }
.cc2-nav__list li.has-dropdown > a { padding-right: 0; } .cc2-drop-toggle          { display: inline-flex; }
.cc2-nav__dropdown-mobile { display: flex; } .cc2-drop-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px; height: 32px;
margin-left: 10px;
background: rgba(255,241,131,.15);
border: 1px solid rgba(255,241,131,.35);
border-radius: 4px;
color: #FFF183;
font-size: 18px;
line-height: 1;
cursor: pointer;
flex-shrink: 0;
transition: background .2s, transform .25s;
vertical-align: middle;
}
.cc2-drop-toggle.is-open {
background: #FFF183;
color: #0E0E0E;
transform: rotate(45deg);
} .cc2-nav__dropdown-mobile {
display: flex;
flex-wrap: wrap;
gap: 8px;
padding: 14px 0 6px 0;
list-style: none;
overflow: hidden;
max-height: 0;
opacity: 0;
transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
}
.cc2-nav__dropdown-mobile.is-open {
max-height: 200px;
opacity: 1;
padding: 14px 0 6px 0;
}
.cc2-nav__dropdown-mobile li a {
display: inline-flex;
align-items: center;
height: auto;
padding: 6px 14px;
background: #FFF183;
color: #0E0E0E;
font-size: 12px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
border-radius: 3px;
white-space: nowrap;
transition: background .15s;
}
.cc2-nav__dropdown-mobile li a:hover,
.cc2-nav__dropdown-mobile li.cc2-nav__dropdown-active a {
background: #ffe940;
}
.cc2-nav__dropdown-mobile li.cc2-nav__dropdown-all a {
background: #0E0E0E;
color: #FFF183;
}
}
.cc2-header__cta {
font-size: 16px; 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;
} .cc2-page { max-width: 900px; margin: 0 auto; padding: 60px 40px; } .cc2-page--contact { width: 100%; padding: 0; margin: 0; } .cc2-page--portfolio { width: 100%; padding: 0; margin: 0; } .cc-real-wrap { max-width: 1400px; margin: 0 auto; padding: 0 40px 80px; }
@media (max-width: 600px) { .cc-real-wrap { padding: 0 20px 40px; } } .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: 22px; font-weight: 900; color: #FFF183;
display: block; margin-bottom: 12px;
}
.cc2-footer__brand p { font-size: 18px; color: #888; line-height: 1.7; margin-top: 4px; }
.cc2-footer__nav span,
.cc2-footer__contact span {
font-size: 16px; 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: 18px; color: #888; transition: color .2s; }
.cc2-footer__list li a:hover { color: #fff; }
.cc2-footer__contact a { font-size: 18px; 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: 16px; color: #333; letter-spacing: .04em; } @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; }
}