@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap');

:root {
    --ink: #071b24;
    --ink-soft: #0d2a34;
    --water: #29d3c2;
    --water-light: #b8fff4;
    --acid: #d9ff62;
    --sky: #d8eff2;
    --paper: #f4f5ee;
    --white: #ffffff;
    --muted: #64747a;
    --line: rgba(7, 27, 36, .14);
    --primary-color: #0c8f86;
    --primary-dark: #076860;
    --text-dark: #071b24;
    --text-gray: #64747a;
    --bg-light: #f0f3ed;
    --border-color: #d7dfdc;
    --radius-sm: 14px;
    --radius-md: 28px;
    --radius-lg: 42px;
    --shadow: 0 24px 70px rgba(2, 19, 25, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'Manrope', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--acid); }
:focus-visible { outline: 3px solid var(--water); outline-offset: 4px; }

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--acid);
    border-radius: 999px;
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(1320px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 150px 0; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #426068; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: var(--white);
    border-bottom: 1px solid transparent;
    transition: background .35s, border-color .35s, color .35s, transform .35s;
}
.header.scrolled {
    color: var(--ink);
    background: rgba(244, 245, 238, .9);
    border-color: var(--line);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}
.header-inner { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.brand-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}
.brand-word { font-size: 20px; font-weight: 800; letter-spacing: .16em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav-link, .nav-cta { position: relative; font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 18px; color: var(--ink); background: var(--acid); border-radius: 999px; }
.menu-toggle { display: none; }

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    padding: 132px 0 72px;
    color: var(--white);
    background:
        radial-gradient(circle at 68% 35%, rgba(45, 218, 199, .2), transparent 28%),
        linear-gradient(145deg, #061922 5%, #0a3039 58%, #0b4c4a 100%);
    isolation: isolate;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .14;
    background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit-one { width: 680px; height: 680px; top: 5%; right: -15%; animation: orbit 18s linear infinite; }
.orbit-two { width: 300px; height: 300px; bottom: -8%; left: 35%; animation: orbit 12s linear infinite reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-grid { min-height: calc(100svh - 204px); display: grid; grid-template-columns: 1.05fr .8fr; align-items: center; gap: 8vw; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
    margin: 0;
    font-size: clamp(64px, 7.3vw, 120px);
    font-weight: 800;
    line-height: .89;
    letter-spacing: -.065em;
}
.hero-copy h1 em { color: var(--water); font-family: Georgia, serif; font-weight: 400; letter-spacing: -.075em; }
.hero-subtitle { margin: 34px 0 0; font-size: clamp(18px, 1.55vw, 25px); font-weight: 600; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.hero-facts { display: flex; gap: 34px; margin: 52px 0 0; }
.hero-facts div { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.28); }
.hero-facts dt { color: rgba(255,255,255,.58); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.hero-facts dd { margin: 4px 0 0; font-size: 15px; font-weight: 700; }
.hero-media { position: relative; justify-self: end; width: min(440px, 100%); }
.hero-video-shell { position: relative; aspect-ratio: 9/13.3; border-radius: 210px 210px 30px 30px; overflow: hidden; box-shadow: 0 40px 120px rgba(0,0,0,.45); }
.hero-video-shell::before { content: ''; position: absolute; inset: 12px; z-index: 2; border: 1px solid rgba(255,255,255,.25); border-radius: inherit; pointer-events: none; }
.hero-video-shell video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-shade { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(3,15,20,.8)); pointer-events: none; }
.hero-video-index, .hero-video-caption { position: absolute; z-index: 3; margin: 0; }
.hero-video-index { top: 38px; left: 38px; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.hero-video-caption { right: 35px; bottom: 36px; left: 35px; font-size: clamp(28px, 3vw, 45px); font-weight: 800; line-height: .92; letter-spacing: -.04em; }
.sound-toggle {
    position: absolute;
    z-index: 4;
    right: 52px;
    top: 52px;
    padding: 8px 11px;
    color: var(--white);
    background: rgba(4,18,22,.5);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    cursor: pointer;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.float-card { position: absolute; z-index: 5; min-width: 146px; padding: 16px 18px; color: var(--ink); background: rgba(255,255,255,.92); border-radius: 17px; box-shadow: var(--shadow); }
.float-card span { display: block; color: #5a7077; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.float-card strong { display: block; margin-top: 3px; font-size: 13px; }
.float-card-top { top: 18%; left: -60px; animation: float 5s ease-in-out infinite; }
.float-card-bottom { right: -52px; bottom: 18%; animation: float 5s ease-in-out 1.2s infinite; }
@keyframes float { 50% { transform: translateY(-12px); } }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.66); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-decoration: none; transform: translateX(-50%); }
.scroll-cue span { position: relative; width: 42px; height: 1px; background: rgba(255,255,255,.3); overflow: hidden; }
.scroll-cue span::after { content: ''; position: absolute; inset: 0; background: var(--white); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* Ticker */
.motion-ticker { color: var(--ink); background: var(--acid); border-block: 1px solid rgba(7,27,36,.3); overflow: hidden; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 18px 0; animation: ticker 25s linear infinite; }
.ticker-track span { font-size: 16px; font-weight: 800; letter-spacing: .08em; }
.ticker-track i { font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Shared headings */
.section-head, .products-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 64px; }
.section-head h2, .products-heading h2 { margin: 0; font-size: clamp(44px, 5.6vw, 82px); font-weight: 800; line-height: .98; letter-spacing: -.055em; }
.section-head > p { max-width: 470px; margin: 0 0 6px; color: var(--muted); font-size: 16px; }

/* Categories */
.categories { background: var(--paper); }
.category-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; }
.category-card { position: relative; min-height: 610px; color: var(--white); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; isolation: isolate; }
.category-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,18,25,.04), rgba(3,18,25,.86)); }
.category-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .8s; }
.category-card:hover img { transform: scale(1.07); filter: saturate(1.1); }
.category-no { position: absolute; top: 34px; left: 38px; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.category-copy { position: absolute; right: 38px; bottom: 38px; left: 38px; }
.category-copy small { font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.category-copy h3 { margin: 7px 0 9px; font-size: clamp(38px, 4vw, 62px); line-height: 1; letter-spacing: -.05em; }
.category-copy p { margin: 0; color: rgba(255,255,255,.72); }
.round-arrow { position: absolute; right: 34px; top: 30px; width: 48px; height: 48px; display: grid; place-items: center; color: var(--ink); background: var(--white); border-radius: 50%; font-size: 20px; transition: transform .3s; }
.category-card:hover .round-arrow { transform: rotate(45deg); }
.category-camp { min-height: 520px; align-self: end; }

/* Film */
.film-section { padding: 150px 0; color: var(--white); background: var(--ink); overflow: hidden; }
.film-grid { display: grid; grid-template-columns: .82fr 1fr; align-items: center; gap: 9vw; }
.film-copy h2 { margin: 0; font-size: clamp(54px, 6.4vw, 94px); font-weight: 800; line-height: .96; letter-spacing: -.06em; }
.film-copy h2 em { color: var(--water); font-family: Georgia, serif; font-weight: 400; }
.film-copy > p:not(.eyebrow) { max-width: 570px; margin: 34px 0; color: rgba(255,255,255,.65); font-size: 17px; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 38px; }
.feature-chips span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.76); font-size: 11px; font-weight: 700; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translate(4px, -4px); }
.film-player { position: relative; justify-self: end; width: min(540px, 100%); }
.film-player::before { content: ''; position: absolute; top: -10%; right: -24%; width: 66%; aspect-ratio: 1; background: var(--water); border-radius: 50%; filter: blur(90px); opacity: .25; }
.film-player video { position: relative; width: 100%; aspect-ratio: 9/14; object-fit: cover; background: #07151a; border-radius: 260px 260px 28px 28px; box-shadow: 0 35px 90px rgba(0,0,0,.45); }
.film-label { position: absolute; right: -30px; bottom: 50px; padding: 12px 18px; color: var(--ink); background: var(--acid); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .13em; transform: rotate(-4deg); }

/* Shorts */
.shorts-section { background: var(--sky); }
.shorts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.short-card { margin: 0; }
.short-frame { position: relative; aspect-ratio: 9/16; background: #aecbd0; border-radius: 180px 180px 26px 26px; overflow: hidden; box-shadow: 0 20px 45px rgba(7,27,36,.12); transition: transform .4s, border-radius .4s; }
.short-card:hover .short-frame { transform: translateY(-10px); border-radius: 24px; }
.short-frame iframe { width: 100%; height: 100%; border: 0; }
.short-play { position: relative; width: 100%; height: 100%; padding: 0; background: #aecbd0; border: 0; cursor: pointer; overflow: hidden; }
.short-play::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,18,25,.52), transparent 58%); }
.short-play img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.short-play > span { position: absolute; z-index: 2; top: 50%; left: 50%; width: 62px; height: 62px; display: grid; place-items: center; padding-left: 4px; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 18px; transform: translate(-50%, -50%); transition: transform .3s; }
.short-play:hover img { transform: scale(1.045); }
.short-play:hover > span { transform: translate(-50%, -50%) scale(1.1); }
.short-card > div:last-child { display: flex; align-items: baseline; gap: 15px; padding: 18px 6px 0; }
.short-card span { color: var(--muted); font-size: 11px; font-weight: 800; }
.short-card h3 { margin: 0; font-size: 15px; letter-spacing: .08em; }

