@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    /* Coral & Mint Spring Palette */
    --bg-primary: #FDFBF7;
    --accent-coral: #E67357;
    --accent-mint: #B4D4C6;
    --text-dark: #2A2624;
    --text-light: #FFFFFF;
    --surface-card: #F4EFE8;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* --- Organic Architecture --- */
.soft-card {
    background: var(--minimal-surface); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6); 
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(179, 132, 113, 0.08); /* Soft rosy shadow */
    padding: 2.5rem 1.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

em {
    font-style: italic;
    color: var(--minimal-text-muted); 
}

a {
    color: var(--minimal-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-center { text-align: center; }

/* --- General Components --- */
.section {
    padding: 100px 5%;
}

.bg-light {
    background-color: transparent;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--minimal-border);
    margin: 30px 0;
}

.divider.center {
    margin: 30px auto;
}

/* --- Buttons --- */
button {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.4s ease;
    padding: 16px 32px;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3.5rem;
    background-color: var(--accent-coral);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.magnetic-btn-wrap:hover .btn-primary,
.btn-primary:hover {
    background-color: #D35F45; /* Darker coral */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 115, 87, 0.2);
}

.btn-primary-dark {
    background-color: var(--glacier-deep);
    color: var(--luxury-white);
    border: 1px solid var(--glacier-deep);
}

.btn-primary-dark:hover {
    background-color: var(--silver-accent);
    border-color: var(--silver-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--silver-accent);
    border-bottom: 1px solid transparent;
    padding: 8px 0;
}

.btn-secondary:hover {
    color: var(--glacier-deep);
    border-color: var(--glacier-deep);
}

.text-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 20px;
    border-bottom: 1px solid var(--minimal-border);
    padding-bottom: 2px;
}

.text-link:hover {
    color: var(--minimal-text-muted);
    border-color: var(--minimal-text-muted);
}

/* --- Navigation --- */
.navbar {
    display: flex;
    flex-wrap: wrap;           /* lets mobile-menu wrap to next row */
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: var(--bg-primary); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 115, 87, 0.1); /* Very subtle coral border */
    padding: 0.8rem 5%;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* --- Hamburger Button (hidden on desktop) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Mobile Menu Drawer --- */
.mobile-menu {
    display: none;
    flex-direction: column;
    width: 100%;                /* full width below nav row */
    background-color: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0 6%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                padding 0.4s ease;
    border-top: 1px solid rgba(230, 115, 87, 0.08);
}

.mobile-menu.open {
    max-height: 400px;
    padding: 1.5rem 6% 2rem;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(42, 38, 36, 0.07);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:last-child { border-bottom: none; }

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--accent-coral);
    padding-left: 8px;
}


.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-coral);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--accent-coral);
}

.nav-links a:hover::after {
    width: 100%;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    transition: height 0.4s ease;
    filter: brightness(0); /* Dark espresso/black text to match the new light background */
}

.navbar.scrolled .nav-logo-img {
    height: 60px;
}

/* --- Spring Split Hero Section --- */
.spring-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.hero-split-left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5% 0 10%;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5E3D7 100%); /* Soft peachy gradient */
    z-index: 2;
}

.hero-split-right {
    width: 50%;
    height: 100%;
    background-color: var(--accent-mint);
    display: flex;
    align-items: flex-end; /* Align image to bottom */
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.spring-model-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    text-transform: none; /* Serifs look better mixed case */
    letter-spacing: normal;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.btn-coral {
    background-color: var(--accent-coral);
    color: var(--text-light);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: fit-content;
    text-transform: uppercase;
}

.btn-coral:hover {
    background-color: #D35F45; /* Darker coral */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 115, 87, 0.2);
}

/* Floating Petals Animation */
.spring-petals {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 3;
}

.petal {
    position: absolute;
    background-color: rgba(230, 115, 87, 0.4);
    border-radius: 50% 0 50% 0;
    width: 20px;
    height: 20px;
    filter: blur(2px);
    animation: fall linear infinite;
}

.p1 { left: 10%; top: -10%; animation-duration: 15s; transform: scale(1.5) rotate(45deg); }
.p2 { left: 40%; top: -20%; animation-duration: 22s; transform: scale(0.8) rotate(115deg); }
.p3 { left: 70%; top: -5%; animation-duration: 18s; transform: scale(1.2) rotate(20deg); filter: blur(4px); }
.p4 { left: 90%; top: -15%; animation-duration: 25s; transform: scale(1) rotate(200deg); }

@keyframes fall {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* --- Editorial Section --- */
.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 3rem;
}

.editorial-text p {
    color: var(--silver-accent);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.editorial-image-group {
    position: relative;
    width: 100%;
    padding-bottom: 90%; /* Establish aspect ratio container */
}

.editorial-img {
    position: absolute;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(42, 38, 36, 0.08); /* Soft matching shadow */
    transition: var(--transition-smooth);
    object-fit: cover;
    border: 4px solid var(--bg-primary); /* White border separating the overlap */
}

.editorial-img.primary-img {
    width: 65%;
    height: 90%;
    top: 0;
    left: 0;
    z-index: 2;
}

.editorial-img.secondary-img {
    width: 55%;
    height: 75%;
    bottom: -5%;
    right: 0;
    z-index: 1;
}

.editorial-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(42, 38, 36, 0.12);
}

.img-placeholder {
    width: 100%;
    padding-top: 120%; /* 5:6 aspect ratio */
    background-color: var(--surface-card);
    background-image: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: placeholderShimmer 3s infinite linear;
}

@keyframes placeholderShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* --- Secret Section --- */
.secret {
    padding: 8rem 10%;
    text-align: center;
    background-color: var(--minimal-bg);
    max-width: 900px;
    margin: 0 auto;
}

.secret::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--minimal-border));
}

