:root {
    --bg: #090c0a;
    --deep: #0c1310;
    --grove: #111a14;
    --surface: #16201a;
    --gold: #b6905a;
    --gold-lt: #d2ae78;
    --gold-dk: #886240;
    --ivory: #f2ece2;
    --ivory-2: #c6bdb0;
    --muted: #78877e;
    --line: rgba(182, 144, 90, 0.15);
    --serif: "Cormorant Garamond", "Noto Serif JP", Georgia, serif;
    --sans: "DM Sans", "Noto Serif JP", sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --max: 1280px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--ivory);
    font-family: var(--sans);
    font-weight: 300;
    font-size: clamp(15.5px, 0.22vw + 15px, 17.5px);
    line-height: 1.82;
    overflow-x: hidden;
    cursor: none;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* cursor */
.cur-d {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-lt);
    transform: translate(-50%, -50%);
}
.cur-r {
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(182, 144, 90, 0.38);
    transform: translate(-50%, -50%);
    transition:
        width 0.32s var(--ease),
        height 0.32s var(--ease),
        border-color 0.24s;
}
body:has(a:hover) .cur-r,
body:has(button:hover) .cur-r {
    width: 50px;
    height: 50px;
    border-color: var(--gold);
}

/* layout */
.w {
    width: min(calc(100% - 44px), var(--max));
    margin-inline: auto;
}
.sec {
    padding: clamp(72px, 10vw, 128px) 0;
}
.eyebrow {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}
.sec-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.sec-title em {
    font-style: italic;
    color: var(--gold-lt);
}
.rule {
    display: block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 14px 0 28px;
}
.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 26px;
    border-radius: 2px;
    background: var(--gold);
    color: var(--bg);
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    transition:
        background 0.24s,
        transform 0.28s var(--ease);
}
.btn-fill:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
}
.btn-out {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 26px;
    border-radius: 2px;
    border: 1px solid rgba(182, 144, 90, 0.34);
    color: var(--gold-lt);
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    transition:
        border-color 0.24s,
        background 0.24s,
        transform 0.28s var(--ease);
}
.btn-out:hover {
    border-color: var(--gold);
    background: rgba(182, 144, 90, 0.07);
    transform: translateY(-2px);
}

/* ── STICKY NAV ── */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
    transition: background 0.3s;
}
.site-nav.solid {
    background: rgba(9, 12, 10, 0.94);
    backdrop-filter: blur(14px);
}
.nav-inner {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
}
.nav-logo img {
    height: 38px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.nav-logo:hover img {
    opacity: 1;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nav-logo-ja {
    font-family: var(--serif);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--ivory-2);
}
.nav-logo-en {
    font-family: var(--serif);
    font-size: 1.28rem;
    line-height: 1.1;
    color: var(--ivory);
    letter-spacing: 0.05em;
}
.nav-links {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-links::-webkit-scrollbar {
    display: none;
}
.nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 4px 12px;
    white-space: nowrap;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
}
.nav-links a:hover {
    color: var(--gold-lt);
}
.nav-tel {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--ivory-2);
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-tel:hover {
    color: var(--gold-lt);
}
.site-menu-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(210, 174, 120, 0.3);
    border-radius: 999px;
    background: rgba(17, 26, 20, 0.78);
    color: var(--gold-lt);
    font: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.site-menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    box-shadow:
        0 -6px currentColor,
        0 6px currentColor;
}
.site-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease);
}
.site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}
.site-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 5, 0.72);
    backdrop-filter: blur(8px);
}
.site-menu-panel {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(420px, calc(100% - 24px));
    overflow: auto;
    padding: 22px;
    border: 1px solid rgba(210, 174, 120, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(210, 174, 120, 0.16), transparent 32%),
        rgba(9, 12, 10, 0.96);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
    transform: translateX(18px);
    transition: transform 0.34s var(--ease);
}
.site-menu.is-open .site-menu-panel {
    transform: translateX(0);
}
.site-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}
.site-menu-title {
    display: grid;
    gap: 2px;
}
.site-menu-title span,
.site-menu-group-title {
    color: var(--gold);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.site-menu-title strong {
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
}
.site-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(210, 174, 120, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-lt);
    font-size: 1.4rem;
    line-height: 1;
}
.site-menu-group + .site-menu-group {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(210, 174, 120, 0.12);
}
.site-menu-group-title {
    display: block;
    margin-bottom: 10px;
}
.site-menu-links {
    display: grid;
    gap: 8px;
}
.site-menu-links a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(210, 174, 120, 0.08);
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.25;
}
.site-menu-links a::after {
    content: "→";
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.9rem;
}
.site-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}
.site-menu-actions a {
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
}
body.menu-open {
    overflow: hidden;
}

