/* ================================================================
   responsive.css  —  Turan SPS
   Paste this file next to main.css and link it AFTER main.css.
   Contains the full new design system + mobile/tablet breakpoints.
   ================================================================ */

/* ── Google Fonts reference (already in <head>) ─────────────────── */
/* Inter + Playfair Display */

/* ── Design tokens ──────────────────────────────────────────────── */
:root {
    --f-sans:   'Inter', system-ui, sans-serif;
    --f-serif:  'Playfair Display', Georgia, serif;

    --c-orange:  #FF6B35;
    --c-yellow:  #FFD700;
    --c-cream:   #FFF8E1;
    --c-dark:    #2E2E2E;
    --c-muted:   rgba(46,46,46,.65);
    --c-glass:   rgba(255,255,255,.72);

    --r-card:   28px;
    --r-banner: 24px;

    --shadow-card: 0 8px 32px rgba(0,0,0,.09);
    --shadow-lift: 0 20px 60px rgba(0,0,0,.14);

    /* soft tint backgrounds for product image panels */
    --yellow-soft: #FFFBEB;
    --green-soft:  #F0FDF4;
    --blue-soft:   #EFF6FF;
    --cyan-soft:   #ECFEFF;
    --purple-soft: #F5ECFF;
    --deep-green-soft: #ECFDF3;
}

