:root {
    --ink: #090806;
    --ink-soft: #11100d;
    --ivory: #f2eadb;
    --paper: #d9ccb7;
    --gold: #c59a4a;
    --gold-bright: #e2bd70;
    --line: rgba(226, 189, 112, 0.26);
    --muted: rgba(242, 234, 219, 0.68);
    --display: "Cinzel", serif;
    --jp: "小塚明朝 Pro", "Kozuka Mincho Pro", "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
    --sans: var(--jp);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    position: relative;
    background: var(--ink);
    color: var(--ivory);
    font-family: var(--jp);
    font-weight: 400;
    line-height: 1.9;
    isolation: isolate;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    color: inherit;
    font: inherit;
}

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

p,
dd {
    line-break: strict;
    overflow-wrap: anywhere;
    text-wrap: pretty;
}

.no-break {
    white-space: nowrap;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    transform: translateY(-160%);
    padding: 8px 14px;
    background: var(--ivory);
    color: var(--ink);
}

.skip-link:focus {
    transform: none;
}

.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(105deg, transparent 0 48%, rgba(197, 154, 74, 0.025) 49% 51%, transparent 52%),
        radial-gradient(circle at 50% 10%, #19150e 0, var(--ink) 45%);
}

.ambient::before,
.ambient::after {
    content: "";
    position: absolute;
    width: min(64vw, 820px);
    aspect-ratio: 1;
    border: 1px solid rgba(197, 154, 74, 0.16);
    border-radius: 50%;
    filter: blur(1px);
    animation: ambient-orbit 24s linear infinite;
}

.ambient::before {
    top: calc(-22vw + var(--page-shift, 0px));
    right: -20vw;
    box-shadow: 0 0 100px rgba(197, 154, 74, 0.08), inset 0 0 100px rgba(197, 154, 74, 0.04);
}

.ambient::after {
    bottom: -30vw;
    left: -24vw;
    animation-direction: reverse;
    animation-duration: 32s;
}

