:root {
    --ink: #18231f;
    --ink-soft: #41524a;
    --paper: #f5f2ea;
    --paper-deep: #e8ece1;
    --mist: #dfe8dd;
    --green: #214f40;
    --green-soft: #5f8c72;
    --wine: #923d4a;
    --wine-dark: #6f2f3c;
    --ochre: #c69a4f;
    --clay: #75473b;
    --white: #ffffff;
    --line: rgba(24, 35, 31, 0.14);
    --shadow: 0 22px 60px rgba(24, 35, 31, 0.16);
    --font-serif: "Noto Serif JP", serif;
    --font-sans: "Outfit", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    --ease: 0.35s ease;
    --ease-out: cubic-bezier(0.2, 0.76, 0.22, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--paper);
    color: var(--ink);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.site-header.scrolled,
.site-header.nav-open {
    background: rgba(245, 242, 234, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(24, 35, 31, 0.09);
}

.header-inner {
    width: min(1220px, calc(100% - 36px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0;
}

.site-header.scrolled .brand-main,
.site-header.nav-open .brand-main,
.site-footer .brand-main {
    color: var(--ink);
}

.brand-sub {
    font-size: 0.72rem;
    color: #d9c48e;
    letter-spacing: 0;
}

.site-header.scrolled .brand-sub,
.site-header.nav-open .brand-sub,
.site-footer .brand-sub {
    color: var(--wine);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--white);
}

.site-header.scrolled .site-nav,
.site-header.nav-open .site-nav {
    color: var(--ink);
}

.site-nav a {
    position: relative;
    display: inline-flex;
    font-size: 0.94rem;
    opacity: 0.94;
    transition: color var(--ease), opacity var(--ease), transform var(--ease);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease-out);
}

.site-nav a:hover {
    color: var(--ochre);
    opacity: 1;
    transform: translateY(-1px);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 22px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(24, 35, 31, 0.18);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--green);
}

.btn-light {
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
}

.btn-light:hover {
    background: var(--white);
}

.btn-wine {
    background: var(--wine);
    color: var(--white);
}

.btn-wine:hover {
    background: var(--wine-dark);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.site-header.scrolled .menu-toggle,
.site-header.nav-open .menu-toggle {
    border-color: var(--line);
    background: var(--white);
    color: var(--ink);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle span + span {
    margin-top: 4px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 88svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

.hero::before {
    content: "";
    position: absolute;
    right: clamp(28px, 10vw, 160px);
    bottom: clamp(72px, 12vw, 150px);
    z-index: 2;
    width: min(220px, 28vw);
    height: min(260px, 34vw);
    pointer-events: none;
    opacity: 0.38;
    filter: blur(0.6px);
    background:
        linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.26) 43% 45%, transparent 49%),
        linear-gradient(82deg, transparent 0 48%, rgba(241, 215, 142, 0.22) 50% 52%, transparent 57%),
        linear-gradient(132deg, transparent 0 56%, rgba(255, 255, 255, 0.18) 57% 59%, transparent 64%);
    animation: steamLift 8s ease-in-out infinite;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    z-index: 0;
    object-fit: cover;
    transform: scale(1.08) translate3d(0, var(--hero-shift, 0px), 0);
    transform-origin: center;
    filter: saturate(0.94) contrast(1.03);
    will-change: transform;
    transition: transform 0.18s linear;
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(13, 25, 22, 0.86), rgba(13, 25, 22, 0.58) 48%, rgba(13, 25, 22, 0.22)),
        linear-gradient(0deg, rgba(13, 25, 22, 0.42), rgba(13, 25, 22, 0.04) 46%);
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(116deg, transparent 12%, rgba(198, 154, 79, 0.18) 45%, transparent 76%);
    mix-blend-mode: screen;
    opacity: 0.32;
    animation: lightSweep 12s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 72px;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--wine);
    font-size: 0.9rem;
    font-weight: 700;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.hero .eyebrow {
    color: #f1d78e;
    animation: heroTextIn 0.9s var(--ease-out) 0.12s both;
}

h1,
h2,
h3 {
    margin: 0;
    color: inherit;
    line-height: 1.22;
    letter-spacing: 0;
}

h1,
h2 {
    font-family: var(--font-serif);
}

h1 {
    max-width: 860px;
    font-size: 4.5rem;
}

.hero h1 {
    animation: heroTextIn 0.95s var(--ease-out) 0.24s both;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.3rem;
}

.hero-copy {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-serif);
    font-size: 1.22rem;
    line-height: 2;
    animation: heroTextIn 0.95s var(--ease-out) 0.36s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    animation: heroTextIn 0.95s var(--ease-out) 0.48s both;
}

