:root {
  --paper: #f5efe5;
  --paper-light: #fbf7f0;
  --ink: #241815;
  --muted: #786a60;
  --red: #681015;
  --red-dark: #3e080c;
  --gold: #b79351;
  --gold-soft: #d8bd83;
  --line: rgba(88, 52, 37, .2);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --max: 1240px;
  --ease-atelier: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper-light); font-family: var(--sans); line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; opacity: .18; pointer-events: none; z-index: 20; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E"); }
body::after { content: ""; position: fixed; inset: -18%; z-index: 19; pointer-events: none; opacity: .75; background: radial-gradient(circle at var(--cursor-x, 50vw) var(--cursor-y, 42vh), rgba(183,147,81,.16), rgba(183,147,81,.05) 18rem, transparent 34rem); mix-blend-mode: multiply; transition: opacity .45s ease; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.25; }
button { font: inherit; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: white; padding: 10px 18px; }
.skip-link:focus { top: 16px; }

.scroll-progress { position: fixed; top: 0; left: 0; z-index: 120; width: calc(var(--scroll-progress, 0) * 100%); height: 2px; background: linear-gradient(90deg, var(--red), var(--gold)); transform-origin: left center; pointer-events: none; }
.page-curtain { position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; background: var(--red-dark); color: #dfc07f; transform: translateY(0); transition: transform .95s var(--ease-atelier); pointer-events: none; }
.page-curtain__mark { display: grid; place-items: center; width: 92px; height: 92px; border: 1px solid rgba(223,192,127,.36); border-radius: 50%; font-family: var(--serif); font-size: 30px; letter-spacing: .18em; animation: curtainPulse 1.6s ease-in-out infinite alternate; }
body.is-loaded .page-curtain { transform: translateY(-101%); }
body.is-leaving .page-curtain { transform: translateY(0); }
@keyframes curtainPulse { from { opacity: .58; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }

.site-header { position: absolute; top: 0; left: 0; width: 100%; height: 92px; padding: 0 clamp(24px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; z-index: 50; color: var(--ink); transition: height .45s var(--ease-atelier), background .45s var(--ease-atelier), box-shadow .45s var(--ease-atelier), color .3s ease; }
.site-header.scrolled,
body[data-page="craft"] .site-header.inner-header.scrolled,
body[data-page="heritage"] .site-header.inner-header.scrolled { position: fixed; height: 70px; color: var(--ink); background: rgba(251,247,240,.96); box-shadow: 0 1px 0 var(--line), 0 18px 60px rgba(62,8,12,.08); backdrop-filter: blur(18px); }
.site-header.scrolled .brand,
.site-header.scrolled .site-nav a:not(.nav-contact) { color: var(--ink); text-shadow: none; }
.site-header.scrolled .nav-contact { color: var(--paper-light); }
.brand { display: flex; gap: 11px; align-items: center; z-index: 51; }
.brand img { width: 43px; height: 43px; object-fit: cover; border-radius: 5px; transition: filter .7s var(--ease-atelier); }
.brand:hover img { filter: drop-shadow(0 10px 18px rgba(104,16,21,.16)); }
.brand span { display: flex; flex-direction: column; }
.brand b { font-family: var(--serif); font-size: 22px; letter-spacing: .28em; line-height: 1.1; transition: letter-spacing .45s var(--ease-atelier); }
.brand:hover b { letter-spacing: .34em; }
.brand small { font-family: Georgia, serif; font-size: 8px; letter-spacing: .16em; margin-top: 4px; }
.site-nav { display: flex; gap: clamp(20px, 2.8vw, 44px); align-items: center; font-size: 14px; letter-spacing: .1em; }
.site-nav a { position: relative; padding: 10px 0; transition: color .25s ease, transform .35s var(--ease-atelier); }
.site-nav a:hover { transform: translateY(-2px); }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: var(--red); transition: right .45s var(--ease-atelier); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav .nav-contact { color: var(--paper-light); background: var(--red); padding: 10px 22px; overflow: hidden; }
.site-nav .nav-contact:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 18px 42px rgba(62,8,12,.16); }
.site-nav .nav-contact::after { display: none; }
.menu-toggle { display: none; width: 42px; height: 42px; background: none; border: 0; padding: 8px; z-index: 51; }
.menu-toggle span { display: block; width: 100%; height: 1px; background: currentColor; margin: 8px 0; transition: .3s; }

.hero { min-height: 100svh; position: relative; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 18% 44%, rgba(216,189,131,.18), transparent 28rem), var(--paper); }
.hero::before { content: "LONGESSE"; position: absolute; left: -1.5vw; bottom: 5vh; z-index: 1; color: rgba(104,16,21,.045); font: 400 clamp(86px, 15vw, 220px)/.78 Georgia, serif; letter-spacing: -.08em; pointer-events: none; transform: translate3d(calc(var(--hero-drift-x, 0px) * -.25), calc(var(--hero-drift-y, 0px) * -.25), 0); }
.hero::after { content: ""; position: absolute; inset: 12% 5% 14% 38%; z-index: 1; border: 1px solid rgba(183,147,81,.16); border-radius: 999px 999px 16px 16px; opacity: .8; pointer-events: none; transform: rotate(-7deg); }
.hero-media {
  position: absolute;
  inset: 0 0 0 35%;
  z-index: 0;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  --light-x: 50%;
  --light-y: 50%;
  --gem-x: 64%;
  --gem-y: 45%;
  --beam-angle: 0rad;
  --beam-length: 0px;
  --light-opacity: 0;
  --light-scale: .85;
  --spectrum-angle: 0deg;
}
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(115deg, rgba(62,8,12,.36), transparent 35%, rgba(183,147,81,.18)); mix-blend-mode: multiply; pointer-events: none; }
.hero-media img { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; animation: heroZoom 16s ease-out both; will-change: transform; }
.hero-light-system { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: var(--light-opacity); mix-blend-mode: screen; transition: opacity .22s ease; }
.hero-light-source { position: absolute; left: var(--light-x); top: var(--light-y); width: clamp(70px, 10vw, 150px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,238,.82) 0 8%, rgba(255,218,139,.36) 20%, rgba(255,194,129,.12) 44%, transparent 68%); filter: blur(3px); transform: translate(-50%, -50%) scale(var(--light-scale)); opacity: .9; }
.hero-light-beam { position: absolute; left: var(--light-x); top: var(--light-y); width: var(--beam-length); height: clamp(88px, 11vw, 172px); background: linear-gradient(90deg, rgba(255,252,220,.66), rgba(255,220,145,.28) 44%, rgba(255,112,166,.12) 72%, transparent 100%); clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 56%); filter: blur(13px); transform: translateY(-50%) rotate(var(--beam-angle)); transform-origin: 0 50%; opacity: .84; }
.hero-light-beam::after { content: ""; position: absolute; inset: 44% 0 44% 0; background: linear-gradient(90deg, rgba(255,255,238,.9), rgba(255,226,154,.45), transparent); filter: blur(2px); }
.hero-gem-glow { position: absolute; left: var(--gem-x); top: var(--gem-y); width: clamp(230px, 23vw, 420px); aspect-ratio: 1; border-radius: 46%; background: radial-gradient(circle, rgba(255,252,200,.74) 0 6%, rgba(255,199,74,.45) 14%, rgba(210,28,72,.34) 34%, transparent 66%), conic-gradient(from var(--spectrum-angle), transparent 0 12%, rgba(112,255,224,.24), rgba(255,240,128,.42), rgba(255,95,151,.34), rgba(126,131,255,.2), transparent 82%); filter: blur(15px) saturate(1.4); transform: translate(-50%, -50%) scale(var(--light-scale)); opacity: .9; mix-blend-mode: color-dodge; animation: gemBreath 2.8s ease-in-out infinite alternate; }
.hero-gem-spectrum { position: absolute; left: var(--gem-x); top: var(--gem-y); width: clamp(118px, 12vw, 220px); aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from var(--spectrum-angle), rgba(255,255,255,.92), rgba(255,220,108,.42), rgba(251,68,126,.38), rgba(80,214,255,.24), rgba(255,255,255,.8)); filter: blur(7px) saturate(1.7); transform: translate(-50%, -50%) rotate(var(--spectrum-angle)) scale(var(--light-scale)); opacity: .58; mix-blend-mode: screen; animation: prismTurn 4.8s linear infinite; }
.hero-gem-spectrum::before, .hero-gem-spectrum::after { content: ""; position: absolute; left: 50%; top: 50%; width: 140%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,230,.85), transparent); transform: translate(-50%, -50%) rotate(28deg); filter: blur(.6px); }
.hero-gem-spectrum::after { transform: translate(-50%, -50%) rotate(-34deg); opacity: .58; }
@keyframes gemBreath { from { opacity: .62; filter: blur(17px) saturate(1.25); } to { opacity: .95; filter: blur(12px) saturate(1.65); } }
@keyframes prismTurn { from { filter: blur(8px) saturate(1.45) hue-rotate(-8deg); } to { filter: blur(6px) saturate(1.85) hue-rotate(18deg); } }
@keyframes heroZoom { from { transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.055); } to { transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.01); } }
.hero-constellation { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; opacity: .78; pointer-events: none; mix-blend-mode: multiply; }
.hero-wash { position: absolute; inset: 0; z-index: 3; background: linear-gradient(90deg, var(--paper-light) 0 33%, rgba(251,247,240,.96) 43%, rgba(251,247,240,.32) 63%, rgba(251,247,240,.04) 78%, transparent); pointer-events: none; }
.hero-copy { position: absolute; left: clamp(24px, 8vw, 130px); top: 61%; transform: translateY(-48%); width: min(610px, 50vw); z-index: 6; }
.eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .18em; font-family: Georgia, var(--sans), serif; margin-bottom: 25px; }
.hero-eyebrow { position: relative; display: inline-flex; align-items: center; gap: 13px; color: var(--red); }
.hero-eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(183,147,81,.13); animation: goldBlink 1.8s ease-in-out infinite alternate; }
@keyframes goldBlink { from { transform: scale(.7); opacity: .62; } to { transform: scale(1); opacity: 1; } }
.hero h1 { color: var(--red-dark); font-size: clamp(52px, 6vw, 94px); letter-spacing: .06em; margin-bottom: 30px; text-wrap: balance; }
.hero-title { font-size: clamp(62px, 7.2vw, 112px) !important; letter-spacing: .02em !important; line-height: .96; margin-bottom: 28px !important; }
.hero-title-line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero-title-line > span { display: block; transform: translateY(112%) rotate(2.5deg); transform-origin: left bottom; transition: transform 1.15s var(--ease-atelier); }
.hero-copy.in-view .hero-title-line > span { transform: translateY(0) rotate(0.001deg); }
.hero-title-line:nth-child(2) > span { transition-delay: .12s; }
.hero-lead { color: #5d4c43; font-family: var(--serif); font-size: clamp(16px, 1.35vw, 21px); letter-spacing: .07em; }
.hero-actions { display: flex; gap: 34px; align-items: center; margin-top: 34px; }
.button { position: relative; isolation: isolate; display: inline-flex; min-height: 48px; padding: 0 27px; align-items: center; justify-content: center; border: 1px solid; font-size: 13px; letter-spacing: .14em; transition: transform .45s var(--ease-atelier), color .25s ease, background .25s ease, border-color .25s ease, box-shadow .45s var(--ease-atelier); overflow: hidden; }
.button::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,.36), transparent 42%); opacity: 0; transition: opacity .35s ease; }
.button::after { content: ""; position: absolute; inset: auto 18px 9px; height: 1px; background: currentColor; opacity: .28; transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-atelier); }
.button:hover::before { opacity: 1; }
.button:hover::after { transform: scaleX(1); }
.button-primary { background: var(--red); border-color: var(--red); color: white; }
.button-primary:hover { background: var(--red-dark); transform: translateY(-4px); box-shadow: 0 22px 46px rgba(62,8,12,.18); }
.button-light { color: white; border-color: rgba(255,255,255,.6); }
.button-light:hover { background: white; color: var(--red-dark); transform: translateY(-4px); }
.text-link { position: relative; display: inline-flex; align-items: center; gap: 14px; font-size: 13px; letter-spacing: .08em; border-bottom: 1px solid rgba(183,147,81,.65); padding-bottom: 5px; transition: color .25s ease, gap .45s var(--ease-atelier); }
.text-link::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-atelier); }
.text-link span { font-size: 18px; transition: transform .45s var(--ease-atelier); }
.text-link:hover { gap: 18px; }
.text-link:hover::after { transform: scaleX(1); transform-origin: left; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: white; }
.hero-marquee { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; overflow: hidden; color: rgba(104,16,21,.14); pointer-events: none; mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent); }
.hero-marquee div { display: flex; width: max-content; align-items: center; gap: 24px; white-space: nowrap; animation: heroMarquee 48s linear infinite; }
.hero-marquee span { font: 400 clamp(9px, 1.25vw, 19px)/1 Georgia, serif; letter-spacing: -.04em; }
.hero-marquee i { color: rgba(183,147,81,.38); font: normal 400 clamp(6px, .9vw, 13px)/1 var(--serif); letter-spacing: .06em; }
@keyframes heroMarquee { to { transform: translateX(-50%); } }

