/* ═══════════════════════════════════════════
   Z HOUSE — LUXURY REDESIGN
   Aesthetic: Parisian Noir · Refined Opulence
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --bg:          #060504;
  --bg-2:        #0c0a08;
  --bg-3:        #131008;
  --text:        #f0e8d8;
  --text-dim:    rgba(240,232,216,.55);
  --text-faint:  rgba(240,232,216,.28);
  --gold:        #c8a96e;
  --gold-bright: #e2c48a;
  --gold-dim:    rgba(200,169,110,.18);
  --gold-line:   rgba(200,169,110,.28);
  --line:        rgba(255,255,255,.07);
  --max:         1440px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* Ambient glow */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(200,169,110,.07), transparent),
    radial-gradient(ellipse 40% 35% at 10% 85%, rgba(200,169,110,.05), transparent);
  pointer-events: none;
  z-index: 0;
}

/* ═══ HEADER ═══ */
.header {
  position: fixed;
  width: 100%;
  top: 0; left: 0;
  padding: 24px 64px;
  z-index: 1000;
  transition: padding .5s ease, background .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 16px 64px;
  background: rgba(6,5,4,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--gold-line);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 16px; z-index: 1001; }
.logo { width: 40px; height: 40px; object-fit: contain; }

.brand-name {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 10px;
  color: var(--gold-bright);
}

.nav { display: flex; gap: 48px; align-items: center; }

.nav a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color .3s;
}

.nav a::before {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s cubic-bezier(.25,.1,.25,1);
}

.nav a:hover { color: var(--gold-bright); }
.nav a:hover::before { width: 100%; }
.nav a.active { color: var(--gold); }
.nav a.active::before { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--gold-line);
  border-radius: 3px;
  width: 44px; height: 44px;
  cursor: pointer;
  z-index: 1001;
  transition: border-color .3s;
}

.nav-toggle span {
  display: block;
  width: 20px; height: 1px;
  background: var(--text);
  transition: transform .35s cubic-bezier(.25,.1,.25,1), opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  padding: 0 64px 60px;
  position: relative;
}

.hero-topline {
  position: absolute;
  top: 108px;
  left: 64px; right: 64px;
  display: flex;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
  pointer-events: none;
  z-index: 2;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
  animation: pageFade 1.2s .1s both ease;
}

.hero-visual {
  width: min(30vw, 420px);
  height: min(42vw, 580px);
  overflow: hidden;
  position: relative;
  border-radius: 400px 400px 0 0;
  border: 1px solid rgba(200,169,110,.25);
  box-shadow:
    0 0 0 10px rgba(200,169,110,.035),
    0 0 0 20px rgba(200,169,110,.018),
    0 50px 100px rgba(0,0,0,.75);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 400px 400px 0 0;
  background: linear-gradient(180deg, rgba(200,169,110,.25) 0%, transparent 35%);
  pointer-events: none;
}

.hero-visual video,
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-title {
  position: absolute;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.5rem, 9.5vw, 9rem);
  line-height: .86;
  text-align: center;
  letter-spacing: -.02em;
  width: min(960px, 92vw);
  pointer-events: none;
  color: var(--text);
  text-shadow: 0 20px 60px rgba(0,0,0,.7);
}

.cta-pill {
  position: absolute;
  bottom: 9%;
  padding: 16px 44px;
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold-line);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: color .4s, border-color .4s;
}

.cta-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-105%);
  transition: transform .5s cubic-bezier(.25,.1,.25,1);
}

.cta-pill span { position: relative; z-index: 1; }
.cta-pill:hover { color: var(--bg); border-color: var(--gold); }
.cta-pill:hover::before { transform: translateX(0); }

.scroll-indicator {
  position: absolute;
  bottom: 7%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-indicator .line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-year {
  position: absolute;
  bottom: 2%;
  right: 0;
  font-family: 'Playfair Display', serif;
  font-size: 11rem;
  font-weight: 400;
  color: rgba(200,169,110,.035);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -.06em;
  user-select: none;
}

@keyframes pageFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%,100% { opacity: .25; }
  50% { opacity: 1; }
}

