/* ==========================================================================
   WALRUS MEDIA — style.css
   Production stylesheet. Do not add inline styles elsewhere.
   Palette: Pure monochrome — black, greys, white.
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Colour */
  --bg:             #0A0A0A;
  --bg-2:           #111111;
  --bg-3:           #1A1A1A;
  --text:           #FFFFFF;
  --text-muted:     #888888;
  --text-dim:       #444444;
  --accent:         #FFFFFF;
  --accent-dim:     rgba(255, 255, 255, 0.05);
  --accent-border:  rgba(255, 255, 255, 0.15);
  --border:         rgba(255, 255, 255, 0.08);
  --border-light:   rgba(255, 255, 255, 0.14);

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  /* Layout */
  --nav-h:          80px;
  --section-v:      clamp(5rem, 10vw, 10rem);
  --container-px:   clamp(1.5rem, 5vw, 5rem);
  --max-w:          1440px;

  /* Easing */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ==========================================================================
   3. SCROLL PROGRESS
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ==========================================================================
   4. CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ==========================================================================
   5. TYPOGRAPHY SCALE
   ========================================================================== */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.body-lg {
  font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-muted);
}

em { font-style: italic; color: inherit; opacity: 0.75; }

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.8125rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: background 0.3s var(--ease-out),
              color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  border-color: var(--text);
  color: var(--text);
}

.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.btn-arrow:hover::after { transform: translateX(5px); }

/* ==========================================================================
   7. NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease-io),
              border-color 0.5s var(--ease-io),
              backdrop-filter 0.5s var(--ease-io);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  flex-shrink: 0;
}

.nav__logo:hover { color: var(--text-muted); }

.nav__links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.5875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link.active { color: var(--text); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta { display: none; }

/* Burger */
.nav__burger {
  width: 26px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
  position: relative;
}

.nav__burger span {
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all 0.45s var(--ease-out);
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 9vw, 4rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.nav__mobile-link:hover,
.nav__mobile-link.active { color: var(--text); }

.nav__mobile-cta { margin-top: 3rem; }

.nav__mobile-social {
  position: absolute;
  bottom: 3rem;
  display: flex;
  gap: 2.5rem;
}

.nav__mobile-social a {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
}

.nav__mobile-social a:hover { color: var(--text-muted); }

/* ==========================================================================
   8. HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Hero background — replace with:
     background-image: url('assets/hero.jpg');
     background-size: cover;
     background-position: center;
  */
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(240, 237, 230, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 237, 230, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 1) 0%,
    rgba(10, 10, 10, 0.5) 40%,
    rgba(10, 10, 10, 0.15) 100%
  );
}

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

.hero__eyebrow {
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__title {
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(36px);
  animation: revealUp 1s var(--ease-out) 0.55s forwards;
}

.hero__sub {
  max-width: 460px;
  margin-bottom: 2.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s var(--ease-out) 0.85s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s var(--ease-out) 1.05s forwards;
}

/* Portrait photo — right side of hero */
.hero__portrait {
  position: absolute;
  top: 0; right: 0;
  width: 62%;
  height: 100%;
  overflow: hidden;
  background-image: url('assets/hero-portrait.jpg');
  background-size: cover;
  background-position: center top;
}

/* Fade left edge so text stays readable */
.hero__portrait::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 60%;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Fade bottom edge */
.hero__portrait::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Text stays left — max width prevents bleed into portrait */
.hero__left-wrap {
  max-width: 100%; /* mobile: full width */
}

@media (max-width: 767px) {
  /* Portrait fades behind content on mobile */
  .hero__portrait {
    width: 100%;
    opacity: 0.3;
  }
}

/* Scroll indicator — desktop only */
.hero__scroll {
  display: none;
  position: absolute;
  bottom: 2.5rem;
  right: var(--container-px);
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  opacity: 0;
  animation: revealUp 0.8s var(--ease-out) 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.hero__scroll span {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}

/* ==========================================================================
   9. SECTIONS BASE
   ========================================================================== */
section { padding: var(--section-v) 0; }

/* ==========================================================================
   10. REEL
   ========================================================================== */
.reel { padding: 3rem 0; }

.reel__wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  overflow: hidden;
}

.reel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /* REPLACE: add reel thumbnail here —
     background-image: url('assets/reel-thumb.jpg');
     background-size: cover;
     background-position: center;
  */
  background: linear-gradient(135deg, #0E0E0E 0%, #141414 100%);
}

.reel__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
}

.reel__label {
  position: relative;
  z-index: 1;
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.reel__play {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(240, 237, 230, 0.18);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.reel__play:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.06);
}

.reel__play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--text);
  margin-left: 4px;
  transition: border-color 0.3s;
}

