/* ==========================================================================
   BM Course — site styles
   Dark & premium. Self-hosted fonts. Mobile-first, responsive.
   ========================================================================== */

@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/cormorant-garamond-latin-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/manrope-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/manrope-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/manrope-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/manrope-latin-700-normal.woff2') format('woff2'); }

:root {
  --bg: #0b0b0c;
  --bg-2: #101012;
  --surface: #17171a;
  --surface-2: #1e1e22;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f1efe9;
  --text-2: #cfcbc2;
  --muted: #9b978f;
  --accent: #c9a75c;
  --accent-2: #e6c883;
  --accent-ink: #14110a;
  --paper: #f5f2eb;
  --paper-ink: #151412;
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(72px, 10vw, 140px);
  --radius: 4px;
  --nav-h: 76px;
  --ease: cubic-bezier(.2,.7,.2,1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
::selection { background: var(--accent); color: var(--accent-ink); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 14px; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 12px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
section { scroll-margin-top: calc(var(--nav-h) - 1px); }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * 0.7); }
.section--alt { background: var(--bg-2); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--accent);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.display, .h1, .h2 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
.h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.1; }
.h1 em, .h2 em { font-style: italic; color: var(--accent-2); font-weight: 500; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-2); max-width: 60ch; }
.muted { color: var(--muted); }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .h2 { max-width: 20ch; }
.section-head--center { text-align: center; justify-items: center; }
.section-head--split { grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.2fr 1fr; gap: 48px; }
  .section-head--split .lead { justify-self: end; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background-color .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255,255,255,0.02); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--text); }
.btn--dark { background: var(--paper-ink); color: var(--paper); }
.btn--dark:hover { background: #2a2825; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 13px; }
.link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; letter-spacing: .04em;
  color: var(--accent-2); border-bottom: 1px solid transparent; transition: border-color .25s, gap .25s;
}
.link:hover { border-color: var(--accent-2); gap: 12px; }
.link svg { width: 14px; height: 14px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(11, 11, 12, 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav { display: none; align-items: center; gap: 30px; }
.nav a { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); position: relative; padding: 6px 0; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a:hover, .nav a.is-active { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 3px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
}
.lang-switch a, .lang-switch button { padding: 5px 10px; border-radius: 999px; color: var(--muted); line-height: 1; }
.lang-switch .is-current { background: var(--text); color: var(--bg); }
.lang-switch a:not(.is-current):hover, .lang-switch button:not(.is-current):hover { color: var(--text); }
.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px;
}
.menu-toggle span { width: 18px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .2s; }
.is-open .menu-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
.is-open .menu-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-cta { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .nav-cta { display: inline-flex; }
}
/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90;
  background: var(--bg);
  display: grid; align-content: start; gap: 6px;
  padding: 28px var(--gutter) 40px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.2rem; padding: 10px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 24px; justify-self: start; font-family: var(--font-body); font-size: 14px; border-bottom: 0; }
@media (min-width: 1000px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(100svh, 920px); display: flex; align-items: flex-end;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: clamp(48px, 8vh, 96px);
  isolation: isolate; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 50%; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero__video.is-playing { opacity: 1; }
.btn--play { border-color: transparent; color: var(--text); padding-left: 14px; gap: 12px; }
.btn--play svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.06); transition: background-color .25s, border-color .25s; }
.btn--play:hover svg { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
/* Film modal */
.film { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: rgba(6,6,7,0.96); padding: clamp(12px, 4vw, 48px); }
.film.is-open { display: flex; }
.film__frame { width: min(1400px, 100%); aspect-ratio: 16 / 9; max-height: 100%; background: #000; box-shadow: 0 40px 100px rgba(0,0,0,.7); }
.film__frame video { width: 100%; height: 100%; display: block; }
body.film-open { overflow: hidden; }
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.05) 30%, rgba(11,11,12,0.35) 65%, rgba(11,11,12,0.95) 100%),
    linear-gradient(90deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0) 60%);
}
.hero__content { display: grid; gap: 22px; max-width: 760px; }
.hero__content .h1 { text-wrap: balance; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 32px;
  display: none; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll span { width: 1px; height: 48px; background: linear-gradient(var(--muted), transparent); animation: scrollcue 2.2s infinite; }
@keyframes scrollcue { 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; } }
@media (min-width: 900px) { .hero__scroll { display: flex; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll span { animation: none; } }

/* ---------- Intro / pillars ---------- */
.intro { display: grid; gap: 28px; }
@media (min-width: 900px) { .intro { grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; } }
.intro__text { display: grid; gap: 18px; color: var(--text-2); font-size: 1.05rem; }
.intro__text p:first-child { font-size: 1.15rem; color: var(--text); }
.pillars { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(40px, 6vw, 80px); }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--bg); padding: clamp(24px, 3vw, 40px); display: grid; gap: 14px; align-content: start; transition: background-color .3s; }
.pillar:hover { background: var(--surface); }
.pillar__icon { width: 44px; height: 44px; color: var(--accent); }
.pillar__icon svg { width: 100%; height: 100%; }
.pillar h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: .02em; }
.pillar p { color: var(--muted); font-size: .95rem; }

