/* =============================================================
   Higher Truth Tattoo — Global Styles
   Palette: red · gold · black (per client brief)
   Direction: high-end, classy, simple, dark, tattoo-forward
   ============================================================= */

:root {
    /* Colour */
    --black:      #0c0b0a;
    --ink:        #131110;   /* raised dark panels */
    --ink-2:      #1b1815;
    --bone:       #f5f1ea;   /* light sections */
    --bone-2:     #ece5d9;
    --gold:       #c8a24c;
    --gold-soft:  #d9bd77;
    --gold-deep:  #a5813a;
    --red:        #d71938;
    --red-bright: #f01438;
    --accent-red:        #d71938; /* true vivid red */
    --accent-red-button: #e11633; /* sampled from the client reference */
    --accent-red-light:  #f01438; /* high-contrast true red on dark panels */
    --accent-red-deep:   #bd102d; /* depth for gradients and light sections */
    --accent-red-glow:   rgba(225,22,51,.42);

    --text-light:   #efe9df;
    --text-muted:   #a79f92;
    --text-dark:    #201b16;
    --text-dark-mut:#5f574c;

    --line-dark:  rgba(200,162,76,.18);
    --line-light: rgba(32,27,22,.12);

    /* Type */
    --f-display: "Cormorant Garamond", "Georgia", serif;
    --f-body:    "Jost", "Segoe UI", system-ui, sans-serif;

    /* Layout */
    --container: 1240px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --section-y: clamp(5rem, 10vw, 9rem);   /* generous spacing per Carlos */

    --radius: 4px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --shadow: 0 24px 60px -24px rgba(0,0,0,.7);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--black);
    color: var(--text-light);
    font-family: var(--f-body);
    font-weight: 300;
    font-size: 1.02rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
    font-family: var(--f-display);
    font-weight: 600;
    line-height: 1.06;
    margin: 0;
    letter-spacing: .01em;
}