/* ── Base resets ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: var(--f-sans);
    color: var(--c-dark);
    background: #fff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
img, video { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Utility ─────────────────────────────────────────────────────── */
.container  { max-width: 1360px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.text-center { text-align: center; }
.left-align  { text-align: left; margin-inline: 0; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Glass utility */
.glass {
    background: var(--c-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.25);
}

/* Tinted section background */
.section-tinted { background: rgba(255,107,53,.04); }

/* ── Nav body lock ───────────────────────────────────────────────── */
body.nav-open { overflow: hidden; }


/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    padding-block: 1.2rem;
    transition: padding .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-nav.scrolled {
    padding-block: .65rem;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0,0,0,.10);
}

.nav-inner {
    max-width: 1360px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    flex-shrink: 0;
    padding: .38rem .75rem .38rem .45rem;
    border-radius: 999px;
    background: rgba(46,46,46,.48);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.site-nav.scrolled .nav-logo {
    background: rgba(255,255,255,.78);
    border-color: rgba(46,46,46,.12);
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.nav-logo-img {
    width: 44px; height: 44px;
    object-fit: contain;
    transition: transform .3s ease;
}
.nav-logo-img:hover { transform: rotate(5deg) scale(1.06); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.nav-brand {
    font-family: var(--f-sans);
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.site-nav.scrolled .nav-brand { color: var(--c-dark); text-shadow: none; }
/* S = yellow, P = white (default / top of page) */
.nav-brand-s1,
.nav-brand-s2 { color: var(--c-yellow); }
.nav-brand-p  { color: #fff; }

/* When scrolled: S = white, P = yellow (reversed) */
.site-nav.scrolled .nav-brand-s1,
.site-nav.scrolled .nav-brand-s2 { color: var(--c-orange); }
.site-nav.scrolled .nav-brand-p  { color: var(--c-yellow); }

.nav-brand-tagline {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-yellow);
    text-shadow: 0 2px 8px rgba(0,0,0,.50);
}
.site-nav.scrolled .nav-brand-tagline { color: var(--c-orange); text-shadow: none; }

/* Desktop right cluster */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: .45rem .05rem;
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    transition: color .2s;
}
.site-nav.scrolled .nav-link { color: var(--c-dark); }
.nav-link:hover { color: var(--c-yellow); }
.site-nav.scrolled .nav-link:hover { color: var(--c-orange); }

.nav-product-group {
    position: relative;
    display: flex;
    align-items: center;
    padding-block: .7rem;
}
.nav-product-trigger {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.nav-product-trigger::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}
.nav-product-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    min-width: 220px;
    padding: .5rem;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 46px rgba(0,0,0,.16);
    border: 1px solid rgba(46,46,46,.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 20;
}
.nav-product-group:hover .nav-product-menu,
.nav-product-group:focus-within .nav-product-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.nav-product-group:hover .nav-product-trigger::after,
.nav-product-group:focus-within .nav-product-trigger::after {
    transform: translateY(1px) rotate(225deg);
}
.nav-product-item {
    display: block;
    padding: .7rem .85rem;
    border-radius: 12px;
    color: var(--c-dark);
    font-size: .82rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-product-item:hover,
.nav-product-item:focus-visible {
    background: var(--c-orange);
    color: #fff;
    transform: translateX(2px);
}

/* Language picker */
.lang-picker { position: relative; }
.lang-picker-btn {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .52rem 1.05rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,.35);
    background: transparent;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}
.site-nav.scrolled .lang-picker-btn { border-color: rgba(46,46,46,.2); color: var(--c-dark); }
.lang-picker-btn:hover { background: rgba(255,255,255,.12); }
.lang-picker-chevron { transition: transform .25s ease; flex-shrink: 0; }

.lang-picker-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 148px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0,0,0,.14);
    padding: .4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 10;
}
.lang-picker-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-item {
    display: block;
    width: 100%;
    padding: .5rem .85rem;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 600;
    text-align: left;
    color: var(--c-dark);
    transition: background .18s, color .18s;
}
.lang-item:hover { background: var(--c-orange); color: #fff; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    border-radius: 2px;
    background: #fff;
    transition: background .2s;
}
.site-nav.scrolled .hamburger span { background: var(--c-dark); }

/* Mobile nav overlay backdrop */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

/* Mobile nav panel */
.mobile-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    z-index: 960;
    background: var(--c-orange);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 2.5rem;
    padding: .25rem;
    line-height: 1;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: auto; }
.mobile-nav-link {
    font-family: var(--f-serif);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    transition: opacity .2s;
}
.mobile-nav-link:hover { opacity: .75; }
.mobile-products-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
}
.mobile-products-toggle::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
}
.mobile-products-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg);
}
.mobile-product-links {
    display: none;
    flex-direction: column;
    gap: .5rem;
    margin-top: -.45rem;
    margin-bottom: .45rem;
    padding-left: .9rem;
    border-left: 2px solid rgba(255,255,255,.42);
}
.mobile-product-links.open {
    display: flex;
}
.mobile-product-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: .62rem .85rem;
    border-radius: 12px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    color: #fff;
    font-size: .94rem;
    font-weight: 800;
    text-decoration: none;
    line-height: 1.2;
    text-align: left;
}
.mobile-product-link:hover,
.mobile-product-link:focus-visible {
    background: #fff;
    color: var(--c-orange);
}
.mobile-lang-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.25);
}
.mobile-lang {
    padding: .45rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,.35);
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    transition: background .2s;
}
.mobile-lang.active, .mobile-lang:hover { background: #fff; color: var(--c-orange); }


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100svh;          /* svh = safe viewport height — handles mobile browser bars */
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-layer {
    position: absolute;
    inset: -8% -4%;          /* oversized so parallax never shows raw edges */
    will-change: transform;
    pointer-events: none;
}
.hero-layer-img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.hero-fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, rgba(255,248,225,.30));
    pointer-events: none;
    z-index: 5;
}
.hero-body {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-inline: 1.25rem;
    max-width: 820px;
    width: 100%;
}
.hero-title {
    font-family: var(--f-serif);
    font-size: clamp(2.6rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.02;
    color: var(--c-dark);
    text-shadow: 0 2px 24px rgba(255,255,255,.65);
    margin-bottom: 1rem;
}
.hero-sub {
    display: inline-block;
    font-size: clamp(1.12rem, 2.3vw, 1.55rem);
    color: rgba(22,22,22,.94);
    font-weight: 750;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 2.25rem;
    padding: .45rem 1rem;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(255,255,255,.85);
    background: rgba(255,255,255,.48);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(255,255,255,.22);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--c-orange);
    color: #fff;
    padding: .9rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(255,107,53,.35);
    transition: background .25s, transform .25s, box-shadow .25s;
    -webkit-tap-highlight-color: transparent;
}
.btn-cta:hover, .btn-cta:focus-visible {
    background: rgba(255,107,53,.88);
    transform: scale(1.04);
    box-shadow: 0 12px 36px rgba(255,107,53,.45);
}