/* ---------- Services ---------- */
.services { display: grid; gap: 24px; }
@media (min-width: 860px) { .services { grid-template-columns: 1fr 1fr; gap: 28px; } }
.service {
  display: grid; background: var(--surface); border: 1px solid var(--line); overflow: hidden;
  transition: border-color .3s, transform .5s var(--ease);
}
.service:hover { border-color: var(--line-strong); }
.service__media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service:hover .service__media img { transform: scale(1.04); }
.service__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(23,23,26,0.9)); }
.service__label {
  position: absolute; left: 24px; bottom: 20px; z-index: 1;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--accent);
}
.service__body { padding: clamp(24px, 3vw, 36px); display: grid; gap: 18px; align-content: start; }
.service__body p { color: var(--text-2); }
.service__list { display: grid; gap: 10px; padding-block: 6px; }
.service__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--text-2); }
.service__list li::before { content: ''; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 9px; }
.service__body .link { justify-self: start; margin-top: 6px; }

/* ---------- Work / gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; grid-auto-rows: 42vw; grid-auto-flow: dense; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 26vw; gap: 14px; } }
@media (min-width: 1100px) { .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 16px; } }
.gallery__item { position: relative; overflow: hidden; background: var(--surface); display: block; width: 100%; padding: 0; text-align: left; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .5s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(11,11,12,0.85));
  font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--text);
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease);
}
.gallery__item:hover .gallery__cap, .gallery__item:focus-visible .gallery__cap { opacity: 1; transform: none; }
@media (hover: none) { .gallery__cap { opacity: 1; transform: none; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center;
  background: rgba(6,6,7,0.94); padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox__figure { margin: 0; max-width: min(1400px, 100%); max-height: 100%; display: grid; gap: 14px; justify-items: center; }
.lightbox__figure img { max-width: 100%; max-height: calc(100svh - 120px); width: auto; height: auto; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__figure figcaption { font-size: 14px; color: var(--text-2); letter-spacing: .04em; }
.lightbox__btn {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(11,11,12,0.6); color: var(--text);
  display: grid; place-items: center; transition: background-color .25s;
}
.lightbox__btn:hover { background: var(--surface-2); }
.lightbox__btn svg { width: 18px; height: 18px; }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (min-width: 900px) { .lightbox__prev { left: 28px; } .lightbox__next { right: 28px; } }

/* ---------- Sale (showroom card) ---------- */
.sale-card {
  background: var(--paper); color: var(--paper-ink);
  display: grid; overflow: hidden; border-radius: 6px;
}
@media (min-width: 900px) { .sale-card { grid-template-columns: 1fr 1.15fr; align-items: center; } }
.sale-card__body { padding: clamp(28px, 4vw, 64px); display: grid; gap: 20px; }
.sale-card__body .eyebrow { color: #8d6f2b; }
.sale-card__body .eyebrow::before { background: #8d6f2b; }
.sale-card__body .h2 em { color: #8d6f2b; }
.sale-card__body p { color: #3f3c37; max-width: 52ch; }
.sale-card__list { display: grid; gap: 10px; }
.sale-card__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: #3f3c37; }
.sale-card__list li svg { flex: none; width: 18px; height: 18px; color: #8d6f2b; margin-top: 3px; }
.sale-card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.sale-card__actions .btn--ghost { border-color: rgba(0,0,0,0.25); color: var(--paper-ink); backdrop-filter: none; }
.sale-card__actions .btn--ghost:hover { border-color: var(--paper-ink); }
.sale-card__media { position: relative; padding: 64px clamp(16px, 3vw, 40px) clamp(16px, 3vw, 40px); background: #fff; min-height: 260px; display: grid; place-items: center; }
@media (min-width: 900px) { .sale-card__media { padding-top: clamp(16px, 3vw, 40px); } }
.sale-card__media img { width: 100%; max-width: 760px; mix-blend-mode: multiply; }
.sale-card__badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--paper-ink); color: var(--paper);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; padding: 8px 12px; border-radius: 999px;
}

/* ---------- About ---------- */
.about { display: grid; gap: 40px; }
@media (min-width: 960px) { .about { grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; } }
.about__text { display: grid; gap: 20px; color: var(--text-2); font-size: 1.05rem; }
.about__text .h2 { color: var(--text); }
.about__quote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.25;
  color: var(--accent-2); padding-left: 20px; border-left: 2px solid var(--accent); margin-top: 8px;
}
.about__media { position: relative; padding: 56px 14% 0 0; }
.about__media img { object-fit: cover; }
.about__media img:first-child { width: 100%; aspect-ratio: 16 / 11; }
.about__media img:last-child {
  position: absolute; right: 0; top: 0; width: 44%; aspect-ratio: 3 / 4;
  border: 6px solid var(--bg); box-shadow: 0 30px 60px rgba(0,0,0,.55);
}
@media (min-width: 960px) { .about__media { padding: 72px 16% 0 0; } .about__media img:last-child { width: 46%; } }

/* ---------- Contact ---------- */
.contact { display: grid; gap: 40px; }
@media (min-width: 960px) { .contact { grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; } }
.contact__intro { display: grid; gap: 22px; }
.contact__intro .lead { max-width: 46ch; }
.contact-cards { display: grid; gap: 12px; margin-top: 8px; }
.contact-card {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center;
  padding: 18px 20px; border: 1px solid var(--line); background: var(--surface);
  transition: border-color .3s, transform .35s var(--ease);
}
.contact-card:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-card__icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--accent); }
.contact-card__icon svg { width: 18px; height: 18px; }
.contact-card small { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-card strong { font-weight: 600; font-size: 1.05rem; word-break: break-word; }
.form { display: grid; gap: 14px; padding: clamp(22px, 3vw, 36px); background: var(--surface); border: 1px solid var(--line); }
.form__row { display: grid; gap: 14px; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 13px 14px; transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239b978f' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form .btn { justify-self: start; margin-top: 4px; }
.form__note { font-size: 12.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: clamp(48px, 6vw, 80px) 0 28px; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.footer-brand { display: grid; gap: 16px; align-content: start; }
.footer-brand img { height: 56px; width: auto; }
.footer-brand p { color: var(--muted); font-size: .95rem; max-width: 36ch; }
.footer-brand .footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--text-2); }
.footer-col h3 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--text-2); font-size: .95rem; transition: color .25s; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: 13px; color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
/* Elements are visible at rest; JS marks only below-the-fold ones as pending, then reveals them on scroll. */
.reveal { transition: opacity .8s var(--ease), transform .9s var(--ease); }
.reveal.is-pending { opacity: 0; transform: translateY(22px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.is-pending { opacity: 1; transform: none; transition: none; } }

/* ---------- Utilities ---------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
body.menu-open { overflow: hidden; }
body.lightbox-open { overflow: hidden; }

.contact-card__hint { display: block; margin-top: 4px; font-style: normal; font-size: .8rem; color: var(--accent); letter-spacing: .02em; }
