/* ==========================================================================
   La Florada - styles.css
   Sitio institucional para Cremona Company S.A.
   Mobile-first, sin dependencias externas
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */

:root {
    /* Colors */
    --color-cream: #FBF7EF;
    --color-cream-dark: #F5EFE3;
    --color-cacao: #1E1A14;
    --color-cacao-light: #2D2821;
    --color-gold: #D3A21B;
    --color-gold-dark: #B8891A;
    --color-caramel: #7A4E1D;
    --color-green: #2E5E4E;
    --color-green-light: #3A7562;

    /* Typography */
    --font-serif: Georgia, "Times New Roman", Times, ui-serif, serif;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(30, 26, 20, 0.05);
    --shadow-md: 0 4px 6px rgba(30, 26, 20, 0.07);
    --shadow-lg: 0 10px 25px rgba(30, 26, 20, 0.1);
    --shadow-xl: 0 20px 40px rgba(30, 26, 20, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 80rem;
    --container-narrow: 48rem;
    --container-padding: 1.5rem;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-cacao);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    z-index: 9999;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-gold);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* ==========================================================================
   Typography
   ========================================================================== */

.text-gold {
    color: var(--color-gold);
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: var(--space-lg);
}

.section-description {
    font-size: 1.125rem;
    color: rgba(30, 26, 20, 0.7);
    max-width: 42rem;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-cacao);
    color: white;
}

.btn-primary:hover {
    background: var(--color-caramel);
}

.btn-gold {
    background: var(--color-gold);
    color: white;
}

.btn-gold:hover {
    background: var(--color-caramel);
    transform: scale(1.02);
}

.btn-gold:active {
    transform: scale(0.98);
}

.btn-outline {
    border: 2px solid var(--color-cacao);
    color: var(--color-cacao);
}

.btn-outline:hover {
    background: var(--color-cacao);
    color: white;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Icons
   ========================================================================== */

.icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background: rgba(251, 247, 239, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: auto;
    /* Allow natural width */
    height: 4rem;
    /* Fixed height for consistency */
    object-fit: contain;
    /* Prevent distortion */
    max-width: 12rem;
    /* Ensure it doesn't get too wide */
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-menu {
    display: none;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-cta {
    display: none;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(211, 162, 27, 0.1);
}

.nav-toggle .icon-close {
    display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
    display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
    display: block;
}

/* Ensure Toggle is visible above overlay */
.nav-toggle {
    z-index: 250;
    /* Must be above mobile menu overlay */
}

/* Mobile Navigation Overlay */
.nav-mobile {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    /* Dynamic viewport height to fix mobile browser bar issues */
    background-color: var(--color-cream);
    z-index: 200;
    /* Above header (100) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4xl) var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    overflow-y: auto;
    /* Allow scrolling if content is tall */
}

.nav-mobile[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.nav-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    width: 100%;
    max-width: 20rem;
}

.nav-mobile-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-cacao);
    transition: color var(--transition-fast);
}

.nav-mobile-link:hover {
    color: var(--color-gold);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .nav-toggle {
        display: none;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    border-radius: 30px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
}

.hero>.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3xl);
}

.hero-content {
    max-width: 42rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(211, 162, 27, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-caramel);
    margin-bottom: var(--space-xl);
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    /* Reduced max size further */
    margin-bottom: var(--space-lg);
    max-width: 30ch;
    /* Increased again to definitely allow 2 lines */
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(30, 26, 20, 0.7);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    max-width: 40ch;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    /* Force square aspect ratio */
    margin: 0 auto;
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover container to avoid white bars */
    border-radius: 30px;
    /* Ensure rounded corners */
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(-25%);
    }

    50% {
        transform: translateX(-50%) translateY(0);
    }
}

@media (min-width: 768px) {
    .hero>.container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-illustration {
        width: 20rem;
        height: 20rem;
    }
}

