/* =========================================================
   Colorado Sushi Ramen — Modern Japanese Dining × Colorado Warmth
   Rice White · Sumi Ink · Hinoki Wood · Vermilion · Matcha · Muted Gold
   ========================================================= */

:root {
    /* Japanese palette */
    --rice: #F7F1E7;          /* main background — rice white */
    --rice-warm: #F2EADC;     /* slightly warmer rice */
    --paper: #FBF6EC;         /* lighter paper / cards */
    --sumi: #12110F;          /* sumi ink — deep black-brown */
    --sumi-soft: #1C1A17;     /* slightly lighter sumi */
    --ink: #2A2724;           /* body text */
    --hinoki: #B98A5A;        /* hinoki wood — warm brown */
    --hinoki-light: #C7A06A;  /* lighter hinoki */
    --vermilion: #B7352D;     /* Japanese vermilion — main CTA */
    --vermilion-deep: #92271F;
    --matcha: #6F7D4F;        /* matcha green — accent */
    --gold: #C7A45D;          /* muted gold — fine lines */
    --gold-soft: #D9BC83;
    --muted: #7A7368;
    --line: #E3D9C5;          /* hairline on rice */
    --line-soft: #EFE6D2;

    --serif: 'Cormorant Garamond', 'Playfair Display', 'Noto Serif JP', Georgia, serif;
    --sans: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --jp: 'Noto Serif JP', 'Cormorant Garamond', serif;

    --container: 1280px;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow-sm: 0 4px 18px rgba(18, 17, 15, 0.05);
    --shadow: 0 14px 40px rgba(18, 17, 15, 0.10);
    --shadow-lg: 0 28px 70px rgba(18, 17, 15, 0.16);

    --t: cubic-bezier(.22, .61, .36, 1);

    /* Backwards-compatible aliases for inner pages */
    --black: var(--sumi);
    --charcoal: var(--sumi-soft);
    --ivory: var(--rice);
    --warm-ivory: var(--rice-warm);
    --red: var(--vermilion);
    --red-deep: var(--vermilion-deep);
    --wood: var(--hinoki);
    --gold-light: var(--gold-soft);

    /* Washi paper texture — subtle noise, ~5% opacity */
    --washi: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.38  0 0 0 0 0.28  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");

    /* Seigaiha (青海波) wave pattern */
    --seigaiha: 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='%23C7A45D' stroke-width='0.6' opacity='0.18'><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='20'/><circle cx='40' cy='40' r='12'/><circle cx='40' cy='40' r='4'/><circle cx='0' cy='40' r='28'/><circle cx='80' cy='40' r='28'/><circle cx='0' cy='40' r='20'/><circle cx='80' cy='40' r='20'/><circle cx='0' cy='40' r='12'/><circle cx='80' cy='40' r='12'/><circle cx='0' cy='40' r='4'/><circle cx='80' cy='40' r='4'/><circle cx='20' cy='0' r='28'/><circle cx='60' cy='0' r='28'/><circle cx='20' cy='0' r='20'/><circle cx='60' cy='0' r='20'/><circle cx='20' cy='0' r='12'/><circle cx='60' cy='0' r='12'/><circle cx='20' cy='0' r='4'/><circle cx='60' cy='0' r='4'/></g></svg>");

    /* Asanoha (麻の葉) hemp leaf — for accents */
    --asanoha: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'><g fill='none' stroke='%23C7A45D' stroke-width='0.6' opacity='0.14'><path d='M30 0 L0 17.3 L0 52 L30 69.3 L60 52 L60 17.3 Z'/><path d='M30 0 L30 69.3 M0 17.3 L60 52 M0 52 L60 17.3'/></g></svg>");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background-color: var(--rice);
    background-image: var(--washi);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--t); }
a:hover { color: var(--vermilion); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--sumi);
    letter-spacing: -0.005em;
    line-height: 1.18;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.1vw, 2rem); }
h4 { font-size: 1.2rem; }

p { color: #3a3530; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 920px); margin-inline: auto; }
.container-wide { width: min(100% - 2.5rem, 1440px); margin-inline: auto; }

section { padding: clamp(70px, 10vw, 140px) 0; position: relative; }

/* ============== EYEBROW / SECTION HEAD ============== */
.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--vermilion);
    margin-bottom: 20px;
}
.eyebrow::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--vermilion);
}
.eyebrow.center::before { display: none; }
.eyebrow .jp {
    font-family: var(--jp);
    font-weight: 500;
    color: var(--hinoki);
    letter-spacing: 0.1em;
    font-size: 0.92rem;
    text-transform: none;
}

