/* ==========================================
   CSS Variables - Earthy Color Palette
   ========================================== */
:root {
    /* Primary Colors - from Loving Nature brand */
    --burgundy: #8B3A3A;
    --burgundy-dark: #6B2828;
    --burgundy-light: #A04F4F;
    
    /* Neutral Earthy Tones */
    --cream: #F5E6D3;
    --cream-light: #FBF3E8;
    --beige: #E8D5BB;
    --sand: #D4C4A8;
    
    /* Accent Colors */
    --sage: #8B9D83;
    --olive: #6B7D5E;
    --terracotta: #C97D60;
    --warm-brown: #6B4423;
    --deep-green: #3D5A3E;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --light-gray: #E5E0D8;
    --gray: #9B8B7E;
    --charcoal: #3A3330;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Crimson Text', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(59, 43, 38, 0.08);
    --shadow-md: 0 4px 16px rgba(59, 43, 38, 0.12);
    --shadow-lg: 0 8px 32px rgba(59, 43, 38, 0.16);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ==========================================
   Navigation
   ========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(245, 230, 211, 0.98), rgba(245, 230, 211, 0.85));
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-medium);
    transform: translateY(0);
}

.nav.scrolled {
    padding: 1rem 0;
    background: rgba(245, 230, 211, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav.scroll-down {
    transform: translateY(-100%);
}

.nav.scroll-up {
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* FIX 1: Logo — bigger, crisper, better rendering */
.logo-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;           /* was "cover" — contain avoids cropping the logo */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform var(--transition-medium);
    background-color: var(--white); /* prevents transparent gaps on round crop */
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav.scrolled .logo-image {
    width: 55px;
    height: 55px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--warm-brown);
    font-style: italic;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--burgundy);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--burgundy);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================
   Container & Section Utilities
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.6;
}

/* FIX 2: Corporate section header — when h2 is absent, reduce top gap so
   the subtitle doesn't float awkwardly below just the label */
#corporate .section-header {
    margin-bottom: var(--spacing-md);
}

#corporate .section-label {
    margin-bottom: 1.5rem; /* extra breathing room before subtitle */
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn-primary:hover {
    background-color: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn-secondary:hover {
    background-color: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   HERO OPTION 1: Split Screen
   ========================================== */
.hero-option-1 {
    position: relative;
    min-height: 85vh;
    display: flex;
    overflow: hidden;
    background-color: #F5E6D3;
}

/* Left Side - Content */
.hero-left {
    position: relative;
    width: 50%;
    padding: 4rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D5BB 100%);
    z-index: 2;
}

/* Organic curve divider */
.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 200px;
    height: 100%;
    background: inherit;
    border-radius: 50% 0 0 50% / 10% 0 0 10%;
    z-index: 3;
}

.hero-content-left {
    max-width: 550px;
    margin-left: auto;
    padding-right: 3rem;
    animation: slideInLeft 1s ease;
}

/* FIX 3: hero-eyebrow is now a full sentence, not a short label.
   Remove uppercase + wide letter-spacing so it reads naturally on all screens. */
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 1.0625rem;          /* slightly larger than before */
    font-style: italic;
    color: #8B3A3A;
    letter-spacing: 0.3px;         /* was 3px — way too wide for a sentence */
    text-transform: none;           /* was uppercase — removed */
    font-weight: 400;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.5s both;
    max-width: 460px;
}

.hero-title-1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #3A3330;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-title-1 .highlight {
    color: #8B3A3A;
    font-style: italic;
    display: block;
    font-size: 0.7em;
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-description-1 {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #6B4423;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.9s both;
}

/* hero-stats kept in CSS but no longer rendered in HTML — safe to leave */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 1.1s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: #8B3A3A;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: #6B4423;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons-1 {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 1.1s both; /* was 1.3s — adjusted since stats are gone */
}

.btn-1 {
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-primary-1 {
    background-color: #8B3A3A;
    color: white;
    border-color: #8B3A3A;
}

.btn-primary-1:hover {
    background-color: #6B2828;
    border-color: #6B2828;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 58, 58, 0.3);
}

.btn-secondary-1 {
    background-color: transparent;
    color: #8B3A3A;
    border-color: #8B3A3A;
}

.btn-secondary-1:hover {
    background-color: #8B3A3A;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 58, 58, 0.2);
}

/* Right Side - Image Gallery */
.hero-right {
    position: relative;
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #D4C4A8 0%, #C97D60 100%);
    z-index: 3; 
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(58, 51, 48, 0.3);
    animation: fadeInScale 1s ease both;
}

.hero-image:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    animation-delay: 0.5s;
}

.hero-image:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    animation-delay: 0.7s;
}

.hero-image:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    animation-delay: 0.9s;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.1);
}

