/**
 * TOKYO LABEL LP - Dynamic & Gorgeous
 * S(Sakura)ベース + ダイナミック + ゴージャス
 */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    /* Colors */
    --gold: #D4A574;
    --gold-light: #E8C9A0;
    --gold-dark: #B8956A;
    --pink: #FDEEF4;
    --pink-dark: #F8D7E8;
    --cream: #FAF8F5;
    --bg: #FAF8F5;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --text: #1A1A1A;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    /* Fonts */
    --font-en: 'Cormorant Garamond', serif;
    --font-ja: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ja);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    background: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold {
    color: var(--gold);
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}

/* ==========================================================================
   Loader
   ========================================================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader__inner {
    text-align: center;
}

.loader__logo {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 32px;
}

.loader__bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.loader__bar span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: loading 2s var(--ease-in-out) forwards;
}

@keyframes loading {
    to { width: 100%; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header__logo-text {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--white);
    transition: color 0.3s;
}

.header__logo:hover .header__logo-text {
    color: var(--gold);
}

.header__nav ul {
    display: flex;
    gap: 48px;
}

.header__nav a {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-light);
    transition: color 0.3s;
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.header__nav a:hover {
    color: var(--gold);
}

.header__nav a:hover::after {
    width: 100%;
}

.header__nav-cta {
    padding: 10px 24px !important;
    border: 1px solid var(--gold) !important;
    border-radius: 2px;
}

.header__nav-cta::after {
    display: none !important;
}

.header__menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__menu span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
}

.header__menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

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

.header__menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }
    .header__menu {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav ul {
    text-align: center;
}

.mobile-menu__nav li {
    margin-bottom: 32px;
}

.mobile-menu__nav a {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-light);
    transition: color 0.3s;
}

.mobile-menu__nav a:hover {
    color: var(--gold);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s var(--ease-out), transform 8s linear;
}

.hero__bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite;
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(720deg);
    }
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero__catch {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero__title {
    margin-bottom: 32px;
}

.hero__title-main {
    display: block;
    font-family: var(--font-ja);
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--white);
    line-height: 1.4;
}

.hero__subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 2.2;
    color: var(--text-light);
    margin-bottom: 48px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero__scroll span {
    display: block;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn--primary {
    background: var(--gold);
    color: var(--black);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn--glow {
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.4);
}

.btn--glow:hover {
    box-shadow: 0 0 50px rgba(212, 165, 116, 0.6);
}

.btn--white {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn--white:hover {
    background: var(--white);
    color: var(--black);
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section-label {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-ja);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 32px;
}

.section-title--center {
    text-align: center;
}

.section-title--light {
    color: var(--white);
}

.section-lead {
    font-size: 16px;
    color: var(--text);
    opacity: 0.8;
    text-align: center;
    margin-bottom: 64px;
}

.section-lead--light {
    color: var(--text-light);
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    position: relative;
    padding: 160px 0;
    background: var(--white);
    overflow: hidden;
}

.about__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.about__overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        var(--white) 0%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.7) 100%
    );
}

.about__content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.about__text {
    margin-bottom: 64px;
}

.about__text p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 2.2;
    color: var(--text);
}

.about__stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat__unit {
    font-size: 16px;
    color: var(--gold);
}

.stat__label {
    display: block;
    font-size: 12px;
    color: var(--text);
    opacity: 0.6;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .about__bg,
    .about__overlay {
        width: 100%;
        height: 300px;
        position: relative;
    }
    .about {
        padding: 0 0 80px;
    }
    .about__content {
        padding: 60px 24px 0;
        max-width: none;
    }
    .about__stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about__stats {
        flex-wrap: wrap;
        gap: 32px;
    }
    .stat__number {
        font-size: 40px;
    }
}

/* ==========================================================================
   Brands Section
   ========================================================================== */
.brands {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.brands__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.brands__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

.brands .container {
    position: relative;
    z-index: 10;
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.brand-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.2);
}

.brand-card__image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.brand-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.brand-card:hover .brand-card__image img {
    transform: scale(1.08);
}

.brand-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        transparent 100%
    );
}

.brand-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
}

.brand-card__label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.brand-card__name {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 4px;
}

.brand-card__name-ja {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.brand-card__desc {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
}

.brand-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gold);
    transition: all 0.3s;
}

.brand-card__link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

.brand-card__link:hover {
    color: var(--gold-light);
}

.brand-card__link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .brands__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .brands {
        padding: 100px 0;
    }
}

/* ==========================================================================
   Quality Section
   ========================================================================== */
.quality {
    position: relative;
    padding: 160px 0;
    background: var(--white);
    overflow: hidden;
}

.quality__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.quality__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(253, 238, 244, 0.9) 100%
    );
}

.quality .container {
    position: relative;
    z-index: 10;
}

.quality__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.quality-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s var(--ease-out);
}

.quality-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.15);
}

.quality-item__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
}

.quality-item__icon span {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.quality-item__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
}

.quality-item__text {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text);
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .quality__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .quality {
        padding: 100px 0;
    }
    .quality__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .quality-item {
        padding: 32px 16px;
    }
}

@media (max-width: 480px) {
    .quality__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.cta .container {
    position: relative;
    z-index: 10;
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-ja);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 24px;
}

.cta__text {
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 48px;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta {
        padding: 100px 0;
    }
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta__buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
}

.footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.footer__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
}

.footer .container {
    position: relative;
    z-index: 10;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer__tagline {
    font-size: 12px;
    color: var(--text-muted);
}

.footer__nav ul {
    display: flex;
    gap: 32px;
}

.footer__nav a {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: var(--gold);
}

.footer__brands {
    display: flex;
    gap: 24px;
}

.footer__brands a {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.3s;
}

.footer__brands a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer__bottom {
    padding-top: 32px;
    text-align: center;
}

.footer__copyright {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer__note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer__nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer__brands {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   Search Navigation Section
   ========================================================================== */
.search-nav {
    padding: 120px 0;
    background: #f9f7f4;
}

.search-nav__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.search-nav__block {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.search-nav__title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.search-nav__title-en {
    display: block;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 4px;
}

.search-nav__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-nav__list li {
    position: relative;
    padding-left: 16px;
}

.search-nav__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.search-nav__list a {
    font-size: 15px;
    color: var(--text);
    transition: color 0.3s;
}

.search-nav__list a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .search-nav {
        padding: 80px 0;
    }
    .search-nav__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .search-nav__block {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   Hero Stats (Autopilot)
   ========================================================================== */
.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding: 24px 48px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero__stats {
        flex-wrap: wrap;
        gap: 24px;
        padding: 20px 24px;
    }
    
    .hero__stat-number {
        font-size: 1.5rem;
    }
    
    .hero__stat-divider {
        display: none;
    }
}

/* Live Indicator in Hero */
.hero__catch .live-indicator {
    margin-right: 12px;
}

/* ==========================================================================
   Card Rotation Animation
   ========================================================================== */
.hero__stats[data-autopilot="card-rotation"] {
    transition: opacity 0.5s ease;
}

.hero__stat-number {
    min-width: 80px;
    text-align: center;
}