@keyframes ambient-orbit {
    50% { transform: translate3d(-5vw, 7vh, 0) rotate(180deg) scale(1.08); }
    100% { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(12px, 2vw, 26px);
    min-height: 100px;
    width: 100%;
    padding: 0 3%;
    color: #f4f4f4;
    font-family: var(--display);
    background-color: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

.site-logo {
    width: clamp(66px, 6vw, 88px);
}

.site-logo img {
    width: 100%;
    height: auto;
}

.site-header-tel {
    display: inline-block;
    justify-self: end;
    color: var(--ivory);
    font-family: var(--display);
    font-size: 2.5rem;
    font-variant-numeric: lining-nums tabular-nums;
    margin: 0 35px 0 auto;
    white-space: nowrap;
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.menu-button {
    display: grid;
    grid-template-columns: auto 24px;
    gap: 12px;
    align-items: center;
    justify-self: end;
    min-width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ivory);
    font-family: var(--display);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-lines {
    position: relative;
}

.menu-lines::before,
.menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-lines::before { top: -7px; }
.menu-lines::after { top: 7px; }

.menu-button[aria-expanded="true"] .menu-lines {
    background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.menu-panel {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: grid;
    place-items: center;
    padding: 100px 24px 50px;
    background:
        linear-gradient(115deg, rgba(7, 6, 5, 0.98), rgba(25, 20, 12, 0.96)),
        url("../gallery/art-wall.jpg") center / cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.menu-panel nav {
    display: grid;
    width: min(600px, 90vw);
    padding: clamp(30px, 5vw, 50px);
    border: 1px solid var(--line);
    background: rgba(8, 7, 6, 0.94);
}

.menu-panel a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(226, 189, 112, 0.48);
    font-family: var(--jp);
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
}

.menu-panel a span {
    color: var(--gold-bright);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
}

.hero-video {
    position: relative;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    background: #000;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.hero-video::before {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 24%, rgba(226, 189, 112, 0.18), transparent 26%),
        radial-gradient(circle at 76% 18%, rgba(242, 234, 219, 0.1), transparent 22%),
        linear-gradient(118deg, transparent 0 36%, rgba(226, 189, 112, 0.18) 50%, transparent 64%);
    transform: scale(1.04);
}

.hero-video.is-video-fallback::before {
    opacity: 0.9;
    animation: hero-fallback-drift 12s ease-in-out infinite alternate;
}

.hero-video::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 8%;
    background: linear-gradient(transparent, var(--ink));
    pointer-events: none;
}

@keyframes hero-fallback-drift {
    0% {
        transform: translate3d(-2%, 0, 0) scale(1.04);
        filter: blur(0px);
    }
    50% {
        transform: translate3d(2%, -2%, 0) scale(1.08);
        filter: blur(3px);
    }
    100% {
        transform: translate3d(0, 3%, 0) scale(1.06);
        filter: blur(1px);
    }
}

.section {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
    padding: clamp(90px, 12vw, 160px) 0;
}

.section-narrow {
    width: min(860px, calc(100% - 40px));
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.heading {
    margin-bottom: 34px;
    font-family: var(--jp);
    font-size: clamp(2rem, 5vw, 4.6rem);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-wrap: balance;
}

.heading-en {
    font-family: var(--display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.lead {
    color: var(--muted);
    font-size: clamp(0.9rem, 1.35vw, 1.05rem);
}

.about-stage {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 1100px;
    padding: 0;
}

.about-inner {
    width: min(80%, 1200px);
    min-height: inherit;
    margin: 0 auto;
    padding-top: clamp(56px, 6.5vw, 94px);
}

.about-copy {
    position: relative;
    z-index: 3;
    width: min(700px, 100%);
    margin: 0 auto;
    padding-right: 0;
}

.about-copy .heading {
    margin-bottom: clamp(70px, 7vw, 110px);
    font-size: clamp(1.95rem, 2.9vw, 2.7rem);
    line-height: 1.6;
}

.about-copy [data-scroll-tone] {
    color: rgb(244 244 244 / var(--tone-opacity, 0.18));
    transition: color 0.08s linear;
}

.about-copy .eyebrow {
    margin-bottom: 8px;
    font-size: clamp(2.4rem, 4vw, 4rem);
    letter-spacing: 0;
    text-transform: none;
}

.about-text {
    width: 100%;
    margin: 0;
    font-size: clamp(1.03rem, 1.52vw, 1.22rem);
    line-height: 2.15;
    letter-spacing: 0.02em;
}

.about-text p {
    margin-bottom: 1.95em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-photo {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.about-photo::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: -10px 10px 10px -10px;
    border: 1px solid rgba(190, 169, 118, 0.75);
    pointer-events: none;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03) translateY(var(--photo-shift, 0px));
}

.about-photo-one {
    top: clamp(72px, 5.7vw, 94px);
    left: calc(50% + 23vw);
    width: min(37vw, 420px);
    aspect-ratio: 4 / 3;
}

.about-photo-two {
    top: min(43vw, 620px);
    left: calc(50% - 58vw);
    width: min(38vw, 500px);
    aspect-ratio: 4 / 3;
}

.about-photo-one::before {
    inset: -10px -10px 10px 10px;
}

.feature-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 5vw, 72px);
    width: min(1160px, calc(100% - 40px));
    min-height: 620px;
    margin: 0 auto;
}

.feature-link {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.feature-link img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2,.65,.3,1);
}

.feature-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.9));
}

.feature-link:hover img {
    transform: scale(1.055);
}

.feature-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(30px, 5vw, 68px);
}

.feature-content h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.8rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.9;
}

