:root {
    --color-primary: #1c3a5e;
    --color-secondary: #c8922a;
    --color-accent: #8b1a1a;
    --color-dark: #0d1b2a;
    --color-light: #f5f0e8;
    --color-cream: #faf7f2;
    --color-gray: #6b7280;
    --color-text: #1f2937;
    --color-border: #e8e0d0;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
    --font-accent: 'Merriweather', Georgia, serif;
    --font-nav: 'Raleway', 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 16px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    margin-bottom: 1.2em;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content p {
    font-family: var(--font-nav);
    color: var(--color-gray);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    box-shadow: var(--shadow-md);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(200, 146, 42, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    filter: brightness(1.1);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-accent {
    color: var(--color-secondary);
}

.logo-tagline {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: rgba(200, 146, 42, 0.8);
    font-style: italic;
    letter-spacing: 1px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 4px;
    padding: 10px 0;
}

.nav-list a {
    display: block;
    padding: 9px 18px;
    font-family: var(--font-nav);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

.nav-list a:hover,
.nav-list a.active {
    color: #fff;
    background: rgba(200, 146, 42, 0.15);
}

.site-main {
    margin-top: 118px;
    min-height: calc(100vh - 400px);
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -118px;
    padding-top: 118px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        160deg,
        rgba(13, 27, 42, 0.55) 0%,
        rgba(28, 58, 94, 0.45) 50%,
        rgba(13, 27, 42, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 0 30px;
}

.hero-badge {
    display: inline-block;
    padding: 7px 22px;
    background: rgba(200, 146, 42, 0.9);
    color: #fff;
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.hero-title {
    color: #fff;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: rgba(255,255,255,0.88);
    font-style: italic;
    max-width: 680px;
    margin: 0 auto 30px;
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.hero-cta:hover {
    background: #b07820;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 146, 42, 0.4);
}

.section {
    padding: 80px 20px;
}

.section-alt {
    background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
}

.section-dark {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    color: #fff;
}

.section-stone {
    background: linear-gradient(180deg, var(--color-light) 0%, #ede8de 100%);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 14px;
}

.section-title {
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-gray);
    font-family: var(--font-accent);
    font-style: italic;
}

.featured-grid {
    display: grid;
    gap: 28px;
}

.featured-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.featured-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.featured-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 146, 42, 0.3);
}

.card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.06);
}

.card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 13px;
    background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-nav);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.card-body {
    padding: 26px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-title a {
    color: var(--color-dark);
}

.card-title a:hover {
    color: var(--color-secondary);
}

.card-excerpt {
    color: var(--color-gray);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-nav);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.card-link:hover::after {
    transform: translateX(5px);
}

.highlight-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.highlight-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.highlight-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.highlight-content h2 {
    margin-bottom: 18px;
}

.highlight-content p {
    color: var(--color-gray);
    margin-bottom: 14px;
    font-size: 1rem;
}

.highlight-list {
    list-style: none;
    margin: 22px 0;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 11px;
    font-size: 0.97rem;
}

.highlight-list li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 0.7rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn {
    display: inline-block;
    padding: 13px 30px;
    font-family: var(--font-nav);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-secondary);
    color: #fff;
}

.btn-primary:hover {
    background: #b07820;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 146, 42, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-light:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.info-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 34px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    border-color: rgba(200, 146, 42, 0.4);
}

.info-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--color-secondary), #e8a830);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.93rem;
    opacity: 0.85;
    margin-bottom: 0;
}

.page-header {
    position: relative;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    text-align: center;
    margin-top: -118px;
    padding-top: 178px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(200,146,42,0.1)"/><circle cx="80" cy="60" r="1.5" fill="rgba(200,146,42,0.08)"/><circle cx="50" cy="80" r="1" fill="rgba(200,146,42,0.06)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.page-header-desc {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.82);
    font-style: italic;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    font-family: var(--font-nav);
    font-size: 0.82rem;
    position: relative;
}

.breadcrumb a {
    color: rgba(255,255,255,0.65);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: var(--color-secondary);
}

.content-section {
    padding: 60px 20px;
}

.content-wrapper {
    max-width: 880px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin: 50px 0 22px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.content-wrapper h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-wrapper h3 {
    margin: 32px 0 16px;
    color: var(--color-primary);
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 18px 0;
    padding-left: 24px;
}

.content-wrapper li {
    margin-bottom: 9px;
}

.content-image {
    margin: 38px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: auto;
}

.content-image figcaption {
    padding: 13px 18px;
    background: var(--color-light);
    font-size: 0.88rem;
    color: var(--color-gray);
    font-style: italic;
    text-align: center;
    font-family: var(--font-accent);
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 146, 42, 0.3);
}

.contact-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--color-secondary), #e8a830);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.contact-card h3 {
    font-size: 1.15rem;
    margin-bottom: 9px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--color-gray);
    margin-bottom: 13px;
}

.contact-link {
    font-family: var(--font-nav);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-primary);
    word-break: break-all;
}

.faq-section {
    padding: 60px 20px;
    background: var(--color-light);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 13px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 22px 18px;
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.78);
    padding: 60px 20px 28px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 38px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-secondary);
    display: inline-block;
}

.footer-about p {
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-about .update-date {
    font-size: 0.82rem;
    color: var(--color-secondary);
    margin-top: 13px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 9px;
}

.footer-section ul a {
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.87rem;
}

.footer-bottom a {
    color: var(--color-secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: #fff;
    padding: 22px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    border-top: 2px solid var(--color-secondary);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cookie-text h4 {
    color: var(--color-secondary);
    font-size: 1rem;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 0.88rem;
    margin-bottom: 0;
    opacity: 0.88;
}

.cookie-text a {
    color: var(--color-secondary);
}

.cookie-actions {
    display: flex;
    gap: 13px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 11px 26px;
    font-family: var(--font-nav);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--color-secondary);
    color: #fff;
}

.cookie-accept:hover {
    background: #b07820;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.policy-section {
    padding: 60px 20px;
}

.policy-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.policy-wrapper h2 {
    margin: 40px 0 18px;
    padding-top: 26px;
    border-top: 1px solid var(--color-border);
    font-size: 1.5rem;
}

.policy-wrapper h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-wrapper p,
.policy-wrapper li {
    color: var(--color-gray);
    font-size: 0.97rem;
}

.policy-wrapper ul {
    padding-left: 22px;
    margin: 14px 0;
}

.policy-wrapper li {
    margin-bottom: 8px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 40px 0;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.75);
}

@media (max-width: 1024px) {
    .highlight-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-image img {
        height: 360px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.1);
        border-right: none;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .nav-list a {
        font-size: 1.05rem;
        padding: 14px 28px;
    }

    .nav-list a::after {
        display: none;
    }

    .site-main {
        margin-top: 80px;
    }

    .hero-section {
        height: 70vh;
        min-height: 460px;
        margin-top: -80px;
        padding-top: 80px;
    }

    .page-header {
        margin-top: -80px;
        padding-top: 140px;
    }

    .section {
        padding: 50px 15px;
    }

    .featured-grid-2,
    .featured-grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .header-top {
        padding: 11px 0;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero-content {
        padding: 0 18px;
    }

    .card-body {
        padding: 20px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
}
