/* ============================================================
   BOLD Architects — monochrome, clear glass, landmark energy
   ============================================================ */

:root {
  --ink: #060606;
  --carbon: #0e0e0f;
  --paper: #ededeb;
  --white: #f5f5f3;
  --grey: #969692;
  --grey-dark: #55555a;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(6, 6, 6, 0.18);

  --font-display: "Clash Display", "Helvetica Neue", Arial, sans-serif;
  --font-body: "General Sans", "Helvetica Neue", Arial, sans-serif;

  --pad-x: clamp(20px, 5vw, 72px);
  --pad-y: clamp(96px, 14vh, 176px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --glass-bg: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03) 58%);
  --glass-border: rgba(255, 255, 255, 0.24);
  --glass-shine: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--white); color: var(--ink); }

img { display: block; max-width: 100%; }

/* every photograph on the site: tinted black + grey */
.bw { filter: grayscale(1) contrast(1.04) brightness(0.92); }

/* thin monochrome scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2c2c2e; border: 2px solid var(--ink); border-radius: 6px; }

/* ============ cursor (difference dot) ============ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 2000;
  transform: translate(-100px, -100px);
  transition: width 0.25s var(--ease), height 0.25s var(--ease);
  will-change: transform;
}
.cursor.is-active { width: 44px; height: 44px; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ============ type ============ */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.display--dark { color: var(--ink); }

.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.body-copy {
  color: var(--grey);
  max-width: 42ch;
}

/* ============ buttons & links ============ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 1.05em 2.2em;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  background: var(--glass-bg);
  box-shadow: var(--glass-shine);
  backdrop-filter: blur(2px) brightness(1.1);
  -webkit-backdrop-filter: blur(2px) brightness(1.1);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.btn:hover,
.btn:focus-visible {
  background: var(--ink);            /* black hover, solid */
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 28px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-2px) scale(1.02);
}
.btn--lg {
  font-size: clamp(1rem, 2vw, 1.35rem);
  padding: 1.15em 2.4em;
}

.link-plain {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.link-plain:hover,
.link-plain:focus-visible { border-color: var(--white); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}
.section--paper a:focus-visible,
.section--paper button:focus-visible { outline-color: var(--ink); }

/* ============ header (transparent over hero) ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 2.6vh, 28px) var(--pad-x);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}
.header.is-scrolled {
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.55), rgba(6, 6, 6, 0.35));
  backdrop-filter: blur(3px) brightness(1.05);
  -webkit-backdrop-filter: blur(3px) brightness(1.05);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  color: var(--white);
  text-decoration: none;
}
.brand sup { font-size: 0.5em; letter-spacing: 0; }

.menu-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
}
.menu-btn-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.menu-btn-icon {
  position: relative;
  width: 34px; height: 16px;
}
.menu-btn-icon i {
  position: absolute;
  left: 0;
  width: 100%; height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease), width 0.4s var(--ease);
}
.menu-btn-icon i:first-child { top: 3px; }
.menu-btn-icon i:last-child { top: 12px; width: 70%; }
.menu-btn:hover .menu-btn-icon i:last-child { width: 100%; }
body.menu-open .menu-btn-icon i:first-child { top: 8px; transform: rotate(45deg); }
body.menu-open .menu-btn-icon i:last-child { top: 8px; width: 100%; transform: rotate(-45deg); }

/* ============ side glass menu (clear, not blurry) ============ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(6, 6, 6, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }

.side-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 950;
  width: min(460px, 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 12vh, 110px) clamp(28px, 4vw, 56px) 40px;
  overflow-y: auto;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 55%);
  border-left: 1px solid var(--glass-border);
  box-shadow: var(--glass-shine), -30px 0 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1.5px) brightness(1.12);   /* clear glass — refraction, no frost */
  -webkit-backdrop-filter: blur(1.5px) brightness(1.12);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 0.6s var(--ease), visibility 0s linear 0.6s;
  overflow: hidden;
}
body.menu-open .side-menu {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.6s var(--ease);
}
.side-menu-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.07) 50%, transparent 58%);
}

