/* ============================================
   Sunwood Nutrition — Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-charcoal: #2C2C2C;
    --color-charcoal-light: #3D3D3D;
    --color-coral: #E8734A;
    --color-coral-light: #F4976E;
    --color-coral-pale: #FDEBD3;
    --color-cream: #FDF8F4;
    --color-cream-dark: #F5EDE6;
    --color-warm-white: #FEFCFA;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-text-muted: #9A9A9A;
    --color-border: #EDE5DD;
    --color-success: #4A7C59;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 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: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(44, 44, 44, 0.06), 0 1px 2px rgba(44, 44, 44, 0.04);
    --shadow-md: 0 4px 16px rgba(44, 44, 44, 0.08), 0 2px 4px rgba(44, 44, 44, 0.04);
    --shadow-lg: 0 12px 40px rgba(44, 44, 44, 0.1), 0 4px 12px rgba(44, 44, 44, 0.05);
    --shadow-coral: 0 8px 30px rgba(232, 115, 74, 0.25);

    --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);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-white);
    -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 {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--color-coral);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
}

.text-coral {
    color: var(--color-coral);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-coral);
    color: #fff;
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
    background: var(--color-coral-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 115, 74, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-coral);
    color: var(--color-coral);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.nav.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-charcoal);
    transition: color var(--transition-fast);
}

.nav-logo:hover {
    color: var(--color-coral);
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--color-coral);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    font-weight: 500;
}

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

.nav-cta:hover {
    background: var(--color-coral-light);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--color-warm-white) 0%, var(--color-cream) 50%, var(--color-coral-pale) 100%);
}

.hero-bg-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(232, 115, 74, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--color-coral);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
}

.hero-headline-accent {
    color: var(--color-coral);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text-light);
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

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

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-main {
    width: 360px;
    height: 480px;
    top: 0;
    right: 0;
    z-index: 3;
}

.hero-img-secondary {
    width: 260px;
    height: 200px;
    bottom: 80px;
    right: 160px;
    z-index: 4;
    border: 4px solid var(--color-warm-white);
}

.hero-img-accent {
    width: 160px;
    height: 160px;
    top: 60px;
    right: 280px;
    z-index: 5;
    border: 4px solid var(--color-warm-white);
    border-radius: var(--radius-md);
}

.hero-float-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    z-index: 6;
    background: var(--color-warm-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

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

/* --- About --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--color-warm-white);
}

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

.about-visual {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

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

.about-accent-block {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--color-coral-pale);
    border-radius: var(--radius-md);
    z-index: 1;
}

.about-content {
    padding: var(--space-lg) 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

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

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

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Products --- */
.products {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
    position: relative;
}

.products-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(232, 115, 74, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 115, 74, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.products-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    position: relative;
    z-index: 2;
}

.products-intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

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

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

.product-card--large {
    grid-column: span 7;
}

.product-card--wide {
    grid-column: span 12;
}

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

.product-card--large .product-card-image {
    height: 300px;
}

.product-card--wide .product-card-image {
    height: 220px;
}

.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.05);
}

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

.product-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    background: var(--color-coral-pale);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-sm);
}

.product-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.product-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* --- Philosophy --- */
.philosophy {
    padding: var(--space-4xl) 0;
    background: var(--color-charcoal);
    color: #fff;
}

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

.philosophy-quote-wrapper {
    position: relative;
    padding: var(--space-xl) 0;
}

.philosophy-quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.8;
    color: var(--color-coral);
    position: absolute;
    top: -20px;
    left: -10px;
    user-select: none;
}

.philosophy-quote {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.philosophy-attribution {
    font-size: 0.85rem;
    color: var(--color-coral-light);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.philosophy-value {
    position: relative;
    padding-left: var(--space-lg);
}

.philosophy-value::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--color-coral);
    border-radius: 50%;
}

.philosophy-value-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-coral);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.35rem;
}

.philosophy-value h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.philosophy-value p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Visit --- */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--color-warm-white);
}

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

.visit-detail {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-detail h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.3rem;
}

.visit-detail p,
.visit-detail a {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.visit-detail a:hover {
    color: var(--color-coral);
}

.visit-map {
    position: relative;
}

.visit-map-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-md);
}

.visit-map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visit-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-coral);
    padding: 0.75rem 1.5rem;
    border: 1.5px solid var(--color-coral);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.visit-map-btn:hover {
    background: var(--color-coral);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Contact --- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
    position: relative;
}

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

.contact-intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: var(--space-xl);
}

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

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    transition: color var(--transition-fast);
}

.contact-direct-item:hover {
    color: var(--color-coral);
}

/* Form */
.contact-form-wrapper {
    background: var(--color-warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-cream);
    color: var(--color-charcoal);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-coral);
    background: var(--color-warm-white);
    box-shadow: 0 0 0 3px rgba(232, 115, 74, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(74, 124, 89, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-success);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: var(--space-sm);
}

/* --- Footer --- */
.footer {
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(254, 252, 250, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-charcoal);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--color-coral-pale);
    color: var(--color-coral);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-charcoal);
    transition: color var(--transition-fast);
}

.mobile-link:hover {
    color: var(--color-coral);
}

.mobile-link-cta {
    margin-top: var(--space-sm);
    background: var(--color-coral);
    color: #fff !important;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-stack {
        height: 450px;
    }

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

    .hero-img-secondary {
        width: 200px;
        height: 160px;
        right: 100px;
    }

    .hero-img-accent {
        width: 130px;
        height: 130px;
        right: 220px;
    }

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

    .about-visual {
        max-width: 500px;
    }

    .product-card--large {
        grid-column: span 12;
    }

    .product-card--wide {
        grid-column: span 12;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

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

    .hero-image-stack {
        height: 350px;
    }

    .hero-img-main {
        width: 220px;
        height: 300px;
    }

    .hero-img-secondary {
        width: 160px;
        height: 130px;
        right: 60px;
        bottom: 40px;
    }

    .hero-img-accent {
        width: 110px;
        height: 110px;
        right: 160px;
    }

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

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

    .hero-stat-divider {
        display: none;
    }

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

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

    .product-card--large,
    .product-card--wide {
        grid-column: span 1;
    }

    .product-card-image {
        height: 200px;
    }

    .philosophy-quote-mark {
        font-size: 5rem;
    }

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

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

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
    }

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

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

    .hero-image-stack {
        height: 280px;
    }

    .hero-img-main {
        width: 180px;
        height: 250px;
    }

    .hero-img-secondary {
        width: 130px;
        height: 110px;
        right: 40px;
        bottom: 20px;
    }

    .hero-img-accent {
        width: 90px;
        height: 90px;
        right: 120px;
        top: 20px;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }
}
