/* HAKYA GAGO - Japan-inspired editorial site
   Palette: deep ink, washi paper, vermillion seal, antique gold */
:root {
  --bg: #0d0a08;
  --bg-2: #14100c;
  --paper: #ede5d3;
  --ink: #0a0706;
  --ivory: #f1ead7;
  --muted: #c9b896;
  --dim: #7a6d5a;
  --red: #c0392b;
  --red-deep: #8d2218;
  --gold: #c8a04a;
  --line: rgba(241, 234, 215, 0.12);
  --serif: 'Cormorant Garamond', 'Shippori Mincho', serif;
  --jp: 'Shippori Mincho', 'Cormorant Garamond', serif;
  --sans: 'Noto Sans JP', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font: inherit; }
em { font-style: italic; color: var(--gold); font-family: var(--serif); }

::selection { background: var(--red); color: var(--ivory); }

/* LOADER */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  font-family: var(--jp);
  font-size: 96px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: -0.02em;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.6; transform: scale(1);} 50% { opacity: 1; transform: scale(1.05);} }
.loader-line { width: 200px; height: 1px; background: rgba(241,234,215,0.15); overflow: hidden; }
.loader-fill { width: 0; height: 100%; background: var(--gold); animation: fill 1.8s var(--ease-out) forwards; }
@keyframes fill { to { width: 100%; } }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(13,10,8,0.78) 0%, rgba(13,10,8,0.35) 70%, transparent 100%);
}
.nav-logo, .nav-links a, .lang-btn { text-shadow: 0 1px 24px rgba(0,0,0,0.7); }
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.18em;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  color: var(--ivory);
}
.nav-logo .kanji {
  font-family: var(--jp);
  color: var(--red);
  font-size: 26px;
  font-weight: 700;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: var(--ivory);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; }

/* LANGUAGE SWITCHER */
.lang-switch {
  display: flex; align-items: center; gap: 8px;
  padding-left: 28px;
  border-left: 1px solid rgba(241, 234, 215, 0.15);
  margin-left: 8px;
}
.lang-switch span {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.lang-btn {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--dim);
  font-family: var(--sans);
  padding: 4px 6px;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.lang-btn:hover { color: var(--ivory); }
.lang-btn.active { color: var(--gold); transform: scale(1.05); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-stack {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-stack img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.05);
}
.hero-stack img.active { opacity: 1; transform: scale(1.0); transition: opacity 1.6s var(--ease), transform 8s ease-out; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(13,10,8,0.7) 100%),
              linear-gradient(180deg, rgba(13,10,8,0.4) 0%, transparent 30%, transparent 70%, rgba(13,10,8,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 4;
  text-align: center;
  padding: 0 24px;
}

.hero-kanji {
  font-family: var(--jp);
  font-size: clamp(180px, 32vw, 420px);
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  opacity: 0.18;
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -55%);
  pointer-events: none;
  z-index: 1;
  text-shadow: 0 0 80px rgba(192, 57, 43, 0.4);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 11vw, 168px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--ivory);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(110%); }
.hero-sub {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.8s var(--ease) 1.6s;
}
.hero-jp {
  font-family: var(--jp);
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.8s var(--ease) 2s;
}
.hero.ready .hero-sub, .hero.ready .hero-jp { opacity: 1; }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%; transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 1s var(--ease) 2.4s;
}
.hero.ready .scroll-cue { opacity: 1; }
.cue-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cueDrop 2.4s var(--ease) infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top;} 50% { transform: scaleY(1); transform-origin: top;} 51% { transform-origin: bottom;} 100% { transform: scaleY(0); transform-origin: bottom;} }

/* SHARED LABELS / TITLES */
.section-label {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: inline-flex; align-items: baseline; gap: 12px;
}
.section-label span:first-child {
  font-style: italic;
  color: var(--red);
  font-size: 14px;
}
.section-label.light { color: var(--ivory); }
.section-label.light span:first-child { color: var(--gold); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ivory);
  margin-bottom: 32px;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* INTRO */