.reel__play:hover .reel__play-icon {
  border-color: transparent transparent transparent var(--text);
}

.reel__iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: none;
}

.reel__iframe.active { display: block; }

/* ==========================================================================
   11. BRAND STATEMENT
   ========================================================================== */
.statement {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

.statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.statement__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.statement__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.statement__stat-label {
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   12. LOGO STRIP
   ========================================================================== */
.logos {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.logos__label {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── Scrolling belt ── */
.logos-belt {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-belt__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logos-scroll 36s linear infinite;
}

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

.logos-belt__item {
  flex: 0 0 auto;
  height: 90px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  border-right: 1px solid var(--border);
}

/* Default: wordmark-style logos */
.logos-belt__item img {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(1.3);
  opacity: 0.55;
  transition: opacity 0.3s;
}

/* Badge / circular logos — give them more height so they read clearly */
.logos-belt__item--badge img {
  height: 56px;
  max-width: 56px;
}

.logos-belt__item:hover img {
  opacity: 0.85;
}

/* ==========================================================================
   13. WORK PREVIEW
   ========================================================================== */
.work-preview__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.work-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  display: block;
}

.work-card__thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-3);
  transition: transform 0.75s var(--ease-out);
  display: block;
  object-fit: cover;
}

video.work-card__thumb {
  height: 100%;
  object-fit: cover;
}

.work-card:hover .work-card__thumb { transform: scale(1.04); }

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.work-card__cat {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 0.875rem;
}

.work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.575rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s var(--ease-out);
}

.work-card:hover .work-card__link {
  color: var(--text);
}

.work-preview__footer {
  text-align: center;
  margin-top: 3rem;
}

/* ==========================================================================
   14. TESTIMONIALS
   ========================================================================== */
.testimonials { background: var(--bg-2); }

.testimonials__heading {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.testimonial {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  pointer-events: none;
  user-select: none;
}

.testimonial__body {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.4375rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  position: relative;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.testimonial__company {
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   15. CTA SECTION
   ========================================================================== */
.cta-section {
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-section__inner { max-width: 760px; margin: 0 auto; }

.cta-section__eyebrow { margin-bottom: 1.5rem; }

.cta-section__title { margin-bottom: 1.25rem; }

.cta-section__sub { margin-bottom: 2.75rem; }

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-block;
  margin-bottom: 1.125rem;
  transition: color 0.3s;
}

.footer__logo:hover { color: var(--text-muted); }

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 1.75rem;
}

.footer__social-link {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
}

.footer__social-link:hover { color: var(--text-muted); }

.footer__col-title {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav-link {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__nav-link:hover { color: var(--text); }

.footer__contact-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
}

.footer__contact-item a { transition: color 0.3s; }
.footer__contact-item a:hover { color: var(--text); }

.footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ==========================================================================
   17. PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero .label { margin-bottom: 1.5rem; }

/* ==========================================================================
   18. PORTFOLIO
   ========================================================================== */
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--text-muted);
  background: transparent;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--text);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* PHOTO MOSAIC */
.photo-mosaic-section { padding: 4rem 0; }

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 38px;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.photo-mosaic__cell {
  overflow: hidden;
  border-radius: 10px;
}

.photo-mosaic__cell img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.photo-mosaic__cell:hover img { transform: scale(1.04); }

/*
  LEFT  col 1–4:  camera-rig (landscape) + drone (landscape), gap between
  CENTRE col 5–8: beach (tall portrait), drops 1 row for offset
  RIGHT  col 9–12: rocks (portrait top) + dunes (portrait bottom)
  LOWER  row: grass + sony drifting centred below
*/
.photo-mosaic__cell--drone      { grid-column: 1 / 5;  grid-row: 1 / 5;  }
.photo-mosaic__cell--grass      { grid-column: 1 / 5;  grid-row: 6 / 10; }
.photo-mosaic__cell--dunes      { grid-column: 5 / 9;  grid-row: 2 / 12; }
.photo-mosaic__cell--rocks      { grid-column: 9 / 13; grid-row: 1 / 7;  }
.photo-mosaic__cell--sony       { grid-column: 9 / 13; grid-row: 7 / 11; }
.photo-mosaic__cell--camera-rig { display: none; }
.photo-mosaic__cell--beach      { display: none; }

@media (max-width: 767px) {
  .photo-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 12px;
  }
  .photo-mosaic__cell { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .photo-mosaic__cell--beach { aspect-ratio: 3/4; }
  .photo-mosaic__cell--rocks,
  .photo-mosaic__cell--dunes { aspect-ratio: 3/4; }
}
/* END PHOTO MOSAIC */

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  grid-auto-flow: row dense;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
  transition: opacity 0.4s var(--ease-out);
}

