/* ══════════════════════════════════════════════════════════════
   C'ROLL SUSHI — Japanese Marine Aesthetic Layer
   Loads after styles.css. Overrides palette, adds Seigaiha pattern,
   Hokusai-inspired waves, sunset orange accents, premium feel.
══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   DESIGN TOKENS — Ocean × Sunset
═══════════════════════════════════════ */
:root {
    /* Ocean palette */
    --ocean-deep: #0B3C5D;
    --ocean-mid: #1E6F9F;
    --ocean-soft-blue: #4A8FB8;
    --ocean-foam: #E8F1F8;
    --ocean-sky: #F5F9FC;

    /* Sunset accent */
    --sunset: #FF6A00;
    --sunset-light: #FFA94D;
    --sunset-glow: rgba(255, 106, 0, 0.35);

    /* Surface */
    --paper: #FAFAFA;
    --paper-warm: #FBF8F2;

    /* Override existing tokens */
    --ocean-blue: var(--ocean-mid);
    --ocean-light: var(--ocean-soft-blue);
    --ocean-dark: var(--ocean-deep);
    --ocean-muted: rgba(30, 111, 159, 0.10);
    --ocean-soft: rgba(30, 111, 159, 0.05);
    --anthracite: #102B43;
    --charcoal: #0B3C5D;
    --slate: #2C4A63;
    --stone: #4F6A82;
    --pewter: #6E869C;
    --silver: #94A9BD;
    --pearl: #D4DEE8;
    --cloud: #E8EFF5;
    --sand: #E6EEF5;

    /* Typography — modern sans + Japanese-inspired serif for display */
    --font-display: 'Shippori Mincho', 'Noto Serif JP', 'Poppins', Georgia, serif;
    --font-jp: 'Shippori Mincho', 'Noto Serif JP', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

    /* Wave + pattern assets */
    --seigaiha-blue: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='%231E6F9F' stroke-width='1.4' stroke-linecap='round'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='40' cy='40' r='8'/><circle cx='0' cy='0' r='38'/><circle cx='0' cy='0' r='28'/><circle cx='0' cy='0' r='18'/><circle cx='0' cy='0' r='8'/><circle cx='80' cy='0' r='38'/><circle cx='80' cy='0' r='28'/><circle cx='80' cy='0' r='18'/><circle cx='80' cy='0' r='8'/></g></svg>");
    --seigaiha-white: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='40' viewBox='0 0 80 40'><g fill='none' stroke='white' stroke-width='1.4' stroke-linecap='round'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='40' cy='40' r='8'/><circle cx='0' cy='0' r='38'/><circle cx='0' cy='0' r='28'/><circle cx='0' cy='0' r='18'/><circle cx='0' cy='0' r='8'/><circle cx='80' cy='0' r='38'/><circle cx='80' cy='0' r='28'/><circle cx='80' cy='0' r='18'/><circle cx='80' cy='0' r='8'/></g></svg>");

    /* Premium shadows */
    --shadow-ocean-sm: 0 1px 3px rgba(11, 60, 93, 0.06);
    --shadow-ocean-md: 0 8px 24px rgba(11, 60, 93, 0.08);
    --shadow-ocean-lg: 0 18px 48px rgba(11, 60, 93, 0.12);
    --shadow-ocean-xl: 0 30px 70px rgba(11, 60, 93, 0.18);
    --shadow-sunset: 0 8px 24px rgba(255, 106, 0, 0.28);
}

/* ═══════════════════════════════════════
   BASE TYPOGRAPHY OVERRIDES
═══════════════════════════════════════ */
body {
    background: var(--paper);
    color: var(--anthracite);
    font-family: var(--font-body);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -0.005em;
    color: var(--ocean-deep);
}

/* Subtle marine noise — replace harsh grain with watery shimmer */
body::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.42  0 0 0 0 0.62  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.025;
}

/* ═══════════════════════════════════════
   REUSABLE UTILITIES
═══════════════════════════════════════ */
.seigaiha-bg {
    position: relative;
    background-color: var(--ocean-sky);
}
.seigaiha-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-blue);
    background-size: 80px 40px;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
    animation: seigaihaDrift 90s linear infinite;
}
.seigaiha-bg > * { position: relative; z-index: 1; }

.seigaiha-bg-strong::before { opacity: 0.16; }

@keyframes seigaihaDrift {
    from { background-position: 0 0; }
    to   { background-position: 800px 400px; }
}

