/* ===== VARIABLES ===== */
:root {
    --dark: #140a0e;
    --dark-mid: #1e1015;
    --dark-card: #1a0f13;
    --wine: #2d1520;
    --gold: #c6b989;
    --gold-dim: rgba(198, 185, 137, 0.3);
    --text: #f0ece4;
    --text-mid: rgba(240, 236, 228, 0.65);
    --text-dim: rgba(240, 236, 228, 0.35);
    --white: #ffffff;
    --light-bg: #f5f2eb;
    --light-text: #2a2220;
    --light-sub: #5a5347;
    --serif-jp: 'Noto Serif JP', serif;
    --display: 'Crimson Text', serif;
    --ease: cubic-bezier(0.3, 0.015, 0.12, 1);
    --radius: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scrollbar-gutter: stable; }
body {
    font-family: var(--serif-jp);
    background: var(--dark);
    color: var(--text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-feature-settings: "palt";
}
body.is-loading { overflow: hidden; }
::selection { background: var(--gold); color: var(--dark); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
/* Unified warm tone for all photos */
.anc-frame img,
.split-photo img,
.gf-img img,
.sf-img img {
    filter: saturate(0.82) contrast(1.06) sepia(0.1) brightness(0.97);
    will-change: transform;
}
/* Hero images: bake filter into a GPU layer to avoid animation jank */
.hero-slide img {
    filter: saturate(0.82) contrast(1.06) sepia(0.1) brightness(0.97);
    will-change: transform;
    contain: layout style paint;
}
figure { margin: 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.container.narrow { max-width: 700px; }

/* ===== LOADER ===== */
#loader {
    position: fixed; inset: 0; z-index: 9999;
    background: url('images/washi-texture.jpg') center / cover;
    display: flex; align-items: center; justify-content: center;
    opacity: 1;
    transition: opacity 1s ease;
    will-change: opacity;
}
#loader.done { opacity: 0; pointer-events: none; will-change: opacity; }
.loader-inner { text-align: center; }

/* Icon with brush-stroke circle */
.loader-icon-wrap {
    position: relative; width: 130px; height: 130px; margin: 0 auto 24px;
}
.loader-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 100px; height: 100px; border-radius: 50%;
    opacity: 0;
    animation: iconReveal 1.2s var(--ease) 0.3s forwards;
}
@keyframes iconReveal {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
    60% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* SVG circle that draws like a brush stroke */
.loader-circle {
    position: absolute; inset: 0; width: 100%; height: 100%;
    transform: rotate(-90deg);
}
.loader-circle circle {
    fill: none; stroke: var(--dark); stroke-width: 1.5;
    stroke-dasharray: 290; stroke-dashoffset: 290;
    stroke-linecap: round;
    animation: circleStroke 1.8s var(--ease) 0.1s forwards;
}
@keyframes circleStroke {
    to { stroke-dashoffset: 0; }
}

/* Title */
.loader-title {
    font-family: var(--display); font-size: 2.4rem; font-weight: 600;
    letter-spacing: 0.06em; color: var(--dark);
    opacity: 0; transform: translateY(12px);
    animation: textSlideUp 0.8s var(--ease) 0.8s forwards;
}
/* Subtitle */
.loader-sub {
    font-family: var(--display); font-size: 0.6rem;
    letter-spacing: 0.5em; color: rgba(20, 10, 14, 0.4); margin-top: 10px;
    opacity: 0; transform: translateY(8px);
    animation: textSlideUp 0.6s var(--ease) 1.1s forwards;
}
@keyframes textSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Progress line */
.loader-line {
    width: 60px; height: 1.5px; margin: 28px auto 0;
    background: rgba(20, 10, 14, 0.15);
    border-radius: 2px; overflow: hidden;
    position: relative;
}
.loader-line::after {
    content: ''; position: absolute; inset: 0;
    background: var(--dark);
    transform-origin: left;
    animation: lineProgress 1.8s var(--ease) 0.5s forwards;
    transform: scaleX(0);
}
@keyframes lineProgress {
    to { transform: scaleX(1); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(10, 5, 7, 0.94);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease); cursor: pointer;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lb-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; color: rgba(255,255,255,0.5);
    font-size: 2.5rem; cursor: pointer; line-height: 1; transition: color 0.3s;
}
.lb-close:hover { color: var(--white); }
.lb-content { text-align: center; padding: 24px; max-width: 92vw; max-height: 92vh; }
.lb-content img {
    max-width: 90vw; max-height: 82vh; width: auto; height: auto;
    object-fit: contain; border-radius: 4px; cursor: default;
}
.lb-caption {
    margin-top: 16px; font-family: var(--serif-jp);
    font-size: 0.85rem; font-weight: 300;
    color: rgba(255,255,255,0.5); letter-spacing: 0.1em;
}

/* ===== HEADER ===== */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 2.5rem; height: 72px;
    display: flex; align-items: center;
    transition: background 0.4s, backdrop-filter 0.4s;
}
#header.scrolled {
    background: rgba(20, 10, 14, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}
.header-inner {
    width: 100%; display: flex;
    align-items: center; justify-content: space-between;
}
.logo {
    font-family: var(--display); font-weight: 600;
    font-size: 1.3rem; color: var(--white); letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 8px;
}
.logo-icon {
    width: 32px; height: 32px; border-radius: 50%;
    filter: brightness(1.8) contrast(0.9);
}
.desktop-nav {
    display: flex; align-items: center; gap: 28px;
}
.desktop-nav a {
    font-family: var(--serif-jp); font-size: 0.78rem; font-weight: 400;
    color: var(--text-mid); letter-spacing: 0.06em;
    position: relative; transition: color 0.3s;
}
.desktop-nav a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { width: 100%; }

/* Nav Instagram */
.nav-instagram {
    display: flex; align-items: center; color: var(--text-mid); transition: color 0.3s;
}
.nav-instagram:hover { color: var(--gold); }

#lang-selector, #lang-selector-sp {
    background: transparent; border: 1px solid var(--text-dim);
    color: var(--text-mid); font-family: var(--display);
    font-size: 0.7rem; padding: 4px 8px;
    border-radius: 4px; cursor: pointer;
}