p { margin: 0 0 1.1em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section-dark { background: var(--ink); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--gold); color: var(--black); padding: .75rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Shared type helpers ---------- */
.eyebrow {
    font-size: .74rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin: 0 0 1.1rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: inherit;
}
.section-dark .section-title,
.hero-title { color: var(--text-light); }

.lead {
    font-size: 1.18rem;
    font-weight: 300;
    color: inherit;
    opacity: .95;
}

/* Light sections use dark text */
.welcome, .features, .artist, .cta-band { background: var(--bone); color: var(--text-dark); }
.welcome .eyebrow, .features .eyebrow, .artist .eyebrow, .cta-band .eyebrow { color: var(--gold-deep); }
.welcome p, .artist p, .cta-band p { color: var(--text-dark-mut); }
.welcome .lead, .artist .lead { color: var(--text-dark); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.9rem;
    font-family: var(--f-body);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform .4s var(--ease), background .4s var(--ease),
                color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease),
                background-position .55s var(--ease);
}
.btn:focus-visible { outline: 2px solid var(--accent-red-light); outline-offset: 3px; }
.btn-arrow { transition: transform .4s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-gold {
    background: linear-gradient(135deg, var(--accent-red-button), var(--accent-red), var(--accent-red-deep));
    background-size: 160% 160%;
    background-position: 0 50%;
    color: #fff;
    border-color: rgba(255,255,255,.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 32px -14px var(--accent-red-glow);
}
.btn-gold:hover {
    transform: translateY(-3px);
    background-position: 100% 50%;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 18px 42px -14px rgba(225,22,51,.65);
}

.btn-outline { border-color: currentColor; color: inherit; }
.btn-outline:hover { background: var(--accent-red); border-color: var(--accent-red); color: #fff; transform: translateY(-3px); }

.btn-ghost { border-color: rgba(239,233,223,.4); color: var(--text-light); }
.btn-ghost:hover { border-color: var(--accent-red-light); color: var(--accent-red-light); transform: translateY(-3px); }

/* Shared red treatment for primary calls to action across every page. */
main section:not(.hero) .btn-gold {
    background:
        linear-gradient(135deg, var(--accent-red-button) 0%, var(--accent-red) 58%, var(--accent-red-deep) 100%);
    background-size: 160% 160%;
    background-position: 0 50%;
    color: #fff;
    border-color: rgba(255,255,255,.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 12px 32px -14px var(--accent-red-glow);
}
main section:not(.hero) .btn-gold:hover {
    background-position: 100% 50%;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 18px 42px -14px rgba(225,22,51,.65);
}
main section:not(.hero) .btn-outline:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}
main section:not(.hero) .btn-ghost:hover {
    border-color: var(--accent-red-light);
    color: var(--accent-red-light);
}
main section:not(.hero) .btn:focus-visible { outline-color: var(--accent-red-light); }

/* Requested homepage story buttons: premium red in their resting state. */
.page-home .welcome .btn-outline,
.page-home .artist .btn-outline {
    background:
        linear-gradient(135deg, var(--accent-red-button) 0%, var(--accent-red) 58%, var(--accent-red-deep) 100%);
    background-size: 160% 160%;
    background-position: 0 50%;
    border-color: rgba(255,255,255,.12);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 12px 32px -14px var(--accent-red-glow);
}
.page-home .welcome .btn-outline:hover,
.page-home .artist .btn-outline:hover {
    background-position: 100% 50%;
    border-color: rgba(255,255,255,.18);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 18px 42px -14px rgba(225,22,51,.65);
}

.link-arrow {
    font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); white-space: nowrap;
}
.link-arrow span { transition: transform .4s var(--ease); display: inline-block; }
.link-arrow:hover { color: var(--accent-red-light); }
.link-arrow:hover span { transform: translateX(6px); }

/* ---------- Image placeholders (no real images yet) ---------- */
.media-ph {
    position: relative;
    background:
        repeating-linear-gradient(45deg, rgba(200,162,76,.05) 0 12px, transparent 12px 24px),
        radial-gradient(120% 120% at 30% 20%, var(--ink-2), var(--black));
    border: 1px solid var(--line-dark);
    overflow: hidden;
}
.media-ph::after {
    content: attr(data-label);
    position: absolute; inset: 0;
    display: grid; place-content: center;
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    color: rgba(200,162,76,.55);
    text-align: center; padding: 1rem;
}
.welcome .media-ph, .cta-band .media-ph { border-color: rgba(32,27,22,.15); }

/* Real photos fill their slot; wrappers that hold them clip the overflow. */
.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media, .welcome-media, .artist-media, .cta-media { position: relative; overflow: hidden; }
/* When still a placeholder, fill the wrapper so it keeps the slot's shape. */
.hero-media > .media-ph,
.welcome-media > .media-ph,
.artist-media > .media-ph,
.prose-media > .media-ph,
.cta-media > .media-ph { position: absolute; inset: 0; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    padding-block: 1.4rem;
    transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
    padding-block: .8rem;
    background: rgba(12,11,10,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--line-dark);
}
.header-inner { display: flex; align-items: center; gap: 2rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--text-light); }
.site-header .brand-mark {
    color: var(--gold); display: inline-flex; flex: 0 0 40px;
    width: 40px; height: 40px; max-width: 40px; overflow: hidden;
    transition: transform .6s var(--ease);
}
.site-header .brand-mark img {
    display: block; width: 40px; height: 40px;
    max-width: 40px; object-fit: contain;
}
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-name {
    font-family: var(--f-display); font-size: 1.28rem; font-weight: 600;
    letter-spacing: .04em; line-height: 1; display: block;
}
.brand-sub {
    font-size: .58rem; letter-spacing: .34em; text-transform: uppercase;
    color: var(--gold); display: block; margin-top: .25rem;
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 2.2rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
    font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--text-light); position: relative; padding-block: .3rem;
    transition: color .3s var(--ease);
}
.main-nav a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
    background: linear-gradient(90deg, var(--accent-red-light), var(--gold-soft));
    box-shadow: 0 0 10px var(--accent-red-glow);
    transition: width .4s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--accent-red-light); }
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.header-cta {
    padding: .7rem 1.4rem;
    background:
        linear-gradient(135deg, var(--accent-red-button) 0%, var(--accent-red) 58%, var(--accent-red-deep) 100%);
    background-size: 160% 160%;
    background-position: 0 50%;
    color: #fff;
    border-color: rgba(255,255,255,.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 12px 32px -14px var(--accent-red-glow);
}
.header-cta:hover {
    background-position: 100% 50%;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 18px 42px -14px rgba(225,22,51,.65);
}
.header-cta:focus-visible { outline-color: var(--accent-red-light); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: 0;
    cursor: pointer; padding: .4rem; margin-left: auto;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--accent-red-light); transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 6rem;
    overflow: hidden;
    background: #000;
}
.hero-media { position: absolute; inset: 0; z-index: 0; background: #000; }
.hero-media .cover-img {
    object-fit: contain;
    object-position: right center;
    background: #000;
    opacity: .75;
    /* Move the tattoo toward the right while retaining a narrow black edge
       gap on desktop and tablet screens. */
    transform: translateX(clamp(72px, min(17vh, 16vw), 320px));
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(12,11,10,.95) 0%, rgba(12,11,10,.78) 42%, rgba(12,11,10,.35) 100%),
                linear-gradient(0deg, rgba(215,25,56,.18), transparent 55%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 640px; }

.hero-title {
    font-size: clamp(3rem, 9vw, 6.2rem);
    text-transform: uppercase;
    letter-spacing: .01em;
    margin: .2rem 0 1.6rem;
}
.hero-title-custom {
    max-width: 12ch;
    font-size: clamp(2.75rem, 7vw, 5.2rem);
}
.hero-sub { font-size: 1.2rem; color: var(--text-muted); max-width: 34ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-social { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.hero-social a {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted);
    transition: color .3s var(--ease);
}
.hero-social a:hover { color: var(--gold); }

.hero-kanji {
    position: absolute; right: clamp(1rem, 4vw, 3rem); top: 50%; transform: translateY(-50%);
    z-index: 2; writing-mode: vertical-rl;
    font-family: var(--f-display); font-size: clamp(1rem, 1.6vw, 1.4rem);
    letter-spacing: .35em; color: rgba(200,162,76,.5);
}
.hero-scroll {
    position: absolute; right: clamp(1rem, 4vw, 3rem); bottom: 2.4rem; z-index: 2;
    writing-mode: vertical-rl;
    font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-muted);
}
.hero-scroll::after {
    content: ""; display: block; width: 1px; height: 46px; margin: .8rem auto 0;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* =============================================================
   WELCOME
   ============================================================= */
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.welcome-copy .section-title { color: var(--text-dark); margin-bottom: 1.6rem; }
.welcome-copy .btn { margin-top: 1rem; }
.welcome-media { aspect-ratio: 1 / 1; border-radius: var(--radius); }

/* =============================================================
   PORTFOLIO CAROUSEL
   ============================================================= */
.section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.carousel { position: relative; }
.carousel-track {
    display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-inline: var(--gutter); padding-bottom: 1rem;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.work-card {
    flex: 0 0 clamp(220px, 24vw, 300px);
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: var(--radius);
    transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.work-card figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 1rem 1.2rem;
    font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
    background: linear-gradient(transparent, rgba(12,11,10,.9));
    opacity: 0; transform: translateY(8px); pointer-events: none;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.work-card:hover,
.work-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}
.work-card:hover figcaption,
.work-card:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.work-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Real portfolio photos remain full colour; hover adds motion without a colour overlay. */
.work-card.has-img {
    display: block; cursor: pointer; overflow: hidden;
    border: 1px solid var(--line-dark); background: var(--ink);
}
.work-thumb {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    filter: none;
    transform: scale(1.001);
    transition: transform .6s var(--ease);
}
.work-card.has-img:hover .work-thumb,
.work-card.has-img:focus-visible .work-thumb { transform: scale(1.06); }
.work-card figcaption { z-index: 2; }

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0; z-index: 200;
    display: none; align-items: center; justify-content: center;
    background: rgba(8,7,6,.94); backdrop-filter: blur(6px);
    padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; animation: lbfade .35s var(--ease); }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-stage { margin: 0; max-width: min(1100px, 92vw); max-height: 88vh; text-align: center; }
.lightbox-img {
    max-width: 100%; max-height: 82vh; margin-inline: auto;
    border: 1px solid var(--line-dark); box-shadow: var(--shadow);
    animation: lbzoom .4s var(--ease);
}
@keyframes lbzoom { from { transform: scale(.96); opacity: .6; } to { transform: none; opacity: 1; } }
.lightbox-caption {
    margin-top: 1rem; font-size: .74rem; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold);
}
.lightbox-caption:empty { display: none; }
.lightbox-close, .lightbox-nav {
    position: absolute; background: rgba(12,11,10,.6); border: 1px solid var(--line-dark);
    color: var(--gold); cursor: pointer; display: grid; place-content: center;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.lightbox-close { top: 1.4rem; right: 1.4rem; width: 46px; height: 46px; border-radius: 50%; font-size: 1.5rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; line-height: 1; }
.lightbox-nav.prev { left: clamp(.5rem, 2vw, 2rem); }
.lightbox-nav.next { right: clamp(.5rem, 2vw, 2rem); }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--accent-red); color: #fff; }

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(12,11,10,.7); border: 1px solid var(--line-dark); color: var(--gold);
    font-size: 1.1rem; cursor: pointer; display: grid; place-content: center;
    transition: background .3s var(--ease), transform .3s var(--ease);
}
.carousel-btn:hover { background: var(--accent-red); color: #fff; }
.carousel-btn.prev { left: clamp(.5rem, 2vw, 1.5rem); }
.carousel-btn.next { right: clamp(.5rem, 2vw, 1.5rem); }

/* =============================================================
   FEATURE GRID
   ============================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.feature-showcase { overflow: hidden; }
.feature-story {
    position: relative;
    display: grid;
    grid-template-columns: minmax(290px, 1.02fr) minmax(440px, 1.48fr) minmax(230px, .72fr);
    width: min(1560px, calc(100vw - (var(--gutter) * 2)));
    min-height: 310px;
    margin-inline: 50%;
    transform: translateX(-50%);
    color: var(--text-dark);
    background:
        radial-gradient(circle at 68% 22%, rgba(255,255,255,.72), transparent 33%),
        radial-gradient(circle at 82% 82%, rgba(165,129,58,.045), transparent 30%),
        #f3ede3;
    border: 1px solid rgba(165,129,58,.12);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 28px 70px -46px rgba(32,27,22,.55);
}
.feature-story::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        repeating-linear-gradient(0deg, rgba(113,88,48,.035) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 7px);
    mix-blend-mode: multiply;
}
.feature-story-media {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    background: #f3ede3;
}
.feature-story-media::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: -3.5rem;
    bottom: -4.5rem;
    width: 18rem;
    aspect-ratio: 1;
    background: url("../img/patterns/asanoha.svg") center / 86px auto repeat;
    opacity: .18;
    filter: sepia(1) saturate(.65);
    pointer-events: none;
}
.feature-story-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center 19%;
    filter: grayscale(1) sepia(.18) contrast(.72) brightness(1.38);
    opacity: .86;
    transform: scale(1.04);
    transform-origin: center 18%;
}
.feature-story-media::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(243,237,227,.06) 0%, rgba(243,237,227,0) 50%, #f3ede3 98%),
        linear-gradient(0deg, #f3ede3 0%, rgba(243,237,227,0) 34%);
}
.feature-story-quote {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: clamp(2rem, 3.8vw, 3.65rem) clamp(2rem, 4.2vw, 4.5rem);
    display: flex; flex-direction: column; justify-content: center;
}
.feature-story-mark {
    position: absolute;
    top: clamp(1.8rem, 3.2vw, 3.2rem);
    left: clamp(-.5rem, .6vw, .75rem);
    font-family: Georgia, serif;
    font-size: clamp(5rem, 7.2vw, 7.6rem);
    font-weight: 700;
    line-height: .72;
    color: var(--gold-deep);
}
.feature-story-quote h2 {
    position: relative;
    max-width: 720px;
    margin: 0;
    font-family: var(--f-display);
    font-size: clamp(2.05rem, 3.05vw, 3.25rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.025em;
    color: #17130f;
}
.feature-story-rule {
    width: 44px;
    height: 2px;
    margin: 1.25rem 0 1rem;
    background: linear-gradient(90deg, var(--accent-red-deep), var(--accent-red-button), var(--gold-deep));
    box-shadow: 0 0 12px rgba(167,53,63,.16);
}
.feature-story-quote p {
    max-width: 690px;
    margin: 0;
    font-size: clamp(.9rem, 1.15vw, 1.05rem);
    font-weight: 400;
    line-height: 1.55;
    color: #2d2822;
}
.feature-story-value {
    position: relative;
    z-index: 3;
    margin: clamp(2.25rem, 3.6vw, 3.6rem) 0;
    padding: 1.2rem clamp(1.25rem, 3vw, 2.5rem);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; border-left: 1px solid var(--line-light);
}
.feature-story-value cite {
    position: relative;
    margin-top: 1.35rem;
    padding-left: 1.8rem;
    font-style: normal;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .24em;
    line-height: 1.35;
    text-transform: uppercase;
    color: #17130f;
}
.feature-story-value cite::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 17px;
    height: 1px;
    background: var(--gold-deep);
}
.feature-story-value > span:last-child {
    margin-top: .5rem;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .27em;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.feature-story-seal {
    position: relative;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 2px solid var(--gold-deep);
    border-radius: 50%;
    color: var(--gold-deep);
}
.feature-story-seal::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(165,129,58,.5);
    border-radius: 50%;
}
.feature-story-seal span {
    font-family: Georgia, serif;
    font-size: 2.55rem;
    line-height: 1;
    transform: translateY(-1px);
}
.feature-grid-secondary { grid-template-columns: repeat(3, 1fr); margin-top: clamp(2.5rem, 5vw, 4rem); }
.feature { text-align: center; padding-inline: .5rem; }
.feature h3 { font-size: 1.4rem; color: var(--text-dark); margin: 1rem 0 .5rem; }
.feature p { font-size: .95rem; }
.feature-icon {
    display: inline-block; width: 46px; height: 46px;
    border: 1px solid var(--gold-deep); border-radius: 50%;
    position: relative; transition: transform .5s var(--ease), background .5s var(--ease);
}
.feature-icon::before {
    content: ""; position: absolute; inset: 0; margin: auto; width: 16px; height: 16px;
    background: var(--gold-deep); transition: background .5s var(--ease);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.feature:hover .feature-icon { transform: rotate(45deg); background: rgba(200,162,76,.1); }

/* =============================================================
   SERVICES
   ============================================================= */
.services-sec { background: var(--black); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.process-intro .section-title { margin-bottom: 1.4rem; }
.process-intro p { color: var(--text-muted); }
.services-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
.service-compact { position: relative; padding-top: 1.4rem; border-top: 1px solid rgba(240,20,56,.16); }
.service-compact::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-red-light), rgba(240,20,56,0));
    box-shadow: 0 0 10px rgba(167,53,63,.26);
}
.service-compact:last-child:nth-child(odd) { grid-column: 1 / -1; }
.step-no { font-family: var(--f-display); font-size: 2rem; color: var(--accent-red-light); display: block; margin-bottom: .5rem; }
.service-compact h3 { font-size: 1.3rem; color: var(--text-light); margin-bottom: .5rem; }
.service-compact p { font-size: .93rem; color: var(--text-muted); margin: 0; }

