/* ============================================================
   SARAH DAMS — ART DIRECTOR & CREATIVE LEAD
   style.css
   ============================================================ */


/* ─────────────────────────────────────────────────────────────
   CANELA @font-face BLOCK
   ─────────────────────────────────────────────────────────────
   License Canela from Commercial Type: commercialtype.com
   Place your font files in a /fonts/ directory, then
   uncomment and complete the src paths below.
   Cormorant Garamond (Google Fonts) acts as the fallback
   until Canela is in place — the site is fully functional now.

@font-face {
  font-family: 'Canela';
  src: url('fonts/Canela-Light-Web.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('fonts/Canela-LightItalic-Web.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('fonts/Canela-Regular-Web.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('fonts/Canela-RegularItalic-Web.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

   ───────────────────────────────────────────────────────────── */


/* ------------------------------------------------------------
   TOKENS
   ------------------------------------------------------------ */
:root {
  /* Backgrounds */
  --bg:       #F0EBE3;    /* warm cream — all light sections */
  --bg-dark:  #1B1916;    /* rich charcoal — hero, services, footer */

  /* Text */
  --ink:      #1B1916;    /* primary text on light bg */
  --ink-inv:  #EAE6DF;    /* primary text on dark bg */
  --muted:    #7D7870;    /* secondary text on light bg */
  --muted-inv: rgba(234, 230, 223, 0.45); /* secondary text on dark bg */

  /* Borders */
  --border:      #D5CEC4;          /* on light bg */
  --border-dark: rgba(234, 230, 223, 0.10); /* on dark bg */

  /* Accent — deep slate blue, used sparingly */
  --accent: #3B5470;

  /* ──────────────────────────────────────────────────────────
     SANS-SERIF SWAP POINT
     Currently: Inter (Google Fonts, free, no license needed).
     When Söhne, Suisse International, or Neue Haas Grotesk
     is licensed, add @font-face rules above and change the
     value of --font-sans below. Every label, nav link, body
     paragraph, and service description updates automatically.
     ────────────────────────────────────────────────────────── */
  --font-serif: 'Canela', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.76, 0, 0.24, 1);

  --pad-x:  clamp(1.5rem, 5.5vw, 5.5rem);
  --max-w:  1500px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: none;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { background: none; border: none; cursor: pointer; padding: 0; color: inherit; }


/* ------------------------------------------------------------
   SECTION LABEL — tiny uppercase tag
   ------------------------------------------------------------ */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* On dark sections, override to the dark-bg muted color */
.services .section-label,
.footer   .section-label { color: var(--muted-inv); }


/* ------------------------------------------------------------
   NAVIGATION — fixed, no background, barely there
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem var(--pad-x);
  pointer-events: none;
}

.nav__mark,
.nav__list a,
.nav__burger { pointer-events: all; }

.nav__mark {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-inv);   /* always light — sits on dark hero at load */
  mix-blend-mode: difference; /* inverts against light sections automatically */
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__list a {
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-inv);
  mix-blend-mode: difference;
  position: relative;
  transition: opacity 0.2s;
}

.nav__list a:hover { opacity: 0.6; }

.nav__list a::after {
  content: '';
  position: absolute;
  inset-block-end: -2px;
  inset-inline-start: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease-expo);
}
.nav__list a:hover::after { width: 100%; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  mix-blend-mode: difference;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink-inv);
  transition: transform 0.32s var(--ease-expo);
}

.nav__burger.is-open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #141210;
  display: flex;
  align-items: flex-end;
  padding: var(--pad-x);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mob-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mob-nav__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
}

.mob-nav__list a {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 12vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink-inv);
  opacity: 0.85;
  transition: opacity 0.15s;
}

.mob-nav__list a:hover { opacity: 0.15; }