/* Aspect ratios — card determines its own row height */
.portfolio-card[data-orientation="horizontal"] { aspect-ratio: 16/9; }
.portfolio-card[data-orientation="square"]     { aspect-ratio: 1/1; }
.portfolio-card[data-span="2"]                 { grid-column: span 2; }

/* Vertical cards: use padding-trick for min-height so they can also
   stretch to fill a taller grid row without leaving a gap */
.portfolio-card[data-orientation="vertical"]::before {
  content: '';
  display: block;
  padding-top: calc(16 / 9 * 100%);
}
.portfolio-card[data-orientation="vertical"] .portfolio-card__thumb,
.portfolio-card[data-orientation="vertical"] video.portfolio-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-3);
  transition: transform 0.75s var(--ease-out);
}

/* Video used as card thumb */
video.portfolio-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-3);
}

.portfolio-card:hover .portfolio-card__thumb { transform: scale(1.04); }

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.portfolio-card__cat {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 0.875rem;
}

.portfolio-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s var(--ease-out);
}

.portfolio-card:hover .portfolio-card__cta {
  color: var(--text);
}

/* ==========================================================================
   19. SERVICES — PLANS
   ========================================================================== */
.plans-intro {
  max-width: 600px;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.plans-intro .label { margin-bottom: 1.25rem; }
.plans-intro .display-3 { margin-bottom: 1.25rem; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.plan-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s;
}

.plan-card:hover { border-color: var(--border-light); }

.plan-card--featured {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-3);
}

.plan-card--featured:hover { border-color: rgba(255, 255, 255, 0.35); }

.plan-card__badge {
  position: absolute;
  top: -1px; right: 2.5rem;
  background: var(--text);
  color: var(--bg);
  font-size: 0.45rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 4px 4px;
}

.plan-card__tier {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.plan-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.plan-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}

.plan-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-card__feature::before {
  content: '—';
  color: var(--text-dim);
  flex-shrink: 0;
  margin-top: 0.05em;
}

.plan-card--featured .plan-card__feature { color: var(--text); }

/* ==========================================================================
   19b. SERVICES — BESPOKE PANELS
   ========================================================================== */
.bespoke-section {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--border);
}

.bespoke-header {
  margin-bottom: 3rem;
}

.bespoke-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.bespoke-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  background: var(--bg);
  transition: background 0.3s;
}

.bespoke-card:hover {
  background: var(--bg-2);
}

.bespoke-card--accent {
  background: color-mix(in srgb, var(--accent) 4%, var(--bg));
}

.bespoke-card--accent:hover {
  background: color-mix(in srgb, var(--accent) 7%, var(--bg));
}

.bespoke-card__number {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
}

.bespoke-card__name {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.bespoke-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bespoke-card__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 0.25rem;
}

.bespoke-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bespoke-card__features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.bespoke-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 0.1em;
}

/* ==========================================================================
   20. SERVICES — PACKAGES
   ========================================================================== */
.packages-section { border-top: 1px solid var(--border); }

.packages-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.packages-header .label { margin-bottom: 1.25rem; }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.package-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.package-card:hover {
  border-color: var(--border-light);
  background: var(--bg-3);
}

.package-card__number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.package-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.package-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.package-card .btn { margin-top: 0.5rem; align-self: flex-start; }

/* ==========================================================================
   21. FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--border); }

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

.faq__list {}

.faq__item { border-bottom: 1px solid var(--border); }

.faq__question {
  width: 100%;
  text-align: left;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.005em;
  transition: color 0.3s;
}

.faq__question:hover { color: var(--text); }

.faq__icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--text-muted);
  transition: all 0.35s var(--ease-out);
}

.faq__item.open .faq__icon {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.faq__answer-inner {
  padding-bottom: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ==========================================================================
   22. CONTACT
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

/* What to expect block */
.expect-block {
  margin-bottom: 0;
}

.expect-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.expect-step {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.expect-step:first-child {
  border-top: 1px solid var(--border);
}

.expect-step__num {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-family: var(--font-sans);
  padding-top: 0.2rem;
  flex-shrink: 0;
  width: 2rem;
}

.expect-step__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.expect-step__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-label {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  width: 100%;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus { border-color: rgba(255, 255, 255, 0.4); }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }

.form-textarea {
  resize: vertical;
  min-height: 160px;
}

.calendly-placeholder {
  background: var(--bg-2);
  border: 1px solid var(--border);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  padding: 3rem;
}

/* REPLACE: swap .calendly-placeholder with:
   <div class="calendly-inline-widget" data-url="YOUR_CALENDLY_URL" style="min-width:320px;height:700px;"></div>
   <script async src="https://assets.calendly.com/assets/external/widget.js"></script>
*/

.calendly-placeholder__icon {
  font-size: 2rem;
  opacity: 0.3;
}

.calendly-placeholder p {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  max-width: 200px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: 1px solid var(--border); }

.contact-info-item .label { margin-bottom: 0.625rem; }

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-info-item a { transition: color 0.3s; }
.contact-info-item a:hover { color: var(--text); }

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact-social-link:last-child { border-bottom: 1px solid var(--border); }

.contact-social-link:hover { color: var(--text); }

.contact-social-link span { font-size: 0.875rem; }

/* ==========================================================================
   23. PLACEHOLDER IMAGES
   ========================================================================== */
.img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  padding: 1rem;
}