/* ── MOBILE QUICK NAV / FIXED CTA ── */
.mobile-subnav {
    display: none;
}
.mobile-subnav-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    padding: 9px 14px 10px;
    background: rgba(9, 12, 10, 0.94);
    border-bottom: 1px solid rgba(182, 144, 90, 0.18);
}
.mobile-subnav-track::-webkit-scrollbar {
    display: none;
}
.mobile-subnav a {
    flex: 0 0 auto;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ivory-2);
    padding: 9px 13px;
    border: 1px solid rgba(182, 144, 90, 0.22);
    border-radius: 999px;
    background: rgba(17, 26, 20, 0.72);
    white-space: nowrap;
    scroll-snap-align: start;
    line-height: 1;
}
.mobile-fixed-actions {
    display: none;
}
.mfa-wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 700;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(
        180deg,
        rgba(9, 12, 10, 0.22) 0%,
        rgba(9, 12, 10, 0.94) 40%,
        rgba(9, 12, 10, 0.98) 100%
    );
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(182, 144, 90, 0.16);
}
.mfa-btn {
    min-height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.73rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.mfa-btn.call {
    background: var(--gold);
    color: var(--bg);
    font-weight: 500;
}
.mfa-btn.map {
    border: 1px solid rgba(182, 144, 90, 0.38);
    color: var(--gold-lt);
    background: rgba(17, 26, 20, 0.94);
}

/* ── HERO ── */
.hero {
    height: 100svh;
    min-height: 620px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(0.65) brightness(0.45);
    transform-origin: center bottom;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 80% 55% at 50% 100%,
            rgba(9, 12, 10, 0.97),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            rgba(9, 12, 10, 0.3) 0%,
            rgba(9, 12, 10, 0.04) 30%,
            rgba(9, 12, 10, 0.55) 68%,
            rgba(9, 12, 10, 0.98) 100%
        );
}
.hero-body {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(48px, 7vh, 80px);
    width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
}
.hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(4rem, 9.5vw, 9rem);
    font-weight: 300;
    line-height: 0.86;
    letter-spacing: -0.01em;
    margin-bottom: 0.28em;
}
.hero-h1 em {
    font-style: italic;
    color: var(--gold-lt);
    display: block;
}
.hero-h1 strong {
    display: block;
    font-weight: 600;
}
.hero-lead {
    font-size: 0.98rem;
    color: var(--ivory-2);
    line-height: 1.94;
    max-width: 44ch;
    margin-bottom: 2rem;
}
.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hero-card {
    padding: 20px 18px;
    background: rgba(11, 18, 14, 0.8);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(182, 144, 90, 0.15);
    border-radius: 3px;
    min-width: 220px;
}
.hc-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(182, 144, 90, 0.08);
}
.hc-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.hc-row:first-child {
    padding-top: 0;
}
.hc-label {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 3px;
}
.hc-val {
    font-size: 0.9rem;
    color: var(--ivory-2);
    line-height: 1.5;
}
.hc-note {
    font-size: 0.76rem;
    color: var(--muted);
    display: block;
    margin-top: 1px;
}
.hero-scroll {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, var(--gold-dk), transparent);
    animation: sl 2.2s ease-in-out infinite;
}
@keyframes sl {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.18); }
}