.hero-seal { position: absolute; right: 6%; bottom: 14%; z-index: 5; border: 1px solid rgba(104,16,21,.28); color: rgba(104,16,21,.35); font-family: var(--serif); font-size: 18px; letter-spacing: .2em; padding: 14px 8px 14px 12px; line-height: 1.3; }
.scroll-cue { position: absolute; bottom: 0; left: clamp(24px, 8vw, 130px); z-index: 6; height: 90px; display: flex; align-items: center; gap: 16px; font-size: 10px; letter-spacing: .14em; color: var(--muted); }
.scroll-cue span { display: block; width: 1px; height: 54px; background: linear-gradient(180deg, transparent, var(--gold), transparent); animation: scrollThread 1.8s ease-in-out infinite; }
@keyframes scrollThread { 0%,100% { transform: scaleY(.45); transform-origin: top; opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }

.section { padding: clamp(72px, 8vw, 120px) clamp(24px, 7vw, 110px); max-width: 1460px; margin: 0 auto; }
.section-label { display: flex; align-items: center; gap: 16px; color: var(--red); font-size: 12px; letter-spacing: .14em; margin-bottom: clamp(50px, 6vw, 85px); }
.section-label::after { content: ""; width: 70px; height: 1px; background: var(--gold); transform: scaleX(.35); transform-origin: left; transition: transform .9s var(--ease-atelier); }
.reveal.in-view.section-label::after, .in-view .section-label::after { transform: scaleX(1); }
.section-label span { color: var(--gold); }
.purpose-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; }
.purpose h2 { font-size: clamp(38px, 4.5vw, 68px); color: var(--red-dark); letter-spacing: .05em; }
.prose { color: #5d4f46; font-size: 16px; }
.prose p { margin-bottom: 26px; }
.prose .text-link { margin-top: 12px; color: var(--red); }

.feature-image { position: relative; width: min(1440px, 100%); margin: 0 auto; height: min(68vw, 780px); min-height: 560px; overflow: hidden; }
.feature-image > img { width: 100%; height: 106%; object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.035); transition: transform 1.2s var(--ease-atelier); will-change: transform; }
.feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,8,7,.08), rgba(23,8,7,.1) 45%, rgba(23,8,7,.72)); }
.feature-card { position: absolute; z-index: 2; right: 8%; top: 50%; transform: translateY(-50%); color: white; width: min(390px, 36%); }
.feature-card h2 { font-size: clamp(40px, 4.3vw, 66px); margin-bottom: 24px; }
.feature-card p:not(.eyebrow) { color: rgba(255,255,255,.8); margin-bottom: 38px; }

