/* ============================================
   MJ NUTRITION — Editorial Bold Style
   Emerald Green + Cream Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-emerald-50: #ecfdf5;
    --color-emerald-100: #d1fae5;
    --color-emerald-200: #a7f3d0;
    --color-emerald-300: #6ee7b7;
    --color-emerald-400: #34d399;
    --color-emerald-500: #10b981;
    --color-emerald-600: #059669;
    --color-emerald-700: #047857;
    --color-emerald-800: #065f46;
    --color-emerald-900: #064e3b;
    --color-emerald-950: #022c22;

    --color-cream-50: #fefdf8;
    --color-cream-100: #fef9c3;
    --color-cream-200: #fef3c7;
    --color-cream-300: #fde68a;
    --color-cream-400: #fcd34d;
    --color-cream-500: #f59e0b;

    --color-warm-white: #fefcf6;
    --color-warm-gray-50: #fafaf8;
    --color-warm-gray-100: #f5f4f0;
    --color-warm-gray-200: #e8e6e0;
    --color-warm-gray-300: #d4d2cc;
    --color-warm-gray-400: #a8a59e;
    --color-warm-gray-500: #78746c;
    --color-warm-gray-600: #5c5850;
    --color-warm-gray-700: #44403a;
    --color-warm-gray-800: #2c2822;
    --color-warm-gray-900: #1a1610;
    --color-warm-gray-950: #0f0d0a;

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

    --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;
    --space-5xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06), 0 1px 2px rgba(6, 78, 59, 0.04);
    --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.08), 0 2px 6px rgba(6, 78, 59, 0.04);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12), 0 4px 12px rgba(6, 78, 59, 0.06);
    --shadow-xl: 0 24px 60px rgba(6, 78, 59, 0.16), 0 8px 20px rgba(6, 78, 59, 0.08);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-warm-gray-800);
    background-color: var(--color-cream-50);
    -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;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-warm-gray-900);
}

/* --- Section Tag --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-emerald-700);
    background: var(--color-emerald-50);
    border: 1px solid var(--color-emerald-200);
    padding: var(--space-xs) var(--space-md);
    border-radius: 100px;
    margin-bottom: var(--space-lg);
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-warm-gray-950);
    margin-bottom: var(--space-lg);
}

/* --- Section Description --- */
.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-warm-gray-600);
    max-width: 600px;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-4xl);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-emerald-800);
    color: var(--color-cream-100);
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-warm-gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-warm-gray-700);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-emerald-600);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-emerald-700);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-emerald-800);
    color: var(--color-cream-50) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-emerald-700);
    color: var(--color-cream-50) !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--color-emerald-50);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-warm-gray-800);
    position: relative;
    transition: var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-warm-gray-800);
    transition: var(--transition-base);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-emerald-900);
    overflow: hidden;
    padding: calc(72px + var(--space-4xl)) var(--space-lg) var(--space-4xl);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--color-emerald-400) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--color-emerald-400) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: 0 0, 24px 24px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--color-cream-50);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-emerald-300);
    background: rgba(110, 231, 183, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.25);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 100px;
    margin-bottom: var(--space-2xl);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--color-cream-50);
    margin-bottom: var(--space-xl);
    max-width: 560px;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-emerald-300);
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(254, 253, 248, 0.75);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-emerald-600);
    color: var(--color-cream-50);
    border-color: var(--color-emerald-600);
}

.btn-primary:hover {
    background: var(--color-emerald-500);
    border-color: var(--color-emerald-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cream-50);
    border-color: rgba(254, 253, 248, 0.35);
}

.btn-secondary:hover {
    background: rgba(254, 253, 248, 0.1);
    border-color: rgba(254, 253, 248, 0.6);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--color-cream-50);
    color: var(--color-emerald-900);
    border-color: var(--color-cream-50);
}

.btn-light:hover {
    background: var(--color-cream-100);
    border-color: var(--color-cream-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-cream-50);
    border-color: rgba(254, 253, 248, 0.5);
}

.btn-outline-light:hover {
    background: rgba(254, 253, 248, 0.1);
    border-color: var(--color-cream-50);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-main-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-main-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-card-label {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(6, 78, 59, 0.88);
    backdrop-filter: blur(8px);
    color: var(--color-cream-100);
    font-size: 0.875rem;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
}

/* --- Floating Cards --- */
.hero-floating-card {
    position: absolute;
    background: var(--color-cream-50);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-stat {
    top: 10%;
    left: -12%;
    z-index: 2;
    animation-delay: 0s;
}

.hero-floating-card.card-highlight {
    bottom: 28%;
    right: -8%;
    z-index: 2;
    animation-delay: 1.3s;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
}

.hero-floating-card.card-visit {
    bottom: 5%;
    left: -5%;
    z-index: 2;
    animation-delay: 2.6s;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-emerald-800);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-warm-gray-600);
    line-height: 1.4;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-emerald-100);
    color: var(--color-emerald-700);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.highlight-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-warm-gray-900);
    line-height: 1.4;
}

.visit-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-emerald-600);
    margin-bottom: var(--space-xs);
}

.visit-hours {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-warm-gray-900);
}

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