/* ==========================================================================
   24. REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out),
              transform 0.85s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ==========================================================================
   25. KEYFRAMES
   ========================================================================== */
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

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

/* ==========================================================================
   26. ACCESSIBILITY
   ========================================================================== */
:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__eyebrow,
  .hero__title,
  .hero__sub,
  .hero__actions,
  .hero__scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   26b. ABOUT PAGE
   ========================================================================== */

/* ── Intro split ── */
.about-intro {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: var(--section-v);
  border-bottom: 1px solid var(--border);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro__title {
  margin: 1.25rem 0 1.75rem;
}

.about-intro__bio {
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.about-intro__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-intro__portrait {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
  /*
    REPLACE with:
    background-image: url('assets/about-portrait.jpg');
    background-size: cover;
    background-position: center top;
  */
}

.about-intro__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,10,10,0.7) 100%);
}

/* ── Story section ── */
.about-story {
  padding: var(--section-v) 0;
  border-bottom: 1px solid var(--border);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.about-story__photo {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
  /*
    REPLACE with:
    background-image: url('assets/about-story.jpg');
    background-size: cover;
    background-position: center;
  */
}

.about-story__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,10,10,0.55) 100%);
}

.about-story__content .label { margin-bottom: 1.25rem; }

.about-story__title { margin-bottom: 0; }

.about-story__body {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Mission statement ── */
.about-mission {
  padding: var(--section-v) 0;
  border-bottom: 1px solid var(--border);
}

.about-mission .label { margin-bottom: 1.5rem; }

.about-mission__statement {
  max-width: 900px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.about-mission__photo {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
  /*
    REPLACE with:
    background-image: url('assets/about-mission.jpg');
    background-size: cover;
    background-position: center;
  */
}

.about-mission__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,10,10,0.7) 100%);
}

/* ── Credentials grid ── */
.about-credentials {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.about-credentials__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-credential {
  padding: 2.5rem var(--container-px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-credential .label { color: var(--text-dim); }

.about-credential__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.about-credential__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 340px;
}

/* ==========================================================================
   27. RESPONSIVE — TABLET (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  /* Nav */
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }

  /* Hero */
  .hero__scroll { display: flex; }
  .hero__left-wrap { max-width: clamp(300px, 46vw, 620px); }

  /* About */
  .about-intro__inner { grid-template-columns: 55fr 45fr; gap: 5rem; }
  .about-story__inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .about-credentials__inner { flex-direction: row; }
  .about-credential {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 3rem 2.5rem;
  }
  .about-credential:last-child { border-right: none; }

  /* Statement */
  .statement__inner {
    grid-template-columns: 3fr 2fr;
    align-items: start;
    gap: 5rem;
  }

  /* Logos */
  .logos__grid { grid-template-columns: repeat(3, 1fr); }

  /* Work preview */
  .work-preview__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .work-preview__grid { grid-template-columns: repeat(2, 1fr); }

  .work-preview__grid .work-card:first-child { grid-column: 1 / -1; }

  .work-preview__grid .work-card:first-child .work-card__thumb { aspect-ratio: 21/9; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }

  /* Plans */
  .plans-grid { grid-template-columns: repeat(3, 1fr); }

  /* Bespoke panels */
  .bespoke-card { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 3rem; }

  /* Packages */
  .packages-grid { grid-template-columns: repeat(2, 1fr); }

  /* Portfolio */
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card[data-orientation="horizontal"] { grid-column: 1 / -1; }

  /* Contact */
  .contact-layout { grid-template-columns: 3fr 2fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   28. RESPONSIVE — DESKTOP (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  /* Logos */
  .logos__grid { grid-template-columns: repeat(5, 1fr); }

  /* Packages */
  .packages-grid { grid-template-columns: repeat(4, 1fr); }

  /* Portfolio */
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-card[data-orientation="horizontal"] { grid-column: 1 / -1; }
}

/* ==========================================================================
   29. RESPONSIVE — LARGE (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
  /* Work preview keeps the same 2-col layout: full-width top + two below */
}