.section-head { text-align: center; max-width: 780px; margin-inline: auto; margin-bottom: 68px; position: relative; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head h2 em { font-style: italic; color: var(--vermilion); font-family: var(--serif); }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.06rem; max-width: 60ch; margin-inline: auto; }

/* Vermilion seal — used near titles */
.seal {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: var(--vermilion);
    color: #fff;
    font-family: var(--jp);
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 4px;
    transform: rotate(-4deg);
    box-shadow: 0 2px 8px rgba(183, 53, 45, 0.28);
    border: 2px solid rgba(255,255,255,0.18);
    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    position: relative;
}
.seal::after {
    content: "";
    position: absolute; inset: 3px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    pointer-events: none;
}
.seal-title {
    display: inline-flex; align-items: center; gap: 18px;
    justify-content: center;
}

/* ============== TOP BAR ============== */
.topbar {
    background: var(--sumi);
    color: #D8CFB9;
    font-size: 0.82rem;
    padding: 11px 0;
    letter-spacing: 0.04em;
    position: relative;
    border-bottom: 1px solid rgba(199, 164, 93, 0.12);
}
.topbar::after {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--seigaiha);
    opacity: 0.4;
    pointer-events: none;
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.topbar .tb-left,
.topbar .tb-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar a { color: #D8CFB9; }
.topbar a:hover { color: var(--gold-soft); }
.topbar .sep { opacity: 0.3; color: var(--hinoki-light); }
.topbar strong { color: var(--gold-soft); font-weight: 600; letter-spacing: 0.12em; font-size: 0.74rem; }
.tb-right a.cta-link { color: var(--vermilion); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.74rem; }
.tb-right a.cta-link:hover { color: #fff; }

/* ============== HEADER ============== */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247, 241, 231, 0.92);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(18, 17, 15, 0.06);
    transition: background .35s var(--t), border-color .35s var(--t), color .35s var(--t);
}
.header.scrolled {
    background: rgba(18, 17, 15, 0.96);
    border-bottom-color: rgba(199, 164, 93, 0.18);
}
.header.scrolled .brand,
.header.scrolled .brand-meta .top { color: var(--rice); }
.header.scrolled .brand-meta .bot { color: var(--gold-soft); }
.header.scrolled .nav a { color: rgba(247, 241, 231, 0.88); }
.header.scrolled .nav a:hover { color: var(--gold-soft); }
.header.scrolled .nav a.active { color: var(--gold-soft); }
.header.scrolled .nav a::after { background: var(--gold-soft); }
.header.scrolled .btn-outline { border-color: var(--rice); color: var(--rice); }
.header.scrolled .btn-outline:hover { background: var(--rice); color: var(--sumi); }
.header.scrolled .menu-toggle { background: var(--vermilion); color: #fff; }

.header .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 88px;
}
.brand {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--sumi);
    letter-spacing: 0.02em;
    transition: color .35s var(--t);
}
.brand .mark {
    width: 44px; height: 44px;
    background: var(--vermilion);
    color: var(--rice);
    border-radius: 6px;
    display: grid; place-items: center;
    font-family: var(--jp);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(183, 53, 45, 0.28);
    transform: rotate(-3deg);
    position: relative;
}
.brand .mark::after {
    content: "";
    position: absolute; inset: 3px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 3px;
}
.brand-meta { display: flex; flex-direction: column; line-height: 1.05; }
.brand-meta .top { font-size: 1.18rem; transition: color .35s var(--t); }
.brand-meta .bot { font-size: 0.6rem; letter-spacing: 0.42em; color: var(--muted); margin-top: 5px; text-transform: uppercase; transition: color .35s var(--t); }

.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.04em;
    transition: color .35s var(--t);
}
.nav a::after {
    content: "";
    position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1.5px; background: var(--vermilion);
    transition: width .3s var(--t);
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--vermilion); }

