@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
    --ink: #12100e;
    --ink-soft: #27231f;
    --ivory: #f7f1e7;
    --paper: #fffaf1;
    --brass: #a67d34;
    --brass-dark: #75541e;
    --sea: #285f58;
    --wine: #7d2638;
    --line: rgba(18, 16, 14, 0.14);
    --shadow: 0 24px 70px rgba(18, 16, 14, 0.16);
    --radius: 8px;
    --display-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --nav-font: "Cinzel", Georgia, "Times New Roman", serif;
    font-family: "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
}

body::selection {
    background: var(--brass);
    color: var(--paper);
}

.coming-page {
    min-height: 100vh;
    min-height: 100svh;
    background: var(--ink);
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(270px, 1fr) max-content minmax(270px, 1fr);
    align-items: center;
    gap: 0;
    min-height: 92px;
    padding: 0 clamp(18px, 4vw, 56px);
    border: 0;
    border-bottom: 1px solid rgba(247, 241, 231, 0.18);
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(18, 16, 14, 0.96), rgba(18, 16, 14, 0.78)),
        rgba(18, 16, 14, 0.92);
    color: var(--ivory);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header::after {
    position: absolute;
    right: clamp(18px, 4vw, 56px);
    bottom: -1px;
    left: clamp(18px, 4vw, 56px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 194, 124, 0.82), transparent);
    content: "";
    pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-open {
    border-color: rgba(166, 125, 52, 0.28);
    background:
        linear-gradient(90deg, rgba(18, 16, 14, 0.98), rgba(39, 35, 31, 0.94)),
        var(--ink);
    color: var(--ivory);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: start;
    width: 156px;
    min-height: 92px;
    padding: 12px 0;
}

.site-header.is-scrolled .brand-link,
.site-header.is-open .brand-link {
    background: transparent;
    border-color: transparent;
}

.brand-link img {
    max-height: 66px;
    object-fit: contain;
    transition: filter 180ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .brand-link img,
.site-header.is-open .brand-link img {
    filter: drop-shadow(0 8px 18px rgba(18, 16, 14, 0.1));
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: clamp(14px, 2.4vw, 34px);
    padding: 0 clamp(14px, 2vw, 28px);
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: var(--nav-font);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: none;
}

.site-header.is-scrolled .site-nav,
.site-header.is-open .site-nav {
    border-color: transparent;
    background: transparent;
}

.site-nav a {
    position: relative;
    min-height: 92px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: 0;
    color: rgba(247, 241, 231, 0.88);
    transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    height: 1px;
    background: var(--brass);
    content: "";
    opacity: 0;
    transform: scaleX(0.2);
    transition: opacity 160ms ease, transform 160ms ease;
}

.site-header.is-scrolled .site-nav a,
.site-header.is-open .site-nav a {
    color: rgba(247, 241, 231, 0.88);
}

.site-nav a:hover {
    background: transparent;
    color: var(--ivory);
}

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

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
    background: transparent;
    color: var(--ivory);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 12px;
}

.header-phone {
    color: rgba(247, 241, 231, 0.66);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone {
    color: rgba(247, 241, 231, 0.66);
}

.nav-reserve {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--brass), #c09645);
    color: var(--ivory);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 12px 26px rgba(166, 125, 52, 0.2);
}

.mobile-reserve-link {
    display: none;
}

.site-header.is-scrolled .nav-reserve,
.site-header.is-open .nav-reserve {
    background: linear-gradient(135deg, var(--brass), #c09645);
    color: var(--ivory);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(247, 241, 231, 0.36);
    border-radius: var(--radius);
    background: rgba(247, 241, 231, 0.08);
    color: var(--ivory);
    cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
    border-color: rgba(247, 241, 231, 0.28);
    background: rgba(247, 241, 231, 0.08);
    color: var(--ivory);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 128px clamp(18px, 4vw, 56px) 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, rgba(166, 125, 52, 0.24), transparent 30%),
        linear-gradient(145deg, #12100e 0%, #1f1b17 52%, #285f58 130%);
    color: var(--ivory);
}

.hero::before,
.hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.hero::before {
    inset: 92px clamp(18px, 6vw, 90px) 34px;
    border: 1px solid rgba(247, 241, 231, 0.11);
}

.hero::after {
    right: clamp(18px, 4vw, 56px);
    bottom: 0;
    width: min(520px, 70vw);
    height: 1px;
    background: rgba(225, 194, 124, 0.7);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    width: min(390px, 72vw);
    max-height: 240px;
    margin: 16px auto 30px;
    object-fit: contain;
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.35));
}