/* ------------------------------------------------------------
   HERO — dark, cinematic, full-viewport
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 8vh, 7rem) var(--pad-x) clamp(3.5rem, 7vh, 5.5rem);
  overflow: hidden;
  color: var(--ink-inv);

  /* Cinematic vignette — replaced when video is added */
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(59, 84, 112, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0,0,0,0.35) 100%);
  background-color: var(--bg-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Dark overlay so headline stays readable over any footage */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero__media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero__content { position: relative; z-index: 1; }

/* Statement: "Strategy." / "Craft." / "Culture." */
.hero__statement { user-select: none; }

.hero__line {
  display: block;
  overflow: hidden;
  line-height: 0.88;
}

.hero__word {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;      /* Canela Light — Cormorant Garamond Light fallback */
  font-style: normal;
  font-size: clamp(4.5rem, 13vw, 17rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--ink-inv);
  transform: translateY(112%);
  will-change: transform;
}

.hero__word.is-up {
  transform: translateY(0);
  transition: transform 0.95s var(--ease-expo);
}

/* Staggered delay per line via CSS */
.hero__line:nth-child(2) .hero__word.is-up { transition-delay: 0.13s; }
.hero__line:nth-child(3) .hero__word.is-up { transition-delay: 0.26s; }

/* Byline */
.hero__byline {
  overflow: hidden;
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
}

.hero__byline-inner {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.0vw, 0.9375rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(234, 230, 223, 0.4);
  transform: translateY(100%);
  will-change: transform;
}

.hero__byline-inner.is-up {
  transform: translateY(0);
  transition: transform 0.7s var(--ease-expo);
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: clamp(2.5rem, 5vh, 4rem);
  right: var(--pad-x);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero__scroll.is-visible { opacity: 1; }

.hero__scroll span {
  font-family: var(--font-sans);
  font-size: 0.4375rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(234, 230, 223, 0.25);
  writing-mode: vertical-lr;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(234,230,223,0.2), transparent);
  animation: scrollPulse 2.5s ease-in-out 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}


/* ------------------------------------------------------------
   WORK SECTION — light bg
   ------------------------------------------------------------ */
.work {
  border-top: 1px solid var(--border);
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.work__container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.work__label {
  margin-bottom: clamp(3.5rem, 6vw, 7rem);
}


/* ── FEATURED EDITORIAL STRIPS ─────────────────────────────── */

.work__feat {
  display: grid;
  grid-template-columns: 56% 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  margin-bottom: clamp(6rem, 11vw, 13rem);
}

/* Flipped layout — image right, text left */
.work__feat--flip {
  grid-template-columns: 1fr 56%;
}

.work__feat--flip .work__feat-img-wrap { order: 2; }
.work__feat--flip .work__feat-info     { order: 1; }

/* Image */
.work__feat-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}

.work__feat-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.95s var(--ease-expo);
}

/* Hover video support — same pattern as work items below */
.work__feat-img--still { position: relative; z-index: 1; }
.work__feat-img--hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.work__feat:hover .work__feat-img--hover { opacity: 1; }
.work__feat:hover .work__feat-img { transform: scale(1.03); }

/* Info panel */
.work__feat-info { display: flex; flex-direction: column; gap: 0; }

.work__feat-cat {
  font-family: var(--font-sans);
  font-size: 0.4375rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.work__feat-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.work__feat:hover .work__feat-title { color: var(--accent); }

.work__feat-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 38ch;
}

.work__feat-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: inline-block;
  position: relative;
  align-self: flex-start;
  transition: color 0.2s;
}

.work__feat-link::after {
  content: '';
  position: absolute;
  inset-block-end: -2px;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.35s var(--ease-expo), background 0.2s;
}

.work__feat-link:hover { color: var(--accent); }
.work__feat-link:hover::after { background: var(--accent); transform: scaleX(0); transform-origin: right; }


/* ── SUPPORTING WORK GRID ───────────────────────────────────── */

.work__more {
  border-top: 1px solid var(--border);
  padding-top: clamp(3.5rem, 6vw, 7rem);
}

.work__more-label {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3.5rem);
}

.work__item { display: flex; flex-direction: column; }

.work__item-link { display: block; color: var(--ink); }

.work__item-cat {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.4375rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.work__item-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.work__item-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.9s var(--ease-expo);
}

.work__item-link:hover .work__item-img { transform: scale(1.04); }

.work__item-foot {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.work__item-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.25rem, 1.8vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s;
}

.work__item-link:hover .work__item-title { color: var(--accent); }

.work__item-arrow {
  font-size: 0.875rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  display: inline-block;
  transition: opacity 0.2s, transform 0.25s var(--ease-expo);
  flex-shrink: 0;
}

.work__item-link:hover .work__item-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ------------------------------------------------------------
   ABOUT — light bg, 2-column
   ------------------------------------------------------------ */
.about {
  border-top: 1px solid var(--border);
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.about__container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.about__grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(2rem, 5vw, 8rem);
  max-width: 1000px;
  align-items: start;
}

.about__col-label { padding-top: 0.15rem; }

/* Editorial pull quote */
.about__pull {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.375rem, 2.2vw, 2.25rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.about__body {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 2rem;
}

.about__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}

