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

  :root {
    --crimson: #8B1E1E;
    --crimson-dark: #6B1515;
    --cream: #F0EBE0;
    --cream-dark: #E2D9C8;
    --black: #0F0F0F;
    --white: #FFFFFF;
    --muted: #6B6560;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
  }

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

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: transparent;
    transition: background 0.3s;
  }
  nav.scrolled { background: rgba(15,15,15,0.88); backdrop-filter: blur(8px); }

  .nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; }
  .brand-mark { width: 26px; height: 26px; flex-shrink: 0; }
  .nav-logo .brand-wordmark { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.06em; color: var(--white); }

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

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  .nav-links a:hover { opacity: 1; }

  .nav-right { display: flex; align-items: center; gap: 28px; }

  .nav-lang {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .nav-lang a {
    color: var(--white);
    opacity: 0.55;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .nav-lang a:hover { opacity: 1; }
  .nav-lang a.active { opacity: 1; border-bottom: 1px solid rgba(255,255,255,0.7); padding-bottom: 1px; }
  .nav-lang-sep { color: rgba(255,255,255,0.35); }

  .social-links { display: flex; align-items: center; gap: 16px; }
  .social-links a {
    color: var(--white);
    opacity: 0.75;
    transition: opacity 0.2s;
    display: flex;
  }
  .social-links a:hover { opacity: 1; }
  .social-links svg { width: 18px; height: 18px; }

  .nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--crimson);
    padding: 10px 22px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--crimson-dark); }

  /* HERO (VIDEO) */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--black);
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,15,15,0.45) 0%, rgba(15,15,15,0.1) 35%, rgba(15,15,15,0.85) 100%);
  }

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

  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 8vw, 108px);
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 28px;
  }

  .hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255,255,255,0.55);
  }

  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    margin-bottom: 40px;
  }

  .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  /* On shorter viewports (common laptops like 1366x768, 1280x720) the
     bottom-aligned hero content is tall enough to push its top line up
     behind the transparent nav bar. Scale it down so it always clears. */
  @media (max-height: 820px) {
    .hero-eyebrow { margin-bottom: 14px; }
    .hero-title { font-size: clamp(36px, 5.5vw, 72px); margin-bottom: 16px; }
    .hero-sub { font-size: 15px; margin-bottom: 24px; }
    .hero-content { padding-bottom: 56px; }
  }

  .btn-primary {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--crimson);
    padding: 14px 30px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .btn-primary:hover { background: var(--cream); }

  .btn-ghost {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); border-color: var(--white); }

  .hero-badge {
    position: absolute;
    z-index: 1;
    top: 110px;
    right: 48px;
    background: var(--crimson);
    padding: 16px 20px;
    text-align: center;
    min-width: 120px;
  }

  .hero-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--white);
    line-height: 1;
  }

  .hero-badge-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
  }

  /* MARQUEE */
  .marquee-bar {
    background: var(--black);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    padding: 0 32px;
    flex-shrink: 0;
  }

  .marquee-dot { color: var(--crimson); padding: 0; }

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

  /* STATS BAR */
  .stats-bar {
    background: var(--cream-dark);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .stat-cell {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(15,15,15,0.08);
  }
  .stat-cell:last-child { border-right: none; }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: var(--crimson);
    letter-spacing: 0.02em;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
  }

  /* SECTION LABEL */
  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
  }

  .section-label-text {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .section-label-line {
    height: 1px;
    width: 40px;
    background: var(--muted);
    opacity: 0.4;
  }

  /* WORK / CASE STUDIES */
  .work {
    padding: 120px 48px 60px;
    background: var(--cream);
  }

  .work-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 80px;
  }

  .work-teaser {
    padding-bottom: 100px;
  }

  .work-teaser .work-header {
    margin-bottom: 40px;
  }

  .more-work-label {
    margin-top: 100px;
  }

  .work-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 6vw, 88px);
    line-height: 0.9;
    color: var(--black);
  }

  .work-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--crimson);
  }

  .work-intro {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 420px;
  }

  .case-study {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid rgba(15,15,15,0.08);
  }

  .case-study.reverse .case-study-media { order: 2; }
  .case-study.reverse .case-study-text { order: 1; }

  .case-study-media {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 460px;
    overflow: hidden;
  }

  .case-study-media img, .case-study-media video {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    filter: grayscale(8%);
    transition: filter 0.4s, transform 0.5s;
  }
  .case-study-media img:hover, .case-study-media video:hover { filter: grayscale(0%); transform: scale(1.02); }

  .case-study-media img:nth-child(1), .case-study-media video:nth-child(1) { grid-row: 1 / 3; grid-column: 1; }
  .case-study-media img:nth-child(2), .case-study-media video:nth-child(2) { grid-column: 2; grid-row: 1; }
  .case-study-media img:nth-child(3), .case-study-media video:nth-child(3) { grid-column: 2; grid-row: 2; }

  .case-study-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 16px;
  }

  .case-study-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 4.5vw, 64px);
    color: var(--crimson);
    line-height: 0.95;
    margin-bottom: 20px;
  }

  .case-study-copy {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .case-study-stats {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
  }
  .case-study-stats span { display: flex; align-items: center; gap: 6px; }
  .case-study-stats svg { width: 14px; height: 14px; }

  .case-study-credit {
    font-size: 12px;
    font-style: italic;
    color: var(--muted);
    margin-top: -6px;
    margin-bottom: 20px;
  }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .work-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .work-card img, .work-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s, transform 0.5s;
  }
  .work-card:hover img, .work-card:hover video { filter: grayscale(0%); transform: scale(1.06); }

  .work-card-label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(15,15,15,0.75) 0%, transparent 100%);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .work-card:hover .work-card-label { opacity: 1; }

  /* WHY / APPROACH */
  .why {
    background: var(--black);
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-left .section-label-text { color: rgba(255,255,255,0.4); }
  .why-left .section-label-line { background: rgba(255,255,255,0.3); }

  .why-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 32px;
  }

  .why-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--crimson);
    opacity: 0.9;
  }

  .why-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
  }

  .why-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 3px;
    transition: border-color 0.2s;
  }
  .why-link:hover { border-color: var(--white); }

  .why-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }

  .why-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--crimson);
  }

  .why-item-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--crimson);
    line-height: 1;
    min-width: 32px;
  }

  .why-item-title {
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 6px;
  }

  .why-item-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
  }

  /* WHO */
  .who { padding: 120px 48px; background: var(--cream); }

  .who-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }

  .who-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: 0.92;
    color: var(--black);
  }

  .who-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--crimson); }

  .who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

  .who-card { background: var(--cream-dark); padding: 40px 28px; }

  .who-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--crimson);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.5;
  }

  .who-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--black);
    margin-bottom: 14px;
  }

  .who-card-text { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--muted); }

  /* TEAM */
  .team { padding: 120px 48px; background: var(--cream-dark); }

  .team-header { margin-bottom: 60px; }

  .team-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: 0.92;
    color: var(--black);
  }
  .team-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--crimson); }

  .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }

  .team-card { display: grid; grid-template-columns: 160px 1fr; gap: 28px; align-items: start; }

  .team-photo { width: 160px; height: 200px; object-fit: cover; }

  .team-role {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 6px;
  }

  .team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 12px;
  }

  .team-bio { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--muted); }

  /* CLIENTS */
  .clients {
    position: relative;
    background: var(--crimson);
    padding: 80px 48px;
    overflow: hidden;
  }

  .clients-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.18;
    mix-blend-mode: luminosity;
  }

  .clients-inner { position: relative; z-index: 1; }

  .clients-label .section-label-text { color: rgba(255,255,255,0.5); }
  .clients-label .section-label-line { background: rgba(255,255,255,0.3); }

  .clients-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 48px;
  }

  .clients-list { display: flex; flex-wrap: wrap; gap: 0; }

  .client-name {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    padding: 12px 28px;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: color 0.2s;
  }
  .client-name:hover { color: var(--white); }

  /* CTA STRIP */
  .cta-strip {
    position: relative;
    background: var(--black);
    padding: 110px 48px;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
  }

  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.92;
    color: var(--white);
  }
  .cta-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--crimson); }

  .cta-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
  }

  .cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

  .btn-large {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--crimson);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-large:hover { background: var(--crimson-dark); }

  .btn-ghost {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    padding: 15px 36px;
    border: 1px solid rgba(255,255,255,0.35);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

  .cta-trust { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); }
  .cta-stars { color: var(--crimson); letter-spacing: 0.2em; margin-right: 6px; }
  .cta-trust-sep { margin: 0 10px; color: rgba(255,255,255,0.3); }

  /* FOOTER */
  footer {
    background: var(--crimson);
    padding: 60px 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .footer-logo .brand-mark { width: 26px; height: 26px; }
  .footer-logo .brand-wordmark { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.06em; color: var(--white); }

  .footer-tagline { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }

  .footer-heading {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
  }

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

  .footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }

  .footer-contact-item { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); margin-bottom: 8px; line-height: 1.5; }

  .footer-socials { display: flex; gap: 16px; margin-top: 18px; }
  .footer-socials a { color: var(--white); opacity: 0.75; transition: opacity 0.2s; }
  .footer-socials a:hover { opacity: 1; }
  .footer-socials svg { width: 18px; height: 18px; }

  .footer-bottom {
    background: var(--crimson-dark);
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

  .footer-legal { display: flex; gap: 24px; }

  .footer-legal a {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: rgba(255,255,255,0.8); }

  /* CASE STUDY TEASER (home page, links to dedicated page) */
  a.case-study { text-decoration: none; color: inherit; }

  .case-study-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
  }

  /* WORK INDEX / BLOG INDEX GRID */
  .index-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
    margin-top: 60px;
  }

  .index-card { text-decoration: none; color: inherit; display: block; }

  .index-card-media {
    height: 320px;
    overflow: hidden;
    margin-bottom: 24px;
  }

  .index-card-media img, .index-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(8%);
    transition: filter 0.4s, transform 0.5s;
  }
  .index-card:hover .index-card-media img,
  .index-card:hover .index-card-media video { filter: grayscale(0%); transform: scale(1.03); }

  .index-card-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .index-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    color: var(--crimson);
    line-height: 1;
    margin-bottom: 14px;
  }

  .index-card-excerpt { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--muted); }

  /* CASE STUDY / POST PAGE HEADER */
  .page-hero {
    padding: 160px 48px 60px;
    background: var(--cream);
  }

  .page-hero-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.22em;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .page-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.92;
    color: var(--black);
    max-width: 900px;
  }

  .page-hero-date { font-size: 13px; font-weight: 300; color: var(--muted); margin-top: 20px; }

  .page-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 28px);
    color: var(--crimson);
    margin-top: 14px;
  }

  .page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(15,15,15,0.1);
    max-width: 900px;
  }

  .page-hero-meta-item {
    font-size: 15px;
    font-weight: 300;
    color: var(--black);
  }

  .page-hero-meta-item span {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .page-back {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 32px;
  }
  .page-back:hover { color: var(--crimson); }

  /* CASE STUDY GALLERY */
  .cs-gallery {
    padding: 0 48px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .cs-gallery-item { aspect-ratio: 4/5; overflow: hidden; }
  .cs-gallery-item.wide { grid-column: span 2; aspect-ratio: 8/5; }

  .cs-gallery-item img, .cs-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(8%);
    transition: filter 0.4s, transform 0.5s;
  }
  .cs-gallery-item img:hover, .cs-gallery-item video:hover { filter: grayscale(0%); transform: scale(1.02); }

  .cs-body { padding: 60px 48px 40px; max-width: 760px; }
  .cs-body p { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
  .cs-body .case-study-credit { margin-bottom: 20px; }

  .cs-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--crimson);
    margin: 48px 0 12px;
  }
  .cs-body h2:first-child { margin-top: 0; }

  .cs-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.05;
    color: var(--black);
    margin: 0 0 20px;
  }

  .cs-gallery-bottom { margin-top: 8px; }

  .cs-credits {
    padding: 20px 48px 100px;
    max-width: 900px;
  }

  .cs-credits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 20px;
  }

  .cs-credits-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15,15,15,0.08);
    font-size: 14px;
  }

  .cs-credits-role { color: var(--muted); font-weight: 300; }
  .cs-credits-name { color: var(--black); font-weight: 500; text-align: right; }

  .cs-stats {
    padding: 0 48px 100px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    max-width: 760px;
  }
  .cs-stats span { display: flex; align-items: center; gap: 6px; }
  .cs-stats svg { width: 14px; height: 14px; }

  /* BLOG POST */
  .post-body { padding: 60px 48px 120px; max-width: 720px; }
  .post-body p { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
  .post-body strong { color: var(--black); font-weight: 500; }

  .post-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    color: var(--black);
    line-height: 1.1;
    margin: 48px 0 18px;
  }

  .post-body ul, .post-body ol {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    margin: 0 0 20px 22px;
  }
  .post-body li { margin-bottom: 10px; }
  .post-body li strong { color: var(--black); }

  .post-body blockquote {
    border-left: 3px solid var(--crimson);
    padding-left: 24px;
    margin: 32px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.6;
    color: var(--black);
  }
  .post-body blockquote p { margin-bottom: 0; color: inherit; }

  .post-figure { margin: 40px 0; }
  .post-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  .post-figure figcaption {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--muted);
    text-align: center;
  }

  /* SCROLL ANIMATION */
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-right { gap: 16px; }

    /* width:100% keeps this flex item pinned to the viewport width; without it,
       the padding-right reserved below makes the browser's flex shrink-to-fit
       sizing overshoot and overflow the screen horizontally. */
    .hero-content { width: 100%; padding: 0 24px 60px; }
    /* Fixed to a safe zone near the top (not tied to text length) so it
       never collides with the headline regardless of how many lines it wraps to. */
    .hero-badge { top: 90px; bottom: auto; right: 16px; padding: 12px 14px; min-width: 84px; }
    .hero-badge-num { font-size: 26px; }
    .hero-eyebrow, .hero-title { padding-right: 96px; }
    .hero-eyebrow { display: none; }
    .hero-cta-group .btn-primary { display: none; }

    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2n) { border-right: none; }
    .stat-cell:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: none; }

    .work, .why, .who, .team, .clients, .cta-strip { padding-left: 24px; padding-right: 24px; }
    .work-header, .why, .team-grid { grid-template-columns: 1fr; gap: 32px; }
    .who-grid { grid-template-columns: repeat(2, 1fr); }

    .case-study, .case-study.reverse { grid-template-columns: 1fr; }
    .case-study.reverse .case-study-media, .case-study.reverse .case-study-text { order: unset; }
    .case-study-media { height: 360px; }

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

    .team-card { grid-template-columns: 110px 1fr; }
    .team-photo { width: 110px; height: 140px; }

    .cta-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }

    footer { grid-template-columns: 1fr; }

    .index-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 130px 24px 40px; }
    .cs-gallery { padding: 0 24px 24px; grid-template-columns: 1fr 1fr; }
    .cs-gallery-item.wide { grid-column: span 2; }
    .cs-body, .cs-stats, .post-body, .cs-credits { padding-left: 24px; padding-right: 24px; }
    .cs-credits-grid { grid-template-columns: 1fr; }
    .page-hero-meta { gap: 24px; }
  }
