:root {
--primary: #771230;
--primary-light: #a93d5c;
--dark: #1a1a1a;
--cream: #f5f0eb;
--cream-dark: #e8e0d8;
--white: #ffffff;
--text: #2d2d2d;
--text-light: #6b6b6b;
--border: #2d2d2d;
--font: "Space Grotesk", system-ui, sans-serif;
}

* {
box-sizing: border-box;
}

body {
font-family: var(--font);
background-color: var(--cream);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: var(--font);
font-weight: 700;
letter-spacing: -0.02em;
}

a {
color: var(--primary);
text-decoration: none;
transition: all 0.2s ease;
}

a:hover {
color: var(--primary-light);
}

.navbar {
background: transparent;
padding-top: 1rem;
padding-bottom: 1rem;
transition: all 0.35s ease;
z-index: 1030;
}

.navbar.scrolled {
background: rgba(245, 240, 235, 0.92);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 3px solid var(--border);
padding-top: 0.6rem;
padding-bottom: 0.6rem;
}

.navbar-brand {
padding: 0;
display: flex;
align-items: center;
gap: 0.6rem;
}

.logo-img {
height: 40px;
width: auto;
object-fit: contain;
}

.brand-text {
font-family: var(--font);
font-weight: 700;
font-size: 1.2rem;
color: var(--dark);
letter-spacing: 0.06em;
text-transform: uppercase;
}

.nav-link {
font-family: var(--font);
font-weight: 600;
font-size: 0.85rem;
color: var(--text) !important;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 0.5rem 1rem !important;
position: relative;
}

.nav-link::after {
content: "";
position: absolute;
bottom: 2px;
left: 1rem;
width: 0;
height: 3px;
background: var(--primary);
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: calc(100% - 2rem);
}

.social-link {
color: var(--dark);
font-size: 0.9rem;
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid var(--border);
border-radius: 50%;
background: var(--white);
transition: all 0.25s ease;
}

.social-link:hover {
background: var(--primary);
color: var(--white);
border-color: var(--primary);
transform: translateY(-2px);
}

.hero-section {
background: var(--cream);
padding: 8rem 0 4rem;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
max-width: 1400px;
margin: 0 auto;
}

.hero-text-block {
padding: 2rem;
}

.hero-label {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.25em;
color: var(--primary);
margin-bottom: 1rem;
}

.hero-title {
font-size: clamp(3rem, 7vw, 5.5rem);
font-weight: 700;
line-height: 0.95;
color: var(--dark);
margin-bottom: 1.5rem;
letter-spacing: -0.04em;
}

.hero-body {
font-size: 1rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1rem;
max-width: 520px;
}

.hero-cta {
display: flex;
gap: 1rem;
margin-top: 2rem;
flex-wrap: wrap;
}

.btn-primary-custom {
display: inline-flex;
align-items: center;
background: var(--primary);
color: var(--white);
font-family: var(--font);
font-weight: 600;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 0.9rem 1.8rem;
border: 3px solid var(--border);
border-radius: 0;
box-shadow: 6px 6px 0 var(--border);
transition: all 0.2s ease;
text-decoration: none;
}

.btn-primary-custom:hover {
background: var(--dark);
color: var(--white);
box-shadow: 3px 3px 0 var(--border);
transform: translate(3px, 3px);
}

.btn-secondary-custom {
display: inline-flex;
align-items: center;
background: var(--white);
color: var(--dark);
font-family: var(--font);
font-weight: 600;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 0.9rem 1.8rem;
border: 3px solid var(--border);
border-radius: 0;
box-shadow: 6px 6px 0 var(--border);
transition: all 0.2s ease;
text-decoration: none;
}

.btn-secondary-custom:hover {
background: var(--cream-dark);
color: var(--dark);
box-shadow: 3px 3px 0 var(--border);
transform: translate(3px, 3px);
}

.hero-image-block {
position: relative;
}

.hero-image {
width: 100%;
height: 500px;
object-fit: cover;
border: 4px solid var(--border);
box-shadow: 12px 12px 0 var(--primary);
display: block;
}

.image-badge {
position: absolute;
bottom: -20px;
left: -20px;
background: var(--white);
border: 3px solid var(--border);
padding: 0.6rem 1.2rem;
display: flex;
align-items: center;
gap: 0.5rem;
box-shadow: 4px 4px 0 var(--border);
}

.badge-dot {
width: 10px;
height: 10px;
background: var(--primary);
border-radius: 50%;
animation: blink 2s infinite;
}