.secret h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--text-dark);
}

.secret p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(42, 38, 36, 0.7); /* Muted dark text */
    font-weight: 400;
    font-family: var(--font-body);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SNOW MUSHROOM â€” CINEMATIC IMAGE SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mushroom-cinematic {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0f0d; /* fallback while image loads */
}

/* --- Ken Burns slow zoom on the background image --- */
.mushroom-bg-wrap {
    position: absolute;
    inset: -5%;          /* extra room so zoom doesn't show edges */
    z-index: 0;
    overflow: hidden;
}

.mushroom-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: kenBurns 20s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes kenBurns {
    0%   { transform: scale(1)    translateX(0%)    translateY(0%); }
    33%  { transform: scale(1.06) translateX(-1.5%) translateY(0.5%); }
    66%  { transform: scale(1.10) translateX(1%)    translateY(-1%); }
    100% { transform: scale(1.05) translateX(0.5%)  translateY(0.5%); }
}

/* --- Falling snow canvas --- */
.spore-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* --- Gradient overlay: dark at top+bottom, transparent mid for the model --- */
.mushroom-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to bottom,
            rgba(5, 12, 10, 0.55) 0%,
            rgba(5, 12, 10, 0.15) 30%,
            rgba(5, 12, 10, 0.10) 55%,
            rgba(5, 12, 10, 0.55) 85%,
            rgba(5, 12, 10, 0.75) 100%);
    pointer-events: none;
}

/* --- Editorial Text --- */
.mushroom-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 600px;
    padding: 0 6%;
}

.mushroom-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(210, 235, 225, 0.85);
    margin-bottom: 1.2rem;
}

.mushroom-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.mushroom-heading em {
    font-style: italic;
    color: #b4d4c6;
}

.mushroom-sub {
    font-size: 1.05rem;
    color: rgba(240, 248, 244, 0.8);
    line-height: 2;
    font-weight: 300;
    margin-bottom: 2.6rem;
    letter-spacing: 0.02em;
}

/* --- Button --- */
.btn-mushroom {
    display: inline-block;
    padding: 14px 38px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-mushroom:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .mushroom-cinematic { min-height: 90vh; }
    .mushroom-bg-img { object-position: 65% center; }
    .mushroom-heading { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .mushroom-sub { font-size: 0.95rem; }
}

/* --- Products Section --- */
.products-section {
    background-color: transparent;
}

.products-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-header h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.products-header h2 em {
    font-style: italic;
    color: var(--accent-coral);
}

.products-header p {
    font-size: 1.1rem;
    color: rgba(42, 38, 36, 0.7);
    letter-spacing: 0.05em;
    font-weight: 400;
    text-transform: none;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.products-header p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--accent-coral);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.luxury-product-card {
    background-color: var(--surface-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
    padding: 3rem 1.5rem;
    border-radius: 40px;
    border: none;
    box-shadow: 0 10px 40px rgba(42, 38, 36, 0.05); /* Soft natural shadow */
}

.product-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: var(--transition-smooth);
}

/* User's original unedited images without destructive filters */
.uhd-isolate {
    width: 85%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Crucial for clipping white backgrounds on cream cards */
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: bottom center;
}

.luxury-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(42, 38, 36, 0.1);
}