.hero h1,
.page-hero h1,
.section h2,
.band h2 {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 840px;
    margin-inline: auto;
    font-size: clamp(2.5rem, 7vw, 5.8rem);
}

.hero-copy {
    max-width: 680px;
    margin: 24px auto 0;
    color: rgba(247, 241, 231, 0.76);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.section-heading,
.band,
.footer-meta,
.form-row {
    display: flex;
    align-items: center;
}

.hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-status {
    position: absolute;
    right: clamp(18px, 4vw, 56px);
    bottom: 28px;
    left: clamp(18px, 4vw, 56px);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(247, 241, 231, 0.66);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.btn,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    max-width: 100%;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    white-space: normal;
}

.btn-primary,
.submit-btn {
    background: var(--brass);
    color: #fffaf1;
    border-color: var(--brass);
}

.btn-primary:hover,
.submit-btn:hover {
    background: var(--brass-dark);
    border-color: var(--brass-dark);
}

.btn-ghost {
    color: var(--ivory);
    border-color: rgba(247, 241, 231, 0.38);
}

.btn-light {
    background: var(--ivory);
    color: var(--ink);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--brass);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 112px) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 92px);
    align-items: end;
    border-bottom: 1px solid var(--line);
}

.intro-grid > p {
    max-width: 620px;
    margin: 0;
    color: rgba(18, 16, 14, 0.68);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.section h2,
.band h2,
.split-feature h2,
.editorial-band h2 {
    font-size: clamp(2rem, 4.5vw, 4rem);
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding-top: 0;
}

.principle-grid article {
    min-height: 250px;
    padding: clamp(24px, 4vw, 40px);
    background: var(--ink);
    color: var(--ivory);
}

.principle-grid article:nth-child(2) {
    background: var(--sea);
}

.principle-grid article:nth-child(3) {
    background: var(--wine);
}

.principle-grid span,
.experience-card span {
    color: #e1c27c;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.principle-grid h3,
.experience-card h3 {
    margin: 18px 0 10px;
    font-family: var(--display-font);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0;
}

.principle-grid p {
    margin: 0;
    color: rgba(247, 241, 231, 0.75);
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 620px;
    background: var(--paper);
}

.feature-visual {
    display: grid;
    place-items: center;
    min-height: 440px;
    padding: clamp(38px, 7vw, 86px);
    background:
        linear-gradient(rgba(18, 16, 14, 0.9), rgba(18, 16, 14, 0.9)),
        url("../img/burhan-bodrum-logo-web.png") center / min(420px, 72%) no-repeat;
}

.feature-visual img {
    width: min(340px, 74%);
    max-height: 230px;
    object-fit: contain;
    filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.32));
}

.feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 7vw, 94px);
}

.split-feature h2,
.editorial-band h2 {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.route-list {
    display: grid;
    gap: 0;
    margin-top: 34px;
    border-top: 1px solid var(--line);
}

.route-list p {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 22px;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    color: rgba(18, 16, 14, 0.68);
}

.route-list span {
    color: var(--sea);
    font-weight: 900;
}

.section-heading {
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 26px;
}

.section-heading a {
    color: var(--sea);
    font-weight: 800;
}

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

.menu-grid.wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-note {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 28px 0 0;
}

.menu-note p {
    max-width: 760px;
    margin: 0;
    color: rgba(18, 16, 14, 0.66);
    font-size: 1.05rem;
}

.menu-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 12px 34px rgba(18, 16, 14, 0.06);
}

