:root {
    --bg: #f4f0ea;
    --paper: #faf7f1;
    --ink: #231307;
    --muted: #756557;
    --line: #d9c2a9;
    --accent: #cda77b;
    --deep: #3b2113;
    --white: #fffaf4;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Noto Serif JP", serif;
    line-height: 1.9;
}

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

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

.site-header {
    align-items: center;
    color: var(--white);
    display: flex;
    height: 76px;
    justify-content: space-between;
    left: 0;
    padding: 0 clamp(24px, 12vw, 188px);
    position: fixed;
    right: 0;
    top: 0;
    transition:
        background 240ms ease,
        color 240ms ease,
        box-shadow 240ms ease;
    z-index: 20;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(250, 247, 241, 0.94);
    box-shadow: 0 10px 30px rgba(40, 24, 12, 0.08);
    color: #6a4e3a;
}

.brand {
    display: grid;
    gap: 0;
    line-height: 1;
}

.brand__name {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
}

.brand__sub,
.global-nav a,
.eyebrow {
    font-family: Inter, sans-serif;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.brand__sub {
    font-size: 10px;
    margin-top: 6px;
}

.global-nav {
    align-items: center;
    display: flex;
    gap: clamp(24px, 2.8vw, 38px);
}

.global-nav a {
    font-size: 12px;
    font-weight: 600;
}

.menu-toggle {
    background: transparent;
    border: 0;
    display: none;
    height: 40px;
    padding: 0;
    width: 40px;
}

.menu-toggle span {
    background: currentColor;
    display: block;
    height: 1px;
    margin: 8px auto;
    width: 22px;
}

.hero {
    min-height: 805px;
    overflow: hidden;
    position: relative;
}

.hero__image,
.hero__shade {
    inset: 0;
    position: absolute;
}

.hero__image {
    background: url("assets/hero-coffee.png") center / cover no-repeat;
    transform: scale(1.01);
}

.hero__shade {
    background:
        linear-gradient(
            90deg,
            rgba(69, 34, 12, 0.58),
            rgba(69, 34, 12, 0.1) 53%,
            rgba(32, 16, 8, 0.22)
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0) 55%,
            var(--bg) 99%
        );
}

.hero::after {
    background: linear-gradient(0deg, var(--bg), rgba(244, 240, 234, 0));
    bottom: -1px;
    content: "";
    height: 130px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    z-index: 2;
}

.hero__content {
    color: var(--white);
    left: clamp(28px, 14.5vw, 222px);
    max-width: 620px;
    position: relative;
    padding-top: 194px;
    z-index: 3;
}

.eyebrow {
    color: rgba(255, 250, 244, 0.72);
    font-size: 14px;
    margin: 0 0 34px;
}

.eyebrow--warm {
    color: #c59a76;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(64px, 7vw, 96px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.96;
    margin: 0;
}

.hero h1 em {
    font-style: italic;
    font-weight: 600;
}