/* ═══ SECTIONS ═══ */
.section {
  padding: 120px 64px;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══ SPLIT STORY ═══ */
.split-story { padding-bottom: 140px; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.text-block h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 4.5vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.02em;
  margin: 20px 0 30px;
  color: var(--text);
}

.text-block p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-dim);
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  transition: gap .3s;
}

.text-link::after { content: '→'; font-size: 14px; transition: transform .3s; }
.text-link:hover { gap: 20px; }
.text-link:hover::after { transform: translateX(4px); }

.stacked-visuals { position: relative; height: 660px; }

.visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--gold-line);
}

.visual-card img, .visual-card .media { width: 100%; height: 100%; object-fit: cover; display: block; }

.visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,.06), transparent 50%);
  pointer-events: none;
}

.visual-card.large { width: 74%; height: 480px; right: 0; top: 0; box-shadow: 30px 30px 60px rgba(0,0,0,.5); }
.visual-card.small { width: 52%; height: 300px; left: 0; bottom: 30px; box-shadow: -20px 20px 50px rgba(0,0,0,.4); }

/* ═══ EDITORIAL BAND ═══ */
.editorial-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(200,169,110,.03) 0%, transparent 50%);
}

.band-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 64px;
}

.band-intro h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--text);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-line);
}

.feature {
  padding: 40px 36px 48px;
  border-right: 1px solid var(--line);
  transition: background .4s;
  position: relative;
  overflow: hidden;
}

.feature:last-child { border-right: none; }

.feature::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.feature:hover::before { transform: scaleX(1); }
.feature:hover { background: rgba(200,169,110,.03); }

.count {
  display: block;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 28px;
  font-family: 'Jost', sans-serif;
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.85rem;
  margin-bottom: 16px;
  color: var(--text);
}

.feature p { font-size: .95rem; line-height: 1.85; color: var(--text-dim); }

/* ═══ SHOWCASE ═══ */
.showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
}

.showcase-head h2,
.text-block h2,
.band-intro h2,
.page-hero h1,
.about-statement h2 {
  font-family: 'Playfair Display', serif;
}

.showcase-head h2 {
  font-weight: 400;
  font-size: clamp(2.2rem, 3.8vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--text);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Top row: items 1, 2, 3 → 1:1 square */
.mosaic-item {
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  transition: opacity .5s;
}

.mosaic-item:hover::after { opacity: 0; }

.mosaic-item img,
.mosaic-item .media,
.mosaic-item .placeholder-media,
.mosaic-item .media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.25,.1,.25,1);
}

.mosaic-item:hover img { transform: scale(1.06); }

/* Center bottom item → 9:16 portrait, spanning all 3 columns centered */
.mosaic-item.tall {
  aspect-ratio: 9 / 16;
  grid-column: 2 / 3;
  grid-row: 2;
  /* override the square ratio */
}

.placeholder-media {
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(200,169,110,.1), transparent 70%), var(--bg-2);
  display: grid; place-items: center;
}

/* ═══ QUOTE BAND ═══ */
.quote-band {
  padding: 100px 64px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(200,169,110,.04), transparent);
}

.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
}

.ornament-line::before,
.ornament-line::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
}

.ornament-line::before { background: linear-gradient(to right, transparent, var(--gold)); }
.ornament-line::after { background: linear-gradient(to left, transparent, var(--gold)); }

.ornament-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.3;
  color: var(--text);
  max-width: 860px;
  margin: 0 auto;
}

.quote-band cite {
  display: block;
  margin-top: 24px;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ═══ FOOTER ═══ */
.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 64px 50px;
  border-top: 1px solid transparent;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 64px; right: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.footer-label {
  display: block;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 16px;
}

.site-footer p { color: var(--text-dim); font-size: .9rem; line-height: 1.9; }
.site-footer a { color: var(--text-dim); transition: color .3s; font-size: .9rem; }
.site-footer a:hover { color: var(--gold); }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(200,169,110,.15);
  letter-spacing: .1em;
  margin-top: 10px;
}

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