.menu-btn {
    display: none; width: 44px; height: 44px;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; background: none; border: none; cursor: pointer; z-index: 200;
}
.menu-btn span {
    display: block; width: 24px; height: 1.5px;
    background: var(--white); border-radius: 2px; transition: 0.4s var(--ease);
}
.menu-btn.active span:nth-child(1) { transform: translateY(4.75px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { transform: translateY(-4.75px) rotate(-45deg); }

/* ===== DRAWER ===== */
.drawer-overlay {
    position: fixed; inset: 0; z-index: 80;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease);
}
.drawer-overlay.active { opacity: 1; pointer-events: auto; }
.drawer {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 380px; max-width: 85vw; z-index: 90;
    background: var(--dark);
    transform: translateX(-100%); transition: transform 0.5s var(--ease);
    overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-inner { padding: 80px 36px 40px; }
.drawer-logo {
    font-family: var(--display); font-weight: 600;
    font-size: 1.4rem; margin-bottom: 40px; color: var(--gold);
    display: flex; align-items: center; gap: 10px;
}
.drawer-logo-icon {
    width: 36px; height: 36px; border-radius: 50%;
    filter: brightness(1.8) contrast(0.9);
}
.drawer-links { display: flex; flex-direction: column; }
.drawer-links a {
    display: block; padding: 16px 0;
    font-size: 1rem; color: var(--text-mid);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.08em; transition: color 0.3s;
}
.drawer-links a:hover { color: var(--gold); }
/* Drawer Instagram */
.drawer-instagram {
    display: flex; align-items: center; gap: 12px;
    margin-top: 28px; padding: 14px 0;
    color: var(--text-mid); font-size: 0.9rem;
    letter-spacing: 0.06em; transition: color 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer-instagram:hover { color: var(--gold); }
.drawer-lang { margin-top: 32px; }

/* ===== HERO ===== */
#hero {
    position: relative; height: 100vh; min-height: 600px; overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.4s ease;
    will-change: opacity;
    backface-visibility: hidden;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1) translateZ(0);
    backface-visibility: hidden;
}
body:not(.is-loading) .hero-slide img {
    transition: transform 5.5s ease-out;
}
body:not(.is-loading) .hero-slide.active img {
    transform: scale(1.06) translateZ(0);
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(20,10,14,0.2) 0%, rgba(20,10,14,0.05) 40%, rgba(20,10,14,0.55) 100%);
}