/* ═══════════════════════════════════════
   HEADER — Glassy ocean
═══════════════════════════════════════ */
.header {
    background: rgba(250, 250, 250, 0.78);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(11, 60, 93, 0.06);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 24px rgba(11, 60, 93, 0.06);
}
.nav-links a {
    color: var(--ocean-deep);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.nav-links a::after {
    background: var(--sunset);
}
.lang-btn { color: var(--stone); }
.lang-btn.active {
    color: #ffffff !important;
    background: var(--ocean-deep);
    border-color: var(--ocean-deep);
}

/* ═══════════════════════════════════════
   LOADER — Ocean immersion
═══════════════════════════════════════ */
.loader {
    background: linear-gradient(180deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
}
.loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-white);
    background-size: 80px 40px;
    opacity: 0.12;
    animation: seigaihaDrift 60s linear infinite;
}
.loader-content { position: relative; z-index: 1; }
.loader-text { color: white; }
.loader-bar { background: rgba(255,255,255,0.25); }
.loader-progress { background: var(--sunset-light); }

/* ═══════════════════════════════════════
   HERO — Full-bleed poster image
═══════════════════════════════════════ */
.hero,
.hero.hero-light {
    background: #F7FBFE;
    position: relative;
    overflow: hidden;
    height: 100vh;
    height: 100svh;
    min-height: 580px;
}
.hero::before,
.hero::after { content: none; }

/* Hero poster — single image fills the section; <picture> swaps mobile/desktop */
.hero-poster {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 0;
    pointer-events: none;
}
.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
@media (min-width: 900px) {
    .hero-poster { top: 60px; }
}
@media (min-width: 1200px) {
    .hero-poster { top: 75px; }
}

/* Visually hide the SEO-only h1 (kept in DOM for accessibility) */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hide the dynamic pattern/grid/foam — content is baked into the poster */
.hero-pattern,
.hero .hero-grid,
.hero-foam,
.hero-foam-deferred { display: none; }

/* Ambient seigaiha pattern */
.hero-pattern {
    position: absolute;
    inset: -8%;
    background-image: var(--seigaiha-blue);
    background-size: 120px 60px;
    opacity: 0.14;
    z-index: 0;
    pointer-events: none;
    animation: seigaihaDrift 110s linear infinite;
}

/* Hokusai foam ribbon — flush with the section bottom */
.hero-foam {
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: 0;
    height: 22%;
    z-index: 1;
    pointer-events: none;
    animation: heroFoamFloat 10s ease-in-out infinite;
}
.hero-foam svg {
    width: 100%;
    height: 100%;
    display: block;
}
@keyframes heroFoamFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%      { transform: translate3d(-1.2%, -6px, 0); }
}

/* ── Grid layout ───────────────────────── */
.hero .hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    height: 100vh;
    height: 100svh;
    min-height: 580px;
}
@media (min-width: 900px) {
    .hero .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 48px;
        padding: 0 48px 0;
    }
}

/* ── Text column ───────────────────────── */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}
@media (min-width: 900px) {
    .hero-text {
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
}

.hero-logo-mark {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 8px 16px rgba(11, 60, 93, 0.18));
    animation: heroLogoFloat 6s ease-in-out infinite;
    will-change: transform;
}
@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-6px) rotate(-2deg); }
}
@media (min-width: 900px) {
    .hero-logo-mark { width: 76px; height: 76px; }
}

.hero-jp {
    font-family: var(--font-jp);
    color: var(--ocean-mid);
    font-size: 0.85rem;
    letter-spacing: 0.5em;
    margin: 0;
    font-weight: 500;
    opacity: 0.85;
    text-indent: 0.5em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.hero-jp::before,
.hero-jp::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--sunset);
    opacity: 0.6;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    line-height: 1.12;
    color: var(--ocean-deep);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hero-headline em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(90deg, var(--sunset) 0%, var(--sunset-light) 50%, var(--sunset) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: textShimmer 5s ease-in-out infinite;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin: 0;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.hero-tagline .text-shimmer {
    background: linear-gradient(90deg, var(--sunset) 0%, var(--sunset-light) 30%, var(--sunset) 60%, #FF8A2A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: textShimmer 4s ease-in-out infinite;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}
@media (min-width: 900px) {
    .hero-actions { justify-content: flex-start; }
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-light) 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(255, 106, 0, 0.32);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: ctaPulseSunset 3s ease-in-out infinite;
}
.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.45);
    animation: none;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--ocean-deep);
    border: 1.5px solid rgba(11, 60, 93, 0.18);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .25s ease;
}
.hero-cta-secondary:hover {
    background: white;
    border-color: var(--ocean-mid);
    color: var(--ocean-mid);
    transform: translateY(-2px);
}