.side-menu-list { list-style: none; }
.side-menu-list a {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3.2vh, 2.15rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  text-decoration: none;
  padding: 0.42em 0.6em;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.3s var(--ease),
    padding-left 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  /* staggered entrance */
  opacity: 0;
  transform: translateX(48px);
}
body.menu-open .side-menu-list a {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.55s var(--ease) var(--stagger, 0.1s),
    transform 0.55s var(--ease) var(--stagger, 0.1s),
    background 0.3s var(--ease),
    padding-left 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.side-menu-list li:nth-child(1) a { --stagger: 0.08s; }
.side-menu-list li:nth-child(2) a { --stagger: 0.12s; }
.side-menu-list li:nth-child(3) a { --stagger: 0.16s; }
.side-menu-list li:nth-child(4) a { --stagger: 0.2s; }
.side-menu-list li:nth-child(5) a { --stagger: 0.24s; }
.side-menu-list li:nth-child(6) a { --stagger: 0.28s; }
.side-menu-list li:nth-child(7) a { --stagger: 0.32s; }
.side-menu-list li:nth-child(8) a { --stagger: 0.36s; }
.side-menu-list li:nth-child(9) a { --stagger: 0.4s; }

.side-menu-list a:hover,
.side-menu-list a:focus-visible {
  background: var(--ink);            /* black hover, solid */
  padding-left: 1.1em;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.side-menu-foot {
  margin-top: clamp(20px, 4vh, 40px);
  color: var(--grey);
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============ hero ============ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  /* backwards, not both: a filled animation would override the JS parallax transform */
  animation: heroSettle 2.2s var(--ease) backwards;
  will-change: transform;
}
@keyframes heroSettle {
  from { transform: scale(1.22); }
  to { transform: scale(1.12); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.42) 0%, rgba(6, 6, 6, 0.08) 38%, rgba(6, 6, 6, 0.68) 100%),
    radial-gradient(120% 90% at 50% 110%, rgba(6, 6, 6, 0.5), transparent 60%);
}

.hero-content {
  padding: 0 var(--pad-x) clamp(72px, 12vh, 128px);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-inner {
  display: block;
  transform: translateY(112%);
  animation: lineUp 1.1s var(--ease) forwards;
}
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.14s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-sub {
  margin-top: 22px;
  color: rgba(245, 245, 243, 0.82);
  font-size: 1.0625rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(72px, 12vh, 128px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(245, 245, 243, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, var(--white), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.4; }
}

/* ============ sections (shared) ============ */
.section {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
}
.section--paper {
  background: var(--paper);
  color: var(--ink);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease) var(--d, 0s), transform 0.9s var(--ease) var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ about ============ */
.about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-text .body-copy { margin: 28px 0 36px; }
.about-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}
.about-img {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  will-change: transform;
}
.about-img:hover img {
  transform: scale(1.06);
  filter: grayscale(1) contrast(1.04) brightness(1.02);
}
.about-img-b { margin-top: clamp(48px, 7vw, 110px); }

/* ============ mission & vision ============ */
.mv { overflow: hidden; }
.mv-plan {
  position: absolute;
  inset: -14% -4%;
  z-index: 0;
  opacity: 0.16;
  pointer-events: none;
}
.mv-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(1) grayscale(1);   /* white-line drawing on black */
}
.mv-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.glass-panel {
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  box-shadow: var(--glass-shine);
  backdrop-filter: blur(1.5px) brightness(1.14);   /* clear glass */
  -webkit-backdrop-filter: blur(1.5px) brightness(1.14);
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.glass-panel:hover {
  background: var(--ink);            /* black hover, solid */
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 44px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-6px);
}
.panel-word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.panel-copy {
  margin-top: 18px;
  color: var(--grey);
  max-width: 30ch;
  transition: color 0.45s var(--ease);
}
.glass-panel:hover .panel-copy { color: rgba(245, 245, 243, 0.85); }

/* ============ projects index ============ */
.projects { position: relative; }
.work-index {
  list-style: none;
  margin-top: clamp(48px, 7vh, 88px);
  border-top: 1px solid var(--line-dark);
}
.work {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: baseline;
  gap: clamp(16px, 4vw, 64px);
  padding: clamp(20px, 3vh, 30px) clamp(8px, 1vw, 16px);
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    padding-left 0.35s var(--ease);
}
.work-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
}
.work-place,
.work-year {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dark);
  transition: color 0.35s var(--ease);
}
.work:hover {
  background: var(--ink);            /* black hover, solid */
  color: var(--white);
  padding-left: clamp(20px, 2.5vw, 40px);
}
.work:hover .work-place,
.work:hover .work-year { color: var(--grey); }