.about__cta::after {
  content: '';
  position: absolute;
  inset-block-end: -1px;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.35s var(--ease-expo), background 0.2s;
}

.about__cta:hover { color: var(--accent); }
.about__cta:hover::after { background: var(--accent); transform: scaleX(0); transform-origin: right; }


/* ------------------------------------------------------------
   SERVICES — dark section
   ------------------------------------------------------------ */
.services {
  background: var(--bg-dark);
  color: var(--ink-inv);
  border-top: 1px solid var(--border-dark);
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.services__container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.services__container > .section-label {
  margin-bottom: clamp(3rem, 5vw, 5.5rem);
}

.services__list { border-top: 1px solid var(--border-dark); }

.services__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  padding-block: clamp(1.5rem, 2.5vw, 2.25rem);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.2s;
}

.services__item:hover { background: rgba(234, 230, 223, 0.03); }

.services__num {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--muted-inv);
  padding-top: 0.25rem;
}

.services__name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink-inv);
  margin-bottom: 0.625rem;
}

.services__desc {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted-inv);
}


/* ------------------------------------------------------------
   PROCESS — light bg
   ------------------------------------------------------------ */
.process {
  border-top: 1px solid var(--border);
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.process__container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.process__container > .section-label {
  margin-bottom: clamp(3rem, 5vw, 5.5rem);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.5rem, 2.5vw, 3rem);
  align-items: start;
}

.process__item {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.process__num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.4375rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.process__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.125rem, 1.6vw, 1.75rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}

.process__body {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 0.85vw, 0.8125rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}


/* ------------------------------------------------------------
   AWARDS & LEADERSHIP — light bg
   ------------------------------------------------------------ */
.awards {
  border-top: 1px solid var(--border);
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.awards__container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.awards__container > .section-label {
  margin-bottom: clamp(3rem, 5vw, 5.5rem);
}

/* Featured award */
.awards__feature {
  border-top: 1px solid var(--border);
  padding-top: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.awards__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.4375rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.awards__award {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.awards__award-project {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Leadership roles grid */
.awards__roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 3rem);
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.awards__role {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.awards__role-title {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.awards__role-org {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  line-height: 1.2;
  color: var(--ink);
}


/* ------------------------------------------------------------
   FOOTER / CONTACT — dark bg
   ------------------------------------------------------------ */
.footer {
  background: var(--bg-dark);
  color: var(--ink-inv);
  border-top: 1px solid var(--border-dark);
  padding-block: clamp(4.5rem, 9vw, 9rem) clamp(2rem, 4vw, 3rem);
}

.footer__container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 260px 220px;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.footer__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink-inv);
}

.footer__col-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.4375rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-inv);
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-inv);
  margin-bottom: 0.625rem;
  transition: color 0.2s;
}

.footer__link:last-child { margin-bottom: 0; }
.footer__link:hover { color: var(--accent); }

.footer__info-text {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-inv);
}

.footer__avail {
  margin-top: 0.75rem;
  opacity: 0.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-dark);
}

.footer__bottom span {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted-inv);
}


/* ------------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------------ */
.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1200px) {
  .process__grid { grid-template-columns: repeat(3, 1fr); }
  .process__item:nth-child(4),
  .process__item:nth-child(5) { margin-top: clamp(1.5rem, 3vw, 2.5rem); }
}

@media (max-width: 1024px) {
  .work__feat,
  .work__feat--flip {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work__feat--flip .work__feat-img-wrap,
  .work__feat--flip .work__feat-info { order: unset; }

  .work__feat-img-wrap { aspect-ratio: 16 / 9; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__info-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .awards__roles { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav__list   { display: none; }
  .nav__burger { display: flex; }

  .services__item { grid-template-columns: 50px 1fr; gap: 1.25rem; }
  .awards__roles  { grid-template-columns: 1fr; }
  .footer__top    { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__scroll   { display: none; }
  .footer__bottom span:last-child { display: none; }
}

@media (max-width: 600px) {
  .work__grid     { grid-template-columns: 1fr; }
  .process__grid  { grid-template-columns: 1fr; }
}


/* ------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
  }

  .hero__word,
  .hero__byline-inner { transform: none !important; }

  .js-reveal { opacity: 1 !important; transform: none !important; }

  .work__item-arrow { opacity: 1 !important; transform: none !important; }

  /* Hide autoplay video — bg-dark color fallback shows instead */
  .hero__media-video { display: none; }
}