.hero-copy { position: absolute; bottom: 28%; left: 4%; z-index: 2; }
.hero-copy-vertical {
    writing-mode: vertical-rl;
    font-family: var(--serif-jp);
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    font-weight: 300; color: var(--white);
    letter-spacing: 0.16em; line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-bottom {
    position: absolute; bottom: 44px; left: 0; right: 0;
    padding: 0 5%; display: flex;
    align-items: flex-end; justify-content: space-between; z-index: 2;
}
.hero-tag {
    font-family: var(--display); font-size: 0.6rem;
    letter-spacing: 0.4em; color: rgba(255,255,255,0.5); margin-bottom: 10px;
}
.hero-title {
    font-family: var(--display);
    font-size: clamp(2.6rem, 6.5vw, 4.5rem);
    font-weight: 400; font-style: italic;
    color: var(--white); letter-spacing: 0.02em; line-height: 1;
    text-shadow: 0 3px 24px rgba(0,0,0,0.2);
}
.hero-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.6);
    margin-top: 14px; font-weight: 300; letter-spacing: 0.12em;
}
.hero-dots { display: flex; gap: 8px; padding-bottom: 8px; }
.hero-dot {
    width: 32px; height: 3px; background: rgba(255,255,255,0.2);
    border: none; cursor: pointer; padding: 0; border-radius: 2px; overflow: hidden;
}
.hero-dot span {
    display: block; height: 100%; width: 0;
    background: var(--gold); border-radius: 2px;
}
.hero-dot.active span { animation: dotFill 5s linear forwards; }
@keyframes dotFill { to { width: 100%; } }
.hero-scroll { position: absolute; bottom: 44px; right: 4%; z-index: 2; }
.hero-scroll span {
    font-family: var(--display); font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.3em; color: rgba(255,255,255,0.3); writing-mode: vertical-rl;
}

/* ===== SECTION TITLES ===== */
.sec-title-en {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400; font-style: italic;
    background: linear-gradient(180deg, var(--white) 50%, var(--dark) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.01em; line-height: 1.1;
    margin-bottom: 6px;
}
.sec-title-en.dark {
    background: linear-gradient(180deg, var(--dark) 50%, var(--text-mid) 100%);
    -webkit-background-clip: text; background-clip: text;
}

.sec-title-jp {
    font-family: var(--serif-jp); font-size: 1.1rem; font-weight: 500;
    letter-spacing: 0.2em; margin-bottom: 20px; color: var(--text-mid);
}

/* ===== INTRO ===== */
#intro { text-align: center; padding: 120px 0 80px; }
.divider { width: 36px; height: 1px; background: var(--gold); margin: 0 auto 32px; }
.intro-text {
    font-size: 0.9rem; line-height: 2.4;
    color: var(--text-mid); font-weight: 300; letter-spacing: 0.04em;
}

/* ===== AREA NAV ===== */
#areas { padding: 0 0 100px; }
.area-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.anc {
    display: block; border-radius: var(--radius); overflow: hidden;
    background: var(--dark-card);
    box-shadow: 2px 3px 12px rgba(0,0,0,0.3);
    transition: transform 0.5s var(--ease), opacity 0.3s;
}
.anc:hover { transform: translateY(-5px); }

/* Spotlight: dim siblings on hover */
.area-nav-grid:hover .anc { opacity: 0.5; filter: brightness(0.8); }
.area-nav-grid:hover .anc:hover { opacity: 1; filter: brightness(1); }

.anc-frame {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--dark-mid);
}
.anc-frame img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 0;
    transition: transform 0.6s var(--ease);
}
.anc:hover .anc-frame img { transform: scale(1.04); }
.anc-label { padding: 14px 16px 16px; }
.anc-num {
    font-family: var(--display); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.15em; color: var(--gold); display: block; margin-bottom: 2px;
}
.anc-label h3 {
    font-family: var(--serif-jp); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.1em; color: var(--text);
}