/* ── Visual column ─────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: 100%;
    overflow: visible;
}
.hero-visual-glow {
    position: absolute;
    inset: 8% 12%;
    border-radius: 50%;
    background:
        radial-gradient(closest-side, rgba(255, 169, 77, 0.30) 0%, rgba(255, 169, 77, 0) 65%),
        radial-gradient(closest-side, rgba(30, 111, 159, 0.32) 0%, rgba(30, 111, 159, 0) 70%);
    filter: blur(28px);
    z-index: 0;
    animation: heroGlowPulse 7s ease-in-out infinite;
}
@keyframes heroGlowPulse {
    0%, 100% { transform: scale(1);    opacity: 0.85; }
    50%      { transform: scale(1.08); opacity: 1; }
}

.hero-visual-frame {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* The PNG canvas has empty space on the left — shift the frame so the
       two tubes appear visually centered within the column. */
    transform: translateX(-13%);
}
@media (min-width: 900px) {
    .hero-visual-frame { transform: translateX(-14%); }
}
@media (max-width: 768px) {
    .hero-visual-frame { transform: translateX(-12%); }
}
.hero-visual-img {
    width: auto;
    max-width: 165%;
    height: 1400px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 32px 50px rgba(11, 60, 93, 0.30))
            drop-shadow(0 8px 16px rgba(11, 60, 93, 0.18));
    animation: heroVisualFloat 8s ease-in-out infinite;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}
@keyframes heroVisualFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(-1.5deg); }
}
@media (min-width: 900px) {
    .hero-visual-img { height: 1400px; max-width: 170%; }
}

/* Floating Japanese-style badges around the product */
.hero-visual-badges {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-badge {
    position: absolute;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 111, 159, 0.18);
    color: var(--ocean-deep);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 24px rgba(11, 60, 93, 0.12);
    white-space: nowrap;
}
.hero-badge--top {
    top: 8%;
    left: 4%;
    font-family: var(--font-jp);
    font-size: 1rem;
    color: var(--ocean-mid);
    animation: badgeFloatA 6s ease-in-out infinite;
}
.hero-badge--bot {
    bottom: 12%;
    right: 4%;
    background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-light) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(255, 106, 0, 0.30);
    animation: badgeFloatB 7s ease-in-out infinite;
}
@keyframes badgeFloatA {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-8px) rotate(-3deg); }
}
@keyframes badgeFloatB {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50%      { transform: translateY(8px) rotate(2deg); }
}
@media (max-width: 600px) {
    .hero-badge { font-size: 0.75rem; padding: 8px 14px; }
    .hero-badge--top { top: 4%; left: 2%; }
    .hero-badge--bot { bottom: 6%; right: 2%; }
}

/* Scroll indicator stays bottom-center, on top of foam */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
}

/* Push the scroll indicator to live at the bottom edge */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    margin: 0;
    z-index: 5;
}

/* Defensive: ensure reveal content is visible even if IntersectionObserver
   never fires (e.g., headless print, very short pages, JS errors). */
.reveal { opacity: 1; transform: none; }
.no-js .reveal,
html.has-js .reveal:not(.active) {
    /* Re-enable hidden state only when JS booted and observer is wired up */
    opacity: 0;
    transform: translateY(32px);
}
html.has-js .reveal.active {
    opacity: 1;
    transform: none;
}

/* Shimmer keyframe (used by .hero-headline em + .text-shimmer) */
@keyframes textShimmer {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}

/* Scroll indicator — minimal thin downward chevron */
.scroll-indicator {
    color: var(--ocean-deep);
    gap: 0;
    opacity: 0.85;
    animation: none;
    transition: opacity 0.4s ease, transform 0.3s ease;
    padding-bottom: 0;
}
.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(2px);
}

/* Hide the old mouse + dot — only the thin arrow remains */
.scroll-mouse,
.scroll-wheel { display: none; }

.scroll-arrow {
    color: var(--ocean-deep);
    stroke: currentColor;
    stroke-width: 1.25;
    width: 26px;
    height: 26px;
    opacity: 0.75;
    animation: scrollChevron 2s ease-in-out infinite;
}
@keyframes scrollChevron {
    0%, 100% { transform: translateY(0);   opacity: 0.55; }
    50%      { transform: translateY(5px); opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-arrow { animation: none !important; }
}

/* ═══════════════════════════════════════
   WAVE DIVIDERS — Reusable section transitions
═══════════════════════════════════════ */
.wave-divider {
    width: 100%;
    height: 80px;
    position: relative;
    overflow: hidden;
    margin: 0;
    pointer-events: none;
    line-height: 0;
}
.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}
.wave-divider--top { transform: scaleY(-1); }

/* Existing .section-divider gets upgraded too */
.section-divider {
    height: 64px;
}
.section-divider svg path {
    fill: var(--ocean-foam);
}

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.section-tag {
    color: var(--sunset);
    font-weight: 600;
    letter-spacing: 0.22em;
}
.section-tag::before,
.section-tag::after {
    background: var(--sunset);
    opacity: 0.7;
    width: 28px;
    height: 1.2px;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ocean-deep);
    letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════
   STORY — Dynamic editorial layout