.nav-ctas { display: flex; gap: 12px; align-items: center; }

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 28px;
    border-radius: 60px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all .35s var(--t);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--vermilion); color: #fff;
    box-shadow: 0 8px 24px rgba(183, 53, 45, 0.22);
}
.btn-primary:hover {
    background: var(--vermilion-deep); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(183, 53, 45, 0.35);
}
.btn-dark { background: var(--sumi); color: var(--rice); }
.btn-dark:hover { background: #000; color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--sumi); }
.btn-gold:hover { background: var(--gold-soft); color: var(--sumi); transform: translateY(-2px); }
.btn-outline { border-color: var(--sumi); color: var(--sumi); }
.btn-outline:hover { background: var(--sumi); color: var(--rice); border-color: var(--sumi); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; backdrop-filter: blur(8px); }
.btn-outline-light:hover { background: #fff; color: var(--sumi); border-color: #fff; }
.btn-vermilion-outline { border-color: var(--vermilion); color: var(--vermilion); }
.btn-vermilion-outline:hover { background: var(--vermilion); color: #fff; }
.btn-sm { padding: 11px 20px; font-size: 0.74rem; }
.btn-lg { padding: 18px 36px; font-size: 0.92rem; }

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    background: var(--sumi); color: var(--rice);
    border-radius: 8px;
    align-items: center; justify-content: center;
    font-size: 1.3rem;
    transition: background .35s var(--t);
}

/* ============== MOBILE DRAWER ============== */
.drawer {
    position: fixed; inset: 0;
    background: var(--sumi);
    background-image: var(--seigaiha);
    z-index: 200;
    transform: translateY(-100%);
    transition: transform .45s var(--t);
    overflow-y: auto;
    padding: 30px 24px 40px;
}
.drawer.open { transform: translateY(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer-head .brand { color: var(--rice); }
.drawer-head .brand .brand-meta .top { color: var(--rice); }
.drawer-close { color: var(--rice); width: 44px; height: 44px; font-size: 1.6rem; }
.drawer nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.drawer nav a {
    color: var(--rice);
    font-family: var(--serif);
    font-size: 1.55rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(247, 241, 231, 0.08);
}
.drawer nav a:hover { color: var(--gold-soft); }
.drawer-cta { display: grid; gap: 10px; margin-bottom: 28px; }
.drawer-info { color: rgba(247, 241, 231, 0.7); font-size: 0.88rem; line-height: 1.8; }
.drawer-info strong { color: var(--gold-soft); display: block; letter-spacing: 0.2em; font-size: 0.72rem; text-transform: uppercase; margin-top: 18px; margin-bottom: 6px; }
.drawer-info a { color: var(--rice); }

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 96vh;
    display: flex; align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.hero-slides { position: absolute; inset: 0; z-index: -3; }
.hero-slides .slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.6s var(--t);
    transform: scale(1.06);
}
.hero-slides .slide.active {
    opacity: 1; transform: scale(1);
    transition: opacity 1.6s var(--t), transform 9s linear;
}
/* Warm dark overlay — sumi + warm bottom glow for hospitality feel */
.hero::before {
    content: "";
    position: absolute; inset: 0; z-index: -2;
    background:
      linear-gradient(180deg, rgba(18,17,15,0.45) 0%, rgba(18,17,15,0.25) 35%, rgba(18,17,15,0.6) 100%),
      radial-gradient(ellipse at 50% 110%, rgba(183, 53, 45, 0.22), transparent 55%);
}
/* Hairline frame */
.hero::after {
    content: "";
    position: absolute;
    top: 24px; left: 24px; right: 24px; bottom: 24px;
    border: 1px solid rgba(199, 164, 93, 0.22);
    pointer-events: none;
    z-index: -1;
}
.hero .container { padding: 110px 0 80px; width: min(100% - 2.5rem, var(--container)); }
.hero-eyebrow {
    display: inline-flex; gap: 14px; align-items: center;
    font-size: 0.72rem; letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 28px;
    font-weight: 600;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: ""; width: 34px; height: 1px; background: var(--gold-soft);
}
.hero-eyebrow .jp { font-family: var(--jp); font-size: 0.96rem; letter-spacing: 0.12em; color: var(--rice); text-transform: none; }

.hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 5.4vw, 4.6rem);
    line-height: 1.08;
    max-width: 20ch;
    margin-bottom: 26px;
    text-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
    font-weight: 500;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-family: var(--serif); }
.hero p.lead {
    font-size: 1.05rem;
    max-width: 58ch;
    color: rgba(255,255,255,0.92);
    margin-bottom: 38px;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust {
    display: flex; gap: 38px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(199, 164, 93, 0.28);
    max-width: 820px;
}
.hero-trust .item { display: flex; flex-direction: column; gap: 6px; }
.hero-trust .ico {
    width: 32px; height: 32px;
    border-radius: 50%; border: 1px solid rgba(199, 164, 93, 0.5);
    color: var(--gold-soft);
    display: grid; place-items: center;
    font-family: var(--jp); font-size: 0.92rem;
    margin-bottom: 4px;
}
.hero-trust .lbl {
    font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.7); font-size: 0.68rem;
    letter-spacing: 0.42em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 1;
}
.hero-scroll::after {
    content: ""; width: 1px; height: 40px;
    background: linear-gradient(180deg, rgba(199, 164, 93, 0.8), transparent);
    animation: scroll-pulse 2.4s infinite;
}
@keyframes scroll-pulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    padding: 140px 0 90px;
    color: #fff;
    text-align: center;
    background: var(--sumi);
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-image: var(--bg);
    opacity: 0.4;
}
.page-hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(18,17,15,0.55), rgba(18,17,15,0.88)),
      radial-gradient(ellipse at 50% 100%, rgba(183, 53, 45, 0.22), transparent 60%);
}
.page-hero.light::before { opacity: 1; }
.page-hero.light::after { background: rgba(18, 17, 15, 0.3); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 680px; margin-inline: auto; font-size: 1.08rem; }
.breadcrumb {
    margin-top: 26px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb span { margin: 0 10px; opacity: 0.5; }

/* ============== HIGHLIGHTS / BRAND INTRO ============== */
.highlights {
    background: var(--rice-warm);
    position: relative;
}
.highlights::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--washi);
    opacity: 0.35;
    pointer-events: none;
}
.highlights .container { position: relative; }
.highlights-grid {
    display: grid; gap: 22px;
    grid-template-columns: repeat(4, 1fr);
}
.highlight {
    text-align: center;
    padding: 56px 28px 44px;
    background: var(--paper);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: all .4s var(--t);
    position: relative;
    overflow: hidden;
}
.highlight::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hinoki-light), transparent);
    opacity: 0;
    transition: opacity .4s var(--t);
}
.highlight:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--hinoki-light); }
.highlight:hover::before { opacity: 1; }
.highlight .ico {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    background: var(--rice);
    color: var(--vermilion);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 1.9rem;
    border: 1px solid var(--line);
    font-family: var(--jp); font-weight: 700;
    position: relative;
}
.highlight .ico::after {
    content: "";
    position: absolute; inset: -6px;
    border: 1px dashed var(--line);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s var(--t);
}
.highlight:hover .ico::after { opacity: 1; transform: rotate(15deg); }
.highlight h4 { margin-bottom: 12px; font-size: 1.3rem; }
.highlight .sub-jp { font-family: var(--jp); color: var(--hinoki); font-size: 0.82rem; letter-spacing: 0.18em; margin-bottom: 8px; }
.highlight p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