/* ===== AREA SECTIONS ===== */
.area-section { padding: 120px 0 100px; }

/* Light variant (like Wolfgang's news section) */
.area-section.light {
    background: var(--light-bg);
    color: var(--light-text);
}
.area-section.light .area-desc { color: var(--light-sub); }
.area-section.light .area-subtitle { color: var(--light-sub); }
.area-section.light .gf-img { background: var(--white); }
.area-section.light .sf-img { background: var(--white); }
.area-section.light figcaption { color: var(--light-sub); }
.area-section.light .tag {
    color: #8a7a52; border-color: rgba(138, 122, 82, 0.3);
}

/* Area head */
.area-head { text-align: center; margin-bottom: 56px; }
.area-num-label {
    font-family: var(--display); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.2em; color: var(--gold);
    display: block; margin-bottom: 14px;
}
.area-title {
    font-family: var(--serif-jp);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 500; letter-spacing: 0.15em;
    color: var(--text-mid); margin-bottom: 14px;
}
.area-title.dark { color: var(--light-sub); }
.area-subtitle {
    font-size: 0.82rem; color: var(--text-dim);
    font-weight: 300; letter-spacing: 0.1em;
}

/* ===== SPLIT ===== */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center; margin-bottom: 56px;
}
.split-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 2px 3px 12px rgba(0,0,0,0.3);
    transition: box-shadow 0.4s var(--ease);
}
.split-photo:hover { box-shadow: 4px 6px 24px rgba(0,0,0,0.4); }
.split-photo img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 0; cursor: pointer;
    transition: transform 0.8s var(--ease);
}
.split-photo img:hover { transform: scale(1.03); }
.split-text { padding-top: 8px; }
.area-desc {
    font-size: 0.92rem; line-height: 2.3;
    color: var(--text-mid); font-weight: 300;
    letter-spacing: 0.02em; margin-bottom: 28px;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tags.center { justify-content: center; }
.tag {
    font-size: 0.7rem; font-weight: 500; color: var(--gold);
    letter-spacing: 0.06em; padding: 5px 14px;
    border: 1px solid var(--gold-dim); border-radius: 50px;
}

/* ===== AREA BODY CENTER ===== */
.area-body-center { max-width: 700px; margin: 0 auto 56px; text-align: center; }

/* ===== GALLERY GRID ===== */
.gallery-grid { display: grid; gap: 32px; margin-top: 64px; }
.gallery-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.gallery-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.gallery-frame { border-radius: var(--radius); overflow: hidden; }

.gf-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--dark-card);
    border-radius: var(--radius);
    box-shadow: 2px 3px 12px rgba(0,0,0,0.2);
    transition: box-shadow 0.4s var(--ease);
}
.gf-img:hover { box-shadow: 4px 6px 20px rgba(0,0,0,0.35); }
.gf-img img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 0; cursor: pointer;
    transition: transform 0.8s var(--ease);
}
.gf-img:hover img { transform: scale(1.03); }

.gallery-frame figcaption {
    padding: 14px 6px 6px;
    font-size: 0.75rem; color: var(--text-dim);
    letter-spacing: 0.08em; text-align: center;
}