.pillar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); }
.pillar { position: relative; padding: 50px 32px 20px; min-height: 300px; border-right: 1px solid var(--line); transition: background .45s ease, transform .55s var(--ease-atelier), box-shadow .55s var(--ease-atelier); overflow: hidden; }
.pillar::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(183,147,81,.12), transparent 42%); opacity: 0; transition: opacity .45s ease; }
.pillar:hover { background: rgba(255,255,255,.34); transform: translateY(-7px); box-shadow: 0 26px 70px rgba(62,8,12,.08); }
.pillar:hover::before { opacity: 1; }
.pillar:first-child { padding-left: 0; }
.pillar:last-child { border: 0; }
.pillar > b { position: relative; display: block; font-family: var(--serif); color: rgba(183,147,81,.32); font-size: 76px; font-weight: 400; line-height: 1; transition: transform .65s var(--ease-atelier), color .45s ease; }
.pillar:hover > b { color: rgba(183,147,81,.54); transform: translateY(-5px) scale(1.04); }
.pillar h3 { color: var(--red); font-size: 25px; margin: 18px 0; }
.pillar p { color: var(--muted); font-size: 14px; }

.giving-band { max-width: 1440px; margin: 0 auto; background: var(--red-dark); color: white; padding: clamp(70px, 9vw, 130px) clamp(24px, 8vw, 120px); display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: center; position: relative; overflow: hidden; }
.giving-band::before { content: "珑"; position: absolute; right: -3%; bottom: -38%; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 500px; line-height: 1; transform: translate3d(0, calc(var(--parallax-y, 0) * -1px), 0); }
.giving-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 26% 18%, rgba(216,189,131,.16), transparent 35%), linear-gradient(120deg, transparent, rgba(255,255,255,.04)); pointer-events: none; }
.giving-number { display: flex; color: #d8bd83; justify-content: center; align-items: flex-start; }
.giving-number strong { font-family: Georgia, serif; font-size: clamp(140px, 20vw, 290px); line-height: .8; font-weight: 400; }
.giving-number span { font-family: Georgia, serif; font-size: 56px; margin-top: -12px; }
.giving-copy { position: relative; z-index: 1; }
.giving-copy h2 { font-size: clamp(38px, 4vw, 60px); margin-bottom: 26px; }
.giving-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); margin-bottom: 34px; max-width: 520px; }
.closing-quote { text-align: center; }
.closing-quote img { width: 78px; margin: 0 auto 45px; }
.closing-quote blockquote { font-family: var(--serif); font-size: clamp(27px, 3vw, 43px); line-height: 1.7; color: var(--red-dark); margin: 0 0 55px; }

.site-footer { position: relative; background: #211815; color: rgba(255,255,255,.75); padding: 60px clamp(24px, 7vw, 110px) 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 45px 8vw; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(183,147,81,.12), transparent 30rem); pointer-events: none; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 5px; }
.footer-brand p { margin: 0; display: flex; flex-direction: column; }
.footer-brand b { font-family: var(--serif); font-size: 18px; color: white; letter-spacing: .12em; }
.footer-brand span { font-family: Georgia, serif; font-size: 9px; letter-spacing: .14em; }
.footer-links { display: flex; justify-content: flex-end; gap: clamp(20px, 3vw, 45px); align-items: center; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-slogan { color: #c9a963; font-family: var(--serif); letter-spacing: .08em; }
.copyright { text-align: right; font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.4); }

/* Shared inner pages */
.inner-header { position: absolute; color: var(--ink); }
body[data-page="craft"] .inner-header,
body[data-page="heritage"] .inner-header,
body[data-page="pursuits"] .inner-header { color: white; }
.inner-header.scrolled { color: var(--ink); }
.page-hero { height: 88svh; min-height: 650px; position: relative; color: white; overflow: hidden; }
.page-hero > img { width: 100%; height: 106%; object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.035); will-change: transform; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,10,8,.74), rgba(26,10,8,.15) 65%); }
.page-hero-copy { position: absolute; z-index: 2; left: clamp(24px, 9vw, 140px); top: 52%; transform: translateY(-45%); max-width: 700px; }
.page-hero-copy h1 { font-size: clamp(52px, 6vw, 86px); letter-spacing: .06em; margin-bottom: 30px; }
.page-hero-copy > p:last-child { color: rgba(255,255,255,.75); font-size: 17px; max-width: 550px; }
.dark-page + * { position: relative; }
.dark-page ~ .site-header { color: white; }
.intro-statement { text-align: center; }
.intro-statement .section-label { justify-content: center; }
.intro-statement h2 { color: var(--red-dark); font-size: clamp(34px, 4vw, 58px); }
.craft-list { max-width: 1440px; margin: auto; }
.craft-row { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); min-height: 560px; background: var(--paper); transition: background .55s ease; }
.craft-row:hover { background: #fbf4e8; }
.craft-row.reverse { grid-template-columns: minmax(360px, .96fr) minmax(0, 1.04fr); }
.craft-row.reverse .craft-image { order: 2; }
.craft-image { overflow: hidden; clip-path: inset(0 round 0); }
.craft-image img { width: 100%; height: 106%; object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.035); transition: transform 1.2s var(--ease-atelier), filter .6s ease; will-change: transform; }
.craft-row:hover .craft-image img { filter: saturate(1.08) contrast(1.03); }
.craft-copy { align-self: center; padding: clamp(40px, 5.4vw, 82px); }
.craft-copy > span { color: var(--gold); font-size: 11px; letter-spacing: .16em; }
.craft-copy h2 { color: var(--red); font-size: clamp(38px, 4vw, 58px); margin: 22px 0 28px; }
.craft-copy p { color: var(--muted); }
.craft-copy .text-link { margin-top: 24px; color: var(--red); }
.detail-line { border-top: 1px solid var(--line); margin-top: 35px; padding-top: 20px; color: var(--gold) !important; font-size: 12px; letter-spacing: .12em; }
.dark-quote { max-width: 1440px; margin: 0 auto; color: white; background: var(--red-dark); padding: 90px 6%; display: flex; align-items: center; justify-content: center; gap: 5vw; font-family: var(--serif); }
.dark-quote p { font-size: clamp(25px, 3.2vw, 45px); margin: 0; }
.dark-quote i { color: var(--gold); font-style: normal; }
.next-page { max-width: 1440px; margin: auto; padding: 65px clamp(24px, 7vw, 110px); border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.next-page p { color: var(--muted); margin: 0; font-size: 12px; letter-spacing: .12em; }
.next-page a { color: var(--red); font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); }
.next-page a span { margin-left: 18px; }