/* =============================================================
   ARTIST
   ============================================================= */
.artist { padding: 0; overflow: hidden; }
.artist-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.artist-media {
    height: 576px;
    min-height: 576px;
    align-self: center;
}
.artist-media .cover-img { object-position: center center; }
.artist-copy { padding: var(--section-y) clamp(1.5rem, 5vw, 5rem); align-self: center; }
.artist-copy .section-title { color: var(--text-dark); margin: 0 0 1.6rem; }
.artist-sign { font-family: var(--f-display); font-style: italic; font-size: 1.5rem; color: var(--accent-red-deep); margin: 1.6rem 0; }

/* =============================================================
   REVIEWS
   ============================================================= */
.reviews-trust { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin: 0; }
.reviews-trust strong { color: var(--gold); font-weight: 500; }
.reviews-actions {
    display: flex; flex-direction: column; align-items: flex-end;
    gap: 1rem; margin-left: auto;
}
.reviews-review-btn { padding: .75rem 1.35rem; white-space: nowrap; }

/* True carousel: the viewport always contains the row; JavaScript sizes the
   visible cards and appends clones after the final review for an infinite loop. */
.reviews-carousel {
    position: relative;
    margin-top: 3rem;
    padding-inline: 3.75rem;
}
.reviews-viewport { width: 100%; overflow: hidden; }
.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
    transform: translate3d(0,0,0);
    transition: transform .65s var(--ease);
    will-change: transform;
}
.review-card {
    flex: 0 0 100%; min-width: 0; margin: 0;
    padding: 1.8rem 1.7rem; background: var(--ink-2);
    border: 1px solid var(--line-dark); border-radius: var(--radius);
    display: flex; flex-direction: column;
    white-space: normal;
}
.review-carousel-btn {
    position: absolute; top: 50%; z-index: 3;
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-content: center;
    transform: translateY(-50%);
    border: 1px solid var(--line-dark);
    background: rgba(12,11,10,.88); color: var(--gold);
    font-size: 1.05rem; cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.review-carousel-btn.prev { left: 0; }
.review-carousel-btn.next { right: 0; }
.review-carousel-btn:hover,
.review-carousel-btn:focus-visible {
    background: linear-gradient(135deg, var(--accent-red-button), var(--accent-red-deep));
    color: #fff;
    border-color: var(--accent-red-button);
    box-shadow: 0 10px 26px -12px var(--accent-red-glow);
}
.review-carousel-btn:focus-visible { outline: 2px solid var(--accent-red-light); outline-offset: 3px; }
.review-top { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.review-avatar {
    flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-content: center;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
    color: #241a06; font-family: var(--f-display); font-weight: 700; font-size: 1.2rem;
}
.review-meta { display: flex; flex-direction: column; gap: .2rem; margin-right: auto; min-width: 0; }
.review-name {
    font-style: normal; font-size: .96rem; font-weight: 500; color: var(--text-light);
    letter-spacing: normal; text-transform: none; line-height: 1.1;
}
.review-stars { color: var(--gold); font-size: .92rem; letter-spacing: 2px; line-height: 1; }
.review-google { flex: 0 0 auto; display: inline-flex; align-items: center; opacity: .95; }
.g-logo { display: block; }
.review-text {
    font-size: .95rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 1.1rem; font-style: normal;
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 7; overflow: hidden;
}
.review-when {
    margin-top: auto; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-dark-mut); display: inline-flex; align-items: center; gap: .3rem;
}

/* =============================================================
   FINAL CTA
   ============================================================= */
.cta-band {
    position: relative; text-align: center; overflow: hidden;
    background: var(--black); color: var(--text-light);
}
.cta-band::before {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(90deg, rgba(12,11,10,.88), rgba(12,11,10,.72), rgba(12,11,10,.88)),
        linear-gradient(0deg, rgba(215,25,56,.28), transparent 70%);
}
.cta-media { position: absolute; inset: 0; z-index: 0; opacity: .72; }
.cta-band .container { position: relative; z-index: 2; }
.cta-inner { max-width: 640px; margin-inline: auto; }
.cta-inner .section-title { color: var(--text-light); margin-bottom: 1.2rem; }
.cta-band p { color: var(--text-muted); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.cta-band .btn-ghost { border-color: rgba(239,233,223,.5); color: var(--text-light); }
.cta-band .btn-ghost:hover { border-color: var(--accent-red-light); color: var(--accent-red-light); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
    position: relative;
    background: var(--black);
    border-top: 1px solid rgba(240,20,56,.16);
    padding-top: clamp(3.5rem, 7vw, 6rem);
}
.site-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: min(520px, 72vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--gold-deep), transparent);
    box-shadow: 0 0 16px rgba(225,22,51,.22);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3.5rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-blurb { color: var(--text-muted); font-size: .95rem; max-width: 32ch; }
.footer-col h3 { font-family: var(--f-body); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-red-light); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-col a, address a { color: var(--text-muted); transition: color .3s var(--ease); font-style: normal; }
.footer-col a:hover, address a:hover { color: var(--accent-red-light); }
address { color: var(--text-muted); font-size: .95rem; line-height: 1.9; }
.footer-note { color: var(--text-muted); font-size: .82rem; margin-top: 1rem; }
.footer-notice, .contact-notice {
    margin-top: 1rem; padding: .7rem .9rem; font-size: .82rem; line-height: 1.5;
    color: var(--accent-red-light); background: rgba(215,25,56,.1);
    border-left: 2px solid var(--accent-red); border-radius: 2px;
}
.hours-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; color: var(--text-muted); font-size: .92rem; }
.social-links { display: flex; gap: 1.2rem; list-style: none; margin: 1.2rem 0 0; padding: 0; }
.social-links a { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.social-links a:hover { color: var(--accent-red-light); }

.footer-bottom {
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    padding-block: 1.8rem; border-top: 1px solid rgba(240,20,56,.2);
    font-size: .78rem; letter-spacing: .1em; color: var(--text-dark-mut);
}
.footer-bottom p { margin: 0; color: var(--text-muted); }
.footer-legal { color: var(--gold) !important; opacity: .8; display: inline-flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.footer-legal a { color: inherit; }
.footer-legal a:hover { text-decoration: underline; }

/* =============================================================
   INNER PAGES
   ============================================================= */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Subtle Japanese wave texture (seigaiha), used sparingly ---- */
.jp-pattern { position: relative; }
.jp-pattern::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: url(../img/patterns/seigaiha.svg) repeat;
    background-size: 88px 44px;
    opacity: .05;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
            mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
}
.jp-pattern > * { position: relative; z-index: 1; }

/* ---- Page hero (inner banner) ---- */
.page-hero {
    position: relative; overflow: hidden;
    padding: clamp(9rem, 16vw, 12rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    background: var(--black); text-align: center;
    border-bottom: 1px solid var(--line-dark);
}
.page-hero.has-image {
    min-height: clamp(340px, 34vw, 420px);
    padding: clamp(7.5rem, 10vw, 8.5rem) 0 clamp(2.4rem, 4vw, 3.25rem);
    display: flex;
    align-items: flex-end;
    text-align: left;
}
.page-hero .page-hero-media {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 0;
    width: min(58%, 760px);
    overflow: hidden;
    opacity: .38;
    -webkit-mask-image: radial-gradient(ellipse 108% 132% at 92% 50%, #000 0%, #000 54%, rgba(0,0,0,.78) 70%, transparent 100%);
            mask-image: radial-gradient(ellipse 108% 132% at 92% 50%, #000 0%, #000 54%, rgba(0,0,0,.78) 70%, transparent 100%);
}
.page-hero .page-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, var(--black) 0%, rgba(12,11,10,.72) 16%, transparent 46%),
        linear-gradient(180deg, rgba(12,11,10,.2), transparent 22%, transparent 78%, rgba(12,11,10,.38));
}
.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: scale(1.015);
}
.page-hero.has-image::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(90deg, var(--black) 0%, rgba(12,11,10,.97) 29%, rgba(12,11,10,.56) 62%, rgba(12,11,10,.16) 100%),
        linear-gradient(0deg, rgba(12,11,10,.58), transparent 72%);
}
.page-hero.jp-pattern::before {
    z-index: 2;
    opacity: .075;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 23%, #000 77%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 23%, #000 77%, transparent 100%);
}
.page-hero .page-hero-glow {
    position: absolute; inset: -40% 30% auto 30%; height: 480px; z-index: 0;
    background: radial-gradient(50% 60% at 50% 0, rgba(215,25,56,.4), transparent 70%),
                radial-gradient(40% 50% at 50% 30%, rgba(200,162,76,.18), transparent 70%);
    filter: blur(10px);
}
.page-hero .container { position: relative; z-index: 3; }
.page-hero-title { font-size: clamp(2.6rem, 6.5vw, 4.6rem); color: var(--text-light); }
.page-hero-sub { max-width: 56ch; margin: 1.4rem auto 0; color: var(--text-muted); font-size: 1.12rem; }
.page-hero.has-image .page-hero-title { max-width: 13ch; }
.page-hero.has-image .page-hero-sub { margin-left: 0; max-width: 48ch; }