/* Floating blobs */
.hero-deco {
    position: absolute;
    pointer-events: none;
    display: none;
    font-size: 2rem;
    opacity: .25;
    animation: decoFloat 5s ease-in-out infinite;
    user-select: none;
}
.d1 { left: 8%;  top: 20%; animation-delay: 0s;   font-size: 2.2rem; }
.d2 { right: 9%; top: 15%; animation-delay: 2s;   font-size: 2.6rem; }
.d3 { left: 15%; top: 68%; animation-delay: 1s;   font-size: 1.7rem; }
.d4 { right: 7%; top: 72%; animation-delay: 3.2s; font-size: 2.3rem; }
@keyframes decoFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-16px) rotate(10deg); }
}


/* ════════════════════════════════════════════
   PAGE SECTIONS
════════════════════════════════════════════ */
.page-section { padding-block: clamp(3rem, 7vw, 6rem); }
.product-anchor { scroll-margin-top: 110px; }
.section-head  { text-align: center; margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-title {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 900;
    color: var(--c-dark);
    line-height: 1.05;
    margin-bottom: .75rem;
}
.section-sub {
    font-size: clamp(.9rem, 1.6vw, 1.1rem);
    color: var(--c-muted);
    max-width: 680px;
    margin-inline: auto;
    line-height: 1.75;
}


/* ════════════════════════════════════════════
   VIDEO BANNER CARD
════════════════════════════════════════════ */
.video-banner {
    position: relative;
    border-radius: var(--r-banner);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    aspect-ratio: 16/7;
    background: var(--c-dark);    /* fallback while video loads */
}
.video-banner-media {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.video-banner-overlay {
    position: absolute;
    inset: 0;
    /* Stronger gradient — covers bottom 70% so text is always on dark bg */
    background: linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.55) 40%,
        rgba(0,0,0,.15) 65%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1rem, 4vw, 3rem) clamp(1rem, 5vw, 4rem);
    /* Ensure text never overflows the banner */
    overflow: hidden;
}
.video-banner-title {
    font-family: var(--f-serif);
    font-size: clamp(1.25rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: .5rem;
    /* Strong outline so text reads on any video frame */
    text-shadow:
        0 2px 12px rgba(0,0,0,.9),
        0 1px 3px rgba(0,0,0,1),
        0 0 40px rgba(0,0,0,.6);
}
.video-banner-text {
    font-size: clamp(.8rem, 1.4vw, 1rem);
    color: rgba(255,255,255,.95);
    font-weight: 500;
    max-width: 580px;
    line-height: 1.6;
    text-shadow:
        0 1px 6px rgba(0,0,0,.95),
        0 1px 2px rgba(0,0,0,1);
}


/* ════════════════════════════════════════════
   PRODUCT CARDS  (big image | text layout)
════════════════════════════════════════════ */
.product-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2.5vw, 2rem);
}
.pcard {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-card);
    overflow: hidden;
    background: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: var(--shadow-card);
    transition: box-shadow .35s ease, transform .35s ease;
}
.pcard:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); }

/* On wider screens: image sits beside text */
@media (min-width: 860px) {
    .pcard { flex-direction: row; }
    .pcard--flip { flex-direction: row-reverse; }
    .pcard-img-side { width: 44%; flex-shrink: 0; }
    .pcard-body { width: 56%; }
}

.pcard-img-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    min-height: 280px;
}
.bg-yellow-soft { background: var(--yellow-soft); }
.bg-green-soft  { background: var(--green-soft); }
.bg-blue-soft   { background: var(--blue-soft); }
.bg-cyan-soft   { background: var(--cyan-soft); }
.bg-purple-soft { background: var(--purple-soft); }
.bg-deep-green-soft { background: var(--deep-green-soft); }

.pcard-img {
    max-height: 320px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,.12));
    transition: transform .55s ease;
}
.pcard:hover .pcard-img { transform: scale(1.07); }