═══════════════════════════════════════ */
.story {
    background:
        radial-gradient(60% 50% at 90% 0%, rgba(255, 169, 77, 0.10) 0%, rgba(255, 169, 77, 0) 60%),
        radial-gradient(50% 40% at 0% 100%, rgba(30, 111, 159, 0.10) 0%, rgba(30, 111, 159, 0) 60%),
        var(--paper);
    position: relative;
    overflow: hidden;
}
.story::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-blue);
    background-size: 140px 70px;
    opacity: 0.05;
    pointer-events: none;
}

/* Japanese kicker above the section tag */
.story-jp {
    font-family: var(--font-jp);
    color: var(--ocean-mid);
    font-size: 0.78rem;
    letter-spacing: 0.55em;
    margin: 0 0 10px;
    font-weight: 500;
    opacity: 0.7;
    text-indent: 0.55em;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.story-jp::before,
.story-jp::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--sunset);
    opacity: 0.6;
}

/* Title shimmer accent */
.story .section-title em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(90deg, var(--sunset) 0%, var(--sunset-light) 50%, var(--sunset) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: textShimmer 5s ease-in-out infinite;
}

/* Three pillars: Frais · Rapide · Fun */
.story-pillars {
    list-style: none;
    padding: 0;
    margin: 32px 0 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 700px) {
    .story-pillars { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

.story-pillar {
    position: relative;
    padding: 22px 20px 20px;
    background: white;
    border: 1px solid rgba(30, 111, 159, 0.10);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(11, 60, 93, 0.06);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.story-pillar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--sunset) 0%, var(--sunset-light) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s ease;
}
.story-pillar::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 110px;
    height: 110px;
    background-image: var(--seigaiha-blue);
    background-size: 60px 30px;
    opacity: 0;
    transition: opacity .4s ease;
}
.story-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(11, 60, 93, 0.12);
    border-color: rgba(30, 111, 159, 0.22);
}
.story-pillar:hover::before { transform: scaleY(1); }
.story-pillar:hover::after  { opacity: 0.18; }

.story-pillar-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ocean-mid);
    opacity: 0.35;
    letter-spacing: 0.05em;
}
.story-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 111, 159, 0.10) 0%, rgba(255, 106, 0, 0.10) 100%);
    color: var(--ocean-deep);
    margin-bottom: 12px;
}
.story-pillar-icon svg { width: 22px; height: 22px; }
.story-pillar strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ocean-deep);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}
.story-pillar > span:last-child {
    display: block;
    color: var(--stone);
    font-size: 0.9rem;
    line-height: 1.55;
}
.story-pillar > span:last-child em {
    font-style: normal;
    font-weight: 600;
    color: var(--ocean-deep);
    background: linear-gradient(transparent 60%, rgba(255, 169, 77, 0.35) 60%);
    padding: 0 2px;
}

/* Story body */
.story-text { color: var(--stone); font-size: 1rem; line-height: 1.85; }
.story-text strong { color: var(--ocean-deep); }
@media (min-width: 900px) {
    .story-content .story-text + .story-text { padding-bottom: 56px; }
}
.story-text mark {
    background: linear-gradient(120deg, transparent 0%, transparent 30%, rgba(255, 169, 77, 0.35) 30%, rgba(255, 169, 77, 0.35) 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    color: var(--ocean-deep);
    font-weight: 600;
    padding: 0 4px;
    border-radius: 2px;
    transition: background-position .8s ease;
}
.story-content.active .story-text mark { background-position: 0 0; }

/* Storefront image — tilted with Japanese stamp */
.storefront-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: var(--shadow-ocean-lg, 0 24px 48px rgba(11, 60, 93, 0.18));
    border: 1px solid rgba(30, 111, 159, 0.10);
    transition: transform .5s ease, box-shadow .5s ease;
}
.storefront-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
    transition: transform .8s ease;
}
.storefront-image:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow: 0 32px 60px rgba(11, 60, 93, 0.22);
}
.storefront-image:hover img {
    transform: scale(1.04);
}