.luxury-product-card:hover .uhd-isolate {
    transform: scale(1.05) translateY(-5px);
}

.product-info {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
}

.pill-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    background: #FFFFFF;
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.product-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    letter-spacing: normal;
}


.product-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: var(--font-body);
}

.compliance-info {
    font-size: 0.75rem;
    color: rgba(42, 38, 36, 0.4);
    border-top: 1px solid rgba(42, 38, 36, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.compliance-info span {
    display: block;
}

/* --- Team Section --- */
.team-section {
    background-color: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--surface-card);
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(42, 38, 36, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(42, 38, 36, 0.1);
}

.team-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-card:hover .team-img {
    transform: scale(1.04);
}

.team-info {
    padding: 2.5rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-role {
    margin-bottom: 1.2rem;
}

.team-name {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: rgba(42, 38, 36, 0.7);
    line-height: 1.9;
    font-weight: 300;
}

/* --- Journal Section --- */
.journal-section {
    background-color: transparent;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.journal-card {
    background-color: var(--surface-card);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 40px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(42, 38, 36, 0.05);
    text-align: left;
}

.journal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(42, 38, 36, 0.1);
}

.journal-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.journal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.journal-card:hover .journal-img {
    transform: scale(1.05);
}

.journal-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.journal-date {
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.journal-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.journal-excerpt {
    font-size: 0.95rem;
    color: rgba(42, 38, 36, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* --- Footer --- */
.footer {
    background-color: var(--surface-card); /* Soft cream */
    color: var(--text-dark);
    padding: 6rem 5% 2rem;
    border-top: 1px solid rgba(42, 38, 36, 0.1);
}

.footer a {
    color: var(--minimal-text-muted);
}
.footer a:hover {
    color: var(--minimal-text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand p {
    color: var(--minimal-text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    max-width: 250px;
}

.canadian-compliance-footer {
    margin-top: 20px;
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.4);
}

.canadian-compliance-footer p {
    margin-bottom: 5px;
}

.footer-logo-img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) sepia(1) hue-rotate(330deg) saturate(2) opacity(0.7); /* Adjust for light background */
}

.footer-links h4, .footer-newsletter h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--glacier-deep);
    font-family: var(--font-body);
}

.footer-links a {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-newsletter p {
    color: var(--silver-accent);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--platinum);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--glacier-deep);
    padding: 10px 0;
    flex: 1;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: transparent;
    color: var(--glacier-deep);
    padding: 10px;
    font-size: 1.2rem;
}

.newsletter-form button:hover {
    color: var(--silver-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(30, 41, 59, 0.1);
    font-size: 0.8rem;
    color: var(--silver-accent);
}

.socials {
    display: flex;
    gap: 30px;
}

.socials a {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-150px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-150px);
    transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible, .fade-in-up.visible, .fade-in-down.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }


/* ============================================================
   DIRECTIONAL PRODUCT CARD ANIMATIONS
   Applied via JS: .product-animate + .from-top/bottom/left/right
============================================================ */
.product-animate {
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.product-animate.from-top    { transform: translateY(-80px); }
.product-animate.from-bottom { transform: translateY(80px); }
.product-animate.from-left   { transform: translateX(-80px); }
.product-animate.from-right  { transform: translateX(80px); }

.product-animate.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Touch ripple */
.touch-ripple {
    position: absolute;
    width: 80px; height: 80px;
    margin-left: -40px; margin-top: -40px;
    border-radius: 50%;
    background: rgba(230, 115, 87, 0.25);
    transform: scale(0);
    animation: rippleOut 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleOut {
    to { transform: scale(3); opacity: 0; }
}

/* ============================================================
   TABLET â€” 1024px
============================================================ */
@media (max-width: 1024px) {
    .editorial-container { grid-template-columns: 1fr; gap: 60px; }
    .product-grid         { grid-template-columns: repeat(2, 1fr); }
    .journal-grid         { grid-template-columns: repeat(2, 1fr); }
    .team-grid            { grid-template-columns: repeat(2, 1fr); }
    .footer-grid          { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE â€” 768px
============================================================ */
@media (max-width: 768px) {

    body { font-size: 16px; }

    .section { padding: 72px 6% 80px; }
    .section-title { font-size: 2.1rem; }
    .section-desc  { font-size: 1rem; }

    /* Navbar â€” flex-row stays, menu wraps below */
    .navbar {
        padding: 12px 5%;
        background-color: rgba(253,251,247,0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(230,115,87,0.08);
        flex-direction: row;    /* keep row â€” mobile-menu wraps to next line */
    }
    .nav-content { justify-content: space-between; width: 100%; }
    .logo { justify-content: flex-start; width: auto; }
    .nav-logo-img,
    .navbar.scrolled .nav-logo-img { height: 50px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }  /* show the flex container; collapsed by max-height */

    /* Hero */
    .spring-hero {
        flex-direction: column;
        height: auto;
        min-height: 100svh;
        padding-top: 80px;
    }
    .hero-split-left {
        width: 100%;
        height: auto;
        padding: 60px 6% 40px;
        background: linear-gradient(160deg, #FDFBF7 0%, #F5E3D7 100%);
        text-align: center;
        align-items: center;
    }
    .hero-split-right {
        width: 100%;
        height: 55vw;
        min-height: 260px;
    }
    .hero-image-wrapper { height: 100%; width: 100%; }
    .hero-title {
        font-size: clamp(2.4rem, 9vw, 3.6rem);
        margin-top: 0;
        margin-bottom: 1.2rem;
    }
    .hero-subtitle { font-size: 1rem; max-width: 100%; margin-bottom: 2rem; }
    .btn-coral { padding: 14px 36px; font-size: 0.9rem; }

    /* Editorial */
    .editorial-container { grid-template-columns: 1fr; gap: 48px; }
    .editorial-image-group { padding-bottom: 75%; }
    .editorial-text p { font-size: 1rem; }

    /* Secret */
    .secret { padding: 60px 6%; border-radius: 30px; }
    .secret h2 { font-size: 1.8rem; }
    .secret p  { font-size: 1rem; line-height: 1.9; }

    /* ---- Products: definitive mobile reset ---- */
    .products-section {
        padding: 64px 0 80px !important;
    }
    .product-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 5% !important;
        box-sizing: border-box !important;
    }
    .luxury-product-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 24px !important;
        padding: 0 !important;
        border: none !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        box-shadow: 0 6px 24px rgba(42,38,36,0.08) !important;
        background-color: var(--surface-card) !important;
        text-align: center !important;
    }
    .product-img-wrap {
        aspect-ratio: 4/3 !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 1.8rem 2rem 0.8rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: transparent !important;
    }
    .uhd-isolate {
        width: 60% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    .product-info {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0.8rem 1.4rem 1.6rem !important;
        text-align: center !important;
        width: 100% !important;
    }
    .product-category.pill-badge {
        margin-bottom: 0.5rem !important;
    }
    .product-name {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .product-details {
        font-size: 0.88rem !important;
        margin-bottom: 0.8rem !important;
        flex: 1 !important;
    }
    .compliance-info {
        margin-top: auto !important;
        font-size: 0.75rem !important;
    }

    /* On mobile: no sideways movement â€” all cards animate vertically only */
    .product-animate.from-top,
    .product-animate.from-bottom,
    .product-animate.from-left,
    .product-animate.from-right {
        transform: translateY(40px) !important;
        opacity: 0;
    }
    .product-animate.visible {
        transform: translateY(0) !important;
        opacity: 1;
    }

    /* Team */
    .team-grid { grid-template-columns: 1fr; gap: 28px; }
    .team-card { border-radius: 28px; }
    .team-img-wrap { aspect-ratio: 3/4; }
    .team-info { padding: 1.8rem 1.6rem 2rem; }
    .team-name { font-size: 1.7rem; }
    .team-bio  { font-size: 0.92rem; }

    /* Journal */
    .journal-grid { grid-template-columns: 1fr; gap: 28px; }
    .journal-card { border-radius: 28px; padding: 1.6rem; }
    .journal-title { font-size: 1.4rem; }
    .journal-excerpt { font-size: 0.92rem; }
    .journal-img-wrap { border-radius: 16px; }

    /* Footer */
    .footer { padding: 60px 6% 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
    .footer-brand p { margin: 0 auto; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    /* Generic animation tweaks */
    .fade-in-up   { transform: translateY(24px); }
    .fade-in-down { transform: translateY(-40px); }
}

/* ============================================================
   SMALL PHONES â€” 430px
============================================================ */
@media (max-width: 430px) {
    .hero-title    { font-size: 2.2rem; }
    .section-title { font-size: 1.9rem; }
    .hero-split-right { height: 70vw; }
    .product-grid { gap: 20px; }
    .luxury-product-card { padding: 1.6rem 1.2rem; }
    .editorial-img { border-radius: 24px; }
    .team-name { font-size: 1.5rem; }
    .journal-title { font-size: 1.3rem; }
    .footer { padding: 50px 5% 1.6rem; }
}