.pcard-body {
    padding: clamp(1.5rem, 3vw, 2.75rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pcard-title {
    font-family: var(--f-serif);
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    font-weight: 900;
    color: var(--c-dark);
    line-height: 1.2;
    margin-bottom: .9rem;
}
.pcard-desc {
    font-size: clamp(.85rem, 1.3vw, 1rem);
    color: var(--c-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
    padding: .32rem .85rem;
    border-radius: 999px;
    background: var(--c-cream);
    color: var(--c-dark);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    white-space: nowrap;
}


/* ════════════════════════════════════════════
   BRAND INTRO SPLIT  (IRIB)
════════════════════════════════════════════ */
.brand-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    margin-bottom: 3rem;
}
.brand-intro-text .section-sub { margin-inline: 0; margin-bottom: 1.5rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: .65rem; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem 1.1rem;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    font-weight: 700;
    font-size: .85rem;
    color: var(--c-dark);
}
.brand-intro-media {
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    aspect-ratio: 1;
}
.brand-intro-video { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ════════════════════════════════════════════
   JUICE GRID
════════════════════════════════════════════ */
.juice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(.85rem, 2vw, 1.75rem);
}
.juice-grid--4 { grid-template-columns: repeat(4, 1fr); }

.jcard {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow-card);
    transition: box-shadow .3s ease, transform .3s ease;
}
.jcard:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); }
.jcard-img-wrap {
    height: clamp(150px, 22vw, 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.jcard-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,.10));
    transition: transform .45s ease;
}
.jcard:hover .jcard-img { transform: scale(1.10); }
.jcard-body { padding: clamp(.85rem, 2vw, 1.5rem); flex: 1; }
.jcard-title {
    font-size: clamp(.9rem, 1.4vw, 1.1rem);
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: .4rem;
    line-height: 1.25;
}
.jcard-desc {
    font-size: clamp(.78rem, 1.1vw, .9rem);
    color: var(--c-muted);
    line-height: 1.65;
}


/* ════════════════════════════════════════════
   IMAGE DUO  (Sairme range shots)
════════════════════════════════════════════ */
.img-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(.85rem, 2vw, 1.75rem);
    margin-top: clamp(1.5rem, 3vw, 3rem);
}
.img-duo-item {
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow .3s ease;
}
.img-duo-item:hover { box-shadow: var(--shadow-lift); }
.img-duo-img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════ */
.about-section { position: relative; overflow: hidden; }
.about-blob {
    position: absolute;
    width: 480px; height: 480px;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    opacity: .09;
}
.ab1 { background: var(--c-orange); top: 15%; left: 10%; }
.ab2 { background: var(--c-yellow); bottom: 15%; right: 10%; }
.about-inner { position: relative; z-index: 2; }
.about-glass {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 36px;
    padding: clamp(1.75rem, 4vw, 4rem) clamp(1.75rem, 5vw, 5rem);
    box-shadow: var(--shadow-lift);
    margin-top: 2rem;
}
.about-glass p {
    font-size: clamp(.9rem, 1.5vw, 1.15rem);
    color: rgba(46,46,46,.85);
    line-height: 1.85;
    font-weight: 500;
}


/* ════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════ */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