/* Gemcraft */
.gemcraft-hero { height: 72svh; min-height: 620px; }
.gemcraft-hero > img { object-position: 56% center; }
.enamelcraft-hero > img { object-position: 48% center; }
.gemcraft-hero::after { background: linear-gradient(90deg, rgba(24,7,7,.78), rgba(24,7,7,.2) 58%, rgba(183,147,81,.12)); }
.gemcraft-hero .page-hero-copy,
.enamelcraft-hero .page-hero-copy,
.velvetcraft-hero .page-hero-copy { top: 49%; }
.gemcraft-hero .page-hero-copy h1,
.enamelcraft-hero .page-hero-copy h1,
.velvetcraft-hero .page-hero-copy h1 { font-size: clamp(40px, 4.5vw, 64px); margin-bottom: 24px; line-height: 1.3; }
.gemcraft-reading { max-width: 1240px; margin: 0 auto; padding-top: clamp(54px, 6vw, 86px); padding-bottom: clamp(42px, 4.5vw, 68px); padding-left: clamp(28px, 5.5vw, 76px); padding-right: clamp(28px, 5.5vw, 76px); }
.gemcraft-reading-grid, .gemcraft-case-layout { display: grid; grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr); gap: clamp(34px, 5vw, 72px); align-items: center; }
.gemcraft-case-layout { grid-template-columns: minmax(360px, .86fr) minmax(0, .94fr); }
.gemcraft-case-layout .gemcraft-inline-image { order: -1; }
.gemcraft-reading-main { color: var(--muted); font-size: 16px; line-height: 1.86; max-width: 680px; }
.gemcraft-inline-image { margin: 0; overflow: hidden; background: var(--paper); width: 100%; }
.gemcraft-inline-image img { width: 100%; height: auto; object-fit: cover; transition: transform 1.2s var(--ease-atelier), filter .6s ease; aspect-ratio: auto; }
.gemcraft-reading-main p { margin-bottom: 24px; }
.gemcraft-inline-image { margin: 0; overflow: hidden; background: var(--paper); }
.gemcraft-inline-image img { width: 100%; aspect-ratio: 1.08; max-height: 520px; height: auto; object-fit: cover; transition: transform 1.2s var(--ease-atelier), filter .6s ease; }
.gemcraft-inline-image:hover img { transform: scale(1.035); filter: saturate(1.06) contrast(1.03); }
.gemcraft-case-compact { padding-top: clamp(38px, 4vw, 60px); }
.gemcraft-case-heading { max-width: 760px; }
.gemcraft-case-heading h2 { color: var(--red); font-size: clamp(30px, 3.4vw, 48px); margin-bottom: clamp(32px, 4vw, 52px); }
.enamelcraft-pursuit, .velvetcraft-pursuit { max-width: 960px; margin: 0 auto; padding-top: clamp(28px, 3.5vw, 48px); padding-left: clamp(28px, 6vw, 80px); padding-right: clamp(28px, 6vw, 80px); }
.enamelcraft-pursuit .gemcraft-reading-main, .velvetcraft-pursuit .gemcraft-reading-main { max-width: 720px; text-align: left; }
.gemcraft-tags { max-width: 1440px; margin: auto; padding: 42px clamp(24px, 7vw, 110px); color: var(--red); background: var(--paper); display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; font-family: var(--serif); font-size: clamp(18px, 2vw, 28px); }
.gemcraft-tags i { color: var(--gold); font-style: normal; }
.gemcraft-tags-compact { max-width: 720px; margin: 0 auto; padding-top: 34px; padding-bottom: 58px; padding-left: 0; padding-right: 0; border-top: 1px solid var(--line); background: var(--paper-light); font-size: clamp(17px, 1.7vw, 23px); }

/* Works */
.page-title { padding-top: 200px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 10vw; }
.page-title h1 { color: var(--red-dark); font-size: clamp(58px, 7vw, 100px); }
.page-title > p { color: var(--muted); font-size: 17px; max-width: 500px; }
.work-gallery { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 1180px; margin: auto; padding: 0 clamp(24px, 5vw, 68px) clamp(32px, 5vw, 70px); background: transparent; }
.work-card { position: relative; display: grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr); align-items: stretch; min-height: 280px; background: var(--paper-light); overflow: hidden; border: 1px solid rgba(88, 52, 37, .12); transition: transform .65s var(--ease-atelier), box-shadow .65s var(--ease-atelier), background .45s ease; }
.work-card:hover { transform: translateY(-8px); box-shadow: 0 28px 75px rgba(62,8,12,.1); background: #fffaf2; z-index: 2; }
.work-card.large { grid-column: span 1; }
.work-card img { width: 100%; height: 100%; min-height: 280px; max-height: 360px; aspect-ratio: 1.2; object-fit: cover; transition: transform 1.2s var(--ease-atelier), filter .6s ease; }
.work-card:hover img { transform: scale(1.035); filter: saturate(1.08) contrast(1.04); }
.work-card.large img { aspect-ratio: 1.2; }
.work-card > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 4.2vw, 54px); }
.work-card span { color: var(--gold); font-size: 11px; letter-spacing: .15em; }
.work-card h2 { color: var(--red); font-size: 36px; margin: 15px 0; }
.work-card p { color: var(--muted); max-width: 550px; }
.story-block { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(44px, 7vw, 90px); align-items: start; }
.story-block h2 { color: var(--red-dark); font-size: clamp(34px, 4vw, 55px); }
.story-block > .prose { grid-column: 2; margin-top: clamp(18px, 2vw, 30px) !important; text-align: left !important; }
.story-notes p { border-bottom: 1px solid var(--line); padding: 0 0 28px; margin-bottom: 28px; color: var(--muted); }
.story-notes b { color: var(--red); display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 19px; }
.project-cta { max-width: 1440px; height: 690px; margin: auto; position: relative; overflow: hidden; color: white; }
.project-cta img { width: 100%; height: 106%; object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.035); will-change: transform; }
.project-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 25%, rgba(35,7,8,.76)); }
.project-cta > div { position: absolute; z-index: 2; right: 8%; top: 50%; transform: translateY(-50%); width: min(530px, 45%); }
.project-cta h2 { font-size: clamp(38px, 4vw, 58px); margin-bottom: 38px; }

/* Pursuits */
.pursuit-hero::after { background: linear-gradient(90deg, rgba(35,10,8,.78), rgba(35,10,8,.2) 56%, rgba(183,147,81,.12)); }
.pursuit-hero .button { margin-top: 20px; }
.pursuit-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding-top: 70px; padding-bottom: 70px; }
.pursuit-anchor { position: relative; min-height: 180px; padding: 30px 28px; background: rgba(255,255,255,.38); border-top: 1px solid var(--line); transition: transform .55s var(--ease-atelier), background .45s ease, box-shadow .55s var(--ease-atelier); overflow: hidden; }
.pursuit-anchor::before { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, rgba(104,16,21,.08), transparent 48%), radial-gradient(circle at 82% 18%, rgba(183,147,81,.18), transparent 32%); opacity: 0; transition: opacity .45s ease; }
.pursuit-anchor:hover { background: #fffaf2; transform: translateY(-7px); box-shadow: 0 24px 62px rgba(62,8,12,.08); }
.pursuit-anchor:hover::before { opacity: 1; }
.pursuit-anchor span, .pursuit-anchor b, .pursuit-anchor small { position: relative; display: block; }
.pursuit-anchor span { color: var(--gold); font: 14px Georgia, serif; letter-spacing: .12em; }
.pursuit-anchor b { color: var(--red); font-family: var(--serif); font-size: 31px; font-weight: 400; margin: 38px 0 8px; }
.pursuit-anchor small { color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.pursuit-story-list { max-width: 1440px; margin: 0 auto; }
.pursuit-story { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); min-height: 600px; background: var(--paper); }
.pursuit-story.reverse { grid-template-columns: minmax(380px, .98fr) minmax(0, 1.02fr); }
.pursuit-story.reverse .pursuit-visual { order: 2; }
.pursuit-visual { overflow: hidden; background: #eadfcf; }
.pursuit-visual img { width: 100%; height: 108%; object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.035); transition: transform 1.2s var(--ease-atelier), filter .6s ease; will-change: transform; }
.pursuit-story:hover .pursuit-visual img { filter: saturate(1.06) contrast(1.03); }
.pursuit-copy { align-self: center; padding: clamp(40px, 5.6vw, 82px); }
.pursuit-copy > span { color: var(--gold); font-size: 11px; letter-spacing: .16em; }
.pursuit-copy h2 { color: var(--red); font-size: clamp(34px, 3.7vw, 54px); margin: 22px 0 28px; }
.pursuit-copy p { color: var(--muted); font-size: 16px; }
.pursuit-links { display: flex; flex-wrap: wrap; gap: 20px 32px; margin-top: 34px; }

/* Work Detail Series - 作品详情紧凑布局 */
.work-detail-list { max-width: 1220px; margin: 0 auto; padding: clamp(16px, 2vw, 30px) clamp(24px, 5vw, 70px); }
.work-detail-item { display: grid; grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr); gap: clamp(34px, 5vw, 62px); align-items: center; min-height: 430px; padding: clamp(36px, 5vw, 68px) 0; border-bottom: 1px solid rgba(120, 80, 60, .12); }
.work-detail-item:last-child { border-bottom: none; }
.work-detail-item.reverse,
.work-detail-item:nth-child(even) { grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr); }
.work-detail-item.reverse .work-detail-visual,
.work-detail-item:nth-child(even) .work-detail-visual { order: 2; }
.work-detail-visual { display: flex; align-items: center; justify-content: center; }
.work-detail-visual img { width: 100%; height: auto; max-height: 430px; object-fit: contain; border-radius: 4px; box-shadow: 0 12px 40px rgba(60, 30, 10, .12); }
.work-detail-copy { align-self: center; }
.work-detail-copy > span { color: var(--gold); font-size: 11px; letter-spacing: .16em; }
.work-detail-copy h2 { color: var(--red); font-size: clamp(28px, 3vw, 42px); margin: 18px 0 24px; line-height: 1.35; }
.work-detail-copy p { color: var(--muted); font-size: 15.5px; line-height: 1.9; margin: 0 0 14px; }
.work-detail-copy p:last-of-type { margin-bottom: 0; }
.work-detail-links { display: flex; flex-wrap: wrap; gap: 20px 32px; margin-top: 28px; }