@media (min-width: 1024px) {
    .hero-illustration {
        width: 750px;
        height: 500px;
    }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-white {
    background: white;
}

.section-cream {
    background: var(--color-cream);
}

.section-dark {
    background: var(--color-cacao);
    color: white;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.section-green {
    background: var(--color-green);
    color: white;
}

.section-green .section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Products Section
   ========================================================================== */

/* Main container inside the section */
.products-carousel {
    position: relative;
    /* Remove overflow from here so arrows don't scroll with content */
    margin: 0;
    padding: 0;
}

.products-track-container {
    position: relative;
    max-width: 100%;
}

.products-track {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    padding: var(--space-lg) var(--space-xl);
    /* Add padding for shadow/hover space */
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.products-track::-webkit-scrollbar {
    display: none;
}

.slider-arrow {
    display: none;
    /* Hidden on mobile */
    position: absolute;
    /* Fix position relative to container */
    top: 50%;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: transform var(--transition-base), color var(--transition-base);
}

.slider-arrow svg {
    width: 3rem;
    height: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    /* Add visibility against white */
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    color: var(--color-caramel);
}

.slider-prev {
    left: -1rem;
    /* Pull out slightly */
}

.slider-next {
    right: -1rem;
}

/* Show arrows on desktop */
@media (min-width: 768px) {
    .slider-arrow {
        display: flex;
    }
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(30, 26, 20, 0.2);
    cursor: pointer;
    transition: background var(--transition-fast);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

.product-card {
    flex-shrink: 0;
    width: 18rem;
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    scroll-snap-align: center;
    transition: box-shadow var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
}

.product-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    /* Resize to fill */
    height: 100%;
    object-fit: contain;
    /* Keep product ratio inside box */
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.product-name {
    font-size: 1.25rem;
    font-family: var(--font-serif);
}

.product-weight {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(211, 162, 27, 0.2);
    color: var(--color-caramel);
    border-radius: var(--radius-full);
}

.product-description {
    font-size: 0.875rem;
    color: rgba(30, 26, 20, 0.6);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gold);
}

.product-link .icon {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-fast);
}

.product-link:hover .icon {
    transform: translateX(4px);
}

.products-hint {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(30, 26, 20, 0.4);
    margin-top: var(--space-md);
}

@media (min-width: 768px) {
    .product-card {
        width: 20rem;
    }

    .slider-arrow {
        display: flex;
    }
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process-grid {
    display: grid;
    gap: var(--space-xl);
}

.process-card {
    position: relative;
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: box-shadow var(--transition-base);
}

.process-card:hover {
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: rgba(211, 162, 27, 0.1);
    line-height: 1;
    transition: color var(--transition-base);
}

.process-card:hover .process-number {
    color: rgba(211, 162, 27, 0.2);
}

.process-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 162, 27, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    transition: background var(--transition-base);
}

.process-card:hover .process-icon {
    background: rgba(211, 162, 27, 0.2);
}

.process-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-gold);
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.process-description {
    font-size: 0.9375rem;
    color: rgba(30, 26, 20, 0.6);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-grid {
    display: grid;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
}

.about-image-wrapper {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(211, 162, 27, 0.2) 0%, rgba(122, 78, 29, 0.2) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    /* Ensure image respects border radius */
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the square */
}

@media (max-width: 767px) {
    .about-image-wrapper {
        max-width: 100%;
        /* Allow full width on mobile */
        margin: 0 auto;
    }

    /* Ensure badge is visible and doesn't cut off */
    .about-image {
        margin-bottom: var(--space-xl);
        /* Make room for badge */
    }

    .about-badge {
        bottom: -1rem;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: max-content;
    }
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--color-gold);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.about-badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-content .section-eyebrow {
    color: var(--color-gold);
}

.about-text {
    margin-bottom: var(--space-xl);
}

.about-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.about-text strong {
    color: white;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   Commitment Section
   ========================================================================== */

.commitment-grid {
    display: grid;
    gap: var(--space-xl);
}

.commitment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: background var(--transition-base);
}

.commitment-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.commitment-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 162, 27, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.commitment-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--color-gold);
}

.commitment-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.commitment-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .commitment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    font-family: var(--font-serif);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    list-style: none;
    transition: background var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(211, 162, 27, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 162, 27, 0.1);
    border-radius: 50%;
    margin-left: var(--space-md);
    transition: transform var(--transition-base);
}

.faq-icon::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--transition-base);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: rgba(30, 26, 20, 0.7);
    line-height: 1.7;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-grid {
    display: grid;
    gap: var(--space-3xl);
}

.contact-intro {
    font-size: 1.125rem;
    color: rgba(30, 26, 20, 0.7);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 162, 27, 0.1);
    border-radius: var(--radius-md);
}

.contact-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gold);
}

.contact-item strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.contact-item p {
    color: rgba(30, 26, 20, 0.7);
    font-size: 0.9375rem;
}

.contact-item a {
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-caramel);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cacao);
    color: white;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    background: var(--color-cream);
    border: 1px solid rgba(30, 26, 20, 0.1);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(211, 162, 27, 0.2);
}

.form-group textarea {
    resize: none;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-wrapper {
        padding: var(--space-2xl);
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--color-cacao);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
    text-align: center;
}

.footer-grid {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo img {
    width: auto;
    height: 5rem;
    /* Increased size for footer */
    object-fit: contain;
    max-width: 100%;
}

/* Removed .footer-logo span as it's no longer used */

/* Negative Logo Filter */
.logo-negative {
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
    max-width: 24rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.footer-company {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-nav h4 {
    font-size: 1rem;
    font-family: var(--font-sans);
    margin-bottom: var(--space-md);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    align-items: center;
}

@media (min-width: 768px) {
    .footer {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        justify-items: start;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-tagline {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-nav ul {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {

    .header,
    .hero-scroll,
    .nav-toggle,
    .btn,
    .social-links,
    .contact-form-wrapper {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
        background: white;
    }

    .section {
        padding: 1cm 0;
    }

    a {
        text-decoration: underline;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}