/* ============================================
   BENTOUYA - Traiteur Japonais Paris
   Styles CSS Principal
   Version 2.0 - 2025
============================================ */

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    /* Ink colors - Dark theme */
    --ink: #0a0908;
    --ink-light: #151311;
    --ink-warm: #1a1613;
    --ink-card: #0f0d0b;
    
    /* Paper colors - Light accents */
    --paper: #f7f3ed;
    --paper-warm: #fff9f0;
    --paper-muted: rgba(247, 243, 237, 0.6);
    --paper-subtle: rgba(247, 243, 237, 0.4);
    
    /* Brand colors */
    --vermillion: #c73e1d;
    --vermillion-bright: #e04420;
    --vermillion-glow: rgba(199, 62, 29, 0.5);
    
    /* Gold accents */
    --gold: #b8860b;
    --gold-light: #d4a843;
    --gold-pale: #e8c547;
    --gold-glow: rgba(184, 134, 11, 0.4);
    
    /* Lantern effect */
    --lantern: rgba(255, 147, 41, 0.15);
    --lantern-strong: rgba(255, 147, 41, 0.3);
    
    /* Functional */
    --green-halal: #166534;
    
    /* Typography */
    --font-jp: 'Shippori Mincho', serif;
    --font-fr: 'Cormorant Garamond', serif;
    --font-body: 'Zen Kaku Gothic New', sans-serif;
    
    /* Spacing */
    --section-padding: 10rem 2rem;
    --card-radius: 30px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.3s ease;
}

/* ============================================
   RESET & BASE
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--ink);
    color: var(--paper);
    overflow-x: hidden;
    letter-spacing: 0.02em;
    cursor: none;
}

body.loading {
    overflow: hidden;
}

::selection {
    background: var(--vermillion);
    color: var(--paper);
}

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

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

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: none;
}

/* ============================================
   LOADER
============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

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

.loader-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 2s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px var(--gold-glow));
}

.loader-text {
    font-family: var(--font-fr);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.7;
}

.loader-progress {
    width: 150px;
    height: 1px;
    background: rgba(247, 243, 237, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--vermillion), var(--gold));
    animation: loadProgress 1.5s ease-out forwards;
}

/* ============================================
   TEXTURES & OVERLAYS
============================================ */
.grain-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

.vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, var(--ink) 100%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 9998;
}

.seigaiha-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='50' viewBox='0 0 100 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 0 50 50' fill='none' stroke='%23b8860b' stroke-width='0.3' opacity='0.08'/%3E%3Cpath d='M50 50 Q75 0 100 50' fill='none' stroke='%23b8860b' stroke-width='0.3' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 100px 50px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* ============================================
   LANTERN CURSOR
============================================ */
.lantern-aura {
    position: fixed;
    width: 1000px;
    height: 1000px;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(255, 180, 80, 0.08) 0%,
        rgba(255, 147, 41, 0.05) 15%,
        rgba(255, 120, 30, 0.03) 30%,
        rgba(199, 62, 29, 0.02) 45%,
        transparent 60%
    );
    mix-blend-mode: screen;
    filter: blur(1px);
}

.lantern-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 3;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(255, 200, 120, 0.12) 0%,
        rgba(255, 160, 60, 0.06) 25%,
        transparent 55%
    );
}

.lantern-core {
    position: fixed;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 4;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(255, 230, 180, 0.1) 0%,
        rgba(255, 200, 100, 0.05) 30%,
        transparent 60%
    );
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 15px var(--gold-glow),
        0 0 30px rgba(255, 200, 100, 0.3);
    transition: transform 0.1s ease, opacity 0.3s;
}

.cursor-dot.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.cursor-ring {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 134, 11, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
}

.cursor-ring.hover {
    width: 80px;
    height: 80px;
    border-color: var(--vermillion);
    background: rgba(199, 62, 29, 0.08);
}

.cursor-ring.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.75rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.nav-logo {
    font-family: var(--font-jp);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--paper);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    transform: translateX(5px);
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(-10deg) scale(1.08);
}

.nav-logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--vermillion-bright) 0%, var(--vermillion) 50%, #8b2010 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--paper);
    box-shadow: 
        0 10px 30px var(--vermillion-glow),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transition: var(--transition-smooth);
}

.nav-logo:hover .nav-logo-mark {
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 15px 40px var(--vermillion-glow);
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--paper-muted);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.4s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--vermillion), var(--gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
    color: var(--paper);
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 100px;
    transition: var(--transition-fast) !important;
}