/* ═══ INNER PAGES ═══ */
.page-main { padding-top: 90px; }

.page-hero {
  padding: 80px 64px 56px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.02em;
  margin: 16px 0 0;
  max-width: 900px;
  color: var(--text);
}

.page-hero p { max-width: 680px; color: var(--text-dim); margin-top: 22px; font-size: 1rem; line-height: 1.9; }

/* ═══ GALLERY ═══ */
.gallery-wall {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 64px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--line);
}

.gallery-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s cubic-bezier(.25,.1,.25,1);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,5,4,.2);
  transition: opacity .5s;
}

.gallery-card:hover img { transform: scale(1.07); }
.gallery-card:hover::after { opacity: 0; }
.gallery-card.xlarge { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-card.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-card.tall { grid-row: span 2; aspect-ratio: 3/5; }

/* ═══ ABOUT ═══ */
.about-layout { max-width: var(--max); margin: 0 auto; padding: 80px 64px 120px; }

.about-statement {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.about-statement h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: .95;
  letter-spacing: -.02em;
  max-width: 1100px;
  color: var(--text);
}

.about-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 60px; }

.about-card {
  padding: 40px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(200,169,110,.04), transparent);
  transition: border-color .4s;
}

.about-card:hover { border-color: var(--gold-line); }
.about-card p { font-size: 1rem; line-height: 1.9; color: var(--text-dim); margin-top: 20px; }

.timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }

.timeline-item {
  padding: 36px 32px 44px;
  border-top: 2px solid var(--gold-line);
  background: linear-gradient(to bottom, rgba(200,169,110,.04), transparent);
  transition: border-top-color .4s;
}

.timeline-item:hover { border-top-color: var(--gold); }
.timeline-item span { color: var(--gold); font-size: 9px; letter-spacing: 4px; }
.timeline-item p { font-family: 'Playfair Display', serif; font-size: 2rem; margin: 20px 0 0; color: var(--text); line-height: 1.1; }

/* ═══ MENU PAGE ═══ */
.cat-nav-wrap {
  position: sticky;
  top: 72px; z-index: 90;
  background: rgba(6,5,4,.96);
  border-bottom: 1px solid var(--gold-line);
  backdrop-filter: blur(16px);
}

.cat-nav {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-btn {
  flex-shrink: 0;
  background: none; border: none;
  padding: 1.1rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 9px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}

.cat-btn:hover { color: var(--gold-bright); }
.cat-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-main { max-width: 1000px; margin: 0 auto; padding: 4rem 2rem 7rem; }

.menu-section { display: none; animation: fadeUp .4s ease; }
.menu-section.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gold-line);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text); letter-spacing: .03em;
}

.section-header .sub {
  font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-top: 8px;
  font-family: 'Jost', sans-serif;
}

.subsection { margin-bottom: 3.5rem; }

.subsection-title {
  font-family: 'Jost', sans-serif;
  font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  padding-bottom: 1rem; margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--gold-line);
  display: flex; align-items: center; gap: 14px;
}

.subsection-title::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .2s, padding-left .3s;
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(200,169,110,.03); padding-left: 12px; }

.item-info { flex: 1; }

.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--text); line-height: 1.3;
}

.item-desc {
  font-size: .82rem; color: var(--text-dim);
  margin-top: .35rem; line-height: 1.6; font-style: italic;
}

.item-price {
  font-family: 'Jost', sans-serif;
  font-size: .95rem; font-weight: 300;
  color: var(--gold); white-space: nowrap;
  padding-top: .15rem; letter-spacing: .05em;
}

.simple-list .menu-item { padding: .8rem 0; }
.simple-list .item-name { font-size: 1rem; }