/* ============== SIGNATURE MENU ============== */
.featured { background: var(--rice); position: relative; }
.menu-grid {
    display: grid; gap: 28px;
    grid-template-columns: repeat(4, 1fr);
}
.menu-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s var(--t);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    position: relative;
}
.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--hinoki-light);
}
.menu-card .img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}
.menu-card .img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .9s var(--t);
}
.menu-card:hover .img { transform: scale(1.08); }
.menu-card .img-wrap::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(18,17,15,0.55));
    opacity: 0; transition: opacity .4s var(--t);
}
.menu-card:hover .img-wrap::after { opacity: 1; }
.menu-card .jp-badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(247, 241, 231, 0.94);
    color: var(--sumi);
    font-family: var(--jp);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 5px 12px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    z-index: 2;
    border: 1px solid rgba(199, 164, 93, 0.35);
}
.menu-card .view-overlay {
    position: absolute; bottom: 14px; right: 14px;
    background: var(--vermilion); color: #fff;
    padding: 8px 16px;
    border-radius: 60px;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    opacity: 0; transform: translateY(6px);
    transition: all .35s var(--t);
    z-index: 2;
}
.menu-card:hover .view-overlay { opacity: 1; transform: translateY(0); }
.menu-card .body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.menu-card h4 { margin-bottom: 8px; font-size: 1.3rem; font-family: var(--serif); }
.menu-card p { color: var(--muted); font-size: 0.92rem; flex: 1; margin-bottom: 18px; line-height: 1.7; }
.menu-card .more {
    font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--vermilion); font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
}
.menu-card .more::after { content: "→"; transition: transform .3s var(--t); }
.menu-card:hover .more::after { transform: translateX(5px); }

/* ============== CHEF'S SELECTION ============== */
.chef {
    background: var(--sumi);
    color: var(--rice);
    position: relative;
    overflow: hidden;
}
.chef::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--seigaiha);
    opacity: 0.25;
    pointer-events: none;
}
.chef::after {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.chef .container { position: relative; z-index: 1; }
.chef h2 { color: var(--rice); }
.chef .section-head p { color: rgba(247,241,231,0.7); }
.chef .eyebrow { color: var(--gold-soft); }
.chef .eyebrow::before { background: var(--gold-soft); }
.chef-grid {
    display: grid; gap: 26px;
    grid-template-columns: repeat(4, 1fr);
}
.chef-card {
    background: rgba(247, 241, 231, 0.04);
    border: 1px solid rgba(199, 164, 93, 0.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s var(--t);
    backdrop-filter: blur(6px);
}
.chef-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.chef-card .img {
    aspect-ratio: 4/5;
    background-size: cover; background-position: center;
    transition: transform .9s var(--t);
}
.chef-card:hover .img { transform: scale(1.06); }
.chef-card .img-wrap { overflow: hidden; position: relative; }
.chef-card .img-wrap::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(18,17,15,0.85));
}
.chef-card .body { padding: 24px 24px 28px; }
.chef-card .tag {
    display: inline-block;
    font-family: var(--jp);
    color: var(--gold-soft);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}