.nav-cta::before {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--ink) !important;
    box-shadow: 0 10px 30px var(--gold-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 7px;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 1px;
    background: var(--paper);
    transition: var(--transition-fast);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 15%, rgba(255, 147, 41, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 85%, rgba(184, 134, 11, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, var(--ink-warm) 0%, var(--ink) 100%),
        url('../assets/images/map2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

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

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; }

/* Deco lines */
.deco-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.08;
}

.deco-line:nth-child(1) { left: 6%; height: 80%; top: 10%; }
.deco-line:nth-child(2) { left: 94%; height: 70%; top: 20%; }

/* Background kanji */
.kanji-bg {
    position: absolute;
    font-family: var(--font-jp);
    font-weight: 800;
    color: var(--paper);
    opacity: 0.015;
    pointer-events: none;
    user-select: none;
    will-change: transform;
}

.kanji-bg:nth-child(3) { top: 0%; left: -8%; font-size: 45vw; }
.kanji-bg:nth-child(4) { bottom: -15%; right: -12%; font-size: 40vw; }

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

/* Noren */
.noren {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4rem;
    perspective: 1200px;
}

.noren-panel {
    width: 62px;
    height: 125px;
    background: linear-gradient(180deg, 
        var(--vermillion-bright) 0%, 
        var(--vermillion) 20%,
        #9a2a12 60%,
        #7a1a08 100%
    );
    border-radius: 0 0 31px 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        inset 0 -40px 60px rgba(0,0,0,0.35),
        inset 0 3px 0 rgba(255,255,255,0.12),
        inset -3px 0 8px rgba(0,0,0,0.15),
        inset 3px 0 8px rgba(0,0,0,0.15),
        0 25px 60px var(--vermillion-glow),
        0 8px 25px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(-150%) rotateX(30deg);
    animation: norenDrop 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.noren-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent);
    border-radius: 0 0 6px 6px;
}

.noren-panel::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.noren-panel:nth-child(1) { animation-delay: 1s; }
.noren-panel:nth-child(2) { animation-delay: 1.12s; }
.noren-panel:nth-child(3) { animation-delay: 1.24s; }
.noren-panel:nth-child(4) { animation-delay: 1.36s; }

.noren-panel span {
    writing-mode: vertical-rl;
    font-family: var(--font-jp);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--paper-warm);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.noren-panel.sway {
    animation: norenSway 7s ease-in-out infinite;
}

.noren-panel.sway:nth-child(2) { animation-delay: 0.5s; }
.noren-panel.sway:nth-child(3) { animation-delay: 1s; }
.noren-panel.sway:nth-child(4) { animation-delay: 1.5s; }

.hero-title {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1.3s ease forwards 1.5s;
}

.hero-title .jp {
    display: block;
    font-family: var(--font-jp);
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(
        135deg, 
        var(--paper) 0%, 
        var(--gold-pale) 20%,
        var(--paper-warm) 40%, 
        var(--gold-light) 60%,
        var(--paper) 80%,
        var(--gold-pale) 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGold 12s ease-in-out infinite;
    filter: drop-shadow(0 0 120px var(--gold-glow));
}

.hero-title .sub {
    display: block;
    font-family: var(--font-jp);
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    font-weight: 400;
    color: var(--paper-subtle);
    letter-spacing: 1em;
    margin-top: 1.75rem;
    text-transform: uppercase;
}

.hero-title .fr {
    display: block;
    font-family: var(--font-fr);
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.35em;
    margin-top: 0.5rem;
}

.hero-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 3rem auto;
    position: relative;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.7s;
}

.hero-divider::before {
    content: '◇';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-fr);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--paper-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 2.1;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.85s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--vermillion-bright), var(--vermillion));
    color: var(--paper);
    padding: 1.25rem 3rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 
        0 20px 50px var(--vermillion-glow),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeUp 1s ease forwards 2s;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 30px 70px var(--vermillion-glow),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 2.4s;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.scroll-hint span {
    font-family: var(--font-fr);
    font-size: 0.7rem;
    font-style: italic;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(247, 243, 237, 0.3);
}

.scroll-hint-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--vermillion), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-hint-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--gold-light);
    animation: scrollDrop 2s ease-in-out infinite;
}

/* ============================================
   FEATURES BAR
============================================ */
.features-bar {
    position: relative;
    z-index: 10;
    background:
        linear-gradient(180deg, rgba(10, 9, 8, 0.85) 0%, rgba(21, 19, 17, 0.85) 100%),
        url('../assets/images/map2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    padding: 4rem 2rem;
}

/* ============================================
   MENU CAROUSEL SECTION
============================================ */
.menu-carousel-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--ink);
    overflow: hidden;
}

.menu-carousel-section .section-intro {
    margin-bottom: 3rem;
}

.menu-carousel-section .section-title {
    color: var(--gold);
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--card-radius);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(184, 134, 11, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--card-radius);
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 9, 8, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot:hover {
    background: rgba(184, 134, 11, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(184, 134, 11, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    border-color: var(--gold);
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--gold-glow);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

.feature-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--paper-subtle);
    margin-bottom: 0.5rem;
}

.feature-value {
    font-family: var(--font-fr);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--paper);
}

/* ============================================
   SECTIONS COMMON
============================================ */
section {
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
    padding-top: 2rem;
}

.section-tag {
    font-family: var(--font-fr);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.section-title {
    font-family: var(--font-jp);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title .jp {
    display: block;
    font-size: 0.4em;
    color: var(--vermillion);
    margin-bottom: 1rem;
    letter-spacing: 0.3em;
}

.section-desc {
    font-family: var(--font-fr);
    font-size: 1.25rem;
    color: var(--paper-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 2;
}