/* Hokusai-style red stamp (hanko) */
.storefront-stamp {
    position: absolute;
    top: 16px;
    right: -14px;
    z-index: 2;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8312B 0%, #9F1F1A 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 22px rgba(159, 31, 26, 0.35);
    transform: rotate(8deg);
    border: 2px solid rgba(255, 255, 255, 0.85);
    font-family: var(--font-jp);
    line-height: 1.05;
    user-select: none;
    animation: stampFloat 5s ease-in-out infinite;
}
.storefront-stamp::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.55);
}
.storefront-stamp-jp {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.storefront-stamp-en {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-top: 2px;
    opacity: 0.92;
}
@keyframes stampFloat {
    0%, 100% { transform: rotate(8deg)  translateY(0); }
    50%      { transform: rotate(10deg) translateY(-3px); }
}
@media (max-width: 480px) {
    .storefront-stamp { width: 64px; height: 64px; top: 12px; right: -10px; }
    .storefront-stamp-jp { font-size: 0.9rem; }
    .storefront-stamp-en { font-size: 0.52rem; }
}

/* Storefront info row */
.storefront-info {
    color: var(--stone);
    margin-top: 28px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (min-width: 900px) {
    .storefront-info { margin-top: 64px; }
}
.storefront-info p {
    margin: 0;
    padding: 10px 14px;
    background: white;
    border: 1px solid rgba(30, 111, 159, 0.10);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.04);
    font-size: 0.95rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.storefront-info p:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 18px rgba(11, 60, 93, 0.08);
    border-color: rgba(30, 111, 159, 0.22);
}
.storefront-info a { color: var(--ocean-mid); font-weight: 600; }
.storefront-info a:hover { color: var(--sunset); }

@media (prefers-reduced-motion: reduce) {
    .storefront-stamp,
    .story .section-title em { animation: none !important; }
    .storefront-image,
    .storefront-image img,
    .story-pillar,
    .storefront-info p { transition: none !important; }
}

/* ═══════════════════════════════════════
   CONCEPT + FAQ — SEO/GEO landing block
═══════════════════════════════════════ */
.concept-section {
    background: var(--paper);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.concept-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-blue);
    background-size: 140px 70px;
    opacity: 0.04;
    pointer-events: none;
}
.concept-section .section-title em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(90deg, var(--sunset) 0%, var(--sunset-light) 50%, var(--sunset) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: textShimmer 5s ease-in-out infinite;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
}
@media (min-width: 900px) {
    .concept-grid { grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
}

.concept-lede p {
    color: var(--stone);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 16px;
}
.concept-lede strong { color: var(--ocean-deep); font-weight: 600; }

.concept-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.concept-stat {
    background: white;
    border: 1px solid rgba(30, 111, 159, 0.10);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(11, 60, 93, 0.05);
    transition: transform .3s var(--ease-out-soft), box-shadow .3s var(--ease-out-soft);
}
.concept-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(11, 60, 93, 0.10);
}
.concept-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--ocean-deep);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--sunset) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.concept-stat sup { font-size: 0.6em; }
.concept-stat span {
    display: block;
    font-size: 0.82rem;
    color: var(--stone);
    margin-top: 6px;
    line-height: 1.35;
}

.faq {
    margin-top: 56px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.faq-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--ocean-deep);
    text-align: center;
    margin: 0 0 24px;
    font-weight: 600;
}
.faq-item {
    background: white;
    border: 1px solid rgba(30, 111, 159, 0.12);
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.04);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item:hover {
    border-color: rgba(30, 111, 159, 0.25);
    box-shadow: 0 10px 22px rgba(11, 60, 93, 0.08);
}
.faq-item[open] {
    border-color: var(--sunset);
    box-shadow: 0 12px 26px rgba(255, 106, 0, 0.10);
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 48px 16px 18px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ocean-deep);
    font-size: 1rem;
    position: relative;
    user-select: none;
    transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--sunset);
    font-weight: 400;
    transition: transform .35s var(--ease-out-soft);
    line-height: 1;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover { color: var(--sunset); }
.faq-item > div {
    padding: 0 18px 18px;
}
.faq-item > div p {
    margin: 0;
    color: var(--stone);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item > div p strong { color: var(--ocean-deep); }

@media (min-width: 700px) {
    .concept-stats { grid-template-columns: repeat(4, 1fr); }
    .faq-item summary { font-size: 1.05rem; padding: 18px 52px 18px 22px; }
    .faq-item > div { padding: 0 22px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .concept-section .section-title em { animation: none !important; }
    .concept-stat { transition: none !important; }
    .faq-item summary::after { transition: none !important; }
}

/* ═══════════════════════════════════════
   PILLARS SECTION (avant footer)
═══════════════════════════════════════ */
.pillars-section {
    background:
        radial-gradient(60% 50% at 100% 0%, rgba(255, 169, 77, 0.10) 0%, rgba(255, 169, 77, 0) 60%),
        radial-gradient(50% 40% at 0% 100%, rgba(30, 111, 159, 0.10) 0%, rgba(30, 111, 159, 0) 60%),
        var(--paper);
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
}
.pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-blue);
    background-size: 140px 70px;
    opacity: 0.04;
    pointer-events: none;
}
.pillars-section .container {
    position: relative;
    z-index: 1;
}
.pillars-title {
    text-align: center;
    margin: 0 0 36px;
}
.pillars-title em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(90deg, var(--sunset) 0%, var(--sunset-light) 50%, var(--sunset) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: textShimmer 5s ease-in-out infinite;
}
.pillars-section .story-pillars {
    margin: 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
    .pillars-title em { animation: none !important; }
}