.chef-card h4 {
    color: var(--rice);
    font-family: var(--serif);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.chef-card p {
    color: rgba(247, 241, 231, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============== LOCATIONS ============== */
.locations {
    background: var(--rice-warm);
    color: var(--ink);
    position: relative;
}
.locations::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--washi);
    opacity: 0.35;
    pointer-events: none;
}
.locations .container { position: relative; }
.loc-grid {
    display: grid; gap: 32px;
    grid-template-columns: repeat(2, 1fr);
}
.loc-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s var(--t);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.loc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--hinoki-light);
}
.loc-card .img-wrap {
    position: relative;
    overflow: hidden;
}
.loc-card .img {
    aspect-ratio: 16/9;
    background-size: cover; background-position: center;
    transition: transform .9s var(--t);
}
.loc-card:hover .img { transform: scale(1.05); }
.loc-card .img-wrap::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 17, 15, 0.5));
}
.loc-card .img-wrap .city-label {
    position: absolute; bottom: 18px; left: 22px;
    color: #fff;
    font-family: var(--jp);
    font-size: 0.92rem;
    letter-spacing: 0.18em;
    z-index: 2;
}
.loc-card .body { padding: 36px 32px 36px; }
.loc-card h3 { color: var(--sumi); margin-bottom: 6px; font-size: 1.7rem; }
.loc-card .subtitle {
    color: var(--vermilion);
    font-size: 0.74rem; letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 10px;
}
.loc-card .subtitle::before {
    content: ""; width: 22px; height: 1px; background: var(--vermilion);
}
.loc-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.loc-card li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 0.94rem;
    color: var(--ink);
}
.loc-card li:last-child { border-bottom: none; }
.loc-card li .ico {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--rice);
    color: var(--vermilion);
    display: grid; place-items: center;
    font-size: 0.92rem;
    flex-shrink: 0;
    border: 1px solid var(--line);
}
.loc-card li a { color: var(--ink); }
.loc-card li a:hover { color: var(--vermilion); }
.loc-actions { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.loc-actions .btn { padding: 12px 14px; font-size: 0.74rem; }
.loc-actions .btn.full { grid-column: 1/-1; }

/* ============== EXPERIENCE / SPLIT (legacy) ============== */
.split {
    display: grid; gap: 60px;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse .split-img { order: 2; }
.split-img {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background-size: cover; background-position: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.split-img::after {
    content: "";
    position: absolute; inset: 14px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: calc(var(--radius-lg) - 6px);
    pointer-events: none;
}
.split-body p { margin-bottom: 18px; line-height: 1.85; color: #444; font-size: 1.04rem; }
.split-body ul { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 12px; }
.split-body ul li {
    padding-left: 28px; position: relative;
    color: #444;
}
.split-body ul li::before {
    content: "✦";
    position: absolute; left: 0; top: 0;
    color: var(--vermilion);
}

/* ============== THE CRAFT (Process Steps) ============== */
.craft {
    background: var(--paper);
    position: relative;
}
.craft::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--washi);
    opacity: 0.3;
    pointer-events: none;
}
.craft .container { position: relative; }
.craft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.craft-grid::after {
    content: "";
    position: absolute;
    top: 36px;
    left: 12%; right: 12%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--hinoki-light) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.craft-step {
    text-align: center;
    padding: 0 18px;
    position: relative; z-index: 1;
}
.craft-step .num {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--rice);
    border: 1.5px solid var(--hinoki);
    color: var(--vermilion);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    display: grid; place-items: center;
    position: relative;
}
.craft-step .num .jp {
    position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
    background: var(--vermilion);
    color: #fff;
    font-family: var(--jp);
    font-size: 0.62rem;
    padding: 2px 8px;
    border-radius: 60px;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.craft-step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-family: var(--serif);
}
.craft-step p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 26ch;
    margin-inline: auto;
}