/* Products */
.products-section { background: var(--paper); }
.filter-tabs { display: inline-flex; gap: 6px; padding: 5px; background: #e5e9e2; border-radius: 999px; }
.filter-button { padding: 10px 17px; color: #4f6267; background: transparent; border: 0; border-radius: 999px; font-size: 11px; font-weight: 800; cursor: pointer; }
.filter-button.active { color: var(--white); background: var(--ink); }
.products-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { position: relative; min-width: 0; display: flex; flex-direction: column; background: var(--white); border: 1px solid rgba(7,27,36,.08); border-radius: var(--radius-md); overflow: hidden; transition: transform .35s, box-shadow .35s; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image { position: relative; display: block; aspect-ratio: 1 / 1; background: #e7eeec; overflow: hidden; }
.product-image img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.product-badge { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 7px 11px; color: var(--ink); background: var(--acid); border-radius: 999px; font-size: 9px; font-weight: 800; }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.product-category { color: var(--primary-color); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.product-name { min-height: 52px; margin: 9px 0 10px; font-size: 20px; line-height: 1.3; letter-spacing: -.025em; }
.product-desc { display: -webkit-box; margin: 0 0 19px; color: var(--muted); font-size: 13px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-meta { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.product-price { font-size: 20px; font-weight: 800; }
.price-original { margin-right: 6px; color: #8b999d; font-size: 11px; font-weight: 500; text-decoration: line-through; }
.product-link { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; text-decoration: none; transition: transform .25s, background .25s; }
.product-link:hover { background: var(--primary-color); transform: rotate(45deg); }
.product-status { margin: 28px 0 0; color: var(--muted); text-align: center; }
.product-status:empty { display: none; }

/* Story */
.brand-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 880px; color: var(--white); background: #0c393f; }
.brand-story-image { position: relative; min-width: 0; min-height: 700px; display: grid; place-items: center; padding: clamp(22px, 3vw, 48px); background: #183a57; isolation: isolate; overflow: hidden; }
.brand-story-image::before { content: ''; position: absolute; inset: -28%; z-index: -1; background: radial-gradient(circle at 24% 30%, rgba(41,211,194,.28), transparent 24%), radial-gradient(circle at 76% 68%, rgba(217,255,98,.16), transparent 22%); filter: blur(20px); animation: story-aurora-drift 12s ease-in-out infinite alternate; }
.brand-story-image img { position: relative; z-index: 1; display: block; width: min(100%, 860px); height: auto; max-width: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 24px 42px rgba(2,18,24,.3)); animation: story-image-drift 7s ease-in-out infinite; will-change: transform; }
.brand-story-image::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(3,21,25,.5), transparent 55%); pointer-events: none; }
.brand-story-image > span { position: absolute; z-index: 3; bottom: 35px; left: 38px; padding: 10px 15px; color: var(--ink); background: var(--acid); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .12em; animation: story-badge-pulse 4.8s ease-in-out infinite; }
.brand-story-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 90px clamp(44px, 7vw, 120px); isolation: isolate; overflow: hidden; }
.brand-story-copy::before { content: ''; position: absolute; z-index: -1; top: -24%; right: -28%; width: min(54vw, 720px); aspect-ratio: 1; background: radial-gradient(circle, rgba(41,211,194,.13), transparent 66%); border: 1px solid rgba(184,255,244,.11); border-radius: 48% 52% 44% 56%; animation: story-copy-glow 14s ease-in-out infinite alternate; }
.brand-story-copy .eyebrow > span { transform-origin: left; animation: story-line-breathe 3.4s ease-in-out infinite; }
.brand-story-copy h2 { margin: 0; font-size: clamp(44px, 5vw, 76px); line-height: 1.02; letter-spacing: -.055em; }
.brand-story-copy > p:not(.eyebrow) { margin: 32px 0; color: rgba(255,255,255,.66); font-size: 16px; }
.brand-story-copy blockquote { margin: 0 0 45px; color: var(--water-light); font-family: Georgia, 'Noto Serif KR', serif; font-size: clamp(23px, 2.3vw, 36px); font-style: italic; line-height: 1.45; animation: story-quote-breathe 5.4s ease-in-out infinite; }
.story-timeline { margin: 0; }
.story-timeline div { position: relative; display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.16); overflow: hidden; }
.story-timeline div::after { content: ''; position: absolute; top: 0; left: 0; width: 42%; height: 1px; background: linear-gradient(90deg, transparent, var(--water-light), transparent); transform: translateX(-130%); animation: story-timeline-sweep 7.2s ease-in-out infinite; }
.story-timeline div:nth-child(2)::after { animation-delay: 1.2s; }
.story-timeline div:nth-child(3)::after { animation-delay: 2.4s; }
.story-timeline dt { color: var(--water); font-weight: 800; animation: story-year-pulse 4.8s ease-in-out infinite; }
.story-timeline div:nth-child(2) dt { animation-delay: .8s; }
.story-timeline div:nth-child(3) dt { animation-delay: 1.6s; }
.story-timeline dd { margin: 0; color: rgba(255,255,255,.72); }

@keyframes story-aurora-drift {
    0% { transform: translate3d(-3%, -2%, 0) rotate(-4deg) scale(.96); }
    100% { transform: translate3d(5%, 4%, 0) rotate(5deg) scale(1.08); }
}
@keyframes story-image-drift {
    0%, 100% { transform: translate3d(0, 3px, 0) rotate(-.12deg); }
    50% { transform: translate3d(0, -8px, 0) rotate(.12deg); }
}
@keyframes story-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217,255,98,0); transform: translateY(0); }
    50% { box-shadow: 0 0 0 9px rgba(217,255,98,.08); transform: translateY(-3px); }
}
@keyframes story-copy-glow {
    0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(.92); opacity: .6; }
    100% { transform: translate3d(-8%, 10%, 0) rotate(18deg) scale(1.12); opacity: 1; }
}
@keyframes story-line-breathe {
    0%, 100% { transform: scaleX(.55); opacity: .55; }
    50% { transform: scaleX(1.25); opacity: 1; }
}
@keyframes story-quote-breathe {
    0%, 100% { color: rgba(184,255,244,.78); text-shadow: 0 0 0 rgba(41,211,194,0); }
    50% { color: var(--water-light); text-shadow: 0 0 24px rgba(41,211,194,.16); }
}
@keyframes story-timeline-sweep {
    0%, 58% { transform: translateX(-130%); opacity: 0; }
    68% { opacity: 1; }
    88%, 100% { transform: translateX(340%); opacity: 0; }
}
@keyframes story-year-pulse {
    0%, 100% { color: var(--water); text-shadow: 0 0 0 rgba(41,211,194,0); }
    50% { color: var(--water-light); text-shadow: 0 0 18px rgba(41,211,194,.34); }
}