/* ── MARQUEE ── */
.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
    overflow: hidden;
    background: var(--grove);
}
.mq-track {
    display: flex;
    animation: mq 26s linear infinite;
    width: max-content;
}
.mq-item {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-dk);
    padding: 0 28px;
    white-space: nowrap;
}
.mq-sep {
    font-style: normal;
    color: rgba(182, 144, 90, 0.4);
    padding: 0;
}
@keyframes mq {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── CLOSURES (定休日) ── */
#closures {
    background: var(--grove);
}
.closures-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
}
.closures-wrap > div {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 30px;
    border: 1px solid rgba(182, 144, 90, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        rgba(9, 12, 10, 0.18);
}
.cal-month {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 4px;
}
.cal-note {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.72;
    margin-top: 16px;
}
.cal-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    color: var(--muted);
    margin-top: auto;
    padding-top: 14px;
}
.cal-legend-mark {
    width: 12px;
    height: 12px;
    background: rgba(182, 144, 90, 0.12);
    border-radius: 1px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: var(--gold-dk);
}
.closures-right p {
    font-size: 0.94rem;
    color: var(--ivory-2);
    line-height: 1.92;
    max-width: 38ch;
}
.closures-right p + p {
    margin-top: 1em;
}
.closures-right .info-dl {
    margin-top: auto !important;
    padding-top: 22px;
}

/* ── MENU SECTION (ランチ・ディナー) ── */
#menu {
    background: var(--deep);
}
.menu-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 44px;
    border-bottom: 1px solid var(--line);
}
.tab-btn {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 12px 22px;
    color: var(--muted);
    background: none;
    border: none;
    cursor: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    font-family: var(--sans);
}
.tab-btn.active {
    color: var(--gold-lt);
    border-bottom-color: var(--gold);
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: block;
}
.menu-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2px;
}
.plan-card {
    background: var(--surface);
    padding: 26px 24px;
    border: 1px solid rgba(182, 144, 90, 0.07);
    transition: border-color 0.26s, background 0.26s;
}
.plan-card:hover {
    border-color: rgba(182, 144, 90, 0.2);
    background: rgba(182, 144, 90, 0.04);
}
.plan-card .plan-name {
    font-family: var(--serif);
    font-size: 1.28rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 8px;
}
.plan-card .plan-price {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold-lt);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.plan-card .plan-tax {
    font-size: 0.74rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.plan-card .plan-desc {
    font-size: 0.84rem;
    color: var(--ivory-2);
    line-height: 1.8;
}
.plan-card .plan-tag {
    display: inline-block;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dk);
    border: 1px solid rgba(182, 144, 90, 0.2);
    padding: 3px 8px;
    border-radius: 1px;
    margin-bottom: 8px;
}
#tab-lunch .plan-card .plan-name {
    margin-top: 32px;
}
#tab-lunch .plan-card .plan-tag + .plan-name {
    margin-top: 0;
}
.plan-section-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ivory-2);
    letter-spacing: 0.04em;
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.menu-panel-note {
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 54ch;
}

/* ── PARTY ── */
#party {
    background: var(--bg);
}
.party-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.party-card {
    background: var(--surface);
    padding: 26px 22px;
    border: 1px solid rgba(182, 144, 90, 0.07);
    transition: border-color 0.26s, background 0.26s;
}
.party-card:hover {
    border-color: rgba(182, 144, 90, 0.2);
    background: rgba(182, 144, 90, 0.04);
}
.party-card .pc-cat {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}
.party-card .pc-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 10px;
}
.party-card .pc-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.party-card .pc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    font-size: 0.86rem;
}
.party-card .pc-row-name {
    color: var(--ivory-2);
}
.party-card .pc-row-price {
    color: var(--gold-lt);
    font-family: var(--serif);
    font-size: 0.9rem;
    white-space: nowrap;
}
.party-card .pc-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.76;
    margin-top: 12px;
}

/* ── CAKE ── */
#cake {
    background: var(--grove);
}
.cake-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.cake-card {
    background: var(--surface);
    padding: 28px 24px;
    border: 1px solid rgba(182, 144, 90, 0.07);
    transition: border-color 0.26s;
}
.cake-card:hover {
    border-color: rgba(182, 144, 90, 0.2);
}
.cake-card h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 10px;
}
.cake-card p {
    font-size: 0.86rem;
    color: var(--ivory-2);
    line-height: 1.8;
    margin-bottom: 12px;
}
.cake-sizes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cake-size-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(182, 144, 90, 0.07);
}
.cake-size-row:last-child {
    border-bottom: none;
}
.cake-size-row span:last-child {
    color: var(--gold-lt);
    font-family: var(--serif);
}