/* ============== GALLERY (Masonry Style) ============== */
.gallery { background: var(--rice); position: relative; }
.gallery::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--washi);
    opacity: 0.3;
    pointer-events: none;
}
.gallery .container-wide { position: relative; }
.gallery-grid {
    display: grid; gap: 14px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
}
.gallery-grid .g-item {
    background-size: cover; background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all .5s var(--t);
    position: relative;
}
.gallery-grid .g-item::before {
    content: "";
    position: absolute; inset: 0;
    background: inherit;
    background-size: cover; background-position: center;
    transition: transform .9s var(--t);
}
.gallery-grid .g-item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18,17,15,0.55));
    opacity: 0; transition: opacity .35s var(--t);
}
.gallery-grid .g-item:hover { box-shadow: var(--shadow-lg); }
.gallery-grid .g-item:hover::after { opacity: 1; }
.gallery-grid .g-item .zoom-icon {
    position: absolute; bottom: 16px; left: 16px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(247, 241, 231, 0.96);
    color: var(--vermilion);
    display: grid; place-items: center;
    font-size: 1rem;
    opacity: 0; transform: translateY(8px);
    transition: all .4s var(--t);
}
.gallery-grid .g-item:hover .zoom-icon { opacity: 1; transform: translateY(0); }
.gallery-grid .g-item.tall { grid-row: span 2; }
.gallery-grid .g-item.wide { grid-column: span 2; }
.gallery-grid .g-item.feat { grid-row: span 2; grid-column: span 2; }

.gallery-cta { text-align: center; margin-top: 50px; }

/* ============== TESTIMONIALS ============== */
.testimonials {
    background: var(--rice);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--washi);
    opacity: 0.35;
    pointer-events: none;
}
.testimonials::after {
    content: "";
    position: absolute;
    top: 8%; right: -6%;
    width: 360px; height: 360px;
    background-image: var(--asanoha);
    opacity: 0.5;
    pointer-events: none;
    transform: rotate(8deg);
}
.testimonials .container { position: relative; z-index: 1; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.testi-card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px 30px;
    transition: all .4s var(--t);
    overflow: hidden;
}
.testi-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vermilion), var(--hinoki-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--t);
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--hinoki-light);
}
.testi-card:hover::before { transform: scaleX(1); }
.testi-card .quote-mark {
    position: absolute;
    top: 14px; right: 22px;
    font-family: var(--serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--vermilion);
    opacity: 0.16;
    pointer-events: none;
    font-weight: 600;
}
.testi-card .stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}
.testi-card .quote {
    font-family: var(--serif);
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 26px;
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 1;
}
.testi-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
    gap: 16px;
    flex-wrap: wrap;
}
.testi-card .who {
    display: flex; flex-direction: column;
    gap: 2px;
}
.testi-card .who strong {
    font-family: var(--serif);
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--sumi);
    letter-spacing: 0.01em;
}
.testi-card .who span {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.08em;
}
.testi-card .src {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--vermilion);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: rgba(183, 53, 45, 0.06);
    border: 1px solid rgba(183, 53, 45, 0.18);
    border-radius: 60px;
    white-space: nowrap;
}

.testi-foot {
    margin-top: 56px;
    text-align: center;
    display: flex; align-items: center; justify-content: center;
    gap: 22px; flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px dashed var(--line);
}
.testi-foot .rating-strong {
    font-family: var(--serif);
    font-size: 2.6rem;
    color: var(--vermilion);
    font-weight: 600;
    line-height: 1;
}
.testi-foot .rating-label {
    color: var(--muted);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}
.testi-foot .rating-label strong { color: var(--sumi); font-weight: 600; }

@media (max-width: 1100px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testimonials::after { display: none; }
    .testi-foot { flex-direction: column; gap: 10px; }
}

/* ============== CTA BAND (legacy, used by inner pages) ============== */
.cta-band {
    position: relative;
    color: #fff;
    text-align: center;
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--sumi);
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-image: var(--bg);
    opacity: 0.35;
}
.cta-band::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(18,17,15,0.7), rgba(18,17,15,0.88)),
                radial-gradient(ellipse at 50% 100%, rgba(183, 53, 45, 0.2), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 0 auto 22px; }