/* Left: orange info panel */
.contact-left {
    background: var(--c-orange);
    color: #fff;
    padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.contact-title {
    font-family: var(--f-serif);
    font-size: clamp(1.8rem, 3.5vw, 3.25rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.contact-note {
    font-size: clamp(.88rem, 1.3vw, 1.05rem);
    color: rgba(255,255,255,.85);
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 2.5rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background .22s;
}
.contact-info-item:hover .contact-info-icon { background: #fff; }
.contact-info-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    opacity: .65;
    margin-bottom: .25rem;
}
.contact-info-val {
    font-size: clamp(.9rem, 1.3vw, 1.05rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    word-break: break-all;
}
.email-val { font-size: clamp(.78rem, 1.1vw, .95rem); }

.social-row { display: flex; gap: .85rem; flex-wrap: wrap; }
.social-ico {
    width: 48px; height: 48px;
    border-radius: 13px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background .22s, color .22s, transform .22s;
    -webkit-tap-highlight-color: transparent;
}
.social-ico:hover { background: #fff; color: var(--c-orange); transform: translateY(-3px) scale(1.06); }

/* Right: form panel */
.contact-right {
    background: #fff;
    padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
}
.form-field { margin-bottom: 1.35rem; }
.form-label {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(46,46,46,.70);
    margin-bottom: .55rem;
}
.form-input {
    width: 100%;
    padding: .9rem 1.25rem;
    border-radius: 16px;
    border: 2px solid transparent;
    background: rgba(255,248,225,.55);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: var(--f-sans);
    outline: none;
    transition: border-color .22s, background .22s;
    appearance: none;
}
.form-input:focus { border-color: var(--c-orange); background: #fff; }
.form-input::placeholder { color: rgba(46,46,46,.55); font-weight: 500; }
.form-textarea { min-height: 150px; resize: none; }
.form-submit {
    width: 100%;
    padding: 1.05rem;
    border: none;
    border-radius: 16px;
    background: var(--c-dark);
    color: #fff;
    font-family: var(--f-sans);
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
    transition: background .22s, transform .2s, box-shadow .22s;
    -webkit-tap-highlight-color: transparent;
}
.form-submit:hover, .form-submit:focus-visible {
    background: var(--c-orange);
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(255,107,53,.28);
}


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
    background: var(--c-dark);
    color: #fff;
    padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: .9rem;
}
.footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    padding: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.footer-brand-name {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #fff;
    line-height: 1;
    margin-bottom: 3px;
    text-shadow: 0 2px 12px rgba(0,0,0,.42);
}
.footer-sps { color: var(--c-yellow); }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.72); font-weight: 650; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .4rem 2rem; align-items: center; }
.footer-nav-link {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.50);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}
.footer-nav-link:hover { color: var(--c-yellow); }
.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,.10);
    text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.32); font-weight: 500; }