/* --- Hero Wave --- */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: var(--space-5xl) 0;
    background: var(--color-cream-50);
}

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

.product-card {
    background: var(--color-warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-warm-gray-200);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-emerald-200);
}

.product-image {
    overflow: hidden;
    height: 240px;
}

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

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

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

.product-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-warm-gray-900);
}

.product-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-warm-gray-600);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--space-5xl) 0;
    background: var(--color-emerald-900);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--color-emerald-300) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--color-emerald-300) 1px, transparent 1px);
    background-size: 56px 56px;
    background-position: 0 0, 28px 28px;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-emerald-800);
}

.about-image-accent img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    display: block;
}

.about-content .section-tag {
    background: rgba(110, 231, 183, 0.12);
    border-color: rgba(110, 231, 183, 0.25);
    color: var(--color-emerald-300);
}

.about-content .section-title {
    color: var(--color-cream-50);
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(254, 253, 248, 0.72);
    margin-bottom: var(--space-xl);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(110, 231, 183, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.2);
    color: var(--color-emerald-300);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-cream-50);
    margin-bottom: var(--space-xs);
}

.value-item p {
    font-size: 0.875rem;
    color: rgba(254, 253, 248, 0.6);
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: var(--space-5xl) 0;
    background: var(--color-emerald-800);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(4, 120, 87, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-emerald-300);
    margin-bottom: var(--space-lg);
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-cream-50);
    margin-bottom: var(--space-xl);
}

.cta-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(254, 253, 248, 0.72);
    margin-bottom: var(--space-2xl);
}

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

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

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    background: var(--color-warm-white);
    border: 1px solid var(--color-warm-gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.visit-card:hover {
    border-color: var(--color-emerald-300);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.visit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-emerald-50);
    border: 1px solid var(--color-emerald-200);
    color: var(--color-emerald-700);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.visit-card h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-warm-gray-500);
    margin-bottom: var(--space-xs);
}

.visit-card p,
.visit-card a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-warm-gray-900);
    line-height: 1.6;
}

.visit-card a:hover {
    color: var(--color-emerald-700);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-warm-gray-200);
    min-height: 420px;
}

.map-placeholder {
    width: 100%;
    min-height: 420px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--color-warm-white);
}

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

.contact-info .section-title {
    margin-bottom: var(--space-lg);
}

.contact-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-warm-gray-600);
    margin-bottom: var(--space-2xl);
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-warm-gray-700);
    transition: color var(--transition-fast);
}

.contact-detail-item:hover {
    color: var(--color-emerald-700);
}

.contact-detail-item svg {
    color: var(--color-emerald-600);
    flex-shrink: 0;
}

/* --- Form --- */
.contact-form-wrapper {
    background: var(--color-cream-50);
    border: 1px solid var(--color-warm-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-warm-gray-700);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: var(--space-md);
    border: 1.5px solid var(--color-warm-gray-200);
    border-radius: var(--radius-sm);
    background: var(--color-warm-white);
    color: var(--color-warm-gray-900);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-warm-gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-md);
}

.form-success.active {
    display: flex;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--color-emerald-100);
    color: var(--color-emerald-700);
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--color-warm-gray-900);
    margin-bottom: var(--space-sm);
}

.form-success p {
    font-size: 1rem;
    color: var(--color-warm-gray-600);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-warm-gray-950);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(254, 253, 248, 0.55);
    margin-top: var(--space-lg);
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.footer-logo .logo-mark {
    background: var(--color-emerald-700);
}

.footer-logo .logo-text {
    color: var(--color-cream-50);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-emerald-400);
    margin-bottom: var(--space-lg);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(254, 253, 248, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-cream-50);
}

.footer-contact li {
    font-size: 0.9375rem;
    color: rgba(254, 253, 248, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 253, 248, 0.08);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(254, 253, 248, 0.4);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Default state: visible for progressive enhancement */
.reveal[data-reveal] {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.revealed[data-reveal] {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        min-height: 480px;
    }

    .hero-floating-card.card-stat {
        left: -5%;
    }

    .hero-floating-card.card-highlight {
        right: -5%;
    }

    .hero-floating-card.card-visit {
        left: -2%;
    }

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

    .about-image-accent {
        right: -10px;
        bottom: -20px;
    }

    .about-image-accent img {
        width: 200px;
        height: 260px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-lg);
        border-bottom: 1px solid rgba(6, 78, 59, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition-base), opacity var(--transition-base);
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: calc(72px + var(--space-2xl));
        min-height: auto;
    }

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

    .hero-visual {
        min-height: 400px;
    }

    .hero-main-card img {
        height: 450px;
    }

    .hero-floating-card.card-stat {
        top: 5%;
        left: 2%;
    }

    .hero-floating-card.card-highlight {
        bottom: 30%;
        right: 2%;
    }

    .hero-floating-card.card-visit {
        bottom: 2%;
        left: 2%;
    }

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

    .visit-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

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

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

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

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

    .hero-floating-card {
        display: none;
    }

    .hero-main-card {
        border-radius: var(--radius-md);
    }

    .hero-main-card img {
        height: 380px;
    }
}