/* ── DELIVERY ── */
#delivery {
    background: var(--deep);
}
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
}
.delivery-item {
    background: var(--surface);
    padding: 20px 18px;
    border: 1px solid rgba(182, 144, 90, 0.07);
    transition: border-color 0.26s, background 0.26s;
}
.delivery-item:hover {
    border-color: rgba(182, 144, 90, 0.18);
    background: rgba(182, 144, 90, 0.04);
}
.delivery-item .di-name {
    font-size: 0.92rem;
    color: var(--ivory);
    line-height: 1.5;
    margin-bottom: 8px;
}
.delivery-item .di-price {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--gold-lt);
    font-weight: 300;
}
.delivery-item .di-tax {
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 1px;
}
.delivery-sublead {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin: 16px 0 0;
    padding: 10px 14px;
    border: 1px solid rgba(182, 144, 90, 0.14);
    background: rgba(182, 144, 90, 0.04);
    color: var(--ivory);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}
.delivery-sublead span {
    color: var(--gold-lt);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.delivery-note {
    margin-top: 28px;
    padding: 20px 22px;
    border: 1px solid rgba(182, 144, 90, 0.12);
    background: var(--surface);
    border-radius: 2px;
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.86;
}
.delivery-note strong {
    color: var(--ivory-2);
    font-weight: 400;
}

/* ── WEDDING ── */
#wedding {
    background: var(--bg);
}
.wedding-wrap {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    min-height: 75vh;
    align-items: stretch;
}
.wedding-photo {
    position: relative;
    overflow: hidden;
}
.wedding-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.6);
    transition: transform 1.4s var(--ease);
}
#wedding:hover .wedding-photo img {
    transform: scale(1.03);
}
.wedding-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, var(--deep) 100%);
}
.wedding-badge {
    position: absolute;
    bottom: 22px;
    left: 20px;
    padding: 8px 12px;
    background: rgba(9, 12, 10, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 2px;
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.wedding-body {
    background: var(--deep);
    padding: clamp(36px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wedding-body h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.01em;
    margin: 12px 0 18px;
}
.wedding-body h2 em {
    font-style: italic;
    color: var(--gold-lt);
    display: block;
}
.wedding-body > p {
    font-size: 0.92rem;
    color: var(--ivory-2);
    line-height: 1.94;
    max-width: 40ch;
    margin-bottom: 2rem;
}
.w-pts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 2rem;
}
.w-pt {
    padding: 13px 15px;
    border: 1px solid rgba(182, 144, 90, 0.1);
    border-radius: 2px;
    transition: border-color 0.24s, background 0.24s;
}
.w-pt:hover {
    border-color: rgba(182, 144, 90, 0.24);
    background: rgba(182, 144, 90, 0.04);
}
.w-pt b {
    display: block;
    font-family: var(--serif);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 2px;
}
.w-pt span {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.58;
}
.wedding-body .btns {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

/* ── FAQ ── */
#faq {
    background: var(--grove);
}
.faq-wrap {
    display: grid;
    grid-template-columns: 0.32fr 0.68fr;
    gap: 60px;
}
.faq-lead h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.8vw, 3.5rem);
    font-weight: 300;
    line-height: 0.9;
    margin: 12px 0 14px;
}
.faq-lead h2 em {
    font-style: italic;
    color: var(--gold-lt);
}
.faq-lead p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.78;
}
.faq-lead .btns {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.faq-list {
    display: flex;
    flex-direction: column;
}
details.faq {
    border-top: 1px solid rgba(182, 144, 90, 0.11);
}
details.faq:last-child {
    border-bottom: 1px solid rgba(182, 144, 90, 0.11);
}
details.faq summary {
    list-style: none;
    cursor: none;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ivory);
    transition: color 0.2s;
}
details.faq summary:hover {
    color: var(--gold-lt);
}
details.faq summary::-webkit-details-marker {
    display: none;
}
.fq-ic {
    flex: 0 0 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(182, 144, 90, 0.24);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.78rem;
    transition: transform 0.32s var(--ease), background 0.24s, border-color 0.24s;
}
details.faq[open] .fq-ic {
    transform: rotate(45deg);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}
details.faq p {
    padding: 0 28px 18px 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.88;
}