.hero-image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(245, 230, 211, 0.95);
    color: #3A3330;
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 2px;
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(139, 58, 58, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.decoration-1 {
    top: 10%;
    right: -75px;
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    bottom: 15%;
    left: -75px;
    width: 120px;
    height: 120px;
    animation: float 8s ease-in-out infinite;
}

/* ==========================================
   Hero Section (Original - Fallback)
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--sand) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 58, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 68, 35, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,40 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(245,230,211,0.3)"/></svg>');
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--sage);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.3s both;
}

.hero-title {
    color: var(--burgundy-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-subtitle {
    display: block;
    color: var(--warm-brown);
    font-weight: 500;
    font-style: italic;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollBounce 2s infinite;
}

/* ==========================================
   Corporate Section
   ========================================== */
.corporate-section {
    background: linear-gradient(to bottom, var(--off-white), var(--cream-light));
    position: relative;
}

.corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
    opacity: 0.3;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.corporate-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid rgba(139, 58, 58, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.corporate-card.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.corporate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--burgundy);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.corporate-card h3 {
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.corporate-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

.occasions-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 58, 58, 0.05), rgba(107, 68, 35, 0.05));
    border-radius: 4px;
    margin-top: 3rem;
}

.occasions-title {
    color: var(--burgundy);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.occasions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.occasion-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    color: var(--warm-brown);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid var(--beige);
    transition: all var(--transition-fast);
}

.occasion-tag:hover {
    background-color: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
    transform: translateY(-3px);
}

/* ==========================================
   Collection Section
   ========================================== */
.collection-section {
    background-color: var(--off-white);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
}

.product-card.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 58, 58, 0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-medium);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.product-card:hover .overlay-text {
    transform: translateY(0);
}

.product-content {
    padding: 2rem;
}

.product-title {
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.product-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    /* FIX 4: No margin-bottom needed now that product-features are removed */
    margin-bottom: 0;
}

/* product-features kept in CSS but no longer rendered — safe to leave */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--cream-light);
    color: var(--warm-brown);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid var(--beige);
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery-section {
    background: linear-gradient(to bottom, var(--cream-light), var(--off-white));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.fade-in {
    animation: fadeInScale 0.6s ease forwards;
}

.gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(58, 51, 48, 0.9), transparent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    color: var(--cream-light);
    margin-bottom: 1.5rem;
}

.contact-description {
    color: var(--cream);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--cream-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--cream);
    font-size: 1.125rem;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-cta {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-text {
    color: var(--cream-light);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 2px;
    background-color: var(--off-white);
    color: var(--charcoal);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--charcoal);
    color: var(--cream);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 230, 211, 0.2);
}

.footer-brand h3 {
    color: var(--burgundy-light);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--cream);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-tagline {
    max-width: 500px;
    text-align: right;
}

.footer-tagline p {
    color: var(--sand);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--sand);
    font-size: 0.875rem;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(10px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================
   MOBILE BURGER MENU
   ========================================== */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: var(--transition-fast);
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--burgundy);
    border-radius: 2px;
    transition: all var(--transition-medium);
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ==========================================
   Responsive Design — Tablet (≤1024px)
   ========================================== */
@media (max-width: 1024px) {
    .hero-option-1 {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left::after {
        display: none;
    }

    .hero-content-left {
        padding-right: 0;
        margin: 0 auto;
    }

    .hero-right {
        min-height: 50vh;
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
        aspect-ratio: 1;
    }
}

/* ==========================================
   Responsive Design — Mobile (≤768px)
   ========================================== */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    /* Show burger, hide desktop nav */
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(58, 51, 48, 0.15);
        transition: right var(--transition-medium);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        font-size: 1.25rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(139, 58, 58, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(58, 51, 48, 0.5);
        z-index: -1;
    }

    /* Logo sizes on mobile */
    .logo-image {
        width: 52px;
        height: 52px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    /* FIX 5: Hero eyebrow — keep italic sentence style, just tighten size */
    .hero-eyebrow {
        font-size: 0.9375rem;
        max-width: 100%;
    }

    /* Hero buttons stack on mobile */
    .hero-buttons-1 {
        flex-direction: column;
    }

    .btn-1 {
        text-align: center;
    }

    /* Hero right — stack images vertically on mobile */
    .hero-right {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .hero-image:nth-child(1),
    .hero-image:nth-child(2),
    .hero-image:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
        min-height: 250px;
    }

    /* Grids collapse to single column */
    .corporate-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
}

/* ==========================================
   Responsive Design — Small Mobile (≤480px)
   ========================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        width: 250px;
        padding: 80px 1.5rem 2rem;
    }

    .nav-link {
        font-size: 1.125rem;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }

    .logo-tagline {
        display: none;
    }
    
    /* FIX 6: Hero eyebrow — smallest screens, trim font further */
    .hero-eyebrow {
        font-size: 0.875rem;
    }

    .hero-left {
        padding: 2.5rem 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .corporate-card {
        padding: 2rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}