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

:root {
    --c-bg:         #F8F5F0;
    --c-white:      #FFFFFF;
    --c-surface:    #F2EEE8;
    --c-text:       #1A1714;
    --c-text-sub:   #6B6257;
    --c-text-dim:   #9E968D;
    --c-accent:     #7C5A1E;
    --c-accent-mid: #B8832C;
    --c-accent-lt:  #D4A850;
    --c-border:     #E3DDD4;
    --c-border-dk:  #C4BAB0;
    --c-dark:       #1A1714;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-sub:     'Cormorant Garamond', Georgia, serif;
    --font-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;

    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 15px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--c-bg); color: var(--c-text); line-height: 1.8; overflow-x: hidden; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 32px; }

/* ─────────────────────────────────────────
   Scroll Progress
───────────────────────────────────────── */
.progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--c-accent-mid);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ─────────────────────────────────────────
   Header
───────────────────────────────────────── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header.scrolled {
    background: rgba(248, 245, 240, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--c-border);
}
.nav-container {
    max-width: 1060px; margin: 0 auto; padding: 0 32px;
    height: 68px; display: flex; justify-content: space-between; align-items: center;
}
.logo-text {
    font-family: var(--font-sub); font-size: 1.2rem; font-weight: 600;
    color: rgba(255,255,255,0.9); letter-spacing: 0.04em;
    transition: color 0.4s;
}
.header.scrolled .logo-text { color: var(--c-text); }
.logo-amp { color: var(--c-accent-lt); font-style: italic; }
.header.scrolled .logo-amp { color: var(--c-accent-mid); }

.nav-menu { display: flex; list-style: none; gap: 2.4rem; }
.nav-menu a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.14em;
    transition: color 0.3s; position: relative; padding-bottom: 2px;
}
.header.scrolled .nav-menu a { color: var(--c-text-sub); }
.nav-menu a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--c-accent);
    transition: width 0.3s var(--ease);
}
.nav-menu a:hover { color: rgba(255,255,255,0.95); }
.header.scrolled .nav-menu a:hover { color: var(--c-accent); }
.nav-menu a:hover::after { width: 100%; }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
}
.menu-toggle span {
    display: block; width: 22px; height: 1.5px;
    background: rgba(255,255,255,0.8); transition: all 0.25s;
}
.header.scrolled .menu-toggle span { background: var(--c-text); }

/* ─────────────────────────────────────────
   Hero
───────────────────────────────────────── */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--c-dark);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-image {
    width: 100%; height: 100%; background-size: cover; background-position: center;
    opacity: 0.85;
    animation: hero-kenburns 24s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero-vignette {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(26,23,20,0.3) 0%, rgba(26,23,20,0.1) 40%, rgba(26,23,20,0.7) 100%),
        radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(26,23,20,0.6) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px;
}
.hero-eyebrow {
    font-family: var(--font-sub); font-size: 0.7rem;
    letter-spacing: 0.45em; color: rgba(255,255,255,0.45);
    text-transform: uppercase; margin-bottom: 2rem;
    opacity: 0; transform: translateY(16px);
}
.hero-logo-wrap {
    margin-bottom: 2rem;
    opacity: 0; transform: translateY(20px);
}

/* Brand logotype (text-based company mark, used where the pub's own logo doesn't belong) */
.brand-logotype { font-family: var(--font-sub); font-weight: 600; letter-spacing: 0.04em; line-height: 1; }
.brand-logotype .amp { font-style: italic; }
.brand-logotype--hero {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    color: rgba(255,255,255,0.95);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.brand-logotype--hero .amp { color: var(--c-accent-lt); }
.brand-logotype--card { font-size: 1.6rem; color: var(--c-text); }
.brand-logotype--card .amp { color: var(--c-accent-mid); }
.hero-rule {
    width: 40px; height: 1px; background: rgba(255,255,255,0.25);
    margin: 0 auto 1.6rem;
    opacity: 0; transform: scaleX(0);
    transform-origin: center;
}
.hero-subtitle {
    font-size: 0.9rem; letter-spacing: 0.24em;
    color: rgba(255,255,255,0.6); margin-bottom: 2.8rem;
    opacity: 0; transform: translateY(12px);
}
.hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.65); text-decoration: none;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.22); padding: 0.75rem 1.8rem;
    transition: all 0.3s; opacity: 0; transform: translateY(10px);
}
.hero-cta:hover {
    color: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}