/* ═══════════════════════════════════════
   FOLLOW US — Seigaiha section
═══════════════════════════════════════ */
.follow-us {
    background: var(--ocean-sky);
    position: relative;
    overflow: hidden;
}
.follow-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-blue);
    background-size: 80px 40px;
    opacity: 0.10;
    z-index: 0;
    animation: seigaihaDrift 100s linear infinite;
    pointer-events: none;
}
.follow-us > * { position: relative; z-index: 1; }

.follow-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-ocean-lg);
    border: 4px solid white;
}
.follow-video video {
    width: 100%;
    display: block;
    transform: scale(1.18);
    transform-origin: center center;
    transition: transform 0.6s ease;
}
.follow-video:hover video { transform: scale(1.24); }

.social-card {
    background: white;
    border: 1.5px solid rgba(30, 111, 159, 0.18);
    color: var(--ocean-deep);
    border-radius: 14px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.social-card svg { fill: var(--ocean-deep); }
.social-card span { color: var(--ocean-deep); }
.social-card::before {
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
}
.social-card:hover {
    border-color: var(--ocean-mid);
    box-shadow: var(--shadow-ocean-lg);
    transform: translateY(-5px);
}
.social-card:hover svg, .social-card:hover span { color: white; fill: white; }

/* ═══════════════════════════════════════
   PRESS — Premium ocean cards
═══════════════════════════════════════ */
.press-section {
    background: var(--paper);
    position: relative;
    padding-top: 0;
}
.press-card {
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow-ocean-sm);
    border: 1px solid rgba(30, 111, 159, 0.08);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.press-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-ocean-xl);
    border-color: rgba(30, 111, 159, 0.25);
}
.press-card::after {
    border-radius: 18px;
    border: 2px solid transparent;
}
.press-card:hover::after { border-color: var(--ocean-mid); }
.press-card-image {
    background: linear-gradient(135deg, var(--ocean-foam) 0%, rgba(30,111,159,0.12) 100%);
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
}
.press-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-blue);
    background-size: 60px 30px;
    opacity: 0.05;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.press-card:hover .press-card-image::after { opacity: 0.12; }
.press-source { color: var(--sunset); font-weight: 700; }
.press-title { color: var(--ocean-deep); font-family: var(--font-display); font-weight: 600; }
.press-read-more { color: var(--ocean-mid); }
.press-card:hover .press-read-more { color: var(--sunset); }

/* ═══════════════════════════════════════
   SPECIALTIES (MENU) — Seigaiha bg + clean cards
═══════════════════════════════════════ */
.specialties {
    background: var(--ocean-sky);
    position: relative;
    overflow: hidden;
}
.specialties::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-blue);
    background-size: 80px 40px;
    opacity: 0.10;
    z-index: 0;
    animation: seigaihaDrift 100s linear infinite;
    pointer-events: none;
}
.specialties > * { position: relative; z-index: 1; }

/* Fix grid container: HTML uses .specialty-grid (singular) but base CSS targets .specialties-grid */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .specialty-grid-rolls { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 700px) and (max-width: 1023px) {
    .specialty-grid-rolls { grid-template-columns: repeat(2, 1fr); }
}

.specialty-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(30, 111, 159, 0.10);
    box-shadow: var(--shadow-ocean-sm);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.1),
                box-shadow 0.45s ease,
                border-color 0.45s ease;
    position: relative;
}
.specialty-card::before {
    border-radius: 16px;
    border: 2px solid var(--ocean-mid);
}
.specialty-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-image: var(--seigaiha-blue);
    background-size: 60px 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.specialty-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 111, 159, 0.25);
    box-shadow: 0 24px 48px rgba(11, 60, 93, 0.14);
}
.specialty-card:hover::after { opacity: 0.18; }
.specialty-content { padding: 28px 24px 24px; }
.specialty-content h3 {
    font-family: var(--font-display);
    color: var(--ocean-deep);
    font-weight: 600;
    font-size: 1.15rem;
}
.specialty-jp {
    font-family: var(--font-jp);
    color: var(--ocean-mid);
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}
.specialty-desc {
    color: var(--stone);
    font-size: 0.92rem;
    line-height: 1.65;
}
.specialty-price {
    color: var(--sunset);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
}
.specialty-card:hover .specialty-price {
    color: var(--sunset);
    transform: scale(1.06);
}
.specialty-card:hover .specialty-content h3 { color: var(--ocean-mid); }

