@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');
:root {
    --color-charcoal: #2d2d2d;
    --color-gold: #c9a962;
    --color-gold-light: #d4bc7a;
    --color-cream: #f8f5f0;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-gray: #6b6b6b;
    --color-gray-light: #e8e8e8;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
}
.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}
.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 13px;
    color: var(--color-gray);
    max-width: 500px;
    margin-bottom: 30px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}
.header.hidden {
    transform: translateY(-100%);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 7px;
    background: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 15px;
}
.logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: 1px;
}
.logo span {
    color: var(--color-gold);
}
.nav-desktop {
    display: flex;
    gap: 25px;
}
.nav-desktop a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-charcoal);
    position: relative;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-charcoal);
    transition: all 0.3s ease;
}
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-cream);
    padding: 60px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}
.nav-mobile.active {
    right: 0;
}
.nav-mobile-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-charcoal);
}
.nav-mobile a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-charcoal);
    border-bottom: 1px solid var(--color-gray-light);
}
.nav-mobile a:hover {
    color: var(--color-gold);
}
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}
.nav-overlay.active {
    display: block;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    background: linear-gradient(135deg, var(--color-cream) 0%, #efe9df 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(201, 169, 98, 0.05) 50%, transparent 70%);
    transform: rotate(-15deg);
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: 20px;
}
.hero-text h1 span {
    color: var(--color-gold);
    font-style: italic;
}
.hero-text p {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 25px;
    max-width: 400px;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    z-index: -1;
}
.about-section {
    padding: 80px 0;
    background: var(--color-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: 8px;
}
.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 15px 25px;
    border-radius: 4px;
}
.about-image-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
}
.about-image-badge small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-item i {
    color: var(--color-gold);
    font-size: 18px;
    margin-top: 2px;
}
.feature-item h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}
.feature-item p {
    font-size: 12px;
    color: var(--color-gray);
}
.services-section {
    padding: 80px 0;
    background: var(--color-charcoal);
    color: var(--color-white);
}
.services-section .section-title {
    color: var(--color-white);
    text-align: center;
}
.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0 auto 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 98, 0.1);
}
.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.service-card i {
    font-size: 36px;
    color: var(--color-gold);
    margin-bottom: 15px;
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}
.products-section {
    padding: 80px 0;
    background: var(--color-cream);
}
.products-section .section-title,
.products-section .section-subtitle {
    text-align: center;
}
.products-section .section-subtitle {
    margin: 0 auto 40px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.product-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}
.product-info {
    padding: 20px;
}
.product-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}
.product-info p {
    font-size: 12px;
    color: var(--color-gray);
    margin-bottom: 12px;
}
.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-gold);
}
.product-price small {
    font-size: 11px;
    color: var(--color-gray);
    font-weight: 400;
}
.testimonials-section {
    padding: 80px 0;
    background: var(--color-white);
}
.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    text-align: center;
}
.testimonials-section .section-subtitle {
    margin: 0 auto 40px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.testimonial-card {
    background: var(--color-cream);
    padding: 25px;
    border-radius: 8px;
    position: relative;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--color-gold);
    opacity: 0.3;
}
.testimonial-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 15px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}
.testimonial-author-info h4 {
    font-size: 13px;
    font-weight: 600;
}
.testimonial-author-info p {
    font-size: 11px;
    color: var(--color-gray);
}
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-section .section-title {
    color: var(--color-white);
}
.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 30px;
}
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dark) 100%);
    text-align: center;
    color: var(--color-white);
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
}
.breadcrumb a {
    color: var(--color-gold);
}
.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}
.content-section {
    padding: 60px 0;
}
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.content-main h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--color-charcoal);
}
.content-main h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin: 25px 0 12px;
    color: var(--color-charcoal);
}
.content-main p {
    margin-bottom: 15px;
    color: var(--color-gray);
    line-height: 1.8;
}
.content-main ul {
    margin: 15px 0;
    padding-left: 20px;
}
.content-main li {
    margin-bottom: 8px;
    color: var(--color-gray);
    position: relative;
    padding-left: 15px;
}
.content-main li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--color-gold);
    border-radius: 50%;
}
.sidebar {
    position: sticky;
    top: 80px;
}
.sidebar-widget {
    background: var(--color-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-gray-light);
}
.sidebar-widget ul li {
    margin-bottom: 10px;
}
.sidebar-widget ul li a {
    font-size: 13px;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-widget ul li a:hover {
    color: var(--color-gold);
}
.sidebar-widget ul li a i {
    color: var(--color-gold);
    font-size: 12px;
}
.contact-section {
    padding: 60px 0;
    background: var(--color-cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info {
    background: var(--color-charcoal);
    padding: 40px;
    border-radius: 8px;
    color: var(--color-white);
}
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}
.contact-details {
    margin-bottom: 25px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}
.contact-item i {
    color: var(--color-gold);
    font-size: 16px;
    margin-top: 2px;
}
.contact-item span {
    font-size: 13px;
}
.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-charcoal);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--color-gray-light);
    border-radius: 4px;
    background: var(--color-cream);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}