.hero-status {
    position: absolute;
    z-index: 3;
    right: max(20px, calc((100vw - 1220px) / 2));
    bottom: 34px;
    width: min(500px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(18, 35, 31, 0.64);
    color: var(--white);
    backdrop-filter: blur(16px);
    animation: heroPanelIn 1s var(--ease-out) 0.62s both;
}

.hero-status div {
    padding: 18px;
}

.hero-status div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-status span {
    display: block;
    margin-bottom: 4px;
    color: #f1d78e;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-status strong {
    font-size: 0.98rem;
}

.intro-band {
    position: relative;
    overflow: hidden;
    background: var(--wine);
    color: var(--white);
}

.intro-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0 36%, rgba(255, 226, 156, 0.2) 44%, transparent 56%);
    transform: translateX(-48%);
    animation: bandDrift 8s ease-in-out infinite;
}

.intro-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 40px));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.intro-inner p {
    margin: 0;
    font-family: var(--font-serif);
}

.intro-inner a {
    flex: 0 0 auto;
    color: #ffe29c;
    font-weight: 700;
    border-bottom: 1px solid currentColor;
}

.section-copy p:not(.eyebrow),
.section-heading p {
    color: var(--ink-soft);
}

.concept {
    background: var(--paper);
}

.concept-grid,
.pairing-grid,
.access-grid,
.reserve-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 62px;
    align-items: center;
}

.section-copy > p:not(.eyebrow) {
    margin: 22px 0 0;
    font-size: 1.02rem;
}

.concept-points {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.concept-points div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
}

.concept-points strong {
    color: var(--wine);
    font-size: 1.12rem;
}

.concept-points span {
    color: var(--ink);
    font-weight: 700;
}

.concept-image-wrap,
.pairing-image,
.access-visual {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translate3d(0, var(--float-shift, 0px), 0);
    will-change: transform;
    transition: transform 0.2s linear;
}

.concept-image-wrap img,
.pairing-image img,
.access-visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 1s var(--ease-out), filter 1s var(--ease-out);
}

.concept-image-wrap.visible img,
.pairing-image.visible img,
.access-visual.visible img {
    animation: imageSettle 1.1s var(--ease-out) both;
}

.image-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(24, 35, 31, 0.76);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.image-caption span {
    display: block;
    color: #f1d78e;
    font-size: 0.82rem;
    font-weight: 700;
}

.image-caption strong {
    display: block;
    margin-top: 4px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.menu,
.space {
    background: var(--paper-deep);
}

.section-heading {
    max-width: 760px;
}

.section-heading p:not(.eyebrow) {
    margin: 20px 0 0;
    font-size: 1.02rem;
}

.menu-tabs {
    position: relative;
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 34px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 12px 30px rgba(24, 35, 31, 0.06);
}

.tab-btn {
    position: relative;
    min-width: 116px;
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--ink-soft);
    font-weight: 700;
    overflow: hidden;
    transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.tab-btn::after {
    content: "";
    position: absolute;
    inset: auto 18px 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity var(--ease), transform var(--ease-out);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--green);
    color: var(--white);
}

.tab-btn:hover {
    transform: translateY(-1px);
}

.tab-btn.active {
    box-shadow: 0 10px 24px rgba(33, 79, 64, 0.2);
}

.tab-btn.active::after {
    opacity: 0.56;
    transform: scaleX(1);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.menu-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(24, 35, 31, 0.08);
    transform: translateY(0);
    transition: transform 0.5s var(--ease-out), box-shadow var(--ease), border-color var(--ease), opacity var(--ease);
}

.menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(122deg, transparent 34%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
    transform: translateX(-130%);
    transition: transform 0.85s var(--ease-out);
}

.menu-card:not(.hidden) {
    animation: menuCardIn 0.56s var(--ease-out) both;
}

.menu-card:nth-child(3n + 2):not(.hidden) {
    animation-delay: 0.06s;
}

.menu-card:nth-child(3n):not(.hidden) {
    animation-delay: 0.12s;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(146, 61, 74, 0.32);
    box-shadow: 0 18px 48px rgba(24, 35, 31, 0.14);
}

.menu-card:hover::after {
    transform: translateX(130%);
}

.menu-card.hidden {
    display: none;
}

.menu-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: var(--mist);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.96) contrast(0.98);
    transition: transform 0.75s var(--ease-out), filter 0.75s var(--ease-out);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.02);
}

.menu-card > div {
    padding: 22px 24px 0;
}

.menu-tag {
    margin: 0 0 12px;
    color: var(--wine);
    font-size: 0.82rem;
    font-weight: 800;
}

.menu-card h3 {
    font-family: var(--font-serif);
}

.menu-card p:not(.menu-tag) {
    margin: 14px 0 0;
    color: var(--ink-soft);
}

.menu-card strong {
    display: block;
    padding: 14px 24px 24px;
    color: var(--green);
    font-size: 1.2rem;
}

.pairing {
    background: var(--paper);
}

.pairing-grid {
    grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
}

.pairing-list {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.pairing-list li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: center;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
}

.pairing-list span {
    color: var(--wine);
    font-size: 0.84rem;
}