.hero__lead {
    font-size: 15px;
    font-weight: 600;
    margin: 32px 0 38px;
    max-width: 470px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button {
    align-items: center;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    min-width: 170px;
    padding: 0 28px;
}

.button--primary {
    background: var(--accent);
    color: #201308;
}

.button--ghost {
    border: 1px solid rgba(255, 250, 244, 0.42);
    color: var(--white);
}

.hero__scroll {
    align-items: center;
    color: rgba(255, 250, 244, 0.46);
    display: flex;
    flex-direction: column;
    gap: 20px;
    left: 64px;
    position: absolute;
    top: 300px;
    z-index: 4;
}

.hero__scroll span {
    background: rgba(255, 250, 244, 0.22);
    display: block;
    height: 76px;
    width: 1px;
}

.hero__scroll b {
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-orientation: mixed;
    transform: rotate(90deg);
}

.section {
    padding: 132px 0;
}

.section__inner {
    margin: 0 auto;
    max-width: 1156px;
    padding: 0 28px;
}

.concept {
    padding-top: 206px;
}

.concept__grid {
    align-items: center;
    display: grid;
    gap: clamp(56px, 7vw, 80px);
    grid-template-columns: minmax(320px, 1.04fr) minmax(320px, 0.9fr);
}

.concept__photo {
    margin: 0;
}

.concept__photo img {
    aspect-ratio: 536 / 468;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.concept__body {
    padding-top: 66px;
}

h2,
h3,
p {
    margin-top: 0;
}

.concept__body h2,
.section-title {
    font-size: clamp(34px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 30px;
}

.rule {
    background: #c99668;
    height: 1px;
    margin: 0 0 34px;
    width: 48px;
}

.concept__body p:not(.eyebrow):not(.rule) {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.section--tint,
.commitment,
.access {
    background: #32190b;
}

.commitment {
    color: var(--white);
    padding: 142px 0 134px;
}

.commitment__inner {
    max-width: 1212px;
}

.eyebrow--gold {
    color: #c4935e;
}

.section-title--light {
    color: var(--white);
}

.commitment__cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
}

.commitment-card img {
    aspect-ratio: 368 / 278;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.commitment-card__meta {
    align-items: baseline;
    display: flex;
    gap: 18px;
    margin-top: 24px;
}

.commitment-card__meta span {
    color: #9f7144;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1;
}

.commitment-card__meta p {
    color: #bf8d57;
    font-family: Inter, sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    margin: 0;
}

.commitment-card h3 {
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    line-height: 1.1;
    margin: 4px 0 14px 48px;
}

.commitment-card > p {
    color: #b9a394;
    font-size: 14px;
    line-height: 1.85;
    margin: 0 0 0 48px;
}

.section-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
}

.text-link {
    align-items: center;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    gap: 12px;
}

.text-link::after {
    content: "→";
    font-family: Inter, sans-serif;
}

.news-section {
    background: var(--paper);
    padding: 124px 0 146px;
}

.news-list {
    border-top: 1px solid #ddd2c5;
}

.news-list article {
    align-items: center;
    border-bottom: 1px solid #ddd2c5;
    display: grid;
    gap: 18px;
    grid-template-columns: 90px 84px 1fr;
    padding: 24px 0;
}

.news-list time {
    color: #9d8067;
    font-family: Inter, sans-serif;
    font-size: 12px;
}

.news-list span {
    border: 1px solid #d8b997;
    color: #9e6e48;
    display: inline-flex;
    font-size: 11px;
    justify-content: center;
    line-height: 1;
    padding: 8px 12px;
}

.news-list h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.menu-section {
    background: #ece6dc;
    padding: 116px 0 128px;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -28px 0 48px;
}

.menu-tabs button {
    background: transparent;
    border: 1px solid #b9aa99;
    color: #3d2818;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    height: 34px;
    letter-spacing: 0.22em;
    min-width: 92px;
    padding: 0 18px;
    text-transform: uppercase;
}

.menu-tabs button.is-active {
    background: #3d2818;
    border-color: #3d2818;
    color: var(--white);
}

.menu-cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.menu-card {
    background: var(--paper);
}

.menu-card img {
    aspect-ratio: 368 / 366;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.menu-card div {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 17px 16px 18px;
}

.menu-card p {
    color: #9a6e4f;
    font-family: Inter, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    margin: 0;
    text-transform: uppercase;
}

.menu-card span {
    color: #6f5d4d;
    font-size: 13px;
    grid-row: span 2;
}

.menu-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    line-height: 1.15;
    margin: 2px 0 8px;
}

.menu-card small {
    color: #927b66;
    font-size: 12px;
    grid-column: 1 / -1;
}

.gallery {
    background: var(--paper);
    padding: 132px 0 126px;
}

.gallery__masonry {
    display: grid;
    gap: 16px;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 58px;
}

.gallery__masonry img {
    aspect-ratio: 1 / 1;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery__masonry .gallery__wide {
    grid-column: span 2;
}

.access {
    color: var(--white);
    padding: 132px 0 138px;
}

.access__layout {
    align-items: start;
    display: grid;
    gap: clamp(48px, 6vw, 96px);
    grid-template-columns: minmax(420px, 1.28fr) minmax(280px, 0.72fr);
    margin-top: 56px;
}

.access iframe {
    border: 0;
    height: 364px;
    width: 100%;
}

.access__details {
    display: grid;
    gap: 32px;
    margin: 0;
}

.access__details div {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
}

.access__details dt {
    color: #c4935e;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.access__details dd {
    color: #e1d4c8;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.site-footer {
    background: #1d0d05;
    color: #b6a497;
    padding: 78px 0 34px;
}

.footer__grid {
    display: grid;
    gap: 72px;
    grid-template-columns: 1.2fr 1fr 0.9fr;
}

.brand--footer {
    color: var(--white);
    margin-bottom: 28px;
}

.footer__grid p {
    font-size: 13px;
    line-height: 1.9;
}

.footer__label {
    color: #c4935e;
    font-family: Inter, sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer__nav {
    display: grid;
    gap: 12px 76px;
    grid-template-columns: repeat(2, max-content);
}

.footer__nav a,
.footer__social a,
.footer__bottom a {
    font-family: Inter, sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
}

.footer__social {
    display: grid;
    gap: 14px;
}

.footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 250, 244, 0.12);
    display: flex;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 30px;
}

.footer__bottom small {
    color: #765f51;
    font-size: 11px;
}

.footer__bottom p {
    display: flex;
    gap: 28px;
    margin: 0;
}

.help {
    background: rgba(255, 255, 255, 0.86);
    border: 0;
    border-radius: 999px;
    bottom: 16px;
    box-shadow: 0 4px 18px rgba(36, 20, 10, 0.18);
    color: #231307;
    font-size: 20px;
    height: 32px;
    position: fixed;
    right: 12px;
    width: 32px;
    z-index: 30;
}

@media (max-width: 900px) {
    .site-header {
        height: 68px;
        padding: 0 22px;
    }

    .menu-toggle {
        color: currentColor;
        display: block;
        position: relative;
        z-index: 22;
    }

    .global-nav {
        align-items: stretch;
        background: rgba(250, 247, 241, 0.98);
        color: #5d4736;
        flex-direction: column;
        gap: 0;
        left: 0;
        opacity: 0;
        padding: 86px 28px 28px;
        pointer-events: none;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateY(-12px);
        transition:
            opacity 180ms ease,
            transform 180ms ease;
    }

    .site-header.is-open .global-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .global-nav a {
        border-bottom: 1px solid rgba(104, 78, 58, 0.18);
        padding: 15px 0;
    }

    .hero {
        min-height: 720px;
    }

    .hero__content {
        left: 0;
        max-width: none;
        padding: 164px 26px 0;
    }

    .hero h1 {
        font-size: clamp(54px, 16vw, 72px);
    }

    .hero__scroll {
        display: none;
    }

    .concept {
        padding-top: 112px;
    }

    .concept__grid,
    .access__layout {
        grid-template-columns: 1fr;
    }

    .concept__body {
        padding-top: 0;
    }

    .commitment__cards,
    .menu-cards,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .gallery__masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .access iframe {
        height: 320px;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 680px;
    }

    .hero__image {
        background-position: 61% center;
    }

    .eyebrow {
        font-size: 11px;
    }

    .hero__lead {
        font-size: 14px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 260px;
    }

    .button {
        width: 100%;
    }

    .section {
        padding: 84px 0;
    }

    .concept {
        padding-top: 86px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 46px;
    }

    .news-list article {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

    .gallery__masonry .gallery__wide {
        grid-column: auto;
    }

    .commitment-card h3,
    .commitment-card > p {
        margin-left: 0;
    }

    .access__layout {
        min-width: 0;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}