.cta-band p { color: rgba(247,241,231,0.85); max-width: 60ch; margin: 0 auto 32px; font-size: 1.06rem; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============== DUAL CTA: GIFT + RESERVATION ============== */
.dual-cta {
    display: grid; gap: 0;
    grid-template-columns: 1fr 1fr;
}
.dual-cta .panel {
    padding: clamp(70px, 9vw, 130px) clamp(34px, 5vw, 80px);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 460px;
    display: flex; flex-direction: column; justify-content: center;
}
.dual-cta .panel::before {
    content: "";
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
    background-image: var(--bg);
    transition: transform 1.4s var(--t);
}
.dual-cta .panel:hover::before { transform: scale(1.04); }
.dual-cta .panel::after {
    content: "";
    position: absolute; inset: 0; z-index: -1;
}
.dual-cta .panel.gift::after {
    background: linear-gradient(135deg, rgba(18,17,15,0.7) 0%, rgba(183, 53, 45, 0.55) 100%);
}
.dual-cta .panel.res::after {
    background: linear-gradient(135deg, rgba(18,17,15,0.85) 0%, rgba(18,17,15,0.55) 100%);
}
.dual-cta .panel .frame {
    position: absolute; inset: 22px;
    border: 1px solid rgba(247, 241, 231, 0.18);
    pointer-events: none;
}
.dual-cta .eyebrow {
    color: var(--gold-soft);
    margin-bottom: 16px;
}
.dual-cta .eyebrow::before { background: var(--gold-soft); }
.dual-cta h3 {
    color: #fff;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 18px;
    max-width: 14ch;
}
.dual-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 38ch;
    font-size: 1rem;
    line-height: 1.7;
}
.dual-cta .panel .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============== SEO TEXT (Editorial) ============== */
.seo-text {
    background: var(--rice-warm);
    position: relative;
}
.seo-text::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--washi);
    opacity: 0.3;
    pointer-events: none;
}
.seo-text .container { position: relative; }
.seo-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}
.seo-article h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    margin-bottom: 28px;
    max-width: 22ch;
}
.seo-article p {
    font-size: 1.04rem;
    line-height: 2;
    color: #3a3530;
    margin-bottom: 22px;
}
.seo-article p:first-of-type::first-letter {
    font-family: var(--serif);
    font-size: 3.4rem;
    line-height: 1;
    color: var(--vermilion);
    float: left;
    padding: 6px 12px 0 0;
    font-weight: 500;
}
.seo-article strong { color: var(--vermilion); font-weight: 600; }
.seo-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 110px; }
.info-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 3px solid var(--vermilion);
    padding: 22px 24px;
    border-radius: var(--radius);
    transition: all .35s var(--t);
}
.info-card:hover {
    transform: translateX(4px);
    border-left-color: var(--hinoki);
    box-shadow: var(--shadow-sm);
}
.info-card .label {
    font-family: var(--jp);
    color: var(--hinoki);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    margin-bottom: 6px;
    display: block;
}
.info-card h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--sumi);
    margin-bottom: 6px;
}
.info-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ============== FAQ ============== */
.faq { background: var(--rice); position: relative; }
.faq::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--washi);
    opacity: 0.3;
    pointer-events: none;
}
.faq .container { position: relative; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 3px solid var(--hinoki-light);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .3s var(--t);
}
.faq-item:hover { border-color: var(--hinoki); border-left-color: var(--vermilion); }
.faq-item.open { border-left-color: var(--vermilion); border-color: var(--hinoki); }
.faq-q {
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    font-size: 1.04rem;
    font-weight: 500;
    color: var(--sumi);
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px;
    font-family: var(--serif);
}
.faq-q .plus {
    width: 30px; height: 30px;
    border-radius: 50%; background: var(--rice);
    color: var(--vermilion);
    display: grid; place-items: center;
    font-size: 1.1rem; font-weight: 400;
    flex-shrink: 0;
    transition: all .3s var(--t);
    font-family: var(--sans);
    border: 1px solid var(--line);
}
.faq-item.open .plus { background: var(--vermilion); color: #fff; border-color: var(--vermilion); transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s var(--t);
}
.faq-a-inner { padding: 0 28px 26px; color: var(--muted); line-height: 1.85; font-size: 0.96rem; }
.faq-a-inner a { color: var(--vermilion); text-decoration: underline; text-underline-offset: 3px; }