/* Reviews */
.review-section { background: var(--paper); }
.dark-link { color: var(--ink); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.review-card { min-width: 0; display: grid; grid-template-rows: auto 1fr; color: var(--white); background: var(--ink); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; transition: transform .35s, box-shadow .35s; }
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.review-card img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s; }
.review-card:hover img { transform: scale(1.04); }
.review-card > div { display: flex; flex-direction: column; min-height: 190px; padding: 26px; }
.review-card span { color: var(--water); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.review-card h3 { flex: 1; margin: 10px 0 25px; font-size: 20px; line-height: 1.4; }
.review-card p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 700; }

/* Quality */
.quality-section { padding: 130px 0; color: var(--white); background: #09252d; }
.quality-intro { max-width: none; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); column-gap: clamp(56px, 8vw, 130px); margin-bottom: 58px; }
.quality-intro .eyebrow, .quality-intro h2 { grid-column: 1; }
.quality-intro h2 { margin: 0; font-size: clamp(52px, 6.2vw, 90px); line-height: .98; letter-spacing: -.06em; }
.quality-intro > p:not(.eyebrow) { grid-column: 2; grid-row: 1 / 3; align-self: end; max-width: 560px; margin: 0 0 8px; color: rgba(255,255,255,.62); font-size: 16px; }
.quality-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.quality-card { min-width: 0; display: grid; grid-template-columns: minmax(185px, .72fr) minmax(0, 1fr); margin: 0; padding: 14px; color: var(--ink); background: #eef2eb; border-radius: 28px; transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1), box-shadow .35s; }
.quality-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.quality-preview { position: relative; display: grid; place-items: center; min-height: 340px; padding: 10px; background: var(--white); border: 1px solid rgba(7,27,36,.08); border-radius: 19px; overflow: hidden; }
.quality-preview img { width: 100%; height: 100%; max-width: none; max-height: 340px; object-fit: contain; object-position: center; background: var(--white); }
.quality-card:nth-child(even) .quality-preview img { object-position: center; }
.quality-preview::after { content: none; }
.quality-proof { position: absolute; right: 10px; bottom: 10px; z-index: 2; display: inline-flex; padding: 7px 10px; color: var(--ink); background: var(--acid); border-radius: 999px; box-shadow: 0 5px 15px rgba(7,27,36,.1); }
.quality-proof::before { content: none; }
.quality-proof strong { font-size: 10px; line-height: 1; letter-spacing: -.01em; }
.quality-meta { display: flex; align-items: center; gap: 16px; min-width: 0; min-height: 0; padding: 30px 24px; }
.quality-index { flex: 0 0 auto; color: var(--primary-color); font-size: 12px; font-weight: 800; }
.quality-meta h3 { margin: 0; font-size: clamp(21px, 2vw, 29px); line-height: 1.25; }
.quality-meta p { margin: 8px 0 0; color: var(--primary-color); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.quality-meta small { display: block; margin-top: 18px; color: #6a7b80; font-size: 11px; font-weight: 700; line-height: 1.5; }

/* Contact / footer */
.contact-section { padding: 140px 0; color: var(--ink); background: var(--acid); }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 9vw; align-items: start; }
.contact-grid h2 { margin: 0; font-size: clamp(52px, 6.5vw, 96px); line-height: .94; letter-spacing: -.065em; }
.contact-grid .eyebrow { color: #4a5f25; }
.contact-actions a { position: relative; display: block; padding: 22px 55px 22px 0; border-top: 1px solid rgba(7,27,36,.25); text-decoration: none; }
.contact-actions a:last-child { border-bottom: 1px solid rgba(7,27,36,.25); }
.contact-actions span { display: block; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.contact-actions strong { display: block; margin-top: 5px; font-size: clamp(18px, 2vw, 28px); }
.contact-actions i { position: absolute; right: 8px; top: 50%; font-size: 22px; font-style: normal; transform: translateY(-50%); transition: transform .25s; }
.contact-actions a:hover i { transform: translate(5px, -55%); }
.footer { padding: 72px 0 35px; color: var(--white); background: #041319; }
.footer-top { display: flex; align-items: start; justify-content: space-between; padding-bottom: 58px; border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-top strong { font-size: clamp(50px, 8vw, 110px); line-height: .8; letter-spacing: -.06em; }
.footer-top p { color: var(--water); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.footer-top a { font-size: 11px; font-weight: 800; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 30px; color: rgba(255,255,255,.5); font-size: 11px; }
.footer-bottom p { margin: 0; }

/* Existing product detail compatibility */
.logo h1 { margin: 0; font-size: 28px; letter-spacing: .13em; }
.logo p { margin: 0; font-size: 10px; }

/* Chatbot integration */
.brinia-chat-button {
    width: 58px !important;
    height: 58px !important;
    right: 22px !important;
    bottom: 22px !important;
    color: var(--ink) !important;
    background: var(--acid) !important;
    box-shadow: 0 14px 35px rgba(4,19,25,.24) !important;
}
.brinia-chat-window { border: 1px solid rgba(7,27,36,.12); border-radius: 22px !important; }
.brinia-chat-header { background: var(--ink) !important; }
.brinia-chat-send, .brinia-message.user { background: var(--primary-color) !important; }

/* Responsive */
@media (max-width: 1080px) {
    .container { width: min(100% - 40px, 960px); }
    .nav { gap: 18px; }
    .hero-grid { grid-template-columns: 1fr .72fr; gap: 5vw; }
    .float-card-bottom { right: -20px; }
    .film-grid { gap: 6vw; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    html { scroll-padding-top: 72px; }
    .container { width: min(100% - 32px, 720px); }
    .section { padding: 94px 0; }
    .header-inner { height: 72px; }
    .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; color: inherit; background: transparent; border: 1px solid currentColor; border-radius: 50%; cursor: pointer; }
    .menu-toggle span { width: 17px; height: 1px; background: currentColor; transition: transform .3s; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .nav { position: fixed; inset: 72px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 30px 24px; color: var(--ink); background: var(--paper); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
    .nav.open { transform: none; }
    .nav-link, .nav-cta { padding: 16px 0; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 18px; }
    .nav-cta { margin-top: 18px; padding: 15px 18px; text-align: center; border: 0; border-radius: 999px; }
    .hero { padding-top: 108px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-copy h1 { font-size: clamp(57px, 15vw, 88px); }
    .hero-media { justify-self: center; width: min(390px, 88%); }
    .hero-facts { gap: 17px; }
    .float-card-top { left: -30px; }
    .float-card-bottom { right: -24px; }
    .scroll-cue { display: none; }
    .section-head, .products-heading { align-items: start; flex-direction: column; margin-bottom: 42px; }
    .section-head h2, .products-heading h2 { font-size: clamp(42px, 11vw, 66px); }
    .category-grid, .film-grid, .brand-story, .contact-grid { grid-template-columns: 1fr; }
    .category-card, .category-camp { min-height: 500px; }
    .film-section, .quality-section { padding: 100px 0; }
    .quality-intro { display: block; margin-bottom: 46px; }
    .quality-intro > p:not(.eyebrow) { max-width: 620px; margin-top: 24px; }
    .film-player { justify-self: center; width: min(480px, 86%); }
    .shorts-grid { gap: 14px; }
    .short-frame { border-radius: 100px 100px 18px 18px; }
    .short-card h3 { font-size: 11px; }
    .brand-story-image { min-height: 0; aspect-ratio: 860 / 563; padding: 16px; }
    .brand-story-copy { padding: 85px 28px; }
    .review-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { gap: 60px; }
}

@media (max-width: 560px) {
    .container { width: calc(100% - 28px); }
    .brand-word { font-size: 17px; }
    .hero { padding-bottom: 70px; }
    .hero-copy h1 { font-size: clamp(50px, 17vw, 70px); }
    .hero-subtitle { font-size: 17px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
    .hero-facts dd { font-size: 12px; }
    .hero-media { width: 88%; }
    .float-card { min-width: 125px; padding: 12px 14px; }
    .float-card-top { left: -20px; }
    .float-card-bottom { right: -20px; }
    .motion-ticker .ticker-track { padding: 13px 0; }
    .ticker-track span { font-size: 12px; }
    .section-head > p { font-size: 14px; }
    .category-card, .category-camp { min-height: 430px; border-radius: 28px; }
    .category-copy { right: 23px; bottom: 25px; left: 23px; }
    .category-copy h3 { font-size: 39px; }
    .round-arrow { right: 21px; top: 20px; }
    .film-copy h2 { font-size: 48px; }
    .film-player { width: 90%; }
    .film-label { right: -12px; }
    .shorts-grid { display: flex; gap: 16px; margin-right: -14px; padding: 0 14px 22px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .shorts-grid::-webkit-scrollbar { display: none; }
    .short-card { flex: 0 0 min(80vw, 320px); width: auto; margin: 0; scroll-snap-align: start; }
    .short-frame { border-radius: 160px 160px 22px 22px; }
    .products-heading { gap: 25px; }
    .filter-tabs { width: 100%; }
    .filter-button { flex: 1; padding-inline: 8px; }
    .products-grid { grid-template-columns: 1fr; }
    .brand-story-image { min-height: 0; padding: 12px; }
    .brand-story-copy { padding: 75px 20px; }
    .brand-story-copy h2 { font-size: 43px; }
    .review-grid, .quality-grid { grid-template-columns: 1fr; }
    .quality-grid { gap: 18px; }
    .quality-card { grid-template-columns: minmax(122px, .65fr) minmax(0, 1fr); padding: 10px; border-radius: 22px; }
    .quality-preview { min-height: 240px; padding: 6px; border-radius: 15px; }
    .quality-preview img { max-height: 240px; }
    .quality-proof { right: 7px; bottom: 7px; padding: 6px 8px; }
    .quality-proof strong { font-size: 9px; }
    .quality-meta { align-items: flex-start; flex-direction: column; justify-content: center; gap: 9px; min-height: 0; padding: 18px 14px; }
    .quality-meta h3 { font-size: 19px; }
    .quality-meta small { margin-top: 13px; font-size: 10px; }
    .review-card img { height: auto; }
    .quality-intro h2, .contact-grid h2 { font-size: 47px; }
    .footer { padding-top: 55px; }
    .footer-top, .footer-bottom { flex-direction: column; }
    .footer-top { gap: 32px; }
    .footer-top strong { font-size: 61px; }
    .brinia-chat-window { right: 12px !important; bottom: 86px !important; width: calc(100vw - 24px) !important; height: min(520px, calc(100svh - 105px)) !important; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
