/* ============================================
   MAGNOLIAS NUTRITION — Design System
   Palette: Burgundy (#7B2D3B) + Blush (#F2D0D0)
   Typography: Playfair Display + Inter
   ============================================ */

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

:root {
    --color-burgundy: #7B2D3B;
    --color-burgundy-dark: #5C1F2B;
    --color-burgundy-light: #9A3D4D;
    --color-blush: #F2D0D0;
    --color-blush-light: #FAE8E8;
    --color-blush-dark: #E8B4B4;
    --color-cream: #FDF8F6;
    --color-warm-white: #FFFBF9;
    --color-charcoal: #1A1A1A;
    --color-dark: #2D2D2D;
    --color-mid: #5A5A5A;
    --color-light: #9A9A9A;
    --color-border: #E8DDD8;
    
    --font-display: 'Playfair Display', 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: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 4px 16px rgba(123, 45, 59, 0.08);
    --shadow-lg: 0 8px 32px rgba(123, 45, 59, 0.12);
    --shadow-xl: 0 16px 48px rgba(123, 45, 59, 0.14);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-cream);
    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;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

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

.nav__inner {
    max-width: 1280px;
    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: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-burgundy);
    letter-spacing: -0.02em;
}

.nav__logo-icon {
    font-size: 1.25rem;
    line-height: 1;
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-mid);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-burgundy);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-burgundy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--color-burgundy);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

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

.nav__link--cta:hover {
    background: var(--color-burgundy-dark);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
    transform-origin: center;
}

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

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 120px var(--space-lg) 80px;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-blush-light) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 45, 59, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Asymmetric Image Stack */
.hero__visual {
    position: relative;
    height: 600px;
}

.hero__img-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero__img-accent {
    position: absolute;
    top: 55%;
    right: 0;
    width: 55%;
    height: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
}

.hero__img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img-small {
    position: absolute;
    bottom: 5%;
    left: 55%;
    width: 40%;
    height: 25%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-cream);
}

.hero__img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__deco {
    position: absolute;
    top: -20px;
    right: 35%;
    color: var(--color-burgundy);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

/* Hero Content */
.hero__content {
    padding: var(--space-xl) 0;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero__eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--color-burgundy);
    flex-shrink: 0;
}

.hero__eyebrow span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-charcoal);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.hero__headline--accent {
    color: var(--color-burgundy);
    font-style: italic;
    font-weight: 400;
}

.hero__subhead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-mid);
    max-width: 440px;
    margin-bottom: var(--space-xl);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-xl);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
    letter-spacing: -0.02em;
}

.hero__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-top: 2px;
}

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

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-light);
}

.hero__trust svg {
    color: var(--color-blush-dark);
    flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-burgundy);
    color: white;
    border-color: var(--color-burgundy);
}

.btn--primary:hover {
    background: var(--color-burgundy-dark);
    border-color: var(--color-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.btn--ghost:hover {
    background: var(--color-burgundy);
    color: white;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: var(--color-burgundy);
    padding: 0.875rem 0;
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee__item {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee__dot {
    color: var(--color-blush);
    font-size: 0.625rem;
    flex-shrink: 0;
    margin-top: 4px;
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

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

.about__container {
    max-width: 1280px;
    margin: 0 auto;
}

.about__header {
    margin-bottom: var(--space-3xl);
}

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

.about__col-left {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__col-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__col-right {
    padding-top: var(--space-sm);
}

.about__lead {
    font-family: var(--font-display);
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--color-burgundy);
    font-weight: 400;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.about__col-right > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-mid);
    margin-bottom: var(--space-md);
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) 0;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight__icon {
    width: 20px;
    height: 20px;
    color: var(--color-burgundy);
    flex-shrink: 0;
}

.highlight__text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark);
}

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

.products__container {
    max-width: 1280px;
    margin: 0 auto;
}

.products__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.products__subhead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-mid);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

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

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

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

.product-card:not(.product-card--featured) {
    grid-column: span 6;
}

.product-card__img {
    height: 220px;
    overflow: hidden;
}

.product-card--featured .product-card__img {
    height: 280px;
}

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

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

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

.product-card__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    background: var(--color-blush-light);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: var(--space-sm);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.product-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-mid);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-burgundy);
    color: white;
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 208, 208, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy__quote-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    position: relative;
}

.philosophy__quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.8;
    color: rgba(242, 208, 208, 0.2);
    position: absolute;
    pointer-events: none;
}

.philosophy__quote-wrap .philosophy__quote-mark:first-child {
    top: -20px;
    left: -20px;
}

.philosophy__quote-wrap .philosophy__quote-mark:last-child {
    bottom: -40px;
    right: -20px;
}

.philosophy__quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

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

.pillar {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.pillar__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-blush);
    line-height: 1;
    margin-bottom: var(--space-sm);
    opacity: 0.6;
}

.pillar__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: white;
}

.pillar__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

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

.visit__container {
    max-width: 1280px;
    margin: 0 auto;
}

.visit__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

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

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

.visit__card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.visit__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.visit__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blush-light);
    border-radius: var(--radius-md);
    color: var(--color-burgundy);
    flex-shrink: 0;
}

.visit__card-content h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.visit__card-content p {
    font-size: 0.9375rem;
    color: var(--color-mid);
    line-height: 1.6;
}

.visit__card-content a {
    color: var(--color-burgundy);
    transition: var(--transition);
}

.visit__card-content a:hover {
    color: var(--color-burgundy-dark);
    text-decoration: underline;
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-cream);
}

.contact__container {
    max-width: 720px;
    margin: 0 auto;
}

.contact__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.contact__subhead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-mid);
}

.contact__form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact__field {
    margin-bottom: var(--space-md);
}

.contact__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-dark);
    background: var(--color-cream);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--color-burgundy);
    background: white;
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: var(--color-light);
}

.contact__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__success {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--color-blush-light);
    border-radius: var(--radius-md);
    color: var(--color-burgundy);
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact__success.show {
    display: flex;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-charcoal);
    color: white;
    padding: var(--space-3xl) var(--space-lg) var(--space-lg);
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.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__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.footer__logo-icon {
    font-size: 1.25rem;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 320px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
}

.footer__links ul li,
.footer__contact ul li {
    margin-bottom: 0.5rem;
}

.footer__links ul li a,
.footer__contact ul li a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__links ul li a:hover,
.footer__contact ul li a:hover {
    color: var(--color-blush);
}

.footer__contact ul li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.footer__bottom a:hover {
    color: var(--color-blush);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero__visual {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero__content {
        text-align: center;
        padding: var(--space-lg) 0;
    }
    
    .hero__eyebrow {
        justify-content: center;
    }
    
    .hero__subhead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__trust {
        justify-content: center;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .products__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-card--featured {
        grid-column: 1 / -1;
    }
    
    .product-card:not(.product-card--featured) {
        grid-column: span 1;
    }
    
    .philosophy__pillars {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .visit__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 246, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-md);
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px var(--space-md) 60px;
        min-height: auto;
    }
    
    .hero__visual {
        height: 350px;
    }
    
    .hero__headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero__stats {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .about__highlights {
        grid-template-columns: 1fr;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .product-card:not(.product-card--featured) {
        grid-column: span 1;
    }
    
    .contact__row {
        grid-template-columns: 1fr;
    }
    
    .contact__form {
        padding: var(--space-lg);
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__visual {
        height: 280px;
    }
    
    .hero__img-hero {
        width: 80%;
    }
    
    .hero__img-accent {
        width: 60%;
        height: 40%;
    }
    
    .hero__img-small {
        display: none;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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