/* ── ACCESS ── */
#access {
    background: var(--deep);
}
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.info-dl {
    display: flex;
    flex-direction: column;
}
.info-row {
    padding: 16px 0;
    border-top: 1px solid rgba(182, 144, 90, 0.1);
}
.info-row:last-child {
    border-bottom: 1px solid rgba(182, 144, 90, 0.1);
}
.info-row dt {
    font-size: 0.64rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.info-row dd {
    font-size: 0.94rem;
    color: var(--ivory-2);
    line-height: 1.78;
}
.info-row dd a {
    color: var(--gold-lt);
    border-bottom: 1px solid rgba(182, 144, 90, 0.24);
    transition: border-color 0.2s;
}
.info-row dd a:hover {
    border-color: var(--gold);
}
.info-note {
    font-size: 0.78rem;
    color: var(--muted);
    display: block;
    margin-top: 3px;
}
.map-block {
    aspect-ratio: 4 / 3;
    background: var(--surface);
    border: 1px solid rgba(182, 144, 90, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.map-block iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-pin {
    font-size: 1.6rem;
    opacity: 0.32;
    margin-bottom: 7px;
}
.map-block p {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.map-block a {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-lt);
    border-bottom: 1px solid rgba(182, 144, 90, 0.24);
    transition: border-color 0.2s;
}
.map-block a:hover {
    border-color: var(--gold);
}
.sns-row {
    display: flex;
    gap: 9px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(182,144,90,0.15);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s;
}
.google-review-badge:hover {
    border-color: rgba(182,144,90,0.4);
}
.google-review-badge .g-logo {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}
.google-review-badge .review-score {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gold-lt);
}
.google-review-badge .review-stars {
    color: #f4b400;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.google-review-badge .review-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.sns-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid rgba(182, 144, 90, 0.12);
    padding: 8px 13px;
    border-radius: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.sns-btn:hover {
    color: var(--gold-lt);
    border-color: rgba(182, 144, 90, 0.28);
}
.sns-btn svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* ── RESERVE CTA ── */
#reserve {
    background: var(--bg);
    text-align: center;
    padding: clamp(80px, 11vw, 144px) 0;
    position: relative;
    overflow: hidden;
}
#reserve::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 58% 48% at 50% 50%,
        rgba(182, 144, 90, 0.048),
        transparent 68%
    );
    pointer-events: none;
}
.res-body {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
}
.res-body h2 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: -0.01em;
    margin: 12px 0 18px;
}
.res-body h2 em {
    font-style: italic;
    color: var(--gold-lt);
}
.res-body > p {
    font-size: 0.94rem;
    color: var(--ivory-2);
    line-height: 1.9;
    max-width: 40ch;
    margin: 0 auto 2.4rem;
}
.res-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto 2.8rem;
    text-align: left;
}
.res-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border: 1px solid rgba(182, 144, 90, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        var(--grove);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
    transition: border-color 0.24s, background 0.24s, transform 0.26s var(--ease);
}
.res-item:hover {
    border-color: rgba(182, 144, 90, 0.28);
    background: rgba(182, 144, 90, 0.05);
    transform: translateX(4px);
}
.res-item b {
    display: block;
    font-weight: 400;
    color: var(--ivory);
    font-size: 0.9rem;
    margin-bottom: 4px;
    line-height: 1.45;
}
.res-item span {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.65;
    display: block;
}
.res-arr {
    color: var(--gold-dk);
    font-size: 1.05rem;
    transition: color 0.24s, transform 0.24s var(--ease);
    flex: 0 0 auto;
}
.res-item:hover .res-arr {
    color: var(--gold);
    transform: translateX(3px);
}
.res-tel {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    letter-spacing: 0.07em;
    transition: color 0.2s;
}
.res-tel:hover {
    color: var(--gold-lt);
}
.res-tel-label {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}
.res-tel-note {
    font-size: 0.74rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* ── DETAIL HUB ── */
.detail-hub {
    padding: 54px 0 22px;
}
.detail-hub-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}
.detail-hub-head p {
    color: var(--ivory-2);
    font-size: 0.92rem;
    line-height: 1.9;
}
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.detail-card {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(182, 144, 90, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        var(--grove);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.28s var(--ease), border-color 0.24s, background 0.24s;
}
.detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(182, 144, 90, 0.28);
    background:
        linear-gradient(180deg, rgba(182, 144, 90, 0.04), transparent),
        rgba(22, 32, 26, 0.92);
}
.detail-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.detail-card h3 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 2rem;
    line-height: 0.94;
    margin-bottom: 10px;
}
.detail-card p {
    color: var(--ivory-2);
    font-size: 0.86rem;
    line-height: 1.85;
    max-width: 28ch;
}
.detail-link {
    color: var(--gold-lt);
    letter-spacing: 0.14em;
    font-size: 0.73rem;
    text-transform: uppercase;
}