.hero-scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    opacity: 0;
}
.scroll-line {
    display: block; width: 1px; height: 48px; margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scroll-drop 1.8s ease-in-out infinite;
}
@keyframes scroll-drop {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero entrance animations */
.hero-animated .hero-eyebrow { animation: el-in 0.9s var(--ease) 0.3s forwards; }
.hero-animated .hero-logo-wrap { animation: el-in 0.9s var(--ease) 0.55s forwards; }
.hero-animated .hero-rule { animation: rule-in 0.8s var(--ease) 0.85s forwards; }
.hero-animated .hero-subtitle { animation: el-in 0.8s var(--ease) 1.0s forwards; }
.hero-animated .hero-cta { animation: el-in 0.8s var(--ease) 1.25s forwards; }
.hero-animated .hero-scroll-indicator { animation: el-in 0.8s var(--ease) 1.6s forwards; }

@keyframes el-in {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes rule-in {
    to { opacity: 1; transform: scaleX(1); }
}

/* ─────────────────────────────────────────
   Stores (運営店舗) — primary showcase
───────────────────────────────────────── */
.stores-section { background: var(--c-dark); padding: 96px 0; }
.stores-section .section-label { color: var(--c-accent-lt); }
.stores-section .section-title { color: rgba(255,255,255,0.94); }
.stores-section .section-title::after { background: var(--c-accent-lt); }

.store-feature-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.store-feature-grid.visible { opacity: 1; transform: translateY(0); }

.store-feature-card {
    position: relative; display: block; overflow: hidden;
    min-height: 420px; border: 1px solid rgba(255,255,255,0.1);
    background-size: cover; background-position: center;
    text-decoration: none;
    transition: transform 0.4s var(--ease), border-color 0.4s;
}
.store-feature-card:hover { transform: scale(1.015); border-color: rgba(212,168,80,0.5); }
.store-feature-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.5) 45%, rgba(10,9,8,0.35) 100%);
    transition: background 0.4s;
}
.store-feature-card:hover .store-feature-overlay { background: linear-gradient(to top, rgba(10,9,8,0.94) 0%, rgba(10,9,8,0.4) 45%, rgba(10,9,8,0.2) 100%); }
.store-feature-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2.6rem;
}
.store-feature-eyebrow {
    font-family: var(--font-sub); font-size: 0.72rem; letter-spacing: 0.28em;
    color: var(--c-accent-lt); text-transform: uppercase; margin-bottom: 0.9rem;
}
.store-feature-logo {
    height: 68px; width: auto; align-self: flex-start; margin-bottom: 1.1rem;
    filter: drop-shadow(0 3px 14px rgba(0,0,0,0.65));
}
.store-feature-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 1.6rem; }
.store-feature-cta {
    display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
    color: #fff; font-size: 0.82rem; letter-spacing: 0.08em;
    border: 1px solid rgba(255,255,255,0.35); padding: 0.7rem 1.4rem;
    transition: border-color 0.2s, background 0.2s;
}
.store-feature-card:hover .store-feature-cta { border-color: var(--c-accent-lt); background: rgba(212,168,80,0.1); }
.store-feature-card:hover .store-feature-cta .link-arrow { transform: translate(2px, -2px); }
.store-feature-cta .link-arrow { transition: transform 0.2s; }

/* ─────────────────────────────────────────
   Section Common
───────────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt { background: var(--c-white); }

.section-header { margin-bottom: 3rem; }
.section-label {
    font-family: var(--font-sub); font-size: 0.72rem;
    letter-spacing: 0.38em; color: var(--c-accent-mid);
    text-transform: uppercase; margin-bottom: 0.5rem;
    opacity: 0; transform: translateX(-10px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.section-title {
    font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 400; color: var(--c-text); letter-spacing: 0.03em;
    position: relative; padding-bottom: 1rem;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.7s var(--ease) 0.1s, transform 0.7s var(--ease) 0.1s;
}
.section-title::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--c-accent);
    transition: width 0.8s var(--ease) 0.35s;
}
.js-reveal.visible .section-label { opacity: 1; transform: translateX(0); }
.js-reveal.visible .section-title { opacity: 1; transform: translateY(0); }
.js-reveal.visible .section-title::after { width: 48px; }

.section-rule { padding: 0; line-height: 0; }
.section-rule span { display: block; height: 1px; background: var(--c-border); }

/* ─────────────────────────────────────────
   About / Directors Table
───────────────────────────────────────── */
.about-table-wrap { max-width: 720px; }
.about-table { width: 100%; }

.about-row {
    display: grid; grid-template-columns: 140px 1fr;
    border-bottom: 1px solid var(--c-border);
    opacity: 0; transform: translateX(-16px);
    transition: opacity 0.55s var(--ease) var(--row-delay, 0ms),
                transform 0.55s var(--ease) var(--row-delay, 0ms),
                background 0.2s;
}
.about-row:first-child { border-top: 1px solid var(--c-border); }
.about-row.visible { opacity: 1; transform: translateX(0); }
.about-row:hover { background: rgba(124,90,30,0.03); }

