@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Nunito+Sans:wght@300;400;500;600&display=swap');

:root {
    --color-primary: #D4A574;
    --color-primary-dark: #B8956A;
    --color-primary-light: #E8C9A8;
    --color-secondary: #8B7355;
    --color-accent: #C9B8A8;
    --color-bg: #FAF7F4;
    --color-bg-alt: #F5F0EB;
    --color-bg-dark: #EDE6DE;
    --color-text: #4A4039;
    --color-text-light: #6B5D52;
    --color-text-muted: #9A8B7D;
    --color-white: #FFFFFF;
    --color-border: #E8DDD4;
    --color-success: #7A9E7A;
    --color-error: #C87070;

    --font-primary: 'Cormorant Garamond', Georgia, serif;
    --font-secondary: 'Nunito Sans', sans-serif;

    --text-xs: 0.7rem;
    --text-sm: 0.8rem;
    --text-base: 0.9rem;
    --text-md: 1rem;
    --text-lg: 1.15rem;
    --text-xl: 1.4rem;
    --text-2xl: 1.8rem;
    --text-3xl: 2.2rem;
    --text-4xl: 2.8rem;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;

    --shadow-sm: 0 1px 3px rgba(74, 64, 57, 0.08);
    --shadow-md: 0 4px 12px rgba(74, 64, 57, 0.1);
    --shadow-lg: 0 8px 24px rgba(74, 64, 57, 0.12);
    --shadow-xl: 0 12px 40px rgba(74, 64, 57, 0.15);

    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;

    --container-max: 1200px;
    --header-height: 70px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: var(--text-3xl);
}

h2 {
    font-size: var(--text-2xl);
}

h3 {
    font-size: var(--text-xl);
}

h4 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-dark);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: var(--space-md) 0;
    transition: all var(--transition-slow);
}

.header.scrolled {
    position: fixed;
    background-color: rgba(250, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.logo:hover {
    color: var(--color-primary-dark);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-desktop a {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-weight: 400;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--color-primary-dark);
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-bg);
    padding: var(--space-3xl) var(--space-xl);
    transition: right var(--transition-slow);
    z-index: 105;
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav a {
    display: block;
    font-size: var(--text-md);
    color: var(--color-text);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav a:hover {
    color: var(--color-primary-dark);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 64, 57, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 104;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: var(--space-3xl) 0;
}

.hero-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.hero h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.hero p {
    font-size: var(--text-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    color: var(--color-primary-dark);
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.card h3 {
    font-size: var(--text-md);
    margin-bottom: var(--space-sm);
}

.card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-img {
    position: relative;
    height: 180px;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: var(--space-md);
}

.product-info h3 {
    font-size: var(--text-md);
    margin-bottom: var(--space-xs);
}

.product-info p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.product-price {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.about-content {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-text h2 {
    margin-bottom: var(--space-md);
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.features-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.features-list i {
    color: var(--color-success);
}

.process-grid {
    display: grid;
    gap: var(--space-lg);
}

.process-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.process-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.process-content h3 {
    font-size: var(--text-md);
    margin-bottom: var(--space-xs);
}

.process-content p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.testimonial {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-family: var(--font-primary);
    font-size: var(--text-md);
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
}

.testimonial-name {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
}

.testimonial-location {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-bg);
}

.contact-section {
    padding: var(--space-3xl) 0;
}

.contact-wrapper {
    display: grid;
    gap: var(--space-xl);
}

.contact-info {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    color: var(--color-white);
}

.contact-info h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.contact-info>p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-item-text {
    font-size: var(--text-sm);
}

.contact-item-text strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.contact-item-text a {
    color: var(--color-white);
    opacity: 0.9;
}

.contact-item-text a:hover {
    opacity: 1;
}

.contact-form-wrap {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    line-height: 1.4;
}

.form-checkbox a {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.map-container {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: var(--space-lg) 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
}

.footer-links a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copy {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

.page-hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--space-md);
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--text-xs);
}

.breadcrumb a {
    color: var(--color-text-muted);
}

.breadcrumb span {
    color: var(--color-text-muted);
}

.breadcrumb-current {
    color: var(--color-text);
}

.content-section {
    padding: var(--space-2xl) 0;
}

.content-box {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.content-box h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.content-box h3 {
    font-size: var(--text-md);
    margin: var(--space-lg) 0 var(--space-sm);
}

.content-box p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

.content-box ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.content-box li {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
}

.error-content .hero-btns {
    justify-content: center;
}

.error-content h1 {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.error-content h2 {
    margin-bottom: var(--space-md);
}

.error-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background-color: var(--color-success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--text-2xl);
}

.thank-you-content h1 {
    margin-bottom: var(--space-md);
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    box-shadow: 0 -4px 20px rgba(74, 64, 57, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cookie-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.cookie-text a {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: var(--space-sm);
}

.privacy-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 64, 57, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: var(--space-md);
}

.privacy-popup.show {
    opacity: 1;
    visibility: visible;
}

.privacy-popup-content {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.privacy-popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.privacy-popup-close:hover {
    color: var(--color-text);
}

.privacy-popup h3 {
    margin-bottom: var(--space-md);
}

.privacy-popup p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: none;
    border: none;
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--color-bg-alt);
}

.faq-question i {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    max-height: 500px;
}

.faq-answer p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-num {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 180px;
    }
}

@media (min-width: 640px) {
    :root {
        --text-3xl: 2.5rem;
        --text-4xl: 3.2rem;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .burger {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item img {
        height: 200px;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content {
        max-width: 550px;
    }

    .hero h1 {
        font-size: var(--text-4xl);
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

@media (max-width: 320px) {
    :root {
        --text-3xl: 1.6rem;
        --text-2xl: 1.4rem;
        --text-xl: 1.2rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}