/* ============== FOOTER ============== */
.footer {
    background: var(--sumi);
    color: rgba(247, 241, 231, 0.7);
    padding: 90px 0 0;
    font-size: 0.92rem;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--seigaiha);
    opacity: 0.35;
    pointer-events: none;
}
.footer::after {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
    display: grid; gap: 48px;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(199, 164, 93, 0.18);
}
.footer h4 {
    color: #fff;
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer h4::after {
    content: "";
    position: absolute; bottom: 0; left: 0;
    width: 28px; height: 1px;
    background: var(--gold);
}
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer .brand .brand-meta .top { color: #fff; }
.footer .brand .brand-meta .bot { color: var(--gold-soft); }
.footer-about { color: rgba(247, 241, 231, 0.6); line-height: 1.85; margin-bottom: 24px; max-width: 36ch; }
.footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold-soft);
    font-size: 1.04rem;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(199, 164, 93, 0.2);
    max-width: 30ch;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { color: rgba(247, 241, 231, 0.65); }
.footer a:hover { color: var(--gold-soft); }
.footer .loc-block { margin-bottom: 22px; }
.footer .loc-block strong { color: #fff; display: block; font-family: var(--serif); font-size: 1.05rem; margin-bottom: 6px; }
.footer .loc-block .addr,
.footer .loc-block .phone { line-height: 1.7; }
.social { display: flex; gap: 12px; margin-top: 16px; }
.social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(199, 164, 93, 0.25);
    display: grid; place-items: center;
    color: rgba(247, 241, 231, 0.7);
    font-size: 0.88rem;
    transition: all .3s var(--t);
}
.social a:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--sumi); transform: translateY(-2px);
}
.copyright {
    padding: 26px 0;
    text-align: center;
    color: rgba(247, 241, 231, 0.45);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
.copyright .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.copyright .links a { margin-left: 18px; }

/* ============== CONTACT FORM ============== */
.contact-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
    display: grid; gap: 16px;
}
.contact-form .row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.96rem;
    background: var(--rice);
    transition: border-color .25s var(--t), background .25s var(--t);
    color: var(--ink);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--vermilion);
    background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.contact-form button[type="submit"] {
    background: var(--sumi); color: var(--rice);
    padding: 16px 26px;
    border-radius: 60px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all .3s var(--t);
    margin-top: 8px;
}
.contact-form button[type="submit"]:hover { background: var(--vermilion); transform: translateY(-2px); }
.contact-form label.field {
    display: flex; flex-direction: column; gap: 6px;
    font-size: 0.76rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted); font-weight: 600;
}

/* ============== MAP EMBED ============== */
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
    background: var(--rice);
    border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============== STICKY MOBILE CTA ============== */
.mobile-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--sumi);
    border-top: 1px solid rgba(199, 164, 93, 0.2);
    z-index: 90;
    padding: 8px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}
.mobile-cta a {
    text-align: center;
    padding: 12px 6px;
    color: var(--rice);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(199, 164, 93, 0.18);
}
.mobile-cta a.primary {
    background: var(--vermilion);
    color: #fff;
    border-color: var(--vermilion);
}

/* ============== UTIL ============== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--t), transform .9s var(--t); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
    .nav { display: none; }
    .nav-ctas .btn:not(.menu-toggle) { display: none; }
    .menu-toggle { display: inline-flex; }
    .highlights-grid, .menu-grid, .chef-grid { grid-template-columns: repeat(2, 1fr); }
    .craft-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .craft-grid::after { display: none; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-layout { grid-template-columns: 1fr; gap: 50px; }
    .seo-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .seo-sidebar .info-card { flex: 1 1 240px; }
}
@media (max-width: 880px) {
    .topbar .tb-left .sep,
    .topbar .tb-right { display: none; }
    .topbar .tb-left { justify-content: center; width: 100%; gap: 14px; font-size: 0.78rem; }
    .header .container { height: 72px; }
    .brand .brand-meta .bot { display: none; }
    .brand .brand-meta .top { font-size: 1rem; }
    .hero { min-height: 90vh; }
    .hero::after { top: 16px; left: 16px; right: 16px; bottom: 16px; }
    .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
    .hero-trust { gap: 22px; }
    .loc-grid { grid-template-columns: 1fr; }
    .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
    .split.reverse .split-img { order: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-grid .g-item.wide,
    .gallery-grid .g-item.feat { grid-column: span 2; }
    .gallery-grid .g-item.tall,
    .gallery-grid .g-item.feat { grid-row: span 1; }
    .dual-cta { grid-template-columns: 1fr; }
    .dual-cta .panel { min-height: 380px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
    .copyright .container { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
    .mobile-cta { display: grid; }
    body { padding-bottom: 76px; }
    .contact-form { padding: 28px 20px; }
    .contact-form .row { grid-template-columns: 1fr; }
    .seo-article p:first-of-type::first-letter { font-size: 2.8rem; }
}
@media (max-width: 540px) {
    .highlights-grid, .menu-grid, .chef-grid { grid-template-columns: 1fr; }
    .loc-actions { grid-template-columns: 1fr; }
    .craft-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(18, 17, 15, 0.95);
    z-index: 300;
    display: none;
    align-items: center; justify-content: center;
    padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw; max-height: 88vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(199, 164, 93, 0.25);
}
.lightbox-close {
    position: absolute; top: 24px; right: 28px;
    color: #fff; font-size: 1.6rem;
    width: 48px; height: 48px;
    background: rgba(247, 241, 231, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 164, 93, 0.25);
}