/* Portfolio needs a tighter editorial banner than the other inner pages. */
.page-portfolio .page-hero.has-image {
    min-height: clamp(285px, 26vw, 330px);
    padding: clamp(6.8rem, 8.5vw, 7.6rem) 0 clamp(1.9rem, 3vw, 2.5rem);
}

/* Client-approved hero line layout. */
.page-portfolio .page-hero.has-image .page-hero-title,
.page-about .page-hero.has-image .page-hero-title { max-width: none; }
.page-portfolio .page-hero-title {
    font-size: clamp(1.2rem, 5vw, 4rem);
    white-space: nowrap;
}
.page-portfolio .page-hero-title-line,
.page-about .page-hero-title-line {
    display: block;
    white-space: nowrap;
}
@media (min-width: 561px) {
    .page-portfolio .cta-inner { max-width: 820px; }
    .page-portfolio .portfolio-cta-title { white-space: nowrap; }
}

/* ---- Shared layout helpers ---- */
.narrow { max-width: 900px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; max-width: 62ch; }
.center .btn { margin-top: 2rem; }

/* ---- Prose (About) ---- */
.prose-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.prose-copy .section-title { color: var(--text-dark); margin-bottom: 1.6rem; }
.prose-media { aspect-ratio: 4 / 5; border-radius: var(--radius); position: relative; overflow: hidden; }
.welcome .prose-copy p, .prose-section .prose-copy p { color: var(--text-dark-mut); }
.prose-section { background: var(--bone); color: var(--text-dark); }

