:root {
    --paper: #f7f3eb;
    --paper-deep: #ede5d7;
    --ink: #241b18;
    --muted: #74665d;
    --wine: #711d2a;
    --wine-dark: #451018;
    --gold: #b88a45;
    --gold-light: #d9bc82;
    --line: rgba(67, 39, 31, 0.18);
    --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
    --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    --display: "Cormorant Garamond", Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 84% 4%, rgba(184, 138, 69, 0.16), transparent 22rem),
        var(--paper);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.26;
    background-image: repeating-linear-gradient(90deg, transparent 0, transparent 3px, rgba(73, 48, 38, 0.025) 4px);
}

a {
    color: inherit;
}

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

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: #fff;
    background: var(--wine-dark);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 4rem, 1380px);
    margin: 0 auto;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 2.45rem;
    height: 2.45rem;
    color: var(--paper);
    background: var(--wine);
    border: 1px solid var(--gold);
    place-items: center;
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
}

.brand-name {
    font-family: var(--display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.025em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.site-nav a {
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav .nav-instagram {
    color: var(--wine);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    width: min(100% - 4rem, 1380px);
    min-height: 760px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.hero-copy {
    max-width: 750px;
}

.eyebrow {
    margin: 0 0 1.5rem;
    color: var(--wine);
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.19em;
}

.hero h1,
.section-heading h2,
.instagram-cta h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.045em;
}

.hero h1 {
    font-size: clamp(2.65rem, 4.3vw, 4rem);
    line-height: 1.34;
}

.hero h1 span,
.hero h1 em {
    display: block;
    white-space: nowrap;
}

.hero h1 em {
    color: var(--wine);
    font-style: normal;
}

.hero-lead {
    max-width: 39rem;
    margin: 2.25rem 0 0;
    color: #544942;
    font-family: var(--serif);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 2.1;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    align-items: center;
    margin-top: 2.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 14.5rem;
    padding: 1.15rem 1.35rem;
    text-decoration: none;
    transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fffaf1;
    background: var(--wine);
    border: 1px solid var(--wine);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--wine-dark);
}

.text-link {
    padding: 0.35rem 0;
    border-bottom: 1px solid currentColor;
    font-size: 0.85rem;
    text-decoration: none;
}

.hero-visual {
    position: relative;
    padding: 1.35rem 1.35rem 1.35rem 0;
}

.hero-visual::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 72%;
    height: 65%;
    content: "";
    border: 1px solid var(--gold);
}

.hero-frame {
    position: relative;
    margin: 0;
    overflow: hidden;
    padding: 0.75rem 0.75rem 0;
    background: #fffdf9;
    box-shadow: 0 2rem 4.5rem rgba(59, 27, 24, 0.2);
}

.hero-frame::after {
    position: absolute;
    inset: 0;
    content: "";
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.hero-frame img {
    width: 100%;
    height: auto;
}

.hero-frame figcaption {
    padding: 0.75rem 0.35rem 0.85rem;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
    text-align: center;
}

.zoomable-image {
    display: block;
    overflow: hidden;
    outline-offset: 0.25rem;
}

.zoomable-image img {
    transition: transform 240ms ease;
}

.zoomable-image:hover img,
.zoomable-image:focus-visible img {
    transform: scale(1.012);
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(100% - 4rem, 1380px);
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.values article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    padding: 2.25rem clamp(1.4rem, 3vw, 3rem);
}

.values article + article {
    border-left: 1px solid var(--line);
}

.value-number {
    color: var(--gold);
    font-family: var(--display);
    font-size: 0.85rem;
}

.values h2 {
    margin: 0 0 0.5rem;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
}

.values p {
    margin: 0;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 0.84rem;
    line-height: 1.8;
}

.section {
    width: min(100% - 4rem, 1260px);
    margin: 0 auto;
    padding: clamp(6rem, 11vw, 10rem) 0;
}

.section-heading h2 {
    max-width: 47rem;
    font-size: clamp(2.25rem, 4.8vw, 4.6rem);
    line-height: 1.45;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    margin-top: clamp(3rem, 6vw, 6rem);
}

.story-image {
    position: relative;
    margin: 0;
    padding: 1rem;
    background: #fffdf8;
    box-shadow: 0 2rem 5rem rgba(75, 47, 37, 0.12);
}

.story-image::before {
    position: absolute;
    inset: -1.25rem 1.25rem 1.25rem -1.25rem;
    z-index: -1;
    content: "";
    border: 1px solid var(--gold-light);
}

.story-image figcaption {
    padding: 0.9rem 0.25rem 0.15rem;
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-align: center;
}

.story-copy {
    max-width: 42rem;
}

.story-copy > p,
.artist-story p {
    margin: 0 0 1.5rem;
    color: #524741;
    font-family: var(--serif);
    line-height: 2.15;
}

.story-copy .opening {
    color: var(--ink);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 500;
}

.story-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
}

.story-note-mark {
    color: var(--gold);
    font-family: var(--display);
    font-size: 3.5rem;
    line-height: 0.9;
}

.story-note p {
    margin: 0;
    color: var(--wine);
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    line-height: 1.9;
}

.artist {
    width: 100%;
    max-width: none;
    padding-right: max(2rem, calc((100vw - 1260px) / 2));
    padding-left: max(2rem, calc((100vw - 1260px) / 2));
    color: #fff8ee;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 18px 18px,
        var(--wine-dark);
}

.artist-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.artist .eyebrow {
    color: var(--gold-light);
}

.artist-role {
    margin: 0 0 1rem;
    color: #e3c998;
    font-family: var(--serif);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
}

.artist h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.artist h2 span {
    display: block;
    margin-top: 0.8rem;
    color: var(--gold-light);
    font-family: var(--display);
    font-size: 0.44em;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.artist-story p {
    color: rgba(255, 248, 238, 0.76);
}

.artist-story .artist-origin {
    color: #fff8ee;
    font-size: clamp(1.1rem, 1.65vw, 1.35rem);
}

.creations-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.55fr);
    gap: 4rem;
    align-items: end;
}