/* ===== STANDALONE FRAME ===== */
.standalone-frame { margin-bottom: 48px; margin-top: 56px; text-align: center; }
.sf-img {
    display: flex; justify-content: center; align-items: center;
    background: var(--dark-card);
    border-radius: var(--radius); padding: 16px;
    box-shadow: 2px 3px 12px rgba(0,0,0,0.2);
    transition: box-shadow 0.4s var(--ease);
}
.sf-img:hover { box-shadow: 4px 6px 20px rgba(0,0,0,0.35); }
.sf-img img {
    max-height: 70vh; width: auto; max-width: 100%;
    object-fit: contain; border-radius: 4px; cursor: pointer;
    transition: transform 0.8s var(--ease);
}
.sf-img:hover img { transform: scale(1.02); }
.standalone-frame.portrait .sf-img img { max-height: 65vh; }
.standalone-frame figcaption {
    padding: 14px 0 0;
    font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.08em;
}

/* ===== INSTAGRAM CTA ===== */
#instagram-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--dark);
}
.ig-cta-inner { max-width: 500px; margin: 0 auto; }

/* Calligraphy card - washi paper style */
.calligraphy-card {
    background: url('images/washi-texture.jpg') center / cover;
    border-radius: 0;
    padding: 100px 40px 88px;
    margin-bottom: 56px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
}
.calligraphy-jp {
    font-family: var(--serif-jp);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 0.25em;
    line-height: 1;
    white-space: nowrap;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.calligraphy-en {
    font-family: var(--display);
    font-size: clamp(0.8rem, 1.4vw, 1rem);
    font-weight: 400; font-style: italic;
    color: rgba(20, 10, 14, 0.4);
    letter-spacing: 0.15em;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1.4s ease 0.4s, transform 1.4s ease 0.4s;
}
.calligraphy-card.visible .calligraphy-jp,
.calligraphy-card.visible .calligraphy-en {
    opacity: 1;
    transform: translateY(0);
}
.ig-cta-label {
    font-family: var(--display); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.5em; color: var(--gold); margin-bottom: 20px;
}
.ig-cta-title {
    font-family: var(--serif-jp);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300; color: var(--text);
    letter-spacing: 0.15em; margin-bottom: 16px;
}
.ig-cta-desc {
    font-size: 0.85rem; color: var(--text-dim);
    font-weight: 300; letter-spacing: 0.04em; margin-bottom: 36px;
}
.ig-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 36px; border: 1px solid var(--gold-dim);
    border-radius: 50px; color: var(--gold);
    font-family: var(--display); font-size: 0.9rem;
    letter-spacing: 0.06em; transition: all 0.4s var(--ease);
}
.ig-cta-btn:hover {
    background: var(--gold); color: var(--dark);
    border-color: var(--gold);
}

/* ===== CONTACT ===== */
#contact {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-inner { max-width: 540px; margin: 0 auto; }
.contact-label {
    font-family: var(--display); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.5em; color: var(--gold); margin-bottom: 18px;
    display: block;
}
.contact-title {
    font-family: var(--serif-jp);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 300; color: var(--text);
    letter-spacing: 0.15em; margin-bottom: 20px;
}
.contact-divider {
    width: 36px; height: 1px; background: var(--gold);
    margin: 0 auto 28px;
}
.contact-desc {
    font-size: 0.88rem; color: var(--text-mid);
    font-weight: 300; letter-spacing: 0.04em;
    line-height: 2.2; margin-bottom: 36px;
}
.contact-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px; background: var(--gold); color: var(--dark);
    font-family: var(--serif-jp); font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.08em; border-radius: 50px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 2px 16px rgba(198, 185, 137, 0.15);
}
.contact-btn:hover {
    background: var(--white); color: var(--dark);
    box-shadow: 0 4px 24px rgba(198, 185, 137, 0.3);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer-inner { background: var(--dark-mid); padding: 48px 0 24px; }
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
    font-family: var(--display); font-weight: 600;
    font-size: 1.2rem; color: var(--gold); margin-bottom: 6px;
    display: flex; align-items: center; gap: 10px;
}
.footer-logo-icon {
    width: 36px; height: 36px; border-radius: 50%;
    filter: brightness(1.8) contrast(0.9);
}
.footer-tagline { font-size: 0.72rem; color: var(--text-dim); font-weight: 300; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
    font-size: 0.75rem; color: var(--text-dim);
    transition: color 0.3s; letter-spacing: 0.04em;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { padding-top: 20px; text-align: center; }
.footer-social { text-align: center; padding: 20px 0; }
.footer-ig-link {
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-dim); transition: color 0.3s;
}
.footer-ig-link:hover { color: var(--gold); }
.footer-bottom p { font-size: 0.6rem; color: rgba(255,255,255,0.15); letter-spacing: 0.06em; }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translate(0, 14px);
    transition: opacity 0.85s var(--ease) 0.15s, transform 0.85s var(--ease) 0.15s;
}
.reveal.visible { opacity: 1; transform: translate(0, 0); }