/* inline thumbs only for touch layouts */
.work-thumb { display: none; }

/* floating hover-reveal image */
.work-flare {
  position: absolute;
  z-index: 5;
  width: min(380px, 30vw);
  aspect-ratio: 16 / 9;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.work-flare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-flare.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============ case study ============ */
.case {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.case-media {
  position: absolute;
  inset: -14% 0;
  z-index: 0;
}
.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.case-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.55) 0%, rgba(6, 6, 6, 0.12) 45%, rgba(6, 6, 6, 0.78) 100%);
}
.case-content {
  position: relative;
  z-index: 2;
  padding: var(--pad-y) var(--pad-x) clamp(72px, 10vh, 120px);
}
.case-meta {
  margin: 18px 0 32px;
  color: rgba(245, 245, 243, 0.75);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ awards ============ */
.award-list {
  list-style: none;
  margin-top: clamp(48px, 7vh, 88px);
  border-top: 1px solid var(--line);
}
.award {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: clamp(16px, 4vw, 64px);
  padding: clamp(18px, 2.6vh, 26px) clamp(8px, 1vw, 16px);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    padding-left 0.35s var(--ease);
}
.award-year { color: var(--grey); font-size: 0.9375rem; letter-spacing: 0.1em; }
.award-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.award-project { color: var(--grey); font-size: 0.9375rem; letter-spacing: 0.08em; text-transform: uppercase; }
.award:hover {
  background: var(--glass-bg);       /* hover glass */
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: var(--glass-shine), 0 0 30px rgba(255, 255, 255, 0.12);  /* border glow */
  padding-left: clamp(20px, 2.5vw, 36px);
}

/* ============ architects ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(48px, 7vh, 88px);
}
.team-card {
  position: relative;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  transition: box-shadow 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.team-card:hover {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink), 0 24px 60px rgba(6, 6, 6, 0.22);   /* border glow, dark */
  transform: translateY(-6px);
}
.team-photo {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  will-change: transform;
}
.team-card:hover .team-photo img {
  transform: scale(1.06);            /* hover scale */
  filter: grayscale(1) contrast(1.05) brightness(1.02);
}
.team-plate {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line-dark);
}
.team-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.team-role {
  color: var(--grey-dark);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.team-card:hover .team-role,
.team-card:focus-within .team-role {
  opacity: 1;                        /* hover reveal */
  transform: translateY(0);
}

/* ============ stories ============ */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(48px, 7vh, 88px);
}
.story-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}
.story-card:hover .story-media img { transform: scale(1.07); }  /* hover scale */
.story-hint {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border-top: 1px solid var(--glass-border);
  box-shadow: var(--glass-shine);
  backdrop-filter: blur(2px) brightness(1.1);
  -webkit-backdrop-filter: blur(2px) brightness(1.1);
  transform: translateY(102%);
  transition: transform 0.45s var(--ease);
}
.story-card:hover .story-hint { transform: translateY(0); }     /* hover reveal, glass */
.story-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-top: 20px;
}
.story-sub {
  color: var(--grey);
  margin-top: 6px;
  font-size: 0.9375rem;
}

/* ============ contact ============ */
.contact {
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(36px, 6vh, 56px);
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ============ footer ============ */
.footer {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  padding: 36px var(--pad-x) 44px;
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: var(--white);
}
.footer-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.footer-links a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-copy { width: 100%; font-size: 0.75rem; color: var(--grey-dark); }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1024px) {
  .team-grid,
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .mv-grid { grid-template-columns: 1fr; }

  .work {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "thumb thumb"
      "name year"
      "place place";
    row-gap: 10px;
  }
  .work-name { grid-area: name; }
  .work-place { grid-area: place; }
  .work-year { grid-area: year; }
  .work-thumb {
    display: block;
    grid-area: thumb;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--line-dark);
    margin-bottom: 8px;
  }
  .work:hover .work-thumb { border-color: rgba(255, 255, 255, 0.3); }
  .work-flare { display: none; }

  .award {
    grid-template-columns: 70px minmax(0, 1fr);
  }
  .award-project { grid-column: 2; }
}

@media (max-width: 640px) {
  .team-grid,
  .story-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .footer-links { margin-left: 0; }
}

/* ============================================================
   reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor { display: none; }
}
