  /* ====== NEULIS FONT FAMILY ====== */
  @font-face { font-family: 'Neulis'; src: url('../fonts/Neulis-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neulis'; src: url('../fonts/Neulis-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neulis'; src: url('../fonts/Neulis-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
  @font-face { font-family: 'Neulis'; src: url('../fonts/Neulis-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neulis'; src: url('../fonts/Neulis-SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neulis'; src: url('../fonts/Neulis-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neulis'; src: url('../fonts/Neulis-Black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neulis'; src: url('../fonts/Neulis-BlackItalic.otf') format('opentype'); font-weight: 900; font-style: italic; font-display: swap; }

  :root {
    --bg: #ffffff;
    --bg-soft: #f7f7fb;
    --ink: #3d3d8a;
    --ink-deep: #2d2d6e;
    --ink-soft: #6a6aa0;
    --text: #2d2d6e;
    --accent: #f26f2a;
    --accent-hover: #e25c18;
    --line: rgba(61,61,138,0.15);
    --display: 'Neulis', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

  /* ====== NAV ====== */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px; max-width: 1440px; margin: 0 auto;
  }
  .logo-img { height: 56px; width: auto; }
  .nav-links {
    display: flex; gap: 40px; align-items: center;
    font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .nav-links a { transition: color 0.2s; }
  .nav-links a:hover { color: var(--accent); }
  .lang-toggle {
    display: flex; gap: 4px; font-size: 12px;
    border-left: 1px solid var(--line);
    padding-left: 24px; margin-left: 12px;
  }
  .lang-toggle button {
    background: none; border: none; cursor: pointer;
    color: var(--ink-soft); font-family: inherit;
    font-size: 12px; font-weight: 500;
    padding: 4px 6px; text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .lang-toggle button.active { color: var(--accent); font-weight: 700; }

  /* ====== HERO ====== */
  .hero {
    padding: 120px 0 80px;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .hero-eyebrow {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--accent);
    font-weight: 700; margin-bottom: 32px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 2px;
    background: var(--accent);
  }
  .hero h1 {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(56px, 9vw, 130px);
    line-height: 0.92; letter-spacing: -0.04em;
    color: var(--ink); text-transform: uppercase;
    margin-bottom: 32px;
  }
  .hero h1 .accent { color: var(--accent); }
  .hero-subtitle {
    font-family: var(--display); font-weight: 300;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.5; max-width: 720px;
    color: var(--ink-soft); margin-bottom: 56px;
  }
  .hero-meta {
    display: flex; gap: 64px; align-items: flex-end;
    flex-wrap: wrap; padding-top: 48px;
    border-top: 1px solid var(--line);
  }
  .hero-meta-item {
    font-size: 14px; color: var(--ink-soft);
    max-width: 280px; line-height: 1.5;
  }
  .hero-meta-item strong {
    color: var(--ink); font-weight: 700;
    display: block; margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.08em;
    font-size: 12px;
  }

  /* ====== HERO REEL ====== */
  .hero-reel {
    margin-top: 80px; aspect-ratio: 21/9;
    background-image: url('../projects/01-fiesta-salsa-carlos-vives.jpg');
    background-size: cover; background-position: center;
    border-radius: 8px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-reel::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(61,61,138,0.55) 0%, rgba(45,45,110,0.35) 50%, rgba(242,111,42,0.45) 130%);
  }
  .play-circle {
    position: relative; width: 96px; height: 96px;
    border-radius: 50%; background: var(--bg);
    color: var(--accent); display: flex;
    align-items: center; justify-content: center;
    font-size: 28px; cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
  .play-circle:hover { transform: scale(1.08); }
  .reel-label {
    position: absolute; bottom: 24px; left: 24px;
    color: rgba(255,255,255,0.95);
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.18em; font-weight: 700;
    z-index: 1;
  }
  .reel-label-right {
    position: absolute; bottom: 24px; right: 24px;
    color: rgba(255,255,255,0.85);
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.18em; font-weight: 700;
    z-index: 1;
  }

  /* ====== SECTION ====== */
  .section { padding: 120px 0; border-bottom: 1px solid var(--line); }
  .section-head {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 64px; margin-bottom: 64px; align-items: end;
  }
  .section-num {
    font-family: var(--display); font-size: 13px;
    font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.15em;
  }
  .section-title {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1; letter-spacing: -0.03em;
    color: var(--ink); text-transform: uppercase;
  }
  .section-title .accent { color: var(--accent); }
  .section-title .light { font-weight: 300; }

  /* ====== SELECTED WORKS ====== */
  .works-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 64px 32px;
  }
  .work { cursor: pointer; transition: transform 0.3s; }
  .work:hover { transform: translateY(-4px); }
  .work-img {
    aspect-ratio: 4/3; border-radius: 6px;
    margin-bottom: 20px; position: relative; overflow: hidden;
    background-size: cover; background-position: center;
  }
  .work-img.large { aspect-ratio: 16/8; }
  .work-meta {
    display: flex; justify-content: space-between;
    align-items: flex-start;
  }
  .work-name {
    font-family: var(--display); font-weight: 700;
    font-size: 22px; letter-spacing: -0.015em;
    color: var(--ink); margin-bottom: 4px;
  }
  .work-tag {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--accent);
    font-weight: 700; padding: 6px 12px;
    border: 1px solid var(--accent);
    border-radius: 100px; white-space: nowrap;
  }
  .work-year { font-size: 13px; color: var(--ink-soft); }
  .work.large { grid-column: span 2; }

  /* ====== SERVICES ====== */
  .services {
    background: var(--ink); color: var(--bg); border: none;
  }
  .services .section-num { color: var(--accent); }
  .services .section-title { color: var(--bg); }
  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; overflow: hidden;
  }
  .service {
    background: var(--ink); padding: 48px 32px;
    min-height: 360px; display: flex;
    flex-direction: column; justify-content: space-between;
    transition: background 0.3s;
  }
  .service:hover { background: var(--ink-deep); }
  .service-num {
    font-family: var(--display); font-weight: 900;
    font-size: 14px; color: var(--accent);
    margin-bottom: 32px; letter-spacing: 0.1em;
  }
  .service-title {
    font-family: var(--display); font-weight: 900;
    font-size: 28px; line-height: 1;
    letter-spacing: -0.02em; margin-bottom: 16px;
    text-transform: uppercase; color: var(--bg);
  }
  .service-desc {
    font-size: 15px; line-height: 1.6;
    font-weight: 300; color: rgba(255,255,255,0.75);
  }
  .service-tags {
    margin-top: 32px; font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    line-height: 1.9; font-weight: 500;
  }

  /* ====== ABOUT ====== */
  .about-teaser {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .about-img {
    aspect-ratio: 4/5; border-radius: 8px;
    position: relative; overflow: hidden;
    background-image: url('../photos/alejandro-portrait.jpg');
    background-size: cover; background-position: center top;
  }
  .about-text { max-width: 540px; }
  .about-text h2 {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1; letter-spacing: -0.025em;
    color: var(--ink); text-transform: uppercase;
    margin-bottom: 28px;
  }
  .about-text h2 .accent { color: var(--accent); }
  .about-text p {
    font-size: 17px; line-height: 1.7;
    color: var(--ink-soft); margin-bottom: 18px;
    font-weight: 300;
  }
  .about-text p strong { color: var(--ink); font-weight: 600; }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 32px; padding: 14px 24px;
    background: var(--accent); color: var(--bg);
    border-radius: 100px; font-size: 13px;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.25s, transform 0.25s;
  }
  .pill:hover { background: var(--accent-hover); transform: translateX(4px); }
  .pill::after { content: '→'; }
  .pill.outline {
    background: transparent; color: var(--ink);
    border: 2px solid var(--ink);
  }
  .pill.outline:hover { background: var(--ink); color: var(--bg); }

  /* ====== PODCAST STRIP ====== */
  .podcast {
    background: var(--accent); color: var(--bg);
    padding: 100px 0; border: none;
  }
  .podcast .container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .podcast-text .section-num { color: rgba(255,255,255,0.85); }
  .podcast-text h2 {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1; letter-spacing: -0.025em;
    margin: 16px 0 28px; text-transform: uppercase;
  }
  .podcast-text h2 em {
    font-style: italic; font-weight: 900;
  }
  .podcast-text p {
    font-size: 17px; line-height: 1.65;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.95);
    font-weight: 300; max-width: 480px;
  }
  .podcast-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: var(--bg);
    color: var(--accent); border-radius: 100px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: transform 0.25s;
  }
  .podcast-pill:hover { transform: translateX(4px); }
  .podcast-pill::after { content: '→'; }

  .podcast-visual {
    aspect-ratio: 16/9; border-radius: 8px;
    display: block; position: relative; overflow: hidden;
    background-image: url('../projects/07-podcast-mortgage-specialist.jpg');
    background-size: cover; background-position: center;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .podcast-visual:hover { transform: scale(1.02); }
  .podcast-visual::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(45,45,110,0.4) 0%, rgba(242,111,42,0.2) 100%);
    transition: opacity 0.3s;
  }
  .podcast-visual:hover::before { opacity: 0.6; }
  .podcast-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--accent); display: flex;
    align-items: center; justify-content: center;
    font-size: 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    z-index: 1;
  }

  /* ====== CLIENTS ====== */
  .clients {
    padding: 80px 0; background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
  }
  .clients-label {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--ink-soft);
    text-align: center; margin-bottom: 40px;
    font-weight: 600;
  }
  .clients-row {
    display: flex; justify-content: space-around;
    flex-wrap: wrap; gap: 48px; align-items: center;
  }
  .client-logo {
    font-family: var(--display); font-weight: 700;
    font-size: 22px; letter-spacing: -0.01em;
    color: var(--ink); opacity: 0.45;
    transition: opacity 0.3s; text-transform: uppercase;
  }
  .client-logo:hover { opacity: 1; }

  /* ====== CTA ====== */
  .cta {
    padding: 160px 0; text-align: center;
    background: var(--bg); border-bottom: 1px solid var(--line);
  }
  .cta-eyebrow {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--accent);
    margin-bottom: 24px; font-weight: 700;
  }
  .cta h2 {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(56px, 8vw, 120px);
    line-height: 0.92; letter-spacing: -0.04em;
    max-width: 1100px; margin: 0 auto 56px;
    color: var(--ink); text-transform: uppercase;
  }
  .cta h2 .accent { color: var(--accent); }
  .cta-mail {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(20px, 2.2vw, 28px);
    color: var(--ink);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px; transition: color 0.2s;
  }
  .cta-mail:hover { color: var(--accent); }

  /* ====== FOOTER ====== */
  footer { padding: 80px 0 32px; background: var(--ink); color: var(--bg); }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 64px;
  }
  .footer-brand img {
    height: 64px; width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
  }
  .footer-tag {
    font-size: 14px; color: rgba(255,255,255,0.7);
    max-width: 320px; font-weight: 300; line-height: 1.6;
  }
  .footer-col h4 {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--accent);
    font-weight: 700; margin-bottom: 20px;
  }
  .footer-col a {
    display: block; font-size: 14px;
    color: rgba(255,255,255,0.85); margin-bottom: 10px;
    font-weight: 400;
    transition: color 0.2s, padding-left 0.2s;
  }
  .footer-col a:hover { color: var(--accent); padding-left: 4px; }
  .footer-bottom {
    display: flex; justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 12px; color: rgba(255,255,255,0.5);
  }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 920px) {
    .nav-links { gap: 20px; font-size: 11px; }
    .nav-links a:nth-child(2),
    .nav-links a:nth-child(3) { display: none; }
    .section { padding: 80px 0; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .works-grid { grid-template-columns: 1fr; gap: 40px; }
    .work.large { grid-column: span 1; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about-teaser { grid-template-columns: 1fr; gap: 32px; }
    .podcast .container { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero { padding: 80px 0 40px; }
    .cta { padding: 80px 0; }
    .logo-img { height: 48px; }
  }
  @media (max-width: 560px) {
    .container, .nav-inner { padding: 0 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .hero h1 { font-size: 56px; }
    .cta h2 { font-size: 56px; }
  }

  [data-lang="es"] { display: none; }
  body.es [data-lang="es"] { display: inline; }
  body.es [data-lang="en"] { display: none; }

  /* ============== ABOUT PAGE ============== */
  .about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
  }
  .about-portrait {
    aspect-ratio: 4/5;
    background-image: url('../photos/alejandro-portrait.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
  }
  .about-intro-text p {
    font-size: 22px;
    line-height: 1.5;
  }
  .about-narrative .container {
    max-width: 760px;
  }
  .about-narrative p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .about-quote {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 500;
    padding: 80px 0;
    text-align: center;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-quote .quote-author {
    display: block;
    margin-top: 24px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
  }
  .nav-links a.is-active {
    color: var(--accent);
  }

  /* ============== CONTACT PAGE ============== */
  .contact-grid .container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .contact-form-wrap h3 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 24px;
    color: var(--ink-soft);
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border: none;
    border-bottom: 1px solid var(--ink);
    padding: 12px 0;
    font: inherit;
    font-size: 18px;
    background: transparent;
    color: var(--ink);
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-bottom-color: var(--accent);
  }
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
  }
  .contact-form button {
    align-self: flex-start;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 18px 36px;
    font: inherit;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.2s;
    margin-top: 8px;
  }
  .contact-form button:hover {
    background: var(--accent);
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    background: #f7f6f0;
    border-radius: 4px;
  }
  .contact-info-block h4 {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: var(--ink-soft);
  }
  .contact-info-block p,
  .contact-info-block a {
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink);
    text-decoration: none;
    margin: 0;
  }
  .contact-info-block a:hover {
    color: var(--accent);
  }
  @media (max-width: 720px) {
    .contact-grid .container {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .contact-info {
      padding: 24px;
    }
  }

  /* ============== WORK INDEX PAGE ============== */
  .work-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 48px;
  }
  .work-filter {
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 10px 20px;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }
  .work-filter:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  .work-filter.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .work.is-link { cursor: pointer; }
  .work.is-link a.work-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  .work-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .work-grid-full .work {
    position: relative;
  }
  @media (max-width: 720px) {
    .work-grid-full {
      grid-template-columns: 1fr;
    }
  }

  /* ============== CASE STUDY PAGE ============== */
  .case-hero {
    padding: 120px 0 64px;
  }
  .case-hero .case-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--ink);
  }
  .case-meta-item h5 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .case-meta-item p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
  }
  .case-cover {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    margin: 0;
  }
  .case-section {
    padding: 80px 0;
  }
  .case-section .container {
    max-width: 800px;
  }
  .case-section h3 {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: var(--accent);
    font-weight: 600;
  }
  .case-section h2 {
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 24px;
    font-weight: 600;
  }
  .case-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .case-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 40px 0;
  }
  .case-gallery .case-img {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
  }
  .case-gallery .case-img.wide {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }
  .case-credits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 48px 0;
    border-top: 1px solid var(--ink);
  }
  .case-credits-block h5 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--ink-soft);
  }
  .case-credits-block p {
    margin: 0;
    font-size: 15px;
  }
  .case-nav {
    display: flex;
    justify-content: space-between;
    padding: 48px 0;
    border-top: 1px solid var(--ink);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .case-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
  }
  .case-nav a:hover {
    color: var(--accent);
  }
  @media (max-width: 720px) {
    .case-hero { padding: 80px 0 40px; }
    .case-hero .case-meta {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .case-section h2 { font-size: 28px; }
    .case-section { padding: 56px 0; }
    .case-gallery { grid-template-columns: 1fr; gap: 16px; }
    .case-credits { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  }

  @media (max-width: 720px) {
    .about-intro .container {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .about-portrait {
      max-width: 320px;
      margin: 0 auto;
    }
    .about-intro-text p {
      font-size: 18px;
    }
    .about-quote {
      font-size: 24px;
      padding: 48px 0;
    }
  }