.menu-note {
  margin-top: 1.2rem; padding: 1.2rem 1.5rem;
  border-left: 1px solid var(--gold);
  background: rgba(200,169,110,.05);
  font-size: .8rem; color: var(--text-dim);
  font-style: italic; line-height: 1.7;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

/* ═══ ANIMATIONS ═══ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.25,.1,.25,1), transform .9s cubic-bezier(.25,.1,.25,1);
}

.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transition: opacity 1s ease; }
.reveal.visible { opacity: 1; }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }

/* ═══ TABLET ≤ 1100px ═══ */
@media (max-width: 1100px) {
  .header { padding: 20px 32px; }
  .header.scrolled { padding: 14px 32px; }
  .hero { padding: 0 32px 50px; }
  .hero-topline { left: 32px; right: 32px; }
  .scroll-indicator { left: 0; }
  .hero-year { right: 0; font-size: 8rem; }
  .section { padding: 90px 32px; }
  .page-hero { padding: 60px 32px 40px; }
  .gallery-wall { padding: 40px 32px 90px; }
  .about-layout { padding: 60px 32px 90px; }
  .site-footer { padding: 50px 32px 44px; }
  .site-footer::before { left: 32px; right: 32px; }
  .quote-band { padding: 80px 32px; }

  .split-grid { grid-template-columns: 1fr; gap: 60px; }
  .stacked-visuals { height: auto; display: grid; gap: 20px; }
  .visual-card { position: relative !important; inset: auto !important; width: 100% !important; height: 300px !important; }

  .band-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }

  .hero-visual { width: min(58vw, 380px); height: min(82vw, 520px); }
  .hero-title { font-size: clamp(3.8rem, 10vw, 7rem); }

  .mosaic { grid-template-columns: 1fr 1fr; }
  .gallery-wall { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .about-columns { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ MOBILE ≤ 760px ═══ */
@media (max-width: 760px) {
  .header { padding: 16px 20px; }
  .header.scrolled { padding: 12px 20px; }
  .brand-name { font-size: 12px; letter-spacing: 7px; }
  .logo { width: 32px; height: 32px; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch; gap: 0;
    background: rgba(6,5,4,.97);
    border-top: 1px solid var(--gold-line);
    padding: 0 20px 18px;
    max-height: 0; overflow: hidden;
    opacity: 0; pointer-events: none;
    transition: max-height .4s ease, opacity .35s ease;
  }

  .nav.open { max-height: 400px; opacity: 1; pointer-events: all; }

  .nav a {
    padding: 16px 8px;
    font-size: 11px; letter-spacing: 4px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    display: block;
  }

  .nav a:last-child { border-bottom: none; }
  .nav a::before { display: none; }

  .hero { padding: 0 20px 40px; }
  .hero-topline { left: 20px; right: 20px; font-size: 8px; letter-spacing: 2px; flex-wrap: wrap; gap: 6px; top: 88px; }
  .hero-center { padding-top: 70px; padding-bottom: 90px; }
  .hero-visual { width: min(70vw, 280px); height: min(98vw, 390px); }
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); width: 96vw; }
  .cta-pill { position: relative; bottom: auto; margin-top: 32px; padding: 14px 32px; font-size: 9px; }
  .scroll-indicator { display: none; }
  .hero-year { display: none; }

  .section { padding: 64px 20px; }
  .page-hero { padding: 36px 20px 24px; }
  .quote-band { padding: 64px 20px; }

  .feature-row { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0 32px; }
  .feature:last-child { border-bottom: none; }
  .band-intro { margin-bottom: 32px; }

  .showcase-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .mosaic { grid-template-columns: 1fr; gap: 12px; }
  .mosaic-item { aspect-ratio: 1 / 1; }
  .mosaic-item.tall { grid-column: auto; grid-row: auto; aspect-ratio: 9 / 16; }

  .gallery-wall { grid-template-columns: 1fr 1fr; gap: 12px; padding: 24px 20px 64px; }
  .gallery-card.xlarge, .gallery-card.wide { grid-column: span 1; aspect-ratio: 3/4; }
  .gallery-card.tall, .gallery-card.xlarge { grid-row: auto; }

  .about-layout { padding: 24px 20px 64px; }
  .about-columns { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { padding: 24px 0 28px; border-top: none; border-bottom: 1px solid var(--line); }

  .site-footer { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
  .site-footer::before { left: 20px; right: 20px; }

  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero-visual { width: 82vw; height: 108vw; }
  .gallery-wall { grid-template-columns: 1fr; }
}