.about-row dt {
    font-size: 0.75rem; letter-spacing: 0.1em;
    color: var(--c-text-sub); padding: 1.15rem 0.5rem 1.15rem 0;
    display: flex; align-items: center;
}
.about-row dd {
    font-size: 0.88rem; color: var(--c-text);
    padding: 1.15rem 0; line-height: 1.7;
    display: flex; align-items: center;
}
.note { font-size: 0.78em; color: var(--c-text-dim); margin-left: 0.4rem; }

/* ─────────────────────────────────────────
   Business
───────────────────────────────────────── */
.business-card {
    max-width: 640px; padding: 3rem;
    border-left: 2px solid var(--c-accent);
    background: var(--c-white);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    position: relative;
}
.business-card.visible { opacity: 1; transform: translateY(0); }

.business-label {
    font-family: var(--font-sub); font-size: 2.5rem; font-weight: 300;
    color: rgba(184, 131, 44, 0.2); letter-spacing: 0.05em;
    line-height: 1; margin-bottom: 1rem;
}
.business-title {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
    color: var(--c-text); letter-spacing: 0.04em; margin-bottom: 1rem;
}
.business-desc {
    font-size: 0.85rem; color: var(--c-text-sub);
    line-height: 2; margin-bottom: 1.8rem;
}
.business-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--c-accent); text-decoration: none;
    font-size: 0.82rem; letter-spacing: 0.06em;
    border-bottom: 1px solid var(--c-accent-lt); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.business-link:hover { color: var(--c-accent-mid); border-color: var(--c-accent-mid); }
.link-arrow { transition: transform 0.2s; }
.business-link:hover .link-arrow { transform: translate(2px, -2px); }

/* ─────────────────────────────────────────
   Location
───────────────────────────────────────── */
.location-block-label {
    font-family: var(--font-sub); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.16em; color: var(--c-text-dim);
    margin-bottom: 1.2rem;
    opacity: 0; transform: translateX(-10px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.location-block-label.visible { opacity: 1; transform: translateX(0); }
.location-block-label-stores { margin-top: 3.5rem; }

.location-layout {
    display: grid; grid-template-columns: 260px 1fr;
    gap: 2rem; align-items: stretch;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.location-layout.visible { opacity: 1; transform: translateY(0); }

.location-info-col { display: flex; flex-direction: column; gap: 1rem; }
.location-logo-frame {
    background: var(--c-bg); border: 1px solid var(--c-border);
    padding: 2rem; display: flex; align-items: center; justify-content: center;
    flex: 1;
}
.location-addr {
    background: var(--c-bg); border: 1px solid var(--c-border);
    padding: 1.4rem 1.6rem;
}
.addr-label { font-size: 0.7rem; letter-spacing: 0.18em; color: var(--c-text-dim); margin-bottom: 0.5rem; }
.addr-text { font-size: 0.85rem; color: var(--c-text); line-height: 1.85; }

.map-link-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--c-accent); text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.08em;
    border: 1px solid var(--c-border); padding: 0.75rem 1.2rem;
    background: var(--c-white); transition: border-color 0.2s, background 0.2s;
    width: 100%; justify-content: center;
}
.map-link-btn:hover { border-color: var(--c-accent); background: var(--c-bg); }

.location-map-col { min-height: 380px; border: 1px solid var(--c-border); overflow: hidden; }
.location-map-col iframe { width: 100%; height: 100%; display: block; border: 0; min-height: 380px; }

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.footer { background: var(--c-dark); padding: 4rem 0 2.4rem; }
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem;
}
.footer-logo-text {
    font-family: var(--font-sub); font-size: 1.2rem; font-weight: 600;
    color: rgba(255,255,255,0.85); letter-spacing: 0.04em; margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.25); letter-spacing: 0.14em; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; }
.footer-nav a {
    color: rgba(255,255,255,0.35); text-decoration: none;
    font-size: 0.75rem; letter-spacing: 0.1em; transition: color 0.25s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem; text-align: center;
}
.footer-group-link { margin-bottom: 0.65rem; }
.footer-group-link a {
    font-family: var(--font-sub); font-size: 0.7rem;
    color: rgba(255,255,255,0.18); text-decoration: none;
    letter-spacing: 0.1em; transition: color 0.2s;
}
.footer-group-link a:hover { color: rgba(255,255,255,0.42); }
.copyright {
    font-family: var(--font-sub); font-size: 0.75rem;
    color: rgba(255,255,255,0.22); letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-menu {
        display: none; flex-direction: column;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--c-bg); border-bottom: 1px solid var(--c-border);
        padding: 1.5rem 2rem; gap: 1.25rem;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { color: var(--c-text-sub); }
    .menu-toggle { display: flex; }
    .section { padding: 60px 0; }
    .about-row { grid-template-columns: 100px 1fr; }
    .location-layout { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
    .footer-nav { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
    .business-card { padding: 2rem; }
}