.prose p { margin-bottom: 1.3em; }
.section-dark .prose p { color: var(--text-muted); }
.section-dark .prose { font-size: 1.06rem; }

.artist-facts {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    margin: 3rem 0 0; padding-top: 2.2rem; border-top: 1px solid var(--line-dark);
}
.artist-facts div { display: flex; flex-direction: column; gap: .35rem; }
.artist-facts dt { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-red-light); }
.artist-facts dd { margin: 0; font-family: var(--f-display); font-size: 1.3rem; color: var(--text-light); }
.artist-facts a:hover { color: var(--gold); }

/* ---- Portfolio grid ---- */
.portfolio-section { padding-block: clamp(2.5rem, 6vw, 4rem); }
.portfolio-section:first-of-type { padding-top: clamp(3.5rem, 8vw, 6rem); }
.portfolio-group-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: var(--text-light); margin-bottom: 2rem;
    padding-bottom: 1rem; border-bottom: 1px solid var(--line-dark);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.portfolio-grid .work-card { flex: none; width: 100%; }

/* ---- FAQ accordion ---- */
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    padding: 1.5rem 0; cursor: pointer; list-style: none;
    font-family: var(--f-display); font-size: clamp(1.2rem, 2.6vw, 1.6rem); color: var(--text-light);
    transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-red-light); }