/* ═══════════════════════════════════════
   DELIVERY — Sunset orange ocean blend
═══════════════════════════════════════ */
.delivery {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, var(--sunset) 130%);
    background-size: 200% 200%;
    animation: deliveryGradient 14s ease infinite;
    position: relative;
    overflow: hidden;
}
.delivery::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-white);
    background-size: 80px 40px;
    opacity: 0.10;
    animation: seigaihaDrift 60s linear infinite;
    pointer-events: none;
}
.delivery > * { position: relative; z-index: 1; }
.delivery .section-tag {
    color: var(--sunset-light);
    background: rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,169,77,0.4);
}
.delivery .section-tag::before,
.delivery .section-tag::after { background: var(--sunset-light); }
.delivery-title {
    font-family: var(--font-display);
    color: white;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.delivery-text { color: rgba(255,255,255,0.92); }

.delivery-btn {
    background: var(--sunset);
    color: white;
    box-shadow: var(--shadow-sunset);
    border-radius: 999px;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}
.delivery-btn svg { fill: white; }
.delivery-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sunset-light), var(--sunset));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}
.delivery-btn:hover {
    background: var(--sunset);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 106, 0, 0.45);
}
.delivery-btn:hover::before { opacity: 1; }

/* ═══════════════════════════════════════
   CONTACT — Clean white with marine accents
═══════════════════════════════════════ */
.contact {
    background: var(--paper);
}
/* Single-column on desktop (no empty right column) */
@media (min-width: 900px) {
    .contact .contact-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}
