@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --black: #f7f2e8;                    /* warm cream — main background */
  --white: #1c1610;                    /* dark warm ink — primary text  */
  --grey: #8a7a6a;                     /* warm brown-grey               */
  --grey-light: #3d2e22;               /* deep warm brown — readable on cream */
  --blue: #5a82a8;                     /* soft pastel blue              */
  --blue-mid: #7aaabf;                 /* lighter pastel blue           */
  --accent: #b07840;                   /* warm amber / honey            */
  --border: rgba(28, 22, 16, 0.13);    /* dark semi-transparent border  */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  mix-blend-mode: normal;
  transition: background 0.4s;
}

nav.scrolled {
  background: rgba(247, 242, 232, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

/* Unscrolled nav sits over the cream top of the hero — dark text throughout */
nav:not(.scrolled) .nav-logo {
  color: var(--white);
}

nav:not(.scrolled) .nav-links a {
  color: var(--white);
}

nav:not(.scrolled) .nav-links a:hover,
nav:not(.scrolled) .nav-links a.active {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-oh-teddy {
  padding: 0 !important;
  display: block;
  width: 84px;
  height: 30px;
  background-image: url('images/oh-teddy-logo.png');
  background-repeat: no-repeat;
  background-size: 84px auto;
  background-position: center 38%;
  margin-top: -2px;
  overflow: hidden;
  opacity: 0.88;
  transition: opacity 0.2s;
}

.nav-oh-teddy:hover {
  opacity: 1;
}

.nav-oh-teddy img {
  display: none;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 92%;
  filter: brightness(0.55);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247,242,232,0.97) 0%,
    rgba(247,242,232,0.88) 16%,
    rgba(247,242,232,0.40) 34%,
    rgba(247,242,232,0.00) 52%,
    rgba(8,8,8,0.00) 65%,
    rgba(8,8,8,0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 48px 0;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f7f2e8;
  text-shadow:
    0 0 18px rgba(247,242,232,0.55),
    0 0 40px rgba(247,242,232,0.30),
    1px 1px 0 rgba(247,242,232,0.25),
    -1px -1px 0 rgba(247,242,232,0.25);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-subtitle {
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 300;
  color: #f7f2e8;
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.72rem;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(28,22,16,0.32);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(28,22,16,0.06);
}

/* Hero buttons — dark ink on cream header */
.hero .btn-primary {
  background: var(--white);
  color: var(--black);
}

.hero .btn-primary:hover {
  background: var(--accent);
  color: var(--black);
}

.hero .btn-outline {
  color: var(--white);
  border: 1px solid rgba(28,22,16,0.35);
}

.hero .btn-outline:hover {
  border-color: var(--white);
  background: rgba(28,22,16,0.07);
}

/* ── SECTION BASE ─────────────────────────────────────── */
section {
  padding: 100px 48px;
  position: relative;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 60px;
  background: var(--border);
}

h2.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* ── BODY BACKGROUND TILE ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('images/morris-tile.svg');
  background-size: 480px 480px;
  opacity: 0.10;
  pointer-events: none;
  z-index: -1;
}

/* ── BOTANICAL DECORATION ─────────────────────────────── */
.morris-decor {
  position: absolute;
  top: 0;
  width: 260px;
  height: 100%;
  min-height: 400px;
  background-image: url('images/william-morris.svg');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}


.morris-decor--left  { left: -30px; }
.morris-decor--right { right: -30px; transform: scaleX(-1); }

/* Botanical: pointer-events disabled; 35% opacity keeps it purely decorative */

/* ── ORNAMENTAL ARCH DIVIDER ──────────────────────────── */
.morris-arch {
  width: 100%;
  height: 70px;
  background-image: url('images/morris-arch.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.22;
  pointer-events: none;
}

/* ── WORKS LIST ───────────────────────────────────────── */
#works {
  border-top: 1px solid var(--border);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.work-item {
  background: var(--black);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
  cursor: default;
}

.work-item:hover {
  background: rgba(180,155,120,0.10);
}

.work-item-category {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.work-item-title {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
}

.work-item-role {
  font-size: 0.82rem;
  color: var(--grey-light);
  font-weight: 300;
}

.work-item-year {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--grey);
  margin-top: auto;
  padding-top: 16px;
}

/* ── EXPANDABLE CARD ──────────────────────────────────── */
.work-item.expandable {
  cursor: pointer;
}

.work-item.expandable .work-item-expand-hint {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.work-item.expandable .work-item-expand-hint::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s;
}

.work-item.expandable.open .work-item-expand-hint::after {
  transform: rotate(45deg);
}

.work-item.expandable:hover .work-item-expand-hint {
  color: var(--white);
}

/* The detail panel — spans full grid width */
.work-detail-panel {
  display: none;
  grid-column: 1 / -1;
  background: #ede6d8;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.work-detail-panel.open {
  display: block;
  animation: panelReveal 0.35s ease;
}

@keyframes panelReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.work-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  padding: 40px 36px;
  gap: 48px;
}

.work-detail-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.work-detail-text p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.work-detail-text .work-detail-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 20px;
}

.work-detail-media {
  aspect-ratio: 16/9;
  background: #e4ddd0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: start;
}

.work-detail-media iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.work-detail-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey);
  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
}