.faq-icon { position: relative; flex: 0 0 20px; width: 20px; height: 20px; }
.faq-icon::before, .faq-icon::after {
    content: ""; position: absolute; inset: 0; margin: auto; background: var(--accent-red-light);
    box-shadow: 0 0 8px rgba(167,53,63,.24);
    transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-icon::before { width: 20px; height: 2px; }
.faq-icon::after { width: 2px; height: 20px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 0 1.7rem; max-width: 72ch; }
.faq-answer p { color: var(--text-muted); margin: 0; }
.faq-item[open] summary { color: var(--accent-red-light); }

.faq-cta { margin-top: 4rem; text-align: center; padding: 3rem 2rem; background: var(--ink); border: 1px solid var(--line-dark); border-radius: var(--radius); }
.faq-cta h3 { font-family: var(--f-display); font-size: 1.9rem; color: var(--text-light); margin-bottom: .6rem; }
.faq-cta p { color: var(--text-muted); margin-bottom: 1.8rem; }
.faq-cta .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Legal (Privacy) ---- */
.legal { color: var(--text-muted); }
.legal-updated { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem; }
.legal h3 { font-family: var(--f-display); font-size: 1.5rem; color: var(--text-light); margin: 2.4rem 0 .8rem; }
.legal p { color: var(--text-muted); }
.legal strong { color: var(--text-light); font-weight: 500; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-list { margin: 0 0 1.1em; padding-left: 1.2rem; color: var(--text-muted); }
.legal-list li { margin-bottom: .5rem; }
.legal-disclaimer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); font-size: .85rem; font-style: italic; color: var(--text-dark-mut); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-form-wrap .section-title { color: var(--text-light); }
.contact-intro { color: var(--text-muted); margin: 1rem 0 2rem; max-width: 52ch; }

.contact-form { display: grid; gap: 1.4rem; }
.field { display: grid; gap: .5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-red-light); }
.field .opt { color: var(--text-muted); letter-spacing: .05em; text-transform: none; }
.field input, .field textarea {
    width: 100%; padding: .95rem 1.1rem; background: var(--ink); color: var(--text-light);
    border: 1px solid var(--line-dark); border-radius: var(--radius);
    font-family: var(--f-body); font-size: 1rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent-red-light);
    box-shadow: 0 0 0 3px rgba(240,20,56,.14), 0 10px 28px -20px var(--accent-red-glow);
}
.field textarea { resize: vertical; }
.field.has-error input, .field.has-error textarea { border-color: var(--red-bright); }
.field-error { font-size: .8rem; color: var(--accent-red-light); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-fineprint { font-size: .78rem; color: var(--text-muted); margin: .4rem 0 0; }

.form-alert { padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.6rem; font-size: .95rem; }
.form-alert.ok { background: rgba(80,140,80,.14); border: 1px solid rgba(120,180,120,.4); color: #bfe3bf; }
.form-alert.error { background: rgba(215,25,56,.14); border: 1px solid rgba(215,25,56,.5); color: var(--accent-red-light); }
.form-alert a { color: var(--gold); text-decoration: underline; }

.contact-info { background: var(--ink); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 2.2rem; }
.contact-info h3 { font-family: var(--f-display); font-size: 1.5rem; color: var(--text-light); margin: 0 0 1.2rem; }
.contact-info h3 + * { margin-top: 0; }
.contact-info .hours-list { margin-bottom: 1.5rem; }
.contact-list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; gap: .3rem; }
.ci-label { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-red-light); }
.contact-list a { color: var(--text-light); }
.contact-list a:hover { color: var(--gold); }
.contact-note { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ---- Map ---- */
.map-section { position: relative; line-height: 0; border-top: 1px solid var(--line-dark); }
.map-section iframe {
    display: block; width: 100%; height: clamp(320px, 45vh, 480px); border: 0;
    filter: grayscale(.3) contrast(1.04) brightness(.95);
}
.map-directions {
    position: absolute; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
    display: inline-flex; align-items: center; gap: .5rem; z-index: 2;
    padding: .7rem 1.2rem; background: rgba(12,11,10,.9); border: 1px solid var(--line-dark);
    border-radius: var(--radius); color: var(--gold);
    font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; line-height: 1;
    transition: background .3s var(--ease), color .3s var(--ease);
}
.map-directions:hover { background: var(--gold); color: var(--black); }
.map-directions span { transition: transform .3s var(--ease); }
.map-directions:hover span { transform: translateX(4px); }

/* =============================================================
   SCROLL-REVEAL ANIMATION (progressive enhancement)
   ============================================================= */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
/* Stagger children inside a common parent */
.hero-copy.reveal, .hero-copy .reveal { }
.js .hero-copy .reveal:nth-child(1) { transition-delay: .05s; }
.js .hero-copy .reveal:nth-child(2) { transition-delay: .15s; }
.js .hero-copy .reveal:nth-child(3) { transition-delay: .28s; }
.js .hero-copy .reveal:nth-child(4) { transition-delay: .40s; }
.js .hero-copy .reveal:nth-child(5) { transition-delay: .52s; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 960px) {
    .main-nav, .header-cta { display: none; }
    .nav-toggle { display: flex; }

    .site-header.nav-open { background: rgba(12,11,10,.97); }
    .main-nav.is-open {
        display: block; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(12,11,10,.98); backdrop-filter: blur(10px);
        border-top: 1px solid var(--line-dark); padding: 1.5rem var(--gutter) 2rem;
    }
    .main-nav.is-open ul { flex-direction: column; gap: 1.4rem; }

    .welcome-grid, .process-grid, .artist-grid,
    .prose-grid, .contact-grid { grid-template-columns: 1fr; }
    .artist-media {
        height: 378px;
        min-height: 378px;
    }
    .artist-copy { padding: var(--section-y) var(--gutter); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
    .feature-story {
        grid-template-columns: .82fr 1.18fr;
        width: 100%;
        margin-inline: 0;
        transform: none;
    }
    .feature-story-value {
        grid-column: 1 / -1;
        min-height: 170px;
        margin: 0;
        border-left: 0;
        border-top: 1px solid var(--line-light);
    }
    .review-slide { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .artist-facts { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
    .prose-media { order: -1; }
    .contact-info { margin-top: .5rem; }
    .page-hero .page-hero-media { width: 68%; }
}

@media (max-width: 560px) {
    .hero-media .cover-img {
        transform: none;
        object-fit: cover;
        object-position: 58% center;
    }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-story { grid-template-columns: 1fr; }
    .feature-story-media { min-height: 280px; }
    .feature-story-media::after {
        background: linear-gradient(0deg, #f3ede3 0%, rgba(243,237,227,0) 58%);
    }
    .feature-story-quote { padding: 3.7rem 1.5rem 2.5rem; }
    .feature-story-mark { top: 2.1rem; left: 1rem; font-size: 5rem; }
    .feature-story-quote h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
    .feature-story-value { grid-column: auto; min-height: 190px; }
    .services-compact { grid-template-columns: 1fr; }
    .service-compact:last-child:nth-child(odd) { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-kanji { display: none; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .field-row { grid-template-columns: 1fr; }
    .artist-facts { grid-template-columns: 1fr; }
    .faq-cta .cta-actions .btn { width: 100%; justify-content: center; }
    .reviews-actions { align-items: flex-start; margin-left: 0; }
    .reviews-carousel { padding-inline: 2.9rem; }
    .review-carousel-btn { width: 38px; height: 38px; }
    .review-card { padding: 1.5rem 1.35rem; }
    .page-hero.has-image {
        min-height: 360px;
        padding: 7.25rem 0 2.5rem;
        text-align: center;
    }
    .page-hero .page-hero-media {
        width: 88%;
        opacity: .30;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 100%);
                mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 100%);
    }
    .page-hero.has-image::after {
        background:
            linear-gradient(0deg, rgba(12,11,10,.94), rgba(12,11,10,.58) 75%, rgba(12,11,10,.7)),
            linear-gradient(90deg, rgba(12,11,10,.9), rgba(12,11,10,.34), rgba(12,11,10,.14));
    }
    .page-hero.has-image .page-hero-title { max-width: none; }
    .page-hero.has-image .page-hero-sub { margin-inline: auto; }
    .page-portfolio .page-hero.has-image {
        min-height: 315px;
        padding: 6.5rem 0 2rem;
    }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; }
    .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .reviews-track { transition: none !important; }
}