.creations-heading > p {
    margin: 0 0 0.75rem;
    color: var(--muted);
    font-family: var(--serif);
    line-height: 2;
}

.creation-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 5rem 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.creation-list li {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 1.7rem 1rem 1.7rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.creation-list li:nth-child(even) {
    padding-left: 2rem;
    border-left: 1px solid var(--line);
}

.creation-list span {
    color: var(--gold);
    font-family: var(--display);
    font-size: 0.78rem;
}

.instagram-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 9rem) max(2rem, calc((100vw - 1080px) / 2));
    color: #fff9f0;
    background: var(--wine);
    text-align: center;
}

.instagram-cta::before,
.instagram-cta::after {
    position: absolute;
    width: 21rem;
    height: 21rem;
    content: "";
    border: 1px solid rgba(217, 188, 130, 0.3);
    border-radius: 50%;
}

.instagram-cta::before {
    top: -12rem;
    left: -7rem;
}

.instagram-cta::after {
    right: -8rem;
    bottom: -13rem;
}

.instagram-cta .eyebrow {
    color: var(--gold-light);
}

.instagram-cta h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.2rem, 5.2vw, 4.8rem);
    line-height: 1.45;
}

.instagram-cta > p:not(.eyebrow) {
    position: relative;
    z-index: 1;
    margin: 1.8rem 0 0;
    color: rgba(255, 249, 240, 0.72);
    font-family: var(--serif);
}

.instagram-link {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: min(100%, 34rem);
    margin: 3rem auto 0;
    padding: 1.35rem 1.5rem;
    color: var(--wine-dark);
    background: #fff9f0;
    border: 1px solid #fff9f0;
    font-family: var(--display);
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 200ms ease, background-color 200ms ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
    color: #fff9f0;
    background: transparent;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    width: min(100% - 4rem, 1380px);
    margin: 0 auto;
    padding: 2.5rem 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.site-footer a {
    text-decoration: none;
}

.site-footer > a:last-child {
    justify-self: end;
}

.footer-brand {
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 600;
}

.site-footer p {
    margin: 0;
    text-align: center;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr 0.78fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 4.8vw, 3.6rem);
    }

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

    .values article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .story-grid {
        gap: 4rem;
    }

    .artist-panel,
    .creations-heading {
        grid-template-columns: 1fr;
    }

    .artist-intro {
        max-width: 34rem;
    }

    .creations-heading {
        gap: 2rem;
    }
}

@media (max-width: 760px) {
    .site-header,
    .hero,
    .values,
    .section,
    .site-footer {
        width: min(100% - 2.2rem, 1380px);
    }

    .site-header {
        padding: 1rem 0;
    }

    .site-nav > a:not(.nav-instagram) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 3.5rem 0 4rem;
    }

    .hero-copy {
        max-width: 42rem;
    }

    .hero h1 {
        font-size: clamp(1.65rem, 7.2vw, 3.2rem);
        line-height: 1.45;
    }

    .hero-lead {
        line-height: 1.9;
    }

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

    .button {
        width: 100%;
    }

    .text-link {
        align-self: flex-start;
    }

    .hero-visual {
        padding: 1rem 1rem 1rem 0;
    }

    .values {
        margin-top: 1rem;
    }

    .values article {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-image {
        width: calc(100% - 1rem);
        margin-left: 1rem;
    }

    .artist {
        width: 100%;
        padding-right: 1.1rem;
        padding-left: 1.1rem;
    }

    .creation-list {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .creation-list li:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer > a:last-child {
        justify-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