.work-detail-media-placeholder span {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .work-detail-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }
}

/* ── CATEGORIES FILTER ────────────────────────────────── */
.works-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--grey-light);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--white);
  color: var(--white);
  background: rgba(28,22,16,0.06);
}

/* ── FEATURED IMAGE BAND ──────────────────────────────── */
.image-band {
  padding: 0;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.7);
}

.image-band-caption {
  position: absolute;
  bottom: 40px;
  right: 48px;
  text-align: right;
}

.image-band-caption span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── MARQUEE ──────────────────────────────────────────── */
.marquee-strip {
  padding: 20px 0;
  background: var(--white);        /* dark ribbon on cream page */
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-inner span {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);             /* cream text on dark ribbon */
  padding: 0 40px;
}

.marquee-inner .dot {
  color: var(--grey);
}

/* ── STORY PAGE ───────────────────────────────────────── */
.story-hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.story-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: brightness(0.5);
}

.story-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247,242,232,0.95) 0%,
    rgba(247,242,232,0.45) 18%,
    rgba(247,242,232,0.00) 38%,
    rgba(10,8,6,0.00) 50%,
    rgba(10,8,6,0.90) 100%
  );
}

.story-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 64px;
}

/* Story hero text needs light colours (dark photo) */
.story-hero-content .hero-eyebrow,
.story-hero-content .section-label {
  color: #e0c898;
}

.story-hero-content h1,
.story-hero-content h2 {
  color: #f7f2e8;
}

.story-body {
  max-width: 760px;
}

.story-body p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--grey-light);
  margin-bottom: 28px;
}

.story-body p strong {
  color: var(--white);
  font-weight: 500;
}

.story-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 56px 0 20px;
  letter-spacing: -0.01em;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.credit-item {
  background: var(--black);
  padding: 24px 28px;
}

.credit-item-org {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.credit-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.credit-item-role {
  font-size: 0.8rem;
  color: var(--grey-light);
}

/* ── MEDIA PAGE ───────────────────────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.press-card {
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.press-card:hover {
  border-color: rgba(28,22,16,0.32);
}

.press-card-outlet {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.press-card-headline {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
}

.press-card-excerpt {
  font-size: 0.85rem;
  color: var(--grey-light);
  line-height: 1.6;
  flex: 1;
}

.press-card-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: gap 0.2s;
}

.press-card-link:hover {
  gap: 14px;
}

.press-card-link::after {
  content: '→';
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.video-embed {
  aspect-ratio: 16/9;
  background: #e4ddd0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-embed-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey);
}

.video-embed-placeholder span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px;
  margin-top: 48px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s;
  display: block;
}

.photo-grid img:hover {
  filter: brightness(1);
}

/* ── PRESS QUOTES ─────────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.press-quote {
  background: var(--black);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}

.press-quote-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  quotes: "\201C" "\201D";
}

.press-quote-text::before { content: open-quote; }
.press-quote-text::after  { content: close-quote; }

.press-quote-source {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.press-quote-outlet {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.press-quote-context {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ── SOCIAL ICONS ─────────────────────────────────────── */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--grey-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--white);
}

.footer-socials a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── BRANDS GRID ──────────────────────────────────────── */
#brands {
  padding-bottom: 80px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 100px;
  transition: background 0.2s;
}

.brand-item:hover {
  background: rgba(176,120,64,0.07);
}

.brand-item img {
  max-width: 120px;
  max-height: 44px;
  width: auto;
  height: auto;
  filter: brightness(0);    /* dark logos on cream background */
  opacity: 0.5;
  transition: opacity 0.2s;
  object-fit: contain;
}

.brand-item:hover img {
  opacity: 0.8;
}

.brand-item--plain img {
  filter: none;
  opacity: 0.7;
}

.brand-item--plain:hover img {
  opacity: 1;
}

.brand-item--text span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0.6;
  transition: opacity 0.2s;
  text-align: center;
}

.brand-item--text:hover span {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .brand-item { width: 33.333%; }
}

@media (max-width: 560px) {
  .brand-item { width: 50%; }
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  position: relative;
  padding: 64px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

footer::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url('images/morris-arch.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.18;
  pointer-events: none;
}

.footer-logo {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 8px;
  max-width: 280px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--grey-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.footer-contact a:hover {
  border-color: var(--white);
}

.footer-bottom {
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── PAGE HEADER (inner pages) ────────────────────────── */
.page-header {
  padding: 160px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.page-header-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.page-header h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.page-header-desc {
  margin-top: 24px;
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ── CONTACT PAGE ─────────────────────────────────────── */
.contact-detail {
  color: var(--white);
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HAMBURGER / MOBILE MENU ─────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(247, 242, 232, 0.98);
  backdrop-filter: blur(16px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.mobile-menu-close:hover {
  opacity: 1;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 72px 24px;
  }

  .hero-content {
    padding: 100px 24px 0;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 48px 24px;
    flex-direction: column;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 120px 24px 60px;
  }

  .image-band-caption {
    right: 24px;
  }

  .story-hero-content {
    padding: 0 24px 48px;
  }

  .morris-decor {
    opacity: 0.18;
    width: 140px;
  }
}