.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--color-gold);
}
.form-checkbox label {
    font-size: 11px;
    color: var(--color-gray);
    line-height: 1.5;
}
.form-checkbox a {
    color: var(--color-gold);
}
.map-section {
    height: 350px;
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%);
}
.error-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.error-content h1 {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--color-gold);
    line-height: 1;
}
.error-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
}
.error-content p {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 25px;
}
.thankyou-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.thankyou-content i {
    font-size: 60px;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.thankyou-content h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
}
.thankyou-content p {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 25px;
    max-width: 500px;
}
.policy-section {
    padding: 60px 0;
}
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}
.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--color-charcoal);
}
.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--color-charcoal);
}
.policy-content p {
    margin-bottom: 15px;
    color: var(--color-gray);
    line-height: 1.8;
}
.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}
.policy-content li {
    margin-bottom: 10px;
    color: var(--color-gray);
    position: relative;
    padding-left: 15px;
}
.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--color-gold);
    border-radius: 50%;
}
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 30px 0 15px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}
.footer-logo span {
    color: var(--color-gold);
}
.footer-nav {
    display: flex;
    gap: 20px;
}
.footer-nav a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-nav a:hover {
    color: var(--color-gold);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
}
.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-policies {
    display: flex;
    gap: 15px;
}
.footer-policies a {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-policies a:hover {
    color: var(--color-gold);
}
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-popup.show {
    transform: translateY(0);
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.cookie-text {
    font-size: 12px;
    flex: 1;
}
.cookie-text a {
    color: var(--color-gold);
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    padding: 8px 18px;
    font-size: 11px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}
.cookie-accept {
    background: var(--color-gold);
    color: var(--color-dark);
}
.cookie-decline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.promo-section {
    padding: 80px 0;
    background: linear-gradient(to right, var(--color-cream) 50%, var(--color-gold) 50%);
}
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.promo-text {
    padding-right: 40px;
}
.promo-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
}
.promo-text p {
    color: var(--color-gray);
    margin-bottom: 20px;
}
.promo-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}
.stat-item {
    text-align: center;
}
.stat-item span {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gold);
}
.stat-item small {
    font-size: 11px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.promo-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.promo-image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.process-section {
    padding: 80px 0;
    background: var(--color-white);
}
.process-section .section-title,
.process-section .section-subtitle {
    text-align: center;
}
.process-section .section-subtitle {
    margin: 0 auto 40px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--color-gold);
}
.process-step:last-child::after {
    display: none;
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}
.process-step h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 12px;
    color: var(--color-gray);
}
.gallery-section {
    padding: 60px 0;
    background: var(--color-cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.faq-section {
    padding: 60px 0;
    background: var(--color-white);
}
.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--color-gray-light);
    padding: 18px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}
.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}
.faq-question i {
    color: var(--color-gold);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding-top: 12px;
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.materials-section {
    padding: 60px 0;
    background: var(--color-cream);
}
.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.material-card {
    background: var(--color-white);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gray-light);
}
.material-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}
.material-card i {
    font-size: 30px;
    color: var(--color-gold);
    margin-bottom: 12px;
}
.material-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
}
.material-card p {
    font-size: 11px;
    color: var(--color-gray);
}
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p {
        margin: 0 auto 25px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .promo-section {
        background: var(--color-cream);
    }
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .promo-text {
        padding-right: 0;
        text-align: center;
    }
    .promo-stats {
        justify-content: center;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step::after {
        display: none;
    }
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-mobile {
        display: block;
    }
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-image::before {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .materials-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    .section-title {
        font-size: 26px;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-image-badge {
        position: static;
        margin-top: 15px;
        text-align: center;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    .error-content h1 {
        font-size: 80px;
    }
    .footer-policies {
        flex-wrap: wrap;
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    .container {
        padding: 0 10px;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .section-title {
        font-size: 24px;
    }
    .logo {
        font-size: 16px;
    }
}