@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}

.badge-text {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--dark);
}

.marquee-section {
background: var(--primary);
border-top: 4px solid var(--border);
border-bottom: 4px solid var(--border);
padding: 0.8rem 0;
overflow: hidden;
}

.marquee-track {
overflow: hidden;
white-space: nowrap;
}

.marquee-content {
display: inline-flex;
gap: 3rem;
animation: marquee-scroll 16s linear infinite;
}

.marquee-content span {
font-family: var(--font);
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--white);
}

@keyframes marquee-scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

.mvo-section {
background: var(--cream-dark);
padding: 5rem 0;
border-top: 4px solid var(--border);
}

.mvo-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}

.mvo-card {
background: var(--white);
border: 4px solid var(--border);
padding: 2.5rem;
box-shadow: 8px 8px 0 var(--border);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.mvo-card:hover {
box-shadow: 4px 4px 0 var(--primary);
transform: translate(4px, 4px);
border-color: var(--primary);
}

.mvo-large {
grid-column: span 2;
background: var(--dark);
color: var(--white);
border-color: var(--border);
}

.mvo-large:hover {
box-shadow: 4px 4px 0 var(--primary-light);
border-color: var(--primary-light);
}

.mvo-large .card-title {
color: var(--white);
}

.mvo-large .card-text {
color: rgba(255,255,255,0.75);
}

.mvo-large .card-icon {
color: var(--primary-light);
}

.card-icon {
font-size: 2rem;
color: var(--primary);
margin-bottom: 1rem;
}

.card-title {
font-size: 1.6rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 1rem;
}

.card-text {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.card-footer-bar {
width: 60px;
height: 5px;
background: var(--primary);
transition: width 0.3s ease;
}

.mvo-card:hover .card-footer-bar {
width: 100%;
}

.mvo-large .card-footer-bar {
background: var(--primary-light);
}

.site-footer {
background: var(--primary);
border-top: 4px solid var(--border);
padding: 3rem 0 0;
}

.footer-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
padding-bottom: 2rem;
}

.footer-brand-block {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.footer-logo {
height: 50px;
width: auto;
object-fit: contain;
filter: brightness(0) invert(1);
}

.footer-brand-text {
font-family: var(--font);
font-weight: 700;
font-size: 1.3rem;
color: var(--white);
letter-spacing: 0.08em;
text-transform: uppercase;
}

.footer-desc {
font-size: 0.9rem;
color: rgba(255,255,255,0.7);
line-height: 1.6;
max-width: 400px;
}

.footer-social {
display: flex;
gap: 0.75rem;
margin-top: 0.5rem;
}

.footer-social-link {
width: 42px;
height: 42px;
display: flex;
align-items: center;
justify-content: center;
background: var(--white);
color: var(--primary);
border: 3px solid var(--border);
font-size: 1rem;
transition: all 0.2s ease;
}

.footer-social-link:hover {
background: var(--dark);
color: var(--white);
border-color: var(--white);
transform: translateY(-3px);
}

.footer-links-block {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}

.link-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.link-group h6 {
font-family: var(--font);
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--white);
margin-bottom: 0.5rem;
}

.link-group a {
font-size: 0.85rem;
color: rgba(255,255,255,0.7);
display: block;
}

.link-group a:hover {
color: var(--white);
padding-left: 0.4rem;
}

.footer-bottom {
border-top: 2px solid rgba(255,255,255,0.15);
padding: 1.2rem 0;
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}

.copyright {
font-size: 0.8rem;
color: rgba(255,255,255,0.6);
}

.footer-tag {
font-size: 0.8rem;
color: rgba(255,255,255,0.6);
font-weight: 500;
}

@media (max-width: 991.98px) {
.hero-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.hero-image {
height: 350px;
}

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

.mvo-large {
grid-column: span 1;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
}

@media (max-width: 575.98px) {
.hero-title {
font-size: 2.5rem;
}

.hero-cta {
flex-direction: column;
}

.btn-primary-custom,
.btn-secondary-custom {
width: 100%;
justify-content: center;
}

.hero-image {
height: 280px;
box-shadow: 6px 6px 0 var(--primary);
}

.image-badge {
left: 10px;
bottom: -15px;
padding: 0.4rem 0.8rem;
}

.footer-links-block {
grid-template-columns: 1fr;
}

.footer-bottom {
flex-direction: column;
gap: 0.5rem;
text-align: center;
}
}