.menu-card span {
    color: var(--wine);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.menu-card h3 {
    margin: 16px 0 10px;
    font-family: var(--display-font);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.18;
}

.menu-card p {
    margin: 0;
    color: rgba(18, 16, 14, 0.68);
}

.menu-card strong {
    margin-top: auto;
    padding-top: 22px;
    color: var(--sea);
}

.band {
    justify-content: space-between;
    gap: 28px;
    padding: clamp(44px, 7vw, 76px) clamp(18px, 4vw, 56px);
    background: var(--sea);
    color: var(--ivory);
}

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

.experience-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: var(--radius);
    color: var(--ivory);
    background:
        linear-gradient(180deg, rgba(18, 16, 14, 0.18), rgba(18, 16, 14, 0.88)),
        var(--ink);
    box-shadow: var(--shadow);
}

.experience-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(40, 95, 88, 0.12), rgba(18, 16, 14, 0.88)),
        var(--sea);
}

.experience-card:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(125, 38, 56, 0.12), rgba(18, 16, 14, 0.86)),
        var(--wine);
}

.experience-card p {
    margin: 0;
    color: rgba(247, 241, 231, 0.74);
}

.editorial-band {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 7vw, 94px);
    align-items: end;
    padding: clamp(54px, 9vw, 108px) clamp(18px, 4vw, 56px);
    background: var(--ink);
    color: var(--ivory);
}