.intro {
  padding: 160px 48px;
  background: var(--bg);
  position: relative;
}
.intro-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 96px;
  align-items: center;
}
.intro-img { position: relative; }
.intro-img .img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.4s var(--ease); }
.intro-img:hover img { transform: scale(1.0); }
.intro-img .seal {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 96px; height: 96px;
  background: var(--red);
  color: var(--ivory);
  font-family: var(--jp);
  font-size: 56px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-6deg);
  box-shadow: 0 12px 48px rgba(192, 57, 43, 0.3);
}

.intro-bio {
  margin-bottom: 40px;
  max-width: 540px;
}
.intro-bio p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 18px;
}

.btn-line {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.4s var(--ease), color 0.3s;
}
.btn-line:hover { gap: 20px; color: var(--gold); }
.btn-line.light { color: var(--ivory); border-bottom-color: var(--ivory); }
.btn-line.light:hover { color: var(--gold); border-bottom-color: var(--gold); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--ivory);
  padding: 18px 32px;
  transition: background 0.3s, gap 0.4s var(--ease);
}
.btn-primary:hover { background: var(--gold); gap: 20px; }

/* MARQUEE */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--muted);
}
.marquee-track span { padding: 0 32px; color: var(--muted); }
.marquee-track span:nth-child(odd) { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* PORTFOLIO */
.portfolio {
  padding: 160px 48px 100px;
  background: var(--bg);
}
.section-head {
  max-width: 1280px;
  margin: 0 auto 64px;
  text-align: left;
}
.filter-bar {
  max-width: 1280px;
  margin: 0 auto 64px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.filter-btn {
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { color: var(--ivory); border-color: var(--gold); }
.filter-btn.active { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

.gallery {
  max-width: 1480px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 24px;
}
@media (max-width: 980px) { .gallery { column-count: 2; } }
@media (max-width: 600px) { .gallery { column-count: 1; } }

.gal-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.gal-item.in { opacity: 1; transform: translateY(0); }
.gal-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 1.2s var(--ease), filter 0.6s;
  filter: brightness(0.95);
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,10,8,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-title {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 6px;
}
.gal-meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gal-sold {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: var(--ivory);
  font-family: var(--jp);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.gallery-more { text-align: center; margin-top: 64px; }

/* EVENTS / TIMELINE */
.events {
  padding: 160px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.events-inner { max-width: 1080px; margin: 0 auto; }
.timeline {
  margin-top: 64px;
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 100px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  opacity: 0.4;
}
@media (max-width: 700px) { .timeline::before { left: 50px; } }
.tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 36px 0 36px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.tl-item:last-of-type { border-bottom: none; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 96px; top: 50px;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--bg-2), 0 0 0 7px var(--gold);
  transition: all 0.4s var(--ease);
}
.tl-item.current::before {
  background: var(--red);
  box-shadow: 0 0 0 6px var(--bg-2), 0 0 0 7px var(--red);
}
@media (max-width: 700px) {
  .tl-item { grid-template-columns: 70px 1fr; gap: 24px; }
  .tl-item::before { left: 46px; }
}
.tl-year {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.tl-tag {
  display: inline-block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  font-style: italic;
  margin-bottom: 12px;
}
.tl-item.current .tl-tag {
  background: var(--red);
  color: var(--ivory);
  padding: 4px 12px;
  font-style: normal;
  letter-spacing: 0.24em;
}
.tl-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 6px;
  line-height: 1.2;
}
.tl-place {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.tl-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 640px;
}
.tl-meta {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-top: 10px;
}
.events-cta {
  margin-top: 64px;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* CTA / SHOP */
.cta-block {
  position: relative;
  padding: 200px 48px;
  overflow: hidden;
  text-align: center;
  background: var(--bg-2);
}
.cta-bg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  filter: brightness(0.4) saturate(1.1);
  transform: scale(1.1);
  z-index: 0;
}
.cta-content {
  position: relative; z-index: 1;
  max-width: 880px; margin: 0 auto;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: var(--ivory);
  margin-bottom: 28px;
}
.cta-title em { color: var(--gold); }
.cta-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-actions {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}

/* QUOTE */
.quote {
  padding: 180px 48px;
  text-align: center;
  background: var(--bg);
  position: relative;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 56px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ivory);
  max-width: 1000px;
  margin: 0 auto 32px;
  position: relative;
}
.qmark {
  font-family: var(--jp);
  color: var(--red);
  font-size: 1.5em;
  font-style: normal;
  vertical-align: top;
  line-height: 0.5;
  margin: 0 0.1em;
}
.quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* CONTACT */
.contact {
  padding: 160px 48px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.contact-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  border: 1px solid var(--line);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.contact-card:hover { border-color: transparent; transform: translateY(-4px); }
.contact-card:hover::before { transform: translateY(0); }
.contact-card > * { position: relative; z-index: 1; }
.card-label {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: italic;
}
.card-value {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ivory);
}
.contact-card:hover .card-label { color: var(--ivory); }

/* FOOTER */
.footer {
  background: var(--bg-2);
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.footer-mark {
  font-family: var(--jp);
  font-size: 56px;
  color: var(--red);
  margin-bottom: 24px;
  font-weight: 700;
}
.footer p {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  text-transform: none !important;
  letter-spacing: 0.05em !important;
  color: var(--gold) !important;
  margin-top: 12px !important;
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(13,10,8,0.97);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
  backdrop-filter: blur(20px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px;
  max-width: 1400px; max-height: 90vh;
  align-items: center;
}
@media (max-width: 900px) { .lb-stage { grid-template-columns: 1fr; max-height: 95vh; } }
.lb-stage img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain;
}
.lb-meta { color: var(--ivory); }
.lb-meta h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--gold);
}
.lb-meta p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.lb-meta span {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.lb-meta span.sold { background: var(--red); border-color: var(--red); color: var(--ivory); }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* MOBILE */
@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav-logo { font-size: 16px; letter-spacing: 0.14em; }
  .nav-logo .kanji { font-size: 22px; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: 82%; max-width: 320px; height: 100vh;
    background: var(--bg-2);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    align-items: flex-start;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 16px; letter-spacing: 0.16em; }
  .lang-switch {
    margin-top: 24px;
    margin-left: 0;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(241,234,215,0.15);
    width: 100%;
  }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 32px; height: 32px;
    align-items: center; justify-content: center;
    z-index: 101;
  }
  .nav-toggle span {
    width: 24px; height: 1px; background: var(--ivory);
    transition: transform 0.3s var(--ease);
  }
  .nav-toggle.open span:first-child { transform: translateY(3px) rotate(45deg);}
  .nav-toggle.open span:last-child { transform: translateY(-3px) rotate(-45deg);}

  .intro, .portfolio, .contact, .quote, .events { padding: 96px 20px; }
  .cta-block { padding: 120px 20px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-img .seal { width: 72px; height: 72px; font-size: 40px; bottom: -24px; right: -16px; }
  .marquee-track { font-size: 22px; }
  .gallery { column-gap: 16px; }
  .gal-item { margin-bottom: 16px; }
  .filter-bar { gap: 8px; margin-bottom: 40px; }
  .filter-btn { padding: 8px 16px; font-size: 11px; letter-spacing: 0.18em; }
  .lb-stage { gap: 24px; }
  .lb-meta h3 { font-size: 22px; }
  .lb-close, .lb-prev, .lb-next { width: 40px; height: 40px; }
  .lb-close { top: 16px; right: 16px; }
  .lb-prev { left: 8px; bottom: 16px; top: auto; transform: none; }
  .lb-next { right: 8px; bottom: 16px; top: auto; transform: none; }
  .footer { padding: 60px 20px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(48px, 13vw, 72px); }
  .nav-logo { font-size: 14px; }
  .marquee-track { font-size: 18px; }
  .marquee-track span { padding: 0 18px; }
  .tl-item { padding: 24px 0; }
  .tl-year { font-size: 24px; }
  .tl-title { font-size: 24px; }
  .cta-actions { flex-direction: column; gap: 16px; }
  .btn-primary { width: 100%; justify-content: center; }
  .quote blockquote { font-size: clamp(22px, 6vw, 34px); }
}