/* ── CHEF MESSAGE ── */
#chef-note {
    background: var(--bg);
}
.chef-note-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 20px;
    align-items: stretch;
}
.chef-note-card {
    padding: 30px 28px;
    border: 1px solid rgba(182, 144, 90, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        var(--surface);
}
.chef-note-card h3 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.02;
    margin-bottom: 16px;
}
.chef-note-card p {
    color: var(--ivory-2);
    font-size: 0.9rem;
    line-height: 1.9;
    margin: 0;
}
.chef-note-card p + p {
    margin-top: 12px;
}
.chef-note-card .mini-label {
    margin-bottom: 12px;
    display: block;
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── FOOTER ── */
footer {
    background: var(--bg);
    padding: 56px 0 40px;
    border-top: 1px solid rgba(182, 144, 90, 0.09);
}
.ft {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}
.ft-logo {
    height: 48px;
    width: auto;
    opacity: 0.65;
    transition: opacity 0.2s;
}
.ft-logo:hover {
    opacity: 0.85;
}
.ft-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--ivory);
}
.ft-sub {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}
.ft-rule {
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(182, 144, 90, 0.15), transparent);
}
.ft-copy {
    font-size: 0.68rem;
    color: rgba(120, 135, 126, 0.32);
    letter-spacing: 0.1em;
}
.ft-policy {
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.ft-policy:hover {
    color: var(--gold-lt);
}

/* ── REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.84s var(--ease), transform 0.84s var(--ease);
}
.rv-l {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.96s var(--ease), transform 0.96s var(--ease);
}
.rv-r {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.96s var(--ease), transform 0.96s var(--ease);
}
.rv.on, .rv-l.on, .rv-r.on {
    opacity: 1;
    transform: none;
}
.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }
.d5 { transition-delay: 0.3s; }
.d6 { transition-delay: 0.36s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .closures-wrap,
    .chef-note-wrap,
    .access-grid,
    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wedding-wrap {
        grid-template-columns: 1fr;
    }
    .party-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .detail-hub-head,
    .detail-grid {
        grid-template-columns: 1fr 1fr;
    }
    .closures-wrap > div {
        padding: 24px 24px;
    }
    .hero-card {
        display: none;
    }
    .w-pts {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .w {
        width: min(calc(100% - 28px), var(--max));
    }
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
        cursor: auto;
    }
    main#top {
        padding-top: 0;
    }
    section[id] {
        scroll-margin-top: 86px;
    }
    .site-nav {
        background: rgba(9, 12, 10, 0.95);
        backdrop-filter: blur(10px);
    }
    .nav-inner {
        height: 62px;
    }
    .nav-links {
        display: none;
    }
    .nav-tel {
        display: none;
    }
    .mobile-fixed-actions {
        display: block;
    }
    .site-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }
    .hero-h1 {
        font-size: clamp(3.4rem, 15vw, 5rem);
    }
    .menu-plan-grid,
    .party-grid,
    .cake-grid,
    .detail-grid,
    .detail-hub-head {
        grid-template-columns: 1fr;
    }
    .closures-wrap > div {
        padding: 20px 18px;
    }
    .res-item {
        padding: 16px 18px;
        border-radius: 12px;
    }
    .sec {
        padding: 64px 0;
    }
    .cur-d,
    .cur-r {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .rv, .rv-l, .rv-r {
        opacity: 1;
        transform: none;
    }
}

/* ── Calendar compact override ───────────────────────────────────────────── */
#closures .xcm-front-table tbody td,
#closures .xcm-front-table tbody tr,
#closures .xcm-front-table td.xcm-empty {
    height: 52px;
}
#closures .xcm-day {
    min-height: 0;
    padding: 6px 8px;
}
#closures .xcm-status,
#closures .xcm-note {
    display: none;
}