.info-card {
    background: linear-gradient(160deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(11, 60, 93, 0.22);
    color: #ffffff;
}
.info-card::before { background: var(--sunset); }
.info-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 40px rgba(11, 60, 93, 0.30);
}
.info-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.info-icon svg { stroke: #ffffff; }
.info-card:hover .info-icon { background: rgba(255, 255, 255, 0.18); }
.info-card:hover .info-icon svg { stroke: #ffffff; }

.info-content h4 {
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 600;
    opacity: 0.9;
}
.info-content p { color: rgba(255, 255, 255, 0.92); }
.info-content a { color: #ffffff; }
.info-content a:hover { color: var(--sunset-light); }
.info-link { color: #ffffff; font-weight: 600; opacity: 0.95; }
.info-link:hover { color: var(--sunset-light); opacity: 1; }
.info-link svg { stroke: #ffffff; }
.info-card .social-links a { color: #ffffff; }
.info-card .social-links a svg { stroke: #ffffff; fill: none; }
.info-card .social-links a[aria-label="TikTok"] svg { fill: #ffffff; stroke: none; }
.info-card .social-links a:hover { color: var(--sunset-light); }
.info-card .social-links a:hover svg { stroke: var(--sunset-light); }
.info-card .social-links a[aria-label="TikTok"]:hover svg { fill: var(--sunset-light); }

/* ═══════════════════════════════════════
   FRANCHISE — Deep ocean immersion
═══════════════════════════════════════ */
.franchise {
    background: var(--ocean-deep);
    position: relative;
    overflow: hidden;
    padding: 96px 0;
}
.franchise::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'><defs><linearGradient id='g' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%231E6F9F'/><stop offset='1' stop-color='%230B3C5D'/></linearGradient></defs><path d='M0,300 C300,200 600,400 900,300 C1200,200 1440,300 1440,300 L1440,600 L0,600 Z' fill='url(%23g)' opacity='0.55'/><path d='M0,400 C300,500 600,300 900,400 C1200,500 1440,400 1440,400 L1440,600 L0,600 Z' fill='%231E6F9F' opacity='0.4'/></svg>") center / cover no-repeat,
        var(--ocean-deep);
    opacity: 1;
    z-index: 0;
}
.franchise::after {
    background-image:
        radial-gradient(2px 2px at 12% 22%, rgba(255,169,77,0.28) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 70% 60%, rgba(255,255,255,0.18) 50%, transparent 50%),
        radial-gradient(2px 2px at 88% 30%, rgba(255,169,77,0.22) 50%, transparent 50%),
        radial-gradient(1px 1px at 30% 78%, rgba(255,255,255,0.14) 50%, transparent 50%);
}
.franchise-title {
    font-family: var(--font-display);
    color: white;
    font-weight: 500;
    letter-spacing: -0.005em;
}
.franchise-text { color: rgba(255,255,255,0.88); }
.franchise-email a { color: var(--sunset-light); }
.franchise-email a::after { background: var(--sunset-light); }
.franchise-email a:hover { color: white; }

/* ═══════════════════════════════════════
   FOOTER — Deep ocean horizon
═══════════════════════════════════════ */
.footer {
    background: var(--ocean-deep);
    color: rgba(255,255,255,0.82);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-white);
    background-size: 80px 40px;
    opacity: 0.05;
    pointer-events: none;
    animation: seigaihaDrift 140s linear infinite;
}
.footer .container { position: relative; z-index: 1; }
.footer-tagline {
    font-family: var(--font-jp);
    color: var(--sunset-light);
    letter-spacing: 0.4em;
}
.footer-col h5 { color: var(--sunset-light); }
.footer-col a { color: rgba(255,255,255,0.78); }
.footer-col a:hover { color: var(--sunset-light); }
/* Footer-links has only 2 cols of content — remove the empty 3rd column on desktop */
.footer .footer-links { grid-template-columns: repeat(2, 1fr) !important; }
@media (min-width: 768px) {
    .footer .footer-links { grid-template-columns: repeat(2, auto) !important; gap: 56px; justify-content: start; }
}
.footer-bottom p,
.footer-legal-links a,
.footer-address {
    color: rgba(255,255,255,0.6) !important;
}
.footer-legal-links a:hover { color: var(--sunset-light); }

/* ═══════════════════════════════════════
   GENERAL CTA / BUTTONS — Sunset accent
═══════════════════════════════════════ */
.btn-primary,
.hero-cta-primary {
    background: var(--sunset);
    color: white;
    border: none;
    box-shadow: var(--shadow-sunset);
}
.btn-primary:hover,
.hero-cta-primary:hover {
    background: var(--sunset);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 106, 0, 0.45);
}
.hero-cta-primary { animation: ctaPulseSunset 3s ease-in-out infinite; }
.hero-cta-primary:hover { animation: none; }
@keyframes ctaPulseSunset {
    0%, 100% { box-shadow: 0 6px 18px rgba(255, 106, 0, 0.30); }
    50% { box-shadow: 0 6px 30px rgba(255, 106, 0, 0.55); }
}

.btn-secondary,
.hero-cta-secondary {
    color: var(--ocean-deep);
    border: 1.5px solid var(--ocean-deep);
    background: transparent;
}
.btn-secondary:hover,
.hero-cta-secondary:hover {
    background: var(--ocean-deep);
    color: white;
}

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
.mobile-nav {
    background: linear-gradient(180deg, rgba(250,250,250,0.98) 0%, rgba(232,241,248,0.98) 100%);
    backdrop-filter: saturate(160%) blur(18px);
}
.mobile-nav::before {
    background-image: var(--seigaiha-blue);
    background-size: 80px 40px;
    opacity: 0.10;
}
.mobile-nav-content > a {
    color: var(--ocean-deep);
    font-family: var(--font-display);
    font-weight: 500;
}
.mobile-nav-content > a:hover { color: var(--sunset); }

/* ═══════════════════════════════════════
   SCROLL — smooth dive
═══════════════════════════════════════ */
html { scroll-behavior: smooth; }

/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .hero-pattern,
    .hero-foam,
    .seigaiha-bg::before,
    .specialties::before,
    .follow-us::before,
    .delivery::before,
    .footer::before,
    .loader::before {
        animation: none !important;
        transform: none !important;
    }
    .hero-cta-primary,
    .hero-logo-mark,
    .hero-visual-img,
    .hero-visual-glow,
    .hero-badge--top,
    .hero-badge--bot { animation: none !important; }
}

/* ═══════════════════════════════════════
   MOBILE ADJUSTMENTS
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .hero .hero-grid {
        padding: 80px 20px 0;
        gap: 20px;
        align-content: start;
        align-items: center;
    }
    .hero-visual-img { height: clamp(460px, 78svh, 720px); max-width: 160%; }
    .hero-cta-primary,
    .hero-cta-secondary { padding: 14px 22px; font-size: 0.95rem; }
    .franchise { padding: 64px 0; }
    .specialty-content { padding: 22px 18px 20px; }
    .specialty-content h3 { font-size: 1rem; }
    .specialty-price { font-size: 1.15rem; }
}

@media (max-width: 480px) {
    .hero .hero-grid {
        padding: 76px 18px 0;
        gap: 14px;
        align-content: start;
    }
    .hero-headline { font-size: 1.7rem; line-height: 1.15; }
    .hero-tagline { font-size: 1rem; }
    .hero-logo-mark { width: 56px; height: 56px; }
    .hero-visual-img { height: clamp(420px, 72svh, 640px); max-width: 155%; }
    .specialties::before,
    .follow-us::before {
        background-size: 60px 30px;
    }
}
