/* ============================================
   CLUB MUNDO FELIZ — Editorial Bakery & Grocer
   Teal + Slate Grey | Playfair Display + Inter
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background-color: var(--slate-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: var(--space-md);
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--slate-900);
    margin-bottom: var(--space-xl);
}

.section-heading.large {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.05;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--teal-700);
    color: #ffffff;
    border-color: var(--teal-700);
}

.btn-primary:hover {
    background-color: var(--teal-800);
    border-color: var(--teal-800);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-ghost {
    background-color: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}

.btn-ghost:hover {
    border-color: var(--teal-600);
    color: var(--teal-700);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--teal-700);
    border-color: var(--teal-600);
}

.btn-outline:hover {
    background-color: var(--teal-700);
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--teal-700);
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.logo-wordmark {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--slate-900);
    letter-spacing: -0.01em;
}

/* --- Navigation --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover {
    color: var(--teal-700);
    background-color: var(--teal-50);
}

.nav-cta {
    color: var(--teal-700) !important;
    border: 1.5px solid var(--teal-600);
    border-radius: var(--radius-sm);
    margin-left: var(--space-xs);
}

.nav-cta:hover {
    background-color: var(--teal-700) !important;
    color: #ffffff !important;
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(2, 6, 23, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background-color: var(--slate-50);
    border-left: 1px solid var(--slate-200);
    padding: var(--space-2xl) var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
}

.mobile-menu-overlay.active .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-800);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--slate-200);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--teal-700);
}

.mobile-nav-cta {
    border-bottom: none;
    margin-top: var(--space-md);
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: var(--teal-700);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background-color: var(--slate-50);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
}

/* --- Hero Content --- */
.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--teal-600);
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
    line-height: 1.05;
}

.headline-line {
    display: block;
}

.headline-accent {
    color: var(--teal-700);
    font-style: italic;
}

.hero-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--slate-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background-color: var(--slate-300);
}

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-img-primary {
    width: 100%;
    aspect-ratio: 600 / 750;
}

.hero-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 60%;
    aspect-ratio: 400 / 300;
    border: 4px solid var(--slate-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hero-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-accent-box {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--teal-700);
    color: #ffffff;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.accent-box-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.125rem;
}

.accent-box-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
}

/* --- Hero Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

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

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
    background-color: var(--teal-800);
    color: var(--teal-200);
    padding: var(--space-sm) 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: var(--space-lg);
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.marquee-dot {
    font-size: 0.5rem;
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--space-4xl) 0;
    background-color: var(--slate-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 0.9fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-label-wrap {
    position: sticky;
    top: 120px;
}

.about-content {
    padding-top: var(--space-sm);
}

.about-body {
    margin-top: var(--space-xl);
}

.about-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--slate-700);
    margin-bottom: var(--space-xl);
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--slate-200);
}

.about-col h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-sm);
}

.about-col p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-600);
}

.about-image-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-quote {
    background-color: var(--teal-700);
    color: #ffffff;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.about-image-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    font-weight: 400;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: var(--space-4xl) 0;
    background-color: var(--slate-100);
}

.products-header {
    margin-bottom: var(--space-2xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background-color: var(--slate-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--teal-200);
}

.product-card--featured {
    grid-column: span 2;
}

.product-card--featured .product-card-image {
    aspect-ratio: 600 / 400;
}

.product-card-image {
    overflow: hidden;
    aspect-ratio: 600 / 400;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.03);
}

.product-card-content {
    padding: var(--space-lg);
}

.product-card-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-700);
    background-color: var(--teal-50);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.product-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-sm);
}

.product-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate-600);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    padding: var(--space-4xl) 0;
    background-color: var(--teal-900);
    color: #ffffff;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.philosophy-left .section-label {
    color: var(--teal-300);
}

.philosophy-left .section-heading {
    color: #ffffff;
}

.philosophy-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    padding-top: var(--space-sm);
}

.philosophy-item {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: var(--space-md);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.philosophy-item-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-400);
    padding-top: 0.125rem;
}

.philosophy-item-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.philosophy-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--teal-200);
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: var(--space-4xl) 0;
    background-color: var(--slate-50);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit-info {
    padding-right: var(--space-xl);
}

.visit-details {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.visit-detail svg {
    flex-shrink: 0;
    color: var(--teal-600);
    margin-top: 0.125rem;
}

.visit-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 0.125rem;
}

.visit-detail-value {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--slate-800);
}

.visit-link {
    color: var(--teal-700);
    transition: color var(--transition-fast);
}

.visit-link:hover {
    color: var(--teal-600);
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    background-color: var(--slate-200);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--slate-500);
    border-radius: var(--radius-lg);
}

.map-placeholder svg {
    color: var(--teal-600);
}

.map-placeholder-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-700);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-4xl) 0;
    background-color: var(--slate-900);
    color: #ffffff;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: var(--space-md);
}

.cta-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.cta-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--slate-400);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cta-actions .btn-ghost {
    border-color: var(--slate-600);
    color: var(--slate-300);
}

.cta-actions .btn-ghost:hover {
    border-color: var(--teal-400);
    color: var(--teal-300);
    background-color: transparent;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--slate-950);
    color: var(--slate-400);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--slate-800);
}

.logo-footer .logo-mark {
    background-color: var(--teal-600);
}

.logo-footer .logo-wordmark {
    color: #ffffff;
}

.footer-tagline {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 320px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav-list a {
    font-size: 0.9375rem;
    color: var(--slate-400);
    transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
    color: var(--teal-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    color: var(--slate-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--teal-400);
}

.footer-location {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-top: var(--space-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8125rem;
    color: var(--slate-600);
}

.footer-location-small {
    color: var(--slate-600);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 0.7fr;
        gap: var(--space-xl);
    }

    .about-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .about-image-col {
        display: none;
    }

    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-top > :nth-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
        --space-4xl: 5rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    /* Mobile nav */
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-2xl);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: var(--space-xl) 0;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .hero-img-secondary {
        left: -16px;
        bottom: -24px;
        width: 55%;
    }

    .hero-accent-box {
        top: -12px;
        right: -8px;
        padding: var(--space-sm) var(--space-md);
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-label-wrap {
        position: static;
    }

    .about-columns {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card--featured {
        grid-column: span 1;
    }

    /* Philosophy */
    .philosophy-item {
        grid-template-columns: 2rem 1fr;
        gap: var(--space-sm);
    }

    /* Visit */
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .visit-info {
        padding-right: 0;
    }

    /* CTA */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-top > :nth-child(1) {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .section-heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-heading.large {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
    }

    .hero-img-secondary {
        display: none;
    }

    .hero-accent-box {
        position: static;
        margin-top: var(--space-sm);
        display: inline-block;
    }
}