/* ════════════════════════════════════════════
   TOAST
════════════════════════════════════════════ */
.site-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    translate: -50% 0;
    z-index: 9999;
    background: var(--c-dark);
    color: #fff;
    padding: .9rem 1.75rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 12px 40px rgba(0,0,0,.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .32s ease, transform .32s ease;
}
.site-toast.toast-show { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════ */

/* ── Tablet landscape + small desktop (1024px) ── */
@media (max-width: 1024px) {
    .brand-intro      { grid-template-columns: 1fr; gap: 2.5rem; }
    .brand-intro-media { aspect-ratio: 16/9; }
    .juice-grid       { grid-template-columns: repeat(3, 1fr); }
    .juice-grid--4    { grid-template-columns: repeat(2, 1fr); }
    .contact-card     { grid-template-columns: 1fr; }
    .contact-left, .contact-right { padding: 2.5rem 2rem; justify-content: flex-start; }
    .footer-inner     { gap: 1.5rem; }
}

/* ── Tablet portrait (768px) ── */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop links */
    .nav-right  { display: none; }
    .site-nav { padding-block: .75rem; }
    .site-nav.scrolled { padding-block: .5rem; }
    .nav-inner {
        padding-inline: .85rem;
        gap: .55rem;
    }
    .nav-logo {
        max-width: calc(100% - 54px);
        gap: .48rem;
        padding: .28rem .55rem .28rem .34rem;
        border-radius: 999px;
        overflow: hidden;
    }
    .nav-logo-img {
        width: 36px;
        height: 36px;
    }
    .nav-logo-text {
        min-width: 0;
    }
    .nav-brand {
        font-size: 1rem;
        line-height: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .nav-brand-tagline {
        font-size: .5rem;
        letter-spacing: .12em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .hamburger  {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 12px;
        background: rgba(255,255,255,.72);
        border: 1px solid rgba(46,46,46,.12);
        box-shadow: 0 8px 20px rgba(0,0,0,.10);
    }
    .hamburger span { background: var(--c-dark); }

    /* Hero: use 70vh on tablet so no empty space below */
    .hero { height: 70svh; min-height: 440px; }
    /* Hero parallax disabled for performance — JS checks hover:hover */
    .hero-layer { inset: 0; }

    /* Video banner: change ratio on tablet */
    .video-banner { aspect-ratio: 16/9; }
    /* Stronger overlay on tablet since video is shorter */
    .video-banner-overlay {
        background: linear-gradient(
            to top,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.60) 45%,
            rgba(0,0,0,.20) 70%,
            transparent 100%
        );
        padding: 1.25rem 1.5rem;
    }
    .video-banner-title { font-size: clamp(1.1rem, 3.5vw, 1.8rem); }
    .video-banner-text  { font-size: clamp(.78rem, 2vw, .95rem); }

    /* Product cards: stack image above text */
    .product-anchor { scroll-margin-top: 88px; }
    .product-stack { grid-template-columns: 1fr; }
    .pcard { flex-direction: column !important; }
    .pcard-img-side { width: 100%; min-height: 220px; }
    .pcard-body     { width: 100%; background: #fff; color: var(--c-dark); }

    /* Juice grid: 2 columns on tablet */
    .juice-grid    { grid-template-columns: repeat(2, 1fr); }
    .juice-grid--4 { grid-template-columns: repeat(2, 1fr); }

    /* Brand intro always stacks */
    .brand-intro { grid-template-columns: 1fr; }

    /* Image duo: 1 column on tablet */
    .img-duo { grid-template-columns: 1fr; }

    /* About glass: less padding */
    .about-glass { padding: 1.75rem; border-radius: 24px; }
    .about-blob  { width: 280px; height: 280px; }

    /* Contact: already 1-col from 1024px rule */
    .contact-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }

    /* Footer */
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-nav   { gap: .4rem 1.25rem; }

    /* Hero text tighter */
    .hero-deco { display: none; }   /* blobs clutter small screens */
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    .nav-inner { padding-inline: .65rem; }
    .nav-logo {
        max-width: calc(100% - 48px);
        gap: .42rem;
        padding: .24rem .46rem .24rem .3rem;
    }
    .nav-logo-img {
        width: 32px;
        height: 32px;
    }
    .nav-brand { font-size: .9rem; }
    .nav-brand-tagline {
        font-size: .43rem;
        letter-spacing: .1em;
    }
    .hamburger {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }
    .hamburger span {
        width: 21px;
        height: 2px;
    }

    /* Hero: use 60vh on phone */
    .hero { height: 60svh; min-height: 380px; }

    /* Video banner: taller on small phones so text has room */
    .video-banner { aspect-ratio: 3/2; border-radius: 16px; }
    .video-banner-overlay {
        background: linear-gradient(
            to top,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.70) 50%,
            rgba(0,0,0,.25) 75%,
            transparent 100%
        );
        padding: .9rem 1rem;
        justify-content: flex-end;
    }
    .video-banner-title { font-size: 1rem; margin-bottom: .3rem; }
    .video-banner-text  { font-size: .75rem; line-height: 1.5; }

    .mobile-product-link {
        min-height: 40px;
        font-size: .88rem;
        padding: .56rem .75rem;
    }

    /* Juice grid: 1 column on small phones */
    .juice-grid    { grid-template-columns: 1fr; }
    .juice-grid--4 { grid-template-columns: 1fr 1fr; }

    /* Product cards */
    .pcard-img-side { min-height: 220px; padding: 1.5rem; background-clip: padding-box; }
    .pcard-img      { max-height: 220px; }
    .pcard-body     { padding: 1.5rem; background: #fff; color: var(--c-dark); }
    .pcard-title    { font-size: 1.15rem; color: var(--c-dark); }
    .pcard-desc     { font-size: .9rem; color: var(--c-muted); }

    /* Brand intro */
    .brand-intro-media { aspect-ratio: 16/9; }

    /* About glass */
    .about-glass { border-radius: 18px; padding: 1.25rem; }
    .about-blob  { display: none; }

    /* Contact */
    .contact-card  { border-radius: 20px; }
    .contact-left, .contact-right { padding: 1.75rem 1.25rem; }
    .contact-info-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; }
    .social-ico { width: 42px; height: 42px; border-radius: 10px; }

    /* Footer */
    .footer-brand-name { font-size: 1.2rem; }
    .footer-nav { gap: .35rem 1rem; }

    /* Section titles tighter on phone */
    .section-title { margin-bottom: .5rem; }

    /* Jcard image height */
    .jcard-img-wrap { height: 140px; }
    .jcard-body { background: #fff; color: var(--c-dark); }
    .jcard-title { color: var(--c-dark); }
    .jcard-desc  { color: var(--c-muted); }

    /* Toast at bottom — ensure it doesn't overlap form submit */
    .site-toast { bottom: 1.25rem; padding: .75rem 1.25rem; font-size: .82rem; }
}

/* ── Very small phones (360px) ── */
@media (max-width: 360px) {
    .nav-logo-img {
        width: 30px;
        height: 30px;
    }
    .nav-brand { font-size: .82rem; }
    .nav-brand-tagline { font-size: .39rem; }
    .video-banner   { aspect-ratio: 4/3; }
    .video-banner-title { font-size: .92rem; }
    .video-banner-text  { font-size: .7rem; }
    .juice-grid--4  { grid-template-columns: 1fr; }
    .mobile-nav-link { font-size: 1.8rem; }
    .hero-title     { font-size: 2.2rem; }
}

/* ── Landscape phone (short + wide) ── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { height: 100svh; }
    .hero-title { font-size: 2.2rem; }
    .hero-sub   { display: none; }
    .btn-cta    { padding: .7rem 1.5rem; font-size: .9rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-deco { animation: none; }
    .hero-layer, .hero-body { transform: none !important; opacity: 1 !important; }
    .pcard, .jcard, .img-duo-item { transition: none; }
}

/* ── Touch devices: remove hover-only effects ── */
@media (hover: none) {
    .pcard:hover, .jcard:hover { transform: none; box-shadow: var(--shadow-card); }
    .pcard:hover .pcard-img    { transform: none; }
    .jcard:hover .jcard-img    { transform: none; }
    .social-ico:hover          { transform: none; }
    .btn-cta:hover             { transform: none; }
}


/* ════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════ */

/* Clickable images get a pointer + subtle zoom hint */
.lightbox-trigger {
    cursor: zoom-in;
    transition: transform .3s ease, filter .3s ease;
}
.lightbox-trigger:hover {
    transform: scale(1.04);
    filter: brightness(1.05) drop-shadow(0 12px 32px rgba(0,0,0,.18));
}

/* Backdrop */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 1.25rem;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}