.reveal-stagger > * {
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* ===== ENGLISH OVERRIDES ===== */
html[lang="en"] .hero-copy-vertical {
    writing-mode: horizontal-tb;
    font-family: var(--display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-style: italic;
    letter-spacing: 0.06em;
    line-height: 1.4;
    max-width: 280px;
}
html[lang="en"] .desktop-nav {
    gap: 18px;
}
html[lang="en"] .desktop-nav a {
    font-family: var(--display);
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
html[lang="en"] .calligraphy-jp {
    white-space: normal;
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    #header { padding: 0 1.5rem; height: 60px; }
    .desktop-nav { display: none; }
    .menu-btn { display: flex; }

    .area-nav-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .anc-frame { height: 20vh; min-height: 130px; }

    .split { grid-template-columns: 1fr; gap: 28px; }
    .split-photo img { max-height: 55vh; }

    .gallery-grid.cols-2,
    .gallery-grid.cols-3 { grid-template-columns: 1fr; }
    .gf-img { height: auto; min-height: 0; }
    .gf-img img { max-height: 60vh; }

    .area-section { padding: 80px 0 64px; }
    #intro { padding: 80px 0 60px; }
    #areas { padding: 0 0 80px; }
    #instagram-cta { padding: 72px 0; }
    #contact { padding: 72px 0; }

    .footer-top { flex-direction: column; gap: 24px; }
    .footer-nav { gap: 16px; }
    .hero-copy { bottom: 28%; left: 5%; }
}

@media (max-width: 560px) {
    #header { padding: 0 1rem; height: 56px; }
    .container { padding: 0 5%; }
    #hero { min-height: 500px; }
    .hero-bottom { padding: 0 5%; bottom: 28px; }
    .hero-title { font-size: 2.2rem; }
    .hero-copy-vertical { font-size: 1rem; }
    .hero-copy { bottom: 32%; }
    html[lang="en"] .hero-copy-vertical { font-size: 0.9rem; max-width: 200px; }

    .calligraphy-card { padding: 64px 20px 56px; }
    .calligraphy-jp { font-size: 1.35rem; letter-spacing: 0.15em; white-space: normal; line-height: 1.6; }
    .calligraphy-en { font-size: 0.7rem; white-space: normal; }
    html[lang="en"] .calligraphy-jp { font-size: 1.1rem; }
    #instagram-cta { padding: 56px 0; }
    #contact { padding: 56px 0; }

    .area-nav-grid { grid-template-columns: 1fr; gap: 10px; }
    .anc-frame { height: 26vh; min-height: 160px; }
    .split-photo img { max-height: 50vh; }
    .standalone-frame.portrait .sf-img img { max-height: 55vh; }

    .area-section { padding: 64px 0 48px; }
    .area-head { margin-bottom: 36px; }
    .drawer { width: 100%; max-width: 100%; }
    .drawer-inner { padding: 70px 24px 24px; }
}
