/* Root Variables */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --gold: #C8A46B;
    --light-gray: #F5F5F5;
    --medium-gray: #E8E8E8;
    --dark-gray: #333333;
    --text-gray: #555555;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.8px;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.5px;
    line-height: 1.25;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.9;
    letter-spacing: 0.4px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: var(--white);
    border-bottom: 1px solid rgba(200, 164, 107, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
    transition: all 0.25s ease;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--black);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
    }

    .navbar-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
        border-bottom: 1px solid rgba(200, 164, 107, 0.15);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 0;
        width: 100%;
    }
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    gap: 10px;
    letter-spacing: 0.5px;
}

.button-primary {
    background-color: var(--black);
    color: var(--white);
}

.button-primary:hover {
    background-color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(200, 164, 107, 0.3);
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: var(--black);
}

.button-secondary:hover {
    background-color: rgba(200, 164, 107, 0.08);
    box-shadow: 0 6px 16px rgba(200, 164, 107, 0.2);
}

.button-hero {
    background-color: var(--white);
    color: var(--black);
}

.button-hero:hover {
    background-color: #f5f5f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Floating Button */
.floating-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(200, 164, 107, 0.2);
}

.floating-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 164, 107, 0.3);
}

@media (max-width: 768px) {
    .floating-button {
        bottom: 30px;
        right: 30px;
        width: 55px;
        height: 55px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(139, 100, 60, 0.25));
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(200, 164, 107, 0.01) 0px,
            rgba(200, 164, 107, 0.01) 1px,
            transparent 1px,
            transparent 2px
        );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background-color: var(--gold);
    animation: slideInGold 1s ease 0.5s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes slideInGold {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .button {
        width: 100%;
    }

    .hero-title {
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        margin-bottom: 2.5rem;
    }
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 5%, var(--gold) 20%, var(--gold) 80%, transparent 95%);
}

.section:first-of-type::before {
    display: none;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--black);
    position: relative;
    padding-bottom: 30px;
    letter-spacing: -0.4px;
    font-weight: 700;
    line-height: 1.25;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background-color: var(--gold);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.image-modern {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gold);
    animation: fadeInScale 0.8s ease 0.3s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    padding: 35px 25px;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(200, 164, 107, 0.01) 10px, rgba(200, 164, 107, 0.01) 20px);
    pointer-events: none;
}

.value-card:hover {
    box-shadow: 0 10px 28px rgba(200, 164, 107, 0.16);
    transform: translateY(-2px);
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon svg {
    transform: scale(1.1);
}

.value-card h4 {
    margin-bottom: 0.75rem;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 0.3px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.value-card p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .section-title {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
}

/* Products Section */
.products {
    background-color: var(--white);
}

.products-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.products-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.products-slider::-webkit-scrollbar {
    height: 6px;
}

.products-slider::-webkit-scrollbar-track {
    background: rgba(200, 164, 107, 0.1);
    border-radius: 3px;
}

.products-slider::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.product-slide {
    flex: 0 0 65%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInSlide 0.8s ease both;
}

.product-slide:nth-child(1) {
    animation-delay: 0s;
}

.product-slide:nth-child(2) {
    animation-delay: 0.1s;
}

.product-slide:nth-child(3) {
    animation-delay: 0.2s;
}

.product-slide:nth-child(4) {
    animation-delay: 0.3s;
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(139, 100, 60, 0.25);
    transition: transform 0.4s ease;
}

.product-slide:hover .product-image {
    transform: scale(1.01);
}

.product-content {
    padding: 0;
}

.product-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.product-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--gold);
}

.slider-nav:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(200, 164, 107, 0.3);
}

.slider-nav-prev {
    left: 0;
}

.slider-nav-next {
    right: 0;
}

.slider-nav svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.slider-progress {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
    padding-bottom: 20px;
}

.progress-bar {
    width: 40px;
    height: 2px;
    background: rgba(200, 164, 107, 0.3);
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-bar.active {
    background: var(--gold);
    width: 60px;
}

@media (max-width: 1024px) {
    .product-slide {
        flex: 0 0 75%;
    }

    .products-slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .product-slide {
        flex: 0 0 85%;
    }

    .products-slider-container {
        padding: 0 20px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
    }

    .product-image {
        height: 300px;
    }

    .product-content h3 {
        font-size: 1.25rem;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-top: 0;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(139, 100, 60, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    animation: fadeInSlideUp 0.7s ease both;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
    animation-delay: 0s;
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
    animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
    animation-delay: 0.15s;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
    animation-delay: 0.1s;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
    animation-delay: 0.2s;
}

.gallery-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
    animation-delay: 0.05s;
}

.gallery-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 1;
    animation-delay: 0.15s;
}

.gallery-item:nth-child(9) {
    grid-column: span 2;
    grid-row: span 1;
    animation-delay: 0.25s;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    box-shadow: 0 16px 40px rgba(200, 164, 107, 0.2);
    transform: translateY(-4px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-large {
    grid-column: auto;
    grid-row: auto;
}

.gallery-small {
    grid-column: auto;
    grid-row: auto;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
        gap: 18px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(2) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section {
        padding: 80px 0;
    }
}

/* Why Choose Section */
.why-choose {
    background-color: #faf8f5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 25px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
    box-shadow: none;
    border: none;
    position: relative;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item:hover::before {
    width: 100%;
}

.why-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold);
    margin-top: 0.5rem;
}

.why-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.3;
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon svg {
    transform: scale(1.1);
}

.why-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .why-item {
        padding: 20px 15px;
    }
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInSlide 0.6s ease both;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
    padding: 45px 40px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    box-shadow: 0 8px 24px rgba(139, 100, 60, 0.1);
}

.info-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-block:hover h3 {
    color: var(--gold);
}

.info-icon {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    stroke-width: 1.5;
    margin-bottom: 0.5rem;
}

.info-block h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
}

.info-block p {
    color: var(--text-gray);
    line-height: 1.8;
    letter-spacing: 0.4px;
    margin: 0;
    font-size: 1.05rem;
}

.info-block a {
    color: var(--gold);
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.info-block a:hover {
    color: var(--black);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-actions .button {
    flex: 1;
    min-width: 150px;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(139, 100, 60, 0.15);
    border: 1px solid var(--gold);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        padding: 35px 25px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .info-block {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 50px;
    margin-top: 120px;
    border-top: 1px solid var(--gold);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: center;
}

.logo-footer {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer:hover .logo-footer {
    transform: scale(1.05);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0.75rem 0;
    line-height: 1.8;
    letter-spacing: 0.25px;
    transition: color 0.3s ease;
}

.footer-info p:hover {
    color: var(--gold);
}

.footer-legal a {
    color: var(--gold);
    transition: color 0.25s ease;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer {
        padding: 60px 0 40px;
        margin-top: 80px;
    }

    .logo-footer {
        max-height: 40px;
    }
}

/* Utility Classes */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Subtle grain texture utility */
.grain-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200, 164, 107, 0.02) 2px,
            rgba(200, 164, 107, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Print styles */
@media print {
    .navbar,
    .floating-button,
    .footer {
        display: none;
    }

    body {
        color: var(--black);
        background-color: var(--white);
    }
}