/* Image wrapper */
.lightbox-inner {
    position: relative;
    max-width: min(90vw, 820px);
    max-height: 90svh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.88);
    transition: transform .32s cubic-bezier(.34,1.46,.64,1);
}
.lightbox.open .lightbox-inner {
    transform: scale(1);
}

/* The expanded image */
.lightbox-img {
    max-width: 100%;
    max-height: 88svh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: var(--c-dark);
    font-size: 1.3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.22);
    transition: background .2s, transform .2s, color .2s;
    cursor: pointer;
    z-index: 1;
}
.lightbox-close:hover {
    background: var(--c-orange);
    color: #fff;
    transform: scale(1.1) rotate(90deg);
}

@media (max-width: 480px) {
    .lightbox-close {
        top: -10px;
        right: -10px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* Larger product images for IRIB juices and SAIRME lemonades */
#irib .jcard-img-wrap,
#sairme-lemonades .jcard-img-wrap {
    height: clamp(230px, 25vw, 310px);
    padding: .9rem;
}

@media (max-width: 768px) {
    #irib .jcard-img-wrap,
    #sairme-lemonades .jcard-img-wrap {
        height: 240px;
        padding: .85rem;
    }
}

@media (max-width: 480px) {
    #irib .jcard-img-wrap,
    #sairme-lemonades .jcard-img-wrap {
        height: 220px;
        padding: .75rem;
    }
}

@media (max-width: 360px) {
    #irib .jcard-img-wrap,
    #sairme-lemonades .jcard-img-wrap {
        height: 230px;
    }
}