.space-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.space-item {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: 8px;
    color: var(--white);
    background: var(--green);
    overflow: hidden;
    position: relative;
}

.space-item:nth-child(2) {
    background: var(--wine);
}

.space-item:nth-child(3) {
    background: #223c42;
}

.space-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 44%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 72%);
}

.space-item span,
.space-item h3,
.space-item p {
    position: relative;
}

.space-item span {
    color: #ffe29c;
    font-weight: 800;
}

.space-item h3 {
    margin-top: 8px;
    font-family: var(--font-serif);
}

.space-item p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.access {
    background: var(--paper);
}

.access-grid {
    grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.access-panel {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 44px rgba(24, 35, 31, 0.09);
}

.access-panel dl,
.reservation-summary {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.access-panel dl div,
.reservation-summary div {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

dt {
    color: var(--wine);
    font-weight: 800;
}

dd {
    margin: 0;
    color: var(--ink-soft);
}

.reserve {
    background: var(--green);
    color: var(--white);
}

.reserve .eyebrow,
.reserve .section-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.reserve-grid {
    align-items: start;
}

.reserve-note {
    display: grid;
    gap: 8px;
    margin-top: 32px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.reserve-note strong {
    color: #ffe29c;
}

.reservation-form {
    display: grid;
    gap: 16px;
    padding: 30px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
}

label span {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(24, 35, 31, 0.18);
    border-radius: 8px;
    padding: 10px 12px;
    background: #fbfaf6;
    color: var(--ink);
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--wine);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(146, 61, 74, 0.12);
}

.site-footer {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.footer-inner {
    width: min(1120px, calc(100% - 40px));
    min-height: 170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}

.footer-inner p {
    margin: 0;
    color: var(--ink-soft);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: var(--ink-soft);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--wine);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(14, 24, 22, 0.62);
}

.modal.show {
    display: grid;
}

.modal-dialog {
    position: relative;
    width: min(520px, 100%);
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.modal-dialog h2 {
    font-size: 2rem;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.22s;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroPanelIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes steamLift {
    0% {
        opacity: 0;
        transform: translate3d(0, 24px, 0) scaleY(0.92);
    }
    26% {
        opacity: 0.38;
    }
    70% {
        opacity: 0.28;
    }
    100% {
        opacity: 0;
        transform: translate3d(-18px, -28px, 0) scaleY(1.12);
    }
}

@keyframes lightSweep {
    from {
        transform: translateX(-10%);
        opacity: 0.18;
    }
    to {
        transform: translateX(10%);
        opacity: 0.36;
    }
}

@keyframes bandDrift {
    0%,
    100% {
        transform: translateX(-48%);
        opacity: 0.2;
    }
    50% {
        transform: translateX(48%);
        opacity: 0.34;
    }
}

@keyframes menuCardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes imageSettle {
    from {
        filter: saturate(0.84) contrast(0.96);
        transform: scale(1.07);
    }
    to {
        filter: saturate(1) contrast(1);
        transform: scale(1.015);
    }
}

@media (max-width: 980px) {
    .section {
        padding: 78px 0;
    }

    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .site-nav {
        position: fixed;
        left: 18px;
        right: 18px;
        top: 76px;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(245, 242, 234, 0.98);
        color: var(--ink);
        box-shadow: var(--shadow);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--ease), transform var(--ease);
    }

    .site-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        border-radius: 6px;
    }

    .site-nav a:hover {
        background: var(--mist);
    }

    .menu-toggle {
        display: grid;
    }

    .header-reserve {
        display: none;
    }

    .concept-grid,
    .pairing-grid,
    .access-grid,
    .reserve-grid {
        grid-template-columns: 1fr;
    }

    .pairing-image,
    .access-visual {
        order: -1;
    }

    .menu-grid,
    .space-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        min-height: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 38px 0;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .container,
    .hero-content,
    .intro-inner,
    .footer-inner {
        width: min(100% - 28px, 1120px);
    }

    .header-inner {
        width: calc(100% - 28px);
        min-height: 68px;
    }

    .brand-main {
        font-size: 1.16rem;
    }

    .brand-sub {
        font-size: 0.64rem;
    }

    .hero {
        min-height: 84svh;
    }

    .hero-content {
        padding-top: 58px;
        padding-bottom: 52px;
    }

    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-copy {
        font-size: 1.04rem;
    }

    .hero-buttons,
    .intro-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .btn,
    .intro-inner a {
        width: 100%;
    }

    .intro-inner {
        padding: 18px 0;
    }

    .hero-status {
        display: none;
    }

    .menu-tabs {
        width: 100%;
    }

    .tab-btn {
        min-width: 0;
    }

    .concept-points div,
    .pairing-list li,
    .access-panel dl div,
    .reservation-summary div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .access-panel,
    .reservation-form,
    .modal-dialog {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .hero-image,
    .concept-image-wrap,
    .pairing-image,
    .access-visual {
        transform: none !important;
    }
}