/* ==================================================================================
   MACATELLA - THE ART OF HARMONY (COMPLETE FIXED VERSION)
   Complete CSS Stylesheet - Fully Synchronized with HTML
   Version: 3.0
   Last Updated: 2025-10-26
   Accessibility: WCAG 2.1 AA Compliant
================================================================================== */


/* ==================================================================================
   CSS VARIABLES
================================================================================== */

:root {
    /* Colors - Warm Natural Palette */
    --color-primary: #2C2416;
    --color-secondary: #5B4636;
    --color-accent: #A77B56;
    --color-honey: #D4A574;
    --color-cream: #F8F5F0;
    --color-beige: #E9DFD1;
    --color-white: #FEFEFE;
    --color-error: #C84B31;
    --color-success: #4A7C59;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 36, 22, 0.12);
    --shadow-lg: 0 8px 32px rgba(44, 36, 22, 0.16);
    
    /* Breakpoints */
    --bp-mobile: 480px;
    --bp-tablet: 768px;
    --bp-desktop: 1024px;
    --bp-wide: 1440px;
}


/* ==================================================================================
   RESET & BASE
================================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-primary);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

::selection {
    background: var(--color-accent);
    color: var(--color-white);
}


/* ==================================================================================
   TYPOGRAPHY
================================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 2rem;
    font-weight: 300;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

p {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.text-large {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    padding: 2rem;
    border-left: 3px solid var(--color-accent);
    margin: 3rem auto;
    color: var(--color-secondary);
    max-width: 800px;
}


/* ==================================================================================
   LAYOUT
================================================================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container-narrow {
    max-width: 900px;
}

section {
    padding: clamp(4rem, 10vw, 10rem) 0;
    position: relative;
}


/* ==================================================================================
   ACCESSIBILITY - WCAG 2.1 AA COMPLIANT
================================================================================== */

/* Screen Reader Only - Hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip Navigation - Visible on focus */
.sr-only:focus-visible {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 10000;
    width: auto;
    height: auto;
    padding: 1rem 2rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Focus styles for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ==================================================================================
   LANGUAGE SWITCHER
================================================================================== */

.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--transition-smooth);
}

.language-switcher:hover {
    box-shadow: var(--shadow-lg);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--color-primary);
    background: var(--color-beige);
}

.lang-btn.active {
    color: var(--color-white);
    background: var(--color-accent);
}

.lang-divider {
    color: var(--color-beige);
    font-weight: 300;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .lang-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}


/* ==================================================================================
   STICKY SOCIAL BAR
================================================================================== */

.sticky-social {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s var(--transition-smooth);
    pointer-events: none;
}

.sticky-social.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
    transition: all 0.3s var(--transition-smooth);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Mobile: Move to bottom center */
@media (max-width: 768px) {
    .sticky-social {
        flex-direction: row;
        right: 50%;
        transform: translateX(50%) translateY(100px);
        bottom: 1rem;
    }
    
    .sticky-social.visible {
        transform: translateX(50%) translateY(0);
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}


/* ==================================================================================
   DECORATIVE ELEMENTS
================================================================================== */

.art-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-beige);
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
}

.art-circle::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--color-honey);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.art-line {
    width: 100px;
    height: 2px;
    background: var(--color-beige);
    margin: 3rem auto;
}

.story-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 1rem;
    text-align: center;
}


/* ==================================================================================
   01. HERO SECTION
================================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background (Responsive Image) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 36, 22, 0.7) 0%,
        rgba(91, 70, 54, 0.5) 50%,
        rgba(167, 123, 86, 0.3) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1.2s var(--transition-smooth);
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--color-cream);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-cream);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.hero-cta:hover {
    background: var(--color-honey);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-cream);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        var(--color-cream),
        transparent
    );
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-title {
        letter-spacing: 0.1em;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}


/* ==================================================================================
   02. STORY SECTION
================================================================================== */

.story {
    background: var(--color-cream);
}

.story-header {
    text-align: center;
    margin-bottom: 5rem;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

/* Story Images */
.story-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--transition-smooth);
}

.story-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(
        to top,
        rgba(44, 36, 22, 0.9),
        transparent
    );
    color: var(--color-white);
    font-size: 0.875rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--transition-smooth);
}

.story-image-wrapper:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Story Content */
.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.story-quote {
    margin: 2rem 0;
    padding-left: 2rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-images {
        grid-template-columns: 1fr;
    }
}


/* ==================================================================================
   03. CRAFTSMANSHIP SECTION
================================================================================== */

.craftsmanship {
    background: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Horizontal Scrollable Gallery */
.craft-gallery {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 0;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
.craft-gallery::-webkit-scrollbar {
    height: 8px;
}

.craft-gallery::-webkit-scrollbar-track {
    background: var(--color-beige);
    border-radius: 10px;
}

.craft-gallery::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 10px;
}

.craft-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--color-honey);
}

.craft-item {
    flex: 0 0 auto;
    width: clamp(300px, 80vw, 800px);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.craft-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.craft-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 0.5s var(--transition-smooth);
}