.editorial-band p:last-child {
    margin: 0;
    color: rgba(247, 241, 231, 0.72);
    font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.band .eyebrow {
    color: #e1c27c;
}

.page-hero {
    padding: 154px clamp(18px, 4vw, 56px) 58px;
    background:
        radial-gradient(circle at 14% 0%, rgba(166, 125, 52, 0.18), transparent 28%),
        linear-gradient(145deg, #12100e 0%, #211d18 58%, #285f58 138%);
    color: var(--ivory);
}

.page-hero.compact h1 {
    width: min(880px, 100%);
    font-size: clamp(2.25rem, 5vw, 4.7rem);
}

.story-hero {
    min-height: 520px;
    display: grid;
    align-content: end;
    padding-bottom: clamp(58px, 8vw, 96px);
}

.story-hero h1 {
    width: min(980px, 100%);
    font-size: clamp(2.45rem, 6vw, 5.6rem);
}

.story-hero p:not(.eyebrow) {
    width: min(680px, 100%);
    margin: 22px 0 0;
    color: rgba(247, 241, 231, 0.75);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

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

.story-grid article,
.gallery-intro > div {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.story-grid span,
.gallery-intro span,
.venue-list span {
    color: var(--wine);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.story-grid h2,
.gallery-intro h2,
.venue-list h2,
.contact-panel h2 {
    margin: 16px 0 12px;
    font-family: var(--display-font);
    font-size: clamp(1.6rem, 3vw, 2.55rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
}

.story-grid p,
.gallery-intro p,
.venue-list p,
.contact-panel p {
    margin: 0;
    color: rgba(18, 16, 14, 0.68);
}

.quote-band {
    padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 56px);
    background: var(--ink);
    color: var(--ivory);
}

.quote-band p {
    width: min(980px, 100%);
    margin: 0 auto;
    font-family: var(--display-font);
    font-size: clamp(2.1rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 1.05;
    text-align: center;
    letter-spacing: 0;
}

.menu-note-rich {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}

.menu-note-rich div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.menu-note-rich span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--sea);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-quote {
    background: var(--sea);
}

.menu-hero {
    min-height: 620px;
    display: grid;
    align-content: end;
    padding-bottom: clamp(62px, 9vw, 112px);
}

.menu-hero h1 {
    width: min(1040px, 100%);
    font-size: clamp(2.7rem, 7vw, 6.4rem);
}

.menu-hero p:not(.eyebrow) {
    width: min(720px, 100%);
    margin: 24px 0 0;
    color: rgba(247, 241, 231, 0.76);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.menu-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(26px, 6vw, 90px);
    align-items: end;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(54px, 8vw, 104px) 0;
    border-bottom: 1px solid var(--line);
}

.menu-overview-copy h2,
.menu-overview-panel strong,
.signature-section h2,
.menu-category h2,
.menu-service-band h2 {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.menu-overview-copy h2 {
    width: min(760px, 100%);
    font-size: clamp(2rem, 4.4vw, 4rem);
}

.menu-overview-copy p:last-child {
    width: min(620px, 100%);
    margin: 22px 0 0;
    color: rgba(18, 16, 14, 0.68);
}

.menu-overview-panel {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(26px, 4vw, 38px);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(18, 16, 14, 0.18), rgba(18, 16, 14, 0.92)),
        var(--sea);
    color: var(--ivory);
    box-shadow: var(--shadow);
}

.menu-overview-panel span {
    color: #e1c27c;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.menu-overview-panel strong {
    margin-top: 14px;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.menu-overview-panel p {
    margin: 16px 0 0;
    color: rgba(247, 241, 231, 0.74);
}

.menu-anchor-strip {
    position: sticky;
    top: 82px;
    z-index: 12;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px clamp(18px, 4vw, 56px);
    background: rgba(247, 241, 231, 0.94);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.menu-anchor-strip a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: var(--radius);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-anchor-strip a:hover {
    background: var(--ink);
    color: var(--ivory);
}

.signature-section {
    padding-bottom: clamp(44px, 6vw, 72px);
}

.signature-menu-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
}

.signature-menu-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 34px);
    border-radius: var(--radius);
    color: var(--ivory);
    background:
        linear-gradient(180deg, rgba(18, 16, 14, 0.12), rgba(18, 16, 14, 0.92)),
        var(--ink);
    box-shadow: var(--shadow);
}

.signature-menu-card:first-child {
    grid-row: span 2;
    min-height: 520px;
    background:
        linear-gradient(180deg, rgba(40, 95, 88, 0.12), rgba(18, 16, 14, 0.9)),
        var(--sea);
}

.signature-menu-card span {
    color: #e1c27c;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.signature-menu-card h3 {
    margin: 16px 0 10px;
    font-family: var(--display-font);
    font-size: clamp(1.65rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.signature-menu-card p {
    margin: 0;
    color: rgba(247, 241, 231, 0.74);
}

.signature-menu-card strong {
    margin-top: 22px;
    color: #e1c27c;
}

.menu-catalog {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 0 0 clamp(62px, 9vw, 112px);
}

.menu-category {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 92px);
    padding: clamp(44px, 7vw, 84px) 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 150px;
}

.menu-category header {
    position: sticky;
    top: 154px;
    align-self: start;
}

.menu-category h2 {
    font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.menu-category header > p:last-child {
    margin: 18px 0 0;
    color: rgba(18, 16, 14, 0.64);
}

.menu-line-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.menu-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.menu-line h3 {
    margin: 0 0 7px;
    font-family: var(--display-font);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0;
}

.menu-line p {
    max-width: 620px;
    margin: 0;
    color: rgba(18, 16, 14, 0.64);
}

.menu-line strong {
    color: var(--sea);
    white-space: nowrap;
}

.menu-service-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 56px);
    background: var(--wine);
    color: var(--ivory);
}

.menu-service-band h2 {
    width: min(880px, 100%);
    font-size: clamp(2rem, 4.4vw, 4rem);
}

.menu-atelier-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: clamp(28px, 6vw, 96px);
    align-items: end;
    padding: 148px clamp(18px, 4vw, 56px) clamp(58px, 8vw, 96px);
    background:
        radial-gradient(circle at 76% 18%, rgba(166, 125, 52, 0.22), transparent 28%),
        linear-gradient(145deg, #12100e 0%, #201b17 56%, #285f58 132%);
    color: var(--ivory);
}

.menu-atelier-copy h1,
.menu-stage-heading h2,
.menu-notebook-intro h2,
.notebook-section h2,
.menu-master-note p {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 0;
}

.menu-atelier-copy h1 {
    width: min(980px, 100%);
    font-size: clamp(3rem, 7.6vw, 7.2rem);
}

.menu-atelier-copy > p:last-child {
    width: min(680px, 100%);
    margin: 28px 0 0;
    color: rgba(247, 241, 231, 0.76);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.menu-atelier-mark {
    display: grid;
    justify-items: center;
    gap: 20px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(247, 241, 231, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 250, 241, 0.08);
    backdrop-filter: blur(14px);
}

.menu-atelier-mark img {
    width: min(330px, 70vw);
    max-height: 210px;
    object-fit: contain;
}

.menu-atelier-mark span {
    color: #e1c27c;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.menu-philosophy {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.menu-philosophy article {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 38px);
    background: var(--paper);
}

.menu-philosophy span,
.notebook-section aside > span,
.menu-stage-card span {
    color: var(--wine);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.menu-philosophy h2 {
    margin: 16px 0 10px;
    font-family: var(--display-font);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
}

.menu-philosophy p,
.notebook-section aside p,
.notebook-line p {
    margin: 0;
    color: rgba(18, 16, 14, 0.66);
}

.menu-stage {
    padding: clamp(62px, 9vw, 112px) clamp(18px, 4vw, 56px);
    background: var(--ink);
    color: var(--ivory);
}

.menu-stage-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 6vw, 86px);
    align-items: end;
    margin-bottom: 28px;
}

.menu-stage-heading h2 {
    font-size: clamp(2.3rem, 5vw, 5rem);
}

.menu-stage-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.85fr;
    gap: 18px;
}

.menu-stage-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(247, 241, 231, 0.12);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(18, 16, 14, 0.08), rgba(18, 16, 14, 0.92)),
        var(--ink-soft);
}

.menu-stage-card:first-child {
    grid-row: span 2;
    min-height: 560px;
    background:
        linear-gradient(180deg, rgba(40, 95, 88, 0.12), rgba(18, 16, 14, 0.9)),
        var(--sea);
}

.menu-stage-index {
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(247, 241, 231, 0.14);
    font-family: var(--display-font);
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.8;
}

.menu-stage-card span {
    color: #e1c27c;
}

.menu-stage-card h3 {
    margin: 14px 0 10px;
    font-family: var(--display-font);
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 0;
}

.menu-stage-card p {
    margin: 0;
    color: rgba(247, 241, 231, 0.74);
}

.menu-stage-card strong {
    margin-top: 22px;
    color: #e1c27c;
}

.menu-notebook {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(62px, 9vw, 112px) 0;
}

.menu-notebook-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: clamp(24px, 6vw, 90px);
    align-items: end;
    padding-bottom: clamp(44px, 7vw, 76px);
}