.feature-content p {
    margin: 16px 0 0;
    color: var(--paper);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    color: var(--gold-bright);
    font-family: var(--display);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.arrow-link::after {
    content: "";
    width: 70px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.arrow-link:hover::after {
    width: 100px;
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    border: 1px solid var(--line);
    background: rgba(12, 11, 9, 0.74);
}

.info-copy {
    padding: clamp(32px, 5vw, 64px);
}

.info-list {
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.info-list dt {
    color: var(--gold-bright);
    font-family: var(--display);
    letter-spacing: 0.08em;
}

.info-list dd {
    margin: 0;
    color: var(--paper);
}

.map {
    min-height: 520px;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 14px 22px;
    border: 1px solid var(--gold);
    background: transparent;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.button:hover {
    background: var(--gold);
    color: var(--ink);
}

.button-solid {
    background: var(--gold);
    color: var(--ink);
}

.copy-status {
    min-height: 1.8em;
    margin: 10px 0 0;
    color: var(--gold-bright);
    font-size: 0.75rem;
}

.instagram-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--line);
    background: rgba(10, 9, 7, 0.78);
}

.instagram-band p {
    margin: 0;
    color: var(--muted);
}

.instagram-band-noboru {
    grid-template-columns: minmax(0, 1fr) auto;
}

.instagram-band-updraft {
    grid-template-columns: 120px minmax(0, 1fr) auto;
}

.instagram-copy-compact {
    display: grid;
    gap: 10px;
}

.instagram-copy-compact .eyebrow {
    margin-bottom: 0;
}

.instagram-thumb {
    width: 120px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--line);
}

.instagram-cta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    width: min(420px, 100%);
    margin-top: 28px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.instagram-link-compact {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-width: min(100%, 320px);
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.instagram-cta:hover,
.instagram-link-compact:hover {
    color: var(--gold-bright);
    border-color: rgba(226, 189, 112, 0.54);
}

.instagram-logo-badge {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.instagram-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--gold-bright);
}

.instagram-icon svg {
    width: 20px;
    height: 20px;
}

.instagram-account {
    display: grid;
    gap: 2px;
}

.instagram-account small {
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.instagram-account strong {
    font-family: var(--display);
    font-size: 1.14rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.instagram-arrow {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
}

.updraft-teaser,
.recruit-teaser {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: 580px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0d0d0b;
}

.updraft-teaser img,
.recruit-teaser img {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
}

.recruit-portal {
    display: grid;
    gap: 34px;
}

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

.recruit-role-card {
    display: grid;
    gap: 14px;
    min-height: 250px;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(22, 18, 12, 0.9), rgba(10, 9, 8, 0.98)),
        radial-gradient(circle at top right, rgba(226, 189, 112, 0.14), transparent 40%);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.recruit-role-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 189, 112, 0.42);
    background:
        linear-gradient(180deg, rgba(30, 24, 16, 0.94), rgba(12, 10, 8, 1)),
        radial-gradient(circle at top right, rgba(226, 189, 112, 0.22), transparent 44%);
}

.recruit-role-card h3 {
    margin: 0;
    color: var(--ivory);
    font-family: var(--jp);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 400;
}

.recruit-role-card p {
    margin: 0;
    color: var(--muted);
}

.recruit-role-meta {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.recruit-role-arrow {
    margin-top: auto;
    color: var(--ivory);
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.teaser-copy {
    padding: clamp(40px, 7vw, 90px);
}

.teaser-copy .heading {
    margin-bottom: 22px;
}

.updraft-teaser .heading {
    font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.open-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid var(--gold-bright);
    color: var(--gold-bright);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.page-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 76svh;
    padding: 170px max(20px, calc((100vw - 1160px) / 2)) 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 7, 6, 0.86), rgba(7, 7, 6, 0.22)), linear-gradient(transparent 45%, var(--ink));
}

.page-title {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(5rem, 15vw, 11rem);
    font-weight: 300;
    line-height: 0.78;
}

.page-title .page-title-main {
    font-size: clamp(2.8rem, 6.8vw, 4.8rem);
    letter-spacing: 0.01em;
}

.page-title p:last-child {
    margin: 24px 0 0;
    color: var(--paper);
    font-family: var(--jp);
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(10px, 2vw, 24px);
}

.gallery-mosaic figure {
    grid-column: span 5;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
}

.gallery-mosaic figure:nth-child(4n + 1),
.gallery-mosaic figure:nth-child(4n + 4) {
    grid-column: span 7;
}

.gallery-mosaic figure:nth-child(3n) {
    aspect-ratio: 16 / 10;
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.gallery-mosaic figure:hover img {
    transform: scale(1.04);
}

.price-table,
.job-table {
    margin: 0;
    border-top: 1px solid var(--line);
}

.price-table div,
.job-table div {
    display: grid;
    grid-template-columns: minmax(160px, 0.35fr) 1fr;
    gap: 30px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.price-table dt,
.job-table dt {
    color: var(--gold-bright);
    font-family: var(--jp);
}

.price-table dd,
.job-table dd {
    margin: 0;
    color: var(--paper);
}

.price-table dt {
    font-size: 0.94rem;
    letter-spacing: 0.14em;
}

.price-table dd {
    font-family: var(--jp);
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    letter-spacing: 0.08em;
}

.price-table strong {
    color: var(--ivory);
    font-family: inherit;
    font-size: clamp(1.48rem, 2.7vw, 1.9rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-variant-numeric: lining-nums tabular-nums;
}

.notice {
    margin-top: 38px;
    padding: 26px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.84rem;
}

.job-intro {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(30px, 7vw, 90px);
    align-items: center;
}

.job-intro img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.recruit-role-hall {
    border-top: 1px solid var(--line);
}

.job-intro-hall {
    grid-template-columns: 1.1fr 0.9fr;
}

.job-intro-hall img {
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: contain;
    background: rgba(242, 234, 219, 0.04);
}

.job-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 40px 0 0;
}

.job-highlight {
    padding: 28px 18px;
    border: 1px solid var(--line);
    text-align: center;
}

.job-highlight strong {
    display: block;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
}

.job-highlight span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.75rem;
}

.recruit-switch {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(23, 19, 14, 0.88), rgba(10, 9, 8, 0.98)),
        radial-gradient(circle at top right, rgba(226, 189, 112, 0.12), transparent 40%);
}

.recruit-switch h2 {
    margin: 10px 0 12px;
    color: var(--ivory);
    font-family: var(--jp);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 400;
}

.recruit-switch p {
    margin: 0;
    color: var(--muted);
}

.policy h2 {
    margin: 64px 0 16px;
    color: var(--gold-bright);
    font-family: var(--jp);
    font-size: 1.35rem;
    font-weight: 400;
}

.policy p,
.policy li {
    color: var(--paper);
}

.policy ul {
    padding-left: 1.4em;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 36px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.72rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-bottom: 18px;
    color: var(--ivory);
}

.site-footer p {
    margin: 0;
}

@media (max-width: 820px) {
    .site-header {
        min-height: 100px;
    }
    .site-logo { width: 58px; }
    .site-header-tel { font-size: 1.5rem; }
    .menu-button { gap: 10px; font-size: 0.74rem; }

    .hero-video {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        min-height: 100svh;
        height: auto;
        padding-top: clamp(86px, 15svh, 122px);
        background:
            linear-gradient(rgba(4, 4, 3, 0.38), rgba(4, 4, 3, 0.6)),
            url("../gallery/entrance-wide.jpg") center / cover;
    }

    .hero-video::before {
        inset: 0;
        background:
            radial-gradient(circle at 22% 18%, rgba(226, 189, 112, 0.14), transparent 28%),
            linear-gradient(rgba(4, 4, 3, 0.34), rgba(4, 4, 3, 0.6));
        backdrop-filter: blur(6px);
        opacity: 1;
    }

    .hero-video video {
        position: sticky;
        top: clamp(86px, 15svh, 122px);
        z-index: 1;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .about-stage {
        min-height: auto;
        z-index: 3;
        margin-top: -34vw;
        padding-top: 76vw;
        background: linear-gradient(180deg, rgba(8, 7, 6, 0.12) 0, var(--ink) 28vw);
    }

    .about-inner {
        width: 86%;
        min-height: 0;
        padding-top: 0;
    }

    .about-copy {
        width: 100%;
        padding-right: 0;
    }

    .about-copy .heading {
        margin-bottom: 3rem;
        font-size: 1.48rem;
    }

    .about-copy .eyebrow {
        font-size: 3rem;
    }

    .about-text {
        width: 100%;
        font-size: 1rem;
        line-height: 2.02;
    }

    .about-photo-one {
        top: 11vw;
        left: calc(50% - 43.599vw);
        width: 86vw;
    }

    .about-photo-two {
        position: relative;
        inset: auto;
    }

    .about-photo-two {
        width: 82vw;
        margin: 7vw -8vw 0 auto;
    }

    .feature-links,
    .info-grid,
    .updraft-teaser,
    .recruit-teaser,
    .job-intro,
    .recruit-role-grid,
    .recruit-switch {
        grid-template-columns: 1fr;
    }

    .feature-links,
    .section,
    .site-footer {
        position: relative;
        z-index: 2;
    }

    .feature-links {
        gap: 48px;
        min-height: 520px;
        padding-block: 42px;
    }

    .feature-link { min-height: 520px; }
    .instagram-band,
    .instagram-band-updraft {
        grid-template-columns: 1fr;
    }
    .instagram-thumb {
        width: min(100%, 148px);
    }
    .updraft-teaser img,
    .recruit-teaser img { min-height: 380px; }
    .map, .map iframe { min-height: 420px; }
    .job-highlights { grid-template-columns: 1fr; }
    .recruit-switch .button { width: 100%; }
}

@media (max-width: 560px) {
    .site-header {
        min-height: 80px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
        padding: 0 14px;
    }
    .site-logo { width: 48px; }
    .site-header-tel {
        min-width: 0;
        margin: 0 12px 0 auto;
        font-size: 1.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .menu-button { gap: 8px; font-size: 0.68rem; }
    .menu-panel { padding-inline: 15px; }
    .menu-panel nav { width: 100%; padding: 30px 22px; }
    .menu-panel a { font-size: 20px; }
    .menu-panel a span { display: inline; font-size: 11px; }
    .section, .section-narrow { width: min(100% - 30px, 1160px); }

    .about-copy .eyebrow { font-size: 2.7rem; }
    .feature-link { min-height: 450px; }
    .feature-links { min-height: 450px; width: min(100% - 30px, 1160px); gap: 40px; }
    .instagram-link-compact { gap: 10px; min-width: 0; }
    .instagram-icon { width: 42px; height: 42px; }
    .instagram-logo-badge { width: 42px; height: 42px; }
    .instagram-account strong { font-size: 1.04rem; }

    .info-list div,
    .price-table div,
    .job-table div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .button-row { flex-direction: column; }
    .button { width: 100%; }
    .instagram-band { padding-inline: 20px; }
    .page-hero { min-height: 64svh; padding-bottom: 54px; }
    .page-title h1 { font-size: clamp(4rem, 25vw, 7rem); }
    .page-title .page-title-main { font-size: clamp(2rem, 10vw, 3rem); }

    .gallery-mosaic { grid-template-columns: 1fr; }
    .gallery-mosaic figure,
    .gallery-mosaic figure:nth-child(4n + 1),
    .gallery-mosaic figure:nth-child(4n + 4) { grid-column: auto; }
    .gallery-mosaic figure:nth-child(even) { aspect-ratio: 3 / 4; }

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-video.is-video-fallback::before { opacity: 0.42; }
}