.craft-item:hover .craft-image {
    transform: scale(1.05);
}

.craft-caption {
    text-align: center;
}

.craft-caption h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.craft-caption p {
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    color: var(--color-secondary);
}

.craft-quote {
    text-align: center;
    margin-top: 4rem;
}

/* Keyboard navigation indicator */
.craft-gallery:focus {
    outline: 3px solid var(--color-accent);
    outline-offset: 5px;
    border-radius: 8px;
}


/* ==================================================================================
   04. FLAVORS SECTION
================================================================================== */

.flavors {
    background: var(--color-cream);
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.flavor-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--transition-smooth);
}

.flavor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.flavor-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.flavor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--transition-smooth);
}

.flavor-card:hover .flavor-image {
    transform: scale(1.1);
}

.flavor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
}

.flavor-card:hover .flavor-overlay {
    opacity: 1;
}

.flavor-icon {
    font-size: 4rem;
    animation: bounce 1s infinite;
}

.flavor-content {
    padding: 2rem;
    text-align: center;
}

.flavor-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.flavor-content p {
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.flavor-emotion {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-accent);
}

.flavors-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--color-honey);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .flavors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ==================================================================================
   05. ENJOY SECTION
================================================================================== */

.enjoy {
    background: var(--color-white);
}

.enjoy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.enjoy-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1/1;
    transition: all 0.3s var(--transition-smooth);
}

.enjoy-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.enjoy-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.enjoy-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(44, 36, 22, 0.95),
        rgba(44, 36, 22, 0.7),
        transparent
    );
    color: var(--color-white);
    font-weight: 500;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s var(--transition-smooth);
}

.enjoy-item:hover .enjoy-caption {
    transform: translateY(0);
}

.enjoy-quote {
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .enjoy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .enjoy-caption {
        font-size: 0.875rem;
        padding: 1rem;
    }
}


/* ==================================================================================
   06. PHILOSOPHY SECTION
================================================================================== */

.philosophy {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    color: var(--color-white);
    text-align: center;
    padding: clamp(6rem, 15vw, 12rem) 0;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy h2 {
    color: var(--color-white);
    margin-bottom: 3rem;
}

.philosophy p {
    color: var(--color-cream);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
}

.philosophy-signature {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    margin: 3rem 0;
    line-height: 1.6;
}

.philosophy-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 0.1em;
    opacity: 0.8;
}


/* ==================================================================================
   07. COMMUNITY SECTION
================================================================================== */

.community {
    background: var(--color-cream);
}

.community-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feed-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--transition-smooth);
}

.feed-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feed-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(
        to top,
        rgba(44, 36, 22, 0.9),
        transparent
    );
    color: var(--color-white);
    font-size: 0.875rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
}

.feed-item:hover .feed-overlay {
    opacity: 1;
}

.community-cta {
    text-align: center;
}

.community-cta p {
    margin-bottom: 1.5rem;
}

.hashtag {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .community-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}


/* ==================================================================================
   08. CONTACT SECTION
================================================================================== */

.contact {
    background: var(--color-white);
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-primary);
    background: var(--color-cream);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    background: var(--color-white);
    border-color: var(--color-accent);
    outline: none;
}

.form-group input::placeholder {
    color: var(--color-secondary);
    opacity: 0.6;
}

/* Error Messages */
.error-message {
    display: none;
    font-size: 0.875rem;
    color: var(--color-error);
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.form-group.error input,
.form-group.error select {
    border-color: var(--color-error);
}

.form-group.error .error-message {
    display: block;
}

/* Submit Button */
.submit-button {
    padding: 1.25rem 3rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    background: var(--color-honey);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    background: var(--color-beige);
    cursor: not-allowed;
    transform: none;
}

/* Thank You Message */
.thank-you-message {
    display: none;
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--color-success);
    color: var(--color-white);
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    animation: slideInUp 0.5s var(--transition-smooth);
}

.thank-you-message.show {
    display: block;
}

.thank-you-message p {
    color: var(--color-white);
    margin: 0;
}

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


/* ==================================================================================
   FOOTER
================================================================================== */

.footer {
    background: var(--color-primary);
    color: var(--color-cream);
    text-align: center;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--color-honey);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-honey);
}

.footer-links span {
    color: var(--color-secondary);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-secondary);
    margin-top: 2rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links span {
        display: none;
    }
}


/* ==================================================================================
   RESPONSIVE BREAKPOINTS
================================================================================== */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    :root {
        font-size: 15px;
    }
    
    .container {
        padding: 0 3rem;
    }
    
    section {
        padding: 6rem 0;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    blockquote {
        padding: 1.5rem;
        font-size: 1.125rem;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
    :root {
        font-size: 13px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .language-switcher {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-cta,
    .cta-button,
    .submit-button {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
}


/* ==================================================================================
   PRINT STYLES
================================================================================== */

@media print {
    .language-switcher,
    .sticky-social,
    .scroll-indicator,
    .hero-cta,
    .cta-button {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    section {
        page-break-inside: avoid;
    }
}