.menu-notebook-intro h2 {
    font-size: clamp(2.4rem, 5.6vw, 5.6rem);
}

.menu-notebook-intro > p:last-child {
    margin: 0;
    color: rgba(18, 16, 14, 0.66);
}

.notebook-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 90px);
    padding: clamp(42px, 7vw, 78px) 0;
    border-top: 1px solid var(--line);
}

.notebook-section aside {
    position: sticky;
    top: 154px;
    align-self: start;
}

.notebook-section h2 {
    margin-top: 14px;
    font-size: clamp(2.1rem, 5vw, 4.5rem);
}

.notebook-section aside p {
    margin-top: 16px;
}

.notebook-lines {
    display: grid;
    border-top: 1px solid var(--line);
}

.notebook-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.notebook-line h3 {
    margin: 0 0 8px;
    font-family: var(--display-font);
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0;
}

.notebook-line strong {
    color: var(--sea);
    white-space: nowrap;
}

.menu-master-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(52px, 8vw, 90px) clamp(18px, 4vw, 56px);
    background: var(--wine);
    color: var(--ivory);
}

.menu-master-note p {
    width: min(980px, 100%);
    font-size: clamp(2.3rem, 5vw, 5.2rem);
}

.gallery-intro {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 0;
}

.editorial-gallery .gallery-item:first-child {
    grid-column: span 2;
}

.editorial-gallery .gallery-item:first-child img {
    aspect-ratio: 16 / 9;
}

.venue-list {
    display: grid;
    gap: 1px;
}

.venue-list article {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 74px);
    align-items: end;
    padding: clamp(28px, 5vw, 54px) 0;
    border-bottom: 1px solid var(--line);
}

.venue-list article:first-child {
    border-top: 1px solid var(--line);
}

.venue-list h2 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.venue-cta {
    background: var(--wine);
}

.contact-panel {
    align-content: center;
    justify-items: start;
    gap: 16px;
    padding: clamp(28px, 5vw, 46px);
}

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