.related-pages { max-width: 1440px; margin: 0 auto; background: var(--red-dark); color: white; padding: clamp(80px, 9vw, 125px) clamp(24px, 7vw, 110px); }
.related-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: end; margin-bottom: 58px; }
.related-heading h2 { font-size: clamp(32px, 4vw, 56px); margin: 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(216,189,131,.5); }
.related-card { position: relative; min-height: 245px; padding: 36px 32px; border-right: 1px solid rgba(255,255,255,.14); transition: background .45s ease, transform .55s var(--ease-atelier); overflow: hidden; }
.related-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 28% 18%, rgba(216,189,131,.2), transparent 38%); opacity: 0; transition: opacity .45s ease; }
.related-card:hover { background: rgba(255,255,255,.05); transform: translateY(-7px); }
.related-card:hover::before { opacity: 1; }
.related-card:last-child { border-right: 0; }
.related-card span, .related-card b, .related-card p { position: relative; }
.related-card span { color: #d8bd83; font: 11px Georgia, serif; letter-spacing: .16em; }
.related-card b { display: block; color: white; font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 45px 0 16px; }
.related-card p { color: rgba(255,255,255,.62); font-size: 14px; margin: 0; }

/* Heritage */
.heritage-hero { min-height: 100svh; background: var(--red-dark); color: white; display: grid; grid-template-columns: 55% 45%; padding-top: 92px; }
.heritage-visual { overflow: hidden; }
.heritage-visual img { width: 100%; height: 106%; object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.035); will-change: transform; }
.heritage-intro { align-self: center; padding: clamp(35px, 6vw, 90px); }
.ten { display: flex; color: #d8bd83; align-items: flex-start; margin: 30px 0 50px; }
.ten strong { font: 400 clamp(125px, 17vw, 240px)/.7 Georgia, serif; }
.ten span { font: 400 42px/1 Georgia, serif; margin-top: -15px; }
.heritage-intro h1 { font-size: clamp(32px, 3.5vw, 52px); color: white; }
.promise { display: grid; grid-template-columns: 1.3fr .7fr; gap: 9vw; align-items: end; }
.promise h2 { color: var(--red-dark); font-size: clamp(35px, 4vw, 57px); }
.promise > p { color: var(--muted); }
.support-list { padding-top: 0; display: grid; grid-template-columns: repeat(5, 1fr); }
.support-list article { position: relative; padding: 35px 25px; border-top: 1px solid var(--gold); border-right: 1px solid var(--line); min-height: 260px; transition: transform .55s var(--ease-atelier), background .45s ease; overflow: hidden; }
.support-list article::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(183,147,81,.14), transparent 55%); opacity: 0; transition: opacity .45s ease; }
.support-list article:hover { transform: translateY(-7px); background: rgba(255,255,255,.32); }
.support-list article:hover::before { opacity: 1; }
.support-list article:last-child { border-right: 0; }
.support-list span { color: var(--gold); font: 24px Georgia, serif; }
.support-list h3 { color: var(--red); font-size: 21px; margin: 42px 0 14px; }
.support-list p { color: var(--muted); font-size: 13px; }
.heritage-call { max-width: 1440px; margin: auto; text-align: center; color: white; background: var(--red-dark); padding: clamp(85px, 10vw, 150px) 25px; }
.heritage-call > p { color: #d8bd83; letter-spacing: .2em; }
.heritage-call h2 { font-size: clamp(35px, 4.5vw, 63px); line-height: 1.6; margin: 30px 0 48px; }

/* About */
.about-hero { min-height: 90svh; padding: 150px clamp(24px, 9vw, 140px) 90px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 11vw; align-items: center; background: var(--paper); }
.about-mark img { width: min(390px, 100%); margin: auto; mix-blend-mode: multiply; }
.about-copy h1 { color: var(--red-dark); font-size: clamp(46px, 5.2vw, 78px); }
.about-copy > p:last-child { color: var(--muted); font-size: 17px; max-width: 620px; }
.manifesto-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10vw; }
.manifesto-grid h2 { color: var(--red-dark); font-size: clamp(45px, 5vw, 70px); }
.values { max-width: 1440px; margin: auto; background: var(--red-dark); color: white; padding: clamp(80px, 9vw, 130px) clamp(24px, 7vw, 110px); }
.values-heading { text-align: center; margin-bottom: 70px; }
.values-heading h2 { font-size: clamp(32px, 4vw, 56px); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(216,189,131,.5); }
.value-grid article { position: relative; padding: 45px 35px; border-right: 1px solid rgba(255,255,255,.15); transition: background .45s ease, transform .55s var(--ease-atelier); overflow: hidden; }
.value-grid article::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(216,189,131,.18), transparent 42%); opacity: 0; transition: opacity .45s ease; }
.value-grid article:hover { background: rgba(255,255,255,.045); transform: translateY(-7px); }
.value-grid article:hover::before { opacity: 1; }
.value-grid article:last-child { border: 0; }
.value-grid span { color: #d8bd83; font-size: 28px; font-family: var(--serif); }
.value-grid h3 { font-size: 26px; margin: 28px 0 18px; }
.value-grid p { color: rgba(255,255,255,.62); font-size: 14px; }
.final-belief { text-align: center; }
.final-belief img { width: 90px; margin: 0 auto 45px; }
.final-belief p { color: var(--red-dark); font-family: var(--serif); font-size: clamp(25px, 3vw, 41px); line-height: 1.85; }

/* Contact */
.contact-hero { min-height: 100svh; display: grid; grid-template-columns: 55% 45%; background: var(--paper); padding-top: 92px; }
.contact-image { overflow: hidden; }
.contact-image img { width: 100%; height: 106%; object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.035); will-change: transform; }
.contact-panel { align-self: center; padding: clamp(40px, 7vw, 100px); }
.contact-panel h1 { color: var(--red-dark); font-size: clamp(42px, 4.6vw, 67px); }
.contact-panel > p:not(.eyebrow) { color: var(--muted); margin: 30px 0 50px; }
.contact-options { border-top: 1px solid var(--line); }
.contact-options > * { display: flex; flex-direction: column; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-options span { color: var(--muted); font-size: 11px; letter-spacing: .15em; }
.contact-options b { color: var(--red); font: 400 19px Georgia, var(--serif); margin-top: 5px; }
.inquiry { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.inquiry h2 { color: var(--red-dark); font-size: clamp(35px, 4vw, 56px); }
.inquiry-types p { padding: 22px 0; border-bottom: 1px solid var(--line); color: var(--red); font-family: var(--serif); font-size: 19px; }
.inquiry-types span { color: var(--gold); font: 13px Georgia, serif; margin-right: 22px; }
.contact-note { text-align: center; padding: 90px 25px 120px; background: var(--paper); }
.contact-note img { width: 75px; margin: 0 auto 35px; }
.contact-note h2 { color: var(--red-dark); font-size: clamp(36px, 4vw, 55px); }
.contact-note p { color: var(--muted); margin: 20px 0 38px; }
.not-found { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; }
.not-found img { width: 90px; margin-bottom: 30px; }
.not-found p { color: var(--gold); letter-spacing: .18em; font-size: 11px; }
.not-found h1 { color: var(--red); font-size: clamp(36px, 5vw, 64px); margin-bottom: 40px; }

.atelier-cursor { position: fixed; left: 0; top: 0; z-index: 1000; width: 18px; height: 18px; border: 1px solid rgba(104,16,21,.42); border-radius: 999px; pointer-events: none; transform: translate3d(-50%, -50%, 0); transition: width .35s var(--ease-atelier), height .35s var(--ease-atelier), border-color .35s ease, background .35s ease; mix-blend-mode: normal; }
.atelier-cursor__bubble { position: absolute; left: 18px; top: -14px; min-width: 48px; padding: 6px 10px; border-radius: 5px; background: var(--red-dark); color: #f7d889; text-shadow: 0 1px 8px rgba(0,0,0,.35); font-size: 11px; letter-spacing: .12em; white-space: nowrap; opacity: 0; clip-path: inset(0 100% 0 0 round 5px); transform: translateY(4px) scale(.96); transition: clip-path .45s var(--ease-atelier), opacity .2s ease, transform .45s var(--ease-atelier); }
body.cursor-active .atelier-cursor { width: 34px; height: 34px; border-color: rgba(183,147,81,.7); background: rgba(183,147,81,.1); }
body.cursor-active .atelier-cursor__bubble { opacity: 1; clip-path: inset(0 0 0 0 round 5px); transform: translateY(0) scale(1); }

.reveal { opacity: 0; transform: translateY(38px); filter: blur(8px); clip-path: inset(0 0 14% 0); transition: opacity .95s var(--ease-soft), transform .95s var(--ease-atelier), filter .95s var(--ease-soft), clip-path .95s var(--ease-atelier); transition-delay: var(--reveal-delay, 0ms); will-change: opacity, transform, filter, clip-path; }
.reveal.in-view { opacity: 1; transform: none; filter: blur(0); clip-path: inset(0 0 0 0); }
.hero-copy.reveal { transform: translateY(calc(-48% + 38px)); }
.hero-copy.reveal.in-view { transform: translateY(-48%); }
.reveal.in-view h1, .reveal.in-view h2, .reveal.in-view h3 { animation: titleSettle .95s var(--ease-atelier) both; }
@keyframes titleSettle { from { letter-spacing: .14em; } to { letter-spacing: inherit; } }

@media (hover: none), (pointer: coarse) {
  .atelier-cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after, .scroll-progress, .page-curtain, .atelier-cursor, .hero-constellation, .hero-light-system { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; clip-path: none; transition: none; }
  .hero-media img, .about-mark img, .scroll-cue span, .hero-marquee div, .hero-gem-glow, .hero-gem-spectrum { animation: none; }
  .hero-title-line > span { transform: none; transition: none; }
  .feature-image > img, .page-hero > img, .craft-image img, .project-cta img, .heritage-visual img, .contact-image img { transform: none !important; }
}

@media (max-width: 900px) {
  .site-header { height: 72px; padding: 0 22px; }
  .brand img { width: 38px; height: 38px; }
  .brand b { font-size: 19px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 0; background: var(--paper-light); color: var(--ink); flex-direction: column; justify-content: center; gap: 20px; font-size: 18px; transform: translateX(100%); transition: .35s ease; }
  .menu-open { overflow: hidden; }
  .menu-open .site-nav { transform: none; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav .nav-contact { margin-top: 15px; padding: 10px 30px; }
  .hero { min-height: 820px; }
  .hero::before { bottom: 13vh; font-size: clamp(70px, 20vw, 150px); }
  .hero::after { display: none; }
  .hero-constellation { opacity: .36; }
  .hero-media { inset: 0; }
  .hero-media { clip-path: none; }
  .hero-media img { object-position: 62% center; }
  .hero-wash { background: linear-gradient(180deg, rgba(251,247,240,.95) 4%, rgba(251,247,240,.75) 48%, rgba(251,247,240,.25) 75%); }
  .hero-copy { top: 30%; left: 24px; width: calc(100% - 48px); transform: none; }
  .hero-copy.reveal, .hero-copy.reveal.in-view { transform: none; }
  .hero h1, .hero-title { font-size: clamp(54px, 15vw, 80px) !important; }
  .hero-marquee { bottom: 0; }
  .hero-marquee span { font-size: clamp(9px, 3vw, 17px); }
  .hero-marquee i { font-size: clamp(6px, 2vw, 12px); }
  .hero-seal { display: none; }
  .scroll-cue { left: 24px; }
  .purpose-grid, .giving-band, .page-title, .story-block, .promise, .manifesto-grid, .inquiry, .gemcraft-reading-grid, .gemcraft-case-layout { grid-template-columns: 1fr; gap: 45px; }
  .gemcraft-case-layout .gemcraft-inline-image { order: 0; }
  .story-block > .prose { grid-column: auto; max-width: 100% !important; margin-top: 0 !important; }
  .feature-card { width: calc(100% - 50px); right: 25px; bottom: 35px; top: auto; transform: none; }
  .feature-image::after { background: linear-gradient(180deg, transparent, rgba(23,8,7,.85)); }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: 0; }
  .giving-number { justify-content: flex-start; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .copyright { text-align: left; }
  .craft-row, .craft-row.reverse, .pursuit-story, .pursuit-story.reverse { grid-template-columns: 1fr; min-height: auto; }
  .craft-row.reverse .craft-image { order: 0; }
  .pursuit-story.reverse .pursuit-visual { order: 0; }
  .craft-image, .pursuit-visual { height: 480px; min-height: 0; }
  .work-detail-item, .work-detail-item.reverse, .work-detail-item:nth-child(even) { grid-template-columns: 1fr; gap: 36px; }
  .work-detail-item.reverse .work-detail-visual, .work-detail-item:nth-child(even) .work-detail-visual { order: 0; }
  .work-detail-item { padding: 40px 0; min-height: auto; }
  .pursuit-nav, .related-grid { grid-template-columns: 1fr 1fr; }
  .related-card:nth-child(2) { border-right: 0; }
  .related-heading { grid-template-columns: 1fr; gap: 25px; }
  .work-gallery { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .work-card { grid-template-columns: 1fr; min-height: auto; }
  .work-card img { height: auto; min-height: 0; max-height: none; aspect-ratio: 1.35; }
  .work-card.large { grid-column: span 1; }
  .work-card.large img { aspect-ratio: 1.35; }
  .project-cta > div { width: calc(100% - 50px); left: 25px; right: auto; }
  .project-cta::after { background: rgba(35,7,8,.56); }
  .heritage-hero, .contact-hero { grid-template-columns: 1fr; padding-top: 72px; }
  .heritage-visual, .contact-image { height: 52vh; min-height: 400px; }
  .support-list { grid-template-columns: 1fr 1fr; }
  .support-list article:nth-child(even) { border-right: 0; }
  .about-hero { grid-template-columns: 1fr; padding-top: 130px; }
  .about-mark img { width: 230px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
}

@media (max-width: 560px) {
  .section { padding-top: 80px; padding-bottom: 80px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-lead br { display: none; }
  .pillar-grid, .support-list { grid-template-columns: 1fr; }
  .pillar, .pillar:first-child { padding: 35px 0; border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .support-list article { border-right: 0; min-height: auto; }
  .feature-image { min-height: 650px; }
  .feature-image > img { object-position: 38% center; }
  .giving-number strong { font-size: 145px; }
  .page-hero { min-height: 700px; }
  .page-hero-copy { top: 45%; }
  .dark-quote { flex-wrap: wrap; gap: 18px 28px; }
  .dark-quote p { font-size: 25px; }
  .craft-image, .pursuit-visual { height: 350px; }
  .gemcraft-hero { height: 620px; min-height: 620px; }
  .gemcraft-inline-image img { aspect-ratio: 1.38; }
  .gemcraft-tags { justify-content: flex-start; }
  .gemcraft-reading { padding-left: 24px; padding-right: 24px; }
  .gemcraft-reading-main { max-width: 100%; }
  .gemcraft-case-heading { max-width: 100%; }
  .enamelcraft-pursuit, .velvetcraft-pursuit { padding-left: 24px; padding-right: 24px; }
  .enamelcraft-pursuit .gemcraft-reading-main, .velvetcraft-pursuit .gemcraft-reading-main { max-width: 100%; text-align: left; }
  .gemcraft-tags-compact { max-width: none; padding-left: 24px; padding-right: 24px; justify-content: flex-start; }
  .gemcraft-reading-grid, .gemcraft-case-layout { gap: 36px; }
  .work-gallery { gap: 14px; }
  .work-card > div { padding: 28px 24px 34px; }
  .work-card h2 { font-size: 30px; }
  .work-detail-list { padding-left: 24px; padding-right: 24px; }
  .work-detail-visual img { max-height: 360px; }
  .pursuit-nav, .related-grid { grid-template-columns: 1fr; }
  .pursuit-anchor, .related-card { min-height: auto; }
  .related-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .related-card:last-child { border-bottom: 0; }
  .page-title { padding-top: 145px; }
  .project-cta { height: 620px; }
  .heritage-intro, .contact-panel { padding: 65px 24px; }
  .about-hero { gap: 50px; }
  .next-page { padding-top: 45px; padding-bottom: 45px; }
  .next-page a { font-size: 23px; }
}

/* Qiushi series: every work remains a single image-and-copy row at all sizes. */
.qiushi-series-page .work-detail-list {
  width: min(1320px, 100%);
  padding-inline: clamp(14px, 4vw, 70px);
}
.qiushi-series-page .work-detail-item,
.qiushi-series-page .work-detail-item:nth-child(even) {
  display: grid;
  grid-template-columns: minmax(180px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(24px, 4.5vw, 62px);
  min-height: 0;
  padding-block: clamp(34px, 5vw, 66px);
}
.qiushi-series-page .work-detail-item:nth-child(even) .work-detail-visual {
  order: 0;
}
.qiushi-series-page .work-detail-visual {
  min-width: 0;
}
.qiushi-series-page .work-detail-visual img {
  width: 100%;
  max-height: 500px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f2e5d4;
}
.qiushi-series-page .work-detail-item:first-child .work-detail-visual img {
  aspect-ratio: 4 / 3;
}
.qiushi-series-page .work-detail-copy {
  min-width: 0;
}

@media (max-width: 700px) {
  .qiushi-series-page .work-detail-list {
    padding-inline: 12px;
  }
  .qiushi-series-page .work-detail-item,
  .qiushi-series-page .work-detail-item:nth-child(even) {
    grid-template-columns: minmax(112px, 36%) minmax(0, 64%);
    gap: clamp(12px, 3.5vw, 20px);
    padding-block: 28px;
  }
  .qiushi-series-page .work-detail-visual {
    align-self: start;
    position: sticky;
    top: 84px;
  }
  .qiushi-series-page .work-detail-visual img {
    max-height: 310px;
    box-shadow: 0 8px 24px rgba(60,30,10,.1);
  }
  .qiushi-series-page .work-detail-copy > span {
    display: block;
    font-size: 8px;
    line-height: 1.55;
    letter-spacing: .1em;
  }
  .qiushi-series-page .work-detail-copy h2 {
    font-size: clamp(19px, 5.2vw, 25px);
    line-height: 1.38;
    margin: 10px 0 14px;
  }
  .qiushi-series-page .work-detail-copy p {
    font-size: clamp(12px, 3.25vw, 14px);
    line-height: 1.72;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .qiushi-series-page .work-detail-item,
  .qiushi-series-page .work-detail-item:nth-child(even) {
    grid-template-columns: minmax(104px, 34%) minmax(0, 66%);
    gap: 11px;
  }
  .qiushi-series-page .work-detail-copy h2 {
    font-size: 18px;
  }
  .qiushi-series-page .work-detail-copy p {
    font-size: 12px;
    line-height: 1.68;
  }
}

/* Editorial layout: denser reading rhythm and stronger page connections */
.page-guide {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px clamp(24px, 7vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  background: rgba(245,239,229,.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-guide > span { flex: 0 0 auto; color: var(--gold); font-size: 10px; letter-spacing: .18em; }
.page-guide > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 26px; }
.page-guide a { position: relative; font-size: 13px; letter-spacing: .08em; transition: color .25s ease; }
.page-guide a:hover, .page-guide a[aria-current="page"] { color: var(--red); }
.page-guide a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--red); }

@media (min-width: 901px) {
  .section { padding-top: clamp(58px, 6vw, 86px); padding-bottom: clamp(58px, 6vw, 86px); }
  .section-label { margin-bottom: clamp(34px, 4vw, 54px); }

  .page-hero { height: min(72svh, 720px); min-height: 540px; }
  .page-hero-copy { top: 55%; max-width: 620px; }
  .page-hero-copy h1 { font-size: clamp(46px, 5vw, 72px); margin-bottom: 22px; }
  .heritage-hero, .contact-hero { min-height: 720px; height: 78svh; }
  .about-hero { min-height: 680px; height: 76svh; padding-top: 120px; padding-bottom: 65px; }

  .feature-image { height: min(56vw, 660px); min-height: 500px; }
  .project-cta { height: min(55vw, 620px); }

  .craft-list { padding: 26px clamp(24px, 4vw, 58px) 58px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .craft-row, .craft-row.reverse { display: grid; grid-template-columns: 1fr; min-height: 0; border: 1px solid rgba(88,52,37,.12); }
  .craft-row.reverse .craft-image { order: 0; }
  .craft-image { height: clamp(300px, 29vw, 430px); }
  .craft-copy { padding: clamp(32px, 3.6vw, 54px); }
  .craft-copy h2 { font-size: clamp(34px, 3vw, 46px); margin: 15px 0 20px; }
  .craft-copy .text-link { margin-top: 14px; }
  .detail-line { margin-top: 24px; }
  .craft-row:last-child { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); }
  .craft-row:last-child .craft-image { height: 100%; min-height: 430px; }

  .work-gallery { max-width: 1260px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .work-card, .work-card.large { grid-template-columns: 1fr; min-height: 0; }
  .work-card img, .work-card.large img { min-height: 0; max-height: none; width: 100%; aspect-ratio: 1.42; }
  .work-card > div { min-height: 230px; padding: clamp(26px, 3vw, 42px); justify-content: flex-start; }
  .work-card h2 { font-size: clamp(28px, 2.5vw, 36px); }
  .work-card.large { grid-column: 1 / -1; grid-template-columns: 1.08fr .92fr; }
  .work-card.large img { height: 100%; aspect-ratio: auto; }
  .work-card.large > div { justify-content: center; }

  .pursuit-nav { padding-top: 44px; padding-bottom: 44px; }
  .pursuit-anchor { min-height: 145px; padding: 23px 25px; }
  .pursuit-anchor b { margin-top: 24px; }
  .pursuit-story-list { padding: 0 clamp(24px, 4vw, 58px) 64px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .pursuit-story, .pursuit-story.reverse { grid-template-columns: 1fr; min-height: 0; border: 1px solid rgba(88,52,37,.12); }
  .pursuit-story.reverse .pursuit-visual { order: 0; }
  .pursuit-visual { height: clamp(300px, 29vw, 430px); }
  .pursuit-copy { padding: clamp(32px, 3.6vw, 54px); align-self: start; }
  .pursuit-copy h2 { font-size: clamp(30px, 3vw, 43px); margin: 16px 0 20px; }

  .work-detail-list { max-width: 1320px; padding-top: 20px; padding-bottom: 40px; }
  .work-detail-item { min-height: 360px; padding: clamp(28px, 3.5vw, 48px) 0; gap: clamp(32px, 4.5vw, 60px); }
  .work-detail-visual img { max-height: 360px; }
  .work-detail-copy p { line-height: 1.78; }

  .related-pages { padding-top: clamp(58px, 6vw, 86px); padding-bottom: clamp(58px, 6vw, 86px); }
  .related-heading { margin-bottom: 38px; }
  .related-card { min-height: 190px; padding: 28px; }
  .related-card b { margin: 28px 0 12px; }
  .heritage-call { padding-top: clamp(66px, 7vw, 96px); padding-bottom: clamp(66px, 7vw, 96px); }
  .contact-note { padding-top: 65px; padding-bottom: 82px; }
  .next-page { padding-top: 44px; padding-bottom: 44px; }
}

@media (max-width: 900px) {
  .page-guide { align-items: flex-start; flex-direction: column; gap: 12px; }
  .page-guide > div { justify-content: flex-start; gap: 10px 22px; }
  .craft-copy, .pursuit-copy { padding-top: 38px; padding-bottom: 46px; }
}

@media (max-width: 560px) {
  .page-hero { min-height: 590px; height: 76svh; }
  .page-hero-copy { top: 48%; }
  .craft-image, .pursuit-visual { height: 300px; }
  .heritage-visual, .contact-image { min-height: 320px; height: 42vh; }
  .page-guide { padding-top: 18px; padding-bottom: 18px; }
  .page-guide > div { display: grid; width: 100%; grid-template-columns: repeat(4, auto); justify-content: space-between; }
}

/* Works index: preserve one horizontal image-and-copy row at every viewport */
.work-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  width: 100%;
  max-width: 1240px;
  padding-left: clamp(12px, 4vw, 68px);
  padding-right: clamp(12px, 4vw, 68px);
}
.work-card,
.work-card.large,
.work-card.work-card-series {
  grid-column: auto;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  min-height: clamp(150px, 25vw, 320px);
  width: 100%;
}
.work-card img,
.work-card.large img,
.work-card.work-card-series img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
}
.work-card > div,
.work-card.large > div,
.work-card.work-card-series > div {
  min-width: 0;
  min-height: 0;
  padding: clamp(14px, 3.2vw, 50px);
  justify-content: center;
}
.work-card span { font-size: clamp(8px, .78vw, 11px); }
.work-card h2 {
  font-size: clamp(20px, 2.5vw, 36px);
  margin: clamp(8px, 1.2vw, 15px) 0;
  overflow-wrap: anywhere;
}
.work-card p {
  font-size: clamp(11px, 1.08vw, 15px);
  line-height: 1.72;
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .work-gallery { padding-left: 10px; padding-right: 10px; gap: 9px; }
  .work-card,
  .work-card.large,
  .work-card.work-card-series { grid-template-columns: minmax(0, 42%) minmax(0, 58%); }
  .work-card > div,
  .work-card.large > div,
  .work-card.work-card-series > div { padding: 13px 12px; }
  .work-card span { letter-spacing: .08em; line-height: 1.45; }
  .work-card p { line-height: 1.55; }
}

/* Craft index: keep every craft as one horizontal image-and-copy row */
.craft-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  width: 100%;
  max-width: 1240px;
  padding: clamp(18px, 3vw, 34px) clamp(12px, 4vw, 58px) clamp(36px, 5vw, 64px);
}
.craft-row,
.craft-row.reverse,
.craft-row:last-child {
  grid-column: auto;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  min-height: clamp(180px, 29vw, 390px);
  width: 100%;
  border: 1px solid rgba(88,52,37,.12);
}
.craft-row.reverse .craft-image,
.craft-row:last-child .craft-image { order: 0; }
.craft-image,
.craft-row:last-child .craft-image {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.craft-copy {
  min-width: 0;
  padding: clamp(16px, 4vw, 56px);
}
.craft-copy > span { font-size: clamp(8px, .78vw, 11px); }
.craft-copy h2 {
  margin: clamp(8px, 1.4vw, 18px) 0;
  font-size: clamp(21px, 3.1vw, 46px);
  overflow-wrap: anywhere;
}
.craft-copy p { margin-bottom: clamp(5px, .8vw, 12px); font-size: clamp(11px, 1.08vw, 15px); line-height: 1.68; }
.craft-copy .detail-line { margin-top: clamp(10px, 1.6vw, 24px); padding-top: clamp(8px, 1.2vw, 16px); font-size: clamp(8px, .78vw, 11px); }
.craft-copy .text-link { margin-top: clamp(8px, 1.3vw, 16px); }

@media (max-width: 560px) {
  .craft-list { padding: 10px 10px 36px; gap: 9px; }
  .craft-row,
  .craft-row.reverse,
  .craft-row:last-child { grid-template-columns: minmax(0, 42%) minmax(0, 58%); min-height: 190px; }
  .craft-copy { padding: 13px 12px; }
  .craft-copy > span { letter-spacing: .08em; line-height: 1.4; }
  .craft-copy p { line-height: 1.52; }
  .craft-copy .detail-line { letter-spacing: .05em; }
}

/* Home hero: keep the complete opening copy reachable on short mobile screens */
@media (max-width: 900px) {
  body[data-page="home"] .hero {
    height: auto;
    min-height: max(720px, 100svh);
  }
  body[data-page="home"] .hero-copy {
    top: clamp(150px, 23svh, 205px);
    bottom: auto;
    width: calc(100% - 48px);
  }
  body[data-page="home"] .hero h1,
  body[data-page="home"] .hero-title { font-size: clamp(48px, 14vw, 68px) !important; }
  body[data-page="home"] .hero-lead { max-width: 32em; font-size: clamp(14px, 4vw, 18px); line-height: 1.72; }
  body[data-page="home"] .hero-actions { margin-top: 24px; }
}

@media (max-width: 560px) {
  body[data-page="home"] .hero { min-height: max(700px, 100svh); }
  body[data-page="home"] .hero-copy { top: clamp(132px, 20svh, 176px); }
  body[data-page="home"] .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 22px;
  }
  body[data-page="home"] .hero-actions .button { min-height: 44px; padding: 0 22px; }
  body[data-page="home"] .scroll-cue { height: 62px; }
  body[data-page="home"] .scroll-cue span { height: 38px; }
}

@media (max-height: 620px) and (max-width: 900px) {
  body[data-page="home"] .hero { min-height: 670px; }
  body[data-page="home"] .hero-copy { top: 118px; }
  body[data-page="home"] .hero-title { margin-bottom: 16px !important; }
  body[data-page="home"] .hero-actions { margin-top: 18px; }
}

/* Oriental blossoms detail crops */
.flower-story-hero > img { object-position: center; }
.flower-detail-visual { height: clamp(300px, 32vw, 410px); overflow: hidden; }
.flower-detail-visual img { width: 100%; height: 100%; max-height: none; object-fit: cover; }
.flower-detail-visual--velvet img { object-position: 86% 22%; }
.flower-detail-visual--enamel img { object-position: 63% 66%; }
@media (max-width: 560px) {
  .flower-story-hero > img { object-position: 73% center; }
  .flower-detail-visual { height: 280px; }
  .flower-detail-visual--velvet img { object-position: 88% 18%; }
  .flower-detail-visual--enamel img { object-position: 65% 68%; }
}