.gallery-item {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 26px;
    background: var(--ink);
}

.gallery-item figcaption {
    padding: 16px 18px;
    font-weight: 800;
}

.contact-layout,
.reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: start;
}

.contact-list,
.map-panel,
.form-panel,
.reservation-note {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.contact-list p {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-list span {
    color: var(--wine);
    font-weight: 800;
}

.map-panel {
    min-height: 220px;
    display: grid;
    place-items: center;
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.reservation-note h2 {
    margin: 0 0 14px;
    font-family: var(--display-font);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.reservation-rules {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.reservation-rules li {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: rgba(18, 16, 14, 0.68);
}

.form-panel {
    display: grid;
    gap: 16px;
}

.form-panel label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.form-row {
    gap: 16px;
}

.form-row label {
    flex: 1;
    min-width: 0;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(18, 16, 14, 0.18);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    padding: 13px 14px;
}

textarea {
    resize: vertical;
}

.validation,
.form-message {
    border-radius: var(--radius);
    padding: 12px 14px;
}

.validation,
.form-message.error {
    background: rgba(125, 38, 56, 0.1);
    color: var(--wine);
}

.form-message.success {
    background: rgba(40, 95, 88, 0.12);
    color: var(--sea);
}

.site-footer {
    padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px) 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(166, 125, 52, 0.2), transparent 28%),
        linear-gradient(145deg, #12100e 0%, #211d18 54%, #285f58 140%);
    color: rgba(247, 241, 231, 0.78);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: clamp(34px, 7vw, 110px);
    align-items: end;
    padding-bottom: clamp(42px, 7vw, 78px);
    border-bottom: 1px solid rgba(247, 241, 231, 0.14);
}

.footer-brand img {
    width: min(210px, 58vw);
    max-height: 96px;
    object-fit: contain;
    margin-bottom: 28px;
}

.footer-brand h2,
.footer-cta h3 {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
}

.footer-brand h2 {
    width: min(760px, 100%);
    color: var(--ivory);
    font-size: clamp(2.1rem, 4.8vw, 4.9rem);
}

.footer-brand p {
    width: min(560px, 100%);
    margin: 24px 0 0;
    color: rgba(247, 241, 231, 0.68);
    font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.footer-cta {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid rgba(247, 241, 231, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 250, 241, 0.08);
    backdrop-filter: blur(12px);
}

.footer-cta .eyebrow {
    color: #e1c27c;
}

.footer-cta h3 {
    color: var(--ivory);
    font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 5vw, 72px);
    padding: clamp(32px, 5vw, 56px) 0;
    border-bottom: 1px solid rgba(247, 241, 231, 0.14);
}

.footer-links,
.footer-contact,
.footer-hours {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links span,
.footer-contact span,
.footer-hours span {
    color: #e1c27c;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.footer-links a,
.footer-contact a,
.footer-contact p,
.footer-hours p {
    margin: 0;
    color: rgba(247, 241, 231, 0.7);
}

.footer-links a,
.footer-contact a {
    width: fit-content;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--ivory);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    color: rgba(247, 241, 231, 0.54);
    font-size: 0.86rem;
}

.coming-shell {
    min-height: 100vh;
    min-height: 100svh;
}

.coming-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: clamp(24px, 5vw, 60px);
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 12%, rgba(166, 125, 52, 0.24), transparent 30%),
        linear-gradient(145deg, #12100e 0%, #211d18 50%, #285f58 132%);
    color: var(--ivory);
}

.coming-hero::before {
    position: absolute;
    inset: clamp(18px, 3vw, 42px);
    border: 1px solid rgba(247, 241, 231, 0.12);
    content: "";
    pointer-events: none;
}

.coming-hero::after {
    position: absolute;
    right: clamp(24px, 5vw, 72px);
    bottom: clamp(20px, 4vw, 48px);
    left: clamp(24px, 5vw, 72px);
    height: 1px;
    background: rgba(225, 194, 124, 0.62);
    content: "";
    pointer-events: none;
}

.coming-frame {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    text-align: center;
}

.coming-logo {
    width: min(360px, 74vw);
    max-height: 230px;
    margin: 18px auto 30px;
    object-fit: contain;
    filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.36));
}

.coming-frame h1 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(3rem, 10vw, 7.6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0;
}

.coming-copy {
    max-width: 680px;
    margin: 26px auto 0;
    color: rgba(247, 241, 231, 0.76);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.coming-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.coming-meta span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid rgba(247, 241, 231, 0.16);
    border-radius: var(--radius);
    color: rgba(247, 241, 231, 0.72);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.coming-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        min-height: 78px;
        padding: 0 18px;
    }

    .brand-link {
        justify-self: start;
        min-height: 78px;
    }

    .site-nav {
        justify-content: flex-start;
        gap: 16px;
        overflow-x: auto;
        padding: 0 16px;
    }

    .site-nav a {
        min-height: 78px;
        flex: 0 0 auto;
    }

    .header-phone {
        display: none;
    }

    .menu-grid,
    .menu-grid.wide,
    .gallery-grid,
    .intro-grid,
    .split-feature,
    .editorial-band,
    .story-grid,
    .gallery-intro,
    .contact-layout,
    .reservation-layout {
        grid-template-columns: 1fr 1fr;
    }

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

    .menu-note-rich {
        grid-template-columns: 1fr;
    }

    .menu-note-rich div {
        justify-content: flex-start;
    }

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

    .menu-category header {
        position: static;
    }

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

    .signature-menu-card:first-child {
        grid-row: auto;
        grid-column: span 2;
        min-height: 420px;
    }

    .footer-main,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .menu-atelier-hero,
    .menu-stage-heading,
    .menu-notebook-intro,
    .notebook-section {
        grid-template-columns: 1fr;
    }

    .menu-philosophy {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .menu-stage-card:first-child {
        grid-row: auto;
        grid-column: span 2;
        min-height: 430px;
    }

    .notebook-section aside {
        position: static;
    }
}

@media (max-width: 760px) {
    .site-header {
        inset: 0 0 auto;
        min-height: 72px;
        padding: 0 14px;
        grid-template-columns: 1fr auto;
    }

    .brand-link {
        width: 122px;
        min-height: 72px;
        padding: 6px 10px;
    }

    .brand-link img {
        max-height: 48px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        grid-column: 1 / -1;
        width: 100%;
        justify-self: stretch;
        display: none;
        padding: 14px;
        border: 0;
        border-top: 1px solid rgba(166, 125, 52, 0.28);
        border-bottom: 1px solid rgba(166, 125, 52, 0.24);
        background:
            linear-gradient(145deg, rgba(18, 16, 14, 0.98), rgba(39, 35, 31, 0.98)),
            var(--ink);
        box-shadow: 0 24px 46px rgba(0, 0, 0, 0.34);
        text-transform: uppercase;
        border-radius: 0;
        overflow-x: visible;
        z-index: 30;
    }

    .site-nav.is-open {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr;
        justify-content: stretch;
        justify-items: stretch;
        align-items: stretch;
    }

    .site-header.is-open .site-nav,
    .site-header .site-nav.is-open {
        background:
            linear-gradient(145deg, rgba(18, 16, 14, 0.98), rgba(39, 35, 31, 0.98)),
            var(--ink);
        color: var(--ivory);
    }

    .site-nav a {
        width: auto;
        justify-content: center;
        min-height: 52px;
        padding: 13px 14px;
        border: 1px solid rgba(225, 194, 124, 0.18);
        border-radius: var(--radius);
        background: rgba(255, 250, 241, 0.06);
        color: rgba(247, 241, 231, 0.9);
        font-family: var(--nav-font);
        font-size: 1.05rem;
        text-transform: none;
        letter-spacing: 0.03em;
    }

    .site-header.is-open .site-nav a,
    .site-header .site-nav.is-open a {
        color: rgba(247, 241, 231, 0.92);
    }

    .site-nav a:last-child {
        border-bottom: 1px solid rgba(225, 194, 124, 0.18);
    }

    .site-nav a::after {
        display: none;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions .nav-reserve {
        display: none;
    }

    .site-nav a:hover {
        background: rgba(166, 125, 52, 0.2);
        color: var(--ivory);
    }

    .mobile-reserve-link {
        display: inline-flex;
        background: linear-gradient(135deg, var(--brass), #c09645) !important;
        color: var(--ivory) !important;
        border-color: rgba(225, 194, 124, 0.42) !important;
        font-weight: 800;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 112px 18px 92px;
    }

    .hero::before {
        inset: 82px 14px 22px;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 4.4rem);
    }

    .hero-status {
        right: 18px;
        bottom: 18px;
        left: 18px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        text-align: center;
    }

    .section-heading,
    .band,
    .form-row,
    .menu-service-band {
        align-items: stretch;
        flex-direction: column;
    }

    .intro-grid,
    .principle-grid,
    .split-feature,
    .menu-grid,
    .menu-grid.wide,
    .gallery-grid,
    .experience-grid,
    .editorial-band,
    .story-grid,
    .gallery-intro,
    .contact-layout,
    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .story-hero {
        min-height: 460px;
        padding-top: 132px;
    }

    .story-grid article,
    .gallery-intro > div {
        min-height: 240px;
    }

    .editorial-gallery .gallery-item:first-child {
        grid-column: auto;
    }

    .editorial-gallery .gallery-item:first-child img {
        aspect-ratio: 4 / 3;
    }

    .venue-list article {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .menu-hero {
        min-height: 520px;
        padding-top: 132px;
    }

    .menu-anchor-strip {
        position: static;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .menu-anchor-strip a {
        flex: 0 0 auto;
    }

    .menu-overview-panel {
        min-height: 260px;
    }

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

    .signature-menu-card:first-child {
        grid-column: auto;
        min-height: 330px;
    }

    .menu-line {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .menu-line strong {
        white-space: normal;
    }

    .menu-atelier-hero {
        min-height: auto;
        padding: 132px 18px 54px;
    }

    .menu-atelier-copy h1 {
        font-size: clamp(2.8rem, 13vw, 4.8rem);
    }

    .menu-atelier-mark {
        padding: 24px;
    }

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

    .menu-philosophy article {
        min-height: 220px;
    }

    .menu-stage {
        padding-inline: 18px;
    }

    .menu-stage-card,
    .menu-stage-card:first-child {
        grid-column: auto;
        min-height: 320px;
    }

    .notebook-line {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .notebook-line strong {
        white-space: normal;
    }

    .menu-master-note {
        align-items: stretch;
        flex-direction: column;
    }

    .feature-copy {
        padding: 42px 18px 56px;
    }

    .route-list p {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .menu-card {
        min-height: 220px;
    }

    .contact-list p {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .footer-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .coming-hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 34px 18px 42px;
        overflow-y: auto;
    }

    .coming-hero::before {
        inset: 14px;
    }

    .coming-hero::after {
        right: 18px;
        bottom: 24px;
        left: 18px;
    }

    .coming-frame {
        width: min(560px, 100%);
        padding: 0 8px;
    }

    .coming-logo {
        width: min(240px, 62vw);
        max-height: 150px;
        margin: 0 auto 20px;
    }

    .coming-frame h1 {
        font-size: clamp(2.7rem, 14vw, 4.8rem);
        line-height: 0.98;
    }

    .coming-copy {
        max-width: 36rem;
        margin-top: 18px;
        font-size: clamp(0.96rem, 4vw, 1.08rem);
        line-height: 1.55;
    }

    .coming-contact {
        align-items: stretch;
        flex-direction: column;
        width: min(330px, 100%);
        margin: 26px auto 0;
    }

    .coming-contact .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
}

@media (max-width: 420px) {
    .coming-hero {
        padding: 28px 14px 36px;
    }

    .coming-hero::before {
        inset: 10px;
    }

    .coming-logo {
        width: min(200px, 58vw);
        max-height: 122px;
        margin-bottom: 16px;
    }

    .coming-frame h1 {
        font-size: clamp(2.35rem, 13vw, 3.4rem);
    }

    .coming-copy {
        margin-top: 14px;
        font-size: 0.94rem;
    }

    .coming-contact {
        width: min(300px, 100%);
        margin-top: 22px;
    }
}
