  @font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/inter-latin.woff2") format("woff2");
  }

  :root {
    --bg: #F5F0E9;
    --ink: #0a0a0a;
    --dark: #0a0a0a;
    --white: #fafafa;
    --muted: #999;
    --light: #F5F0E9;
    --line: #ffffff1a;
    --accent: #ff4d1d;
    --red: #ab1313;
    --orange: #ff6a1d;
    --cursor-size: 8px;
    --cursor-scale-expanded: 5.25;
    --cursor-scale-pressed: 2.4;
  }

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

  html {
    scroll-behavior: smooth;
  }

  html[data-smooth-scroll="true"] {
    scroll-behavior: auto;
  }

  html,
  body {
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  html.has-site-intro,
  html:has(body.has-site-intro),
  body.has-site-intro {
    overflow: hidden;
  }

  .site-intro {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--dark);
    isolation: isolate;
  }

  .site-intro__panels {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: -1;
  }

  .site-intro__panel {
    width: 100%;
    height: 100%;
    background: var(--dark);
    transform: translateY(0);
    transition: transform .92s cubic-bezier(.76, 0, .24, 1);
    will-change: transform;
  }

  .site-intro__panel:nth-child(2) {
    transition-delay: .06s;
  }

  .site-intro__panel:nth-child(3) {
    transition-delay: .12s;
  }

  .site-intro__panel:nth-child(4) {
    transition-delay: .18s;
  }

  .site-intro__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .28s ease, transform .45s cubic-bezier(.16, 1, .3, 1);
  }

  .site-intro__brand img {
    display: block;
    width: clamp(136px, 18vw, 220px);
    height: auto;
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: translateX(28px);
    animation: site-intro-logo-in .78s cubic-bezier(.16, 1, .3, 1) .16s forwards;
    will-change: clip-path, opacity, transform;
  }

  .site-intro__brand span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .52);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-24px);
    animation: site-intro-tagline-in .72s cubic-bezier(.16, 1, .3, 1) .38s forwards;
    will-change: clip-path, opacity, transform;
  }

  @keyframes site-intro-logo-in {
    from {
      opacity: 0;
      clip-path: inset(0 0 0 100%);
      transform: translateX(28px);
    }

    to {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      transform: translateX(0);
    }
  }

  @keyframes site-intro-tagline-in {
    from {
      opacity: 0;
      clip-path: inset(0 100% 0 0);
      transform: translateX(-24px);
    }

    to {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      transform: translateX(0);
    }
  }

  .site-intro.is-returning-home .site-intro__brand img,
  .site-intro.is-returning-home .site-intro__brand span {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    animation: none;
  }

  .site-intro__progress {
    position: absolute;
    right: clamp(20px, 3vw, 48px);
    bottom: clamp(20px, 3vw, 42px);
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: clamp(1.15rem, 2.2vw, 1.8rem);
    font-variant-numeric: tabular-nums;
    letter-spacing: -.04em;
    opacity: 1;
    transition: opacity .2s ease;
  }

  .site-intro.is-leaving {
    background: transparent;
    pointer-events: none;
  }

  .site-intro.is-leaving .site-intro__brand {
    opacity: 0;
    transform: translateY(-14px);
  }

  .site-intro.is-leaving .site-intro__progress {
    opacity: 0;
  }

  .site-intro.is-leaving .site-intro__panel:nth-child(odd) {
    transform: translateY(-101%);
  }

  .site-intro.is-leaving .site-intro__panel:nth-child(even) {
    transform: translateY(101%);
  }

  .nav,
  .page {
    animation: page-fade-in .22s ease-out both;
    transition: opacity .17s ease-in;
  }

  body.is-page-leaving {
    pointer-events: none;
  }

  body.is-page-leaving .nav,
  body.is-page-leaving .page,
  body.is-page-leaving .cursor-dot {
    opacity: 0;
  }

  @keyframes page-fade-in {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @media (hover: hover) and (pointer: fine) {

    html.has-custom-cursor,
    html.has-custom-cursor body,
    html.has-custom-cursor * {
      cursor: none !important;
    }
  }

  .cursor-dot {
    --cursor-x: 0px;
    --cursor-y: 0px;
    --cursor-scale: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-50%, -50%);
    transform-origin: center;
    transition: opacity .2s ease;
    will-change: transform, opacity;
    isolation: isolate;
  }

  .cursor-dot.is-visible {
    opacity: 1;
  }

  .cursor-dot__core {
    display: block;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border-radius: 50%;
    background: #fff;
    transform: scale(var(--cursor-scale));
    transform-origin: center;
    transition:
      opacity .16s ease,
      transform .24s cubic-bezier(.16, 1, .3, 1);
    will-change: transform, opacity;
  }

  .cursor-dot__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.88);
    transition:
      opacity .16s ease,
      transform .24s cubic-bezier(.16, 1, .3, 1);
    will-change: transform, opacity;
  }

  .cursor-dot__badge-arrow {
    font-size: 15px;
    line-height: 1;
    transform: translateX(0);
    transition: transform .24s cubic-bezier(.16, 1, .3, 1);
  }

  .cursor-dot.is-expanded .cursor-dot__core {
    transform: scale(var(--cursor-scale-expanded));
  }

  .cursor-dot.is-pressed .cursor-dot__core {
    transform: scale(var(--cursor-scale-pressed));
  }

  .cursor-dot.is-expanded.is-pressed .cursor-dot__core {
    transform: scale(2.8);
  }

  .cursor-dot.is-card-cta .cursor-dot__core {
    opacity: 0;
    transform: scale(.5);
  }

  .cursor-dot.is-card-cta .cursor-dot__badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .cursor-dot.is-card-cta .cursor-dot__badge-arrow {
    transform: translateX(2px);
  }

  .cursor-dot.is-card-cta.is-pressed .cursor-dot__badge {
    transform: translate(-50%, -50%) scale(.95);
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
  }

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

  .page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    background: var(--bg);
    overflow: hidden;
  }

  #work,
  #services,
  #about {
    scroll-margin-top: 96px;
  }

  /* ───── NAV ───── */
  .nav {
    --nav-glass-bg: rgba(24, 16, 14, .34);
    --nav-glass-border: rgba(255, 255, 255, .18);
    --nav-glass-shadow:
      0 18px 48px rgba(10, 10, 10, .08),
      inset 0 1px 0 rgba(255, 255, 255, .16);
    position: fixed;
    top: 28px;
    left: 16px;
    right: 16px;
    z-index: 100;
    display: flex;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      top .48s cubic-bezier(.16, 1, .3, 1),
      opacity .32s ease,
      transform .48s cubic-bezier(.16, 1, .3, 1);
    will-change: top, transform, opacity;
  }

  .admin-bar .nav {
    top: calc(28px + 32px);
  }

  @media (max-width: 782px) {
    .admin-bar .nav {
      top: calc(28px + 46px);
    }
  }

  .nav-inner {
    width: 100%;
    max-width: 1856px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border: 1px solid var(--nav-glass-border);
    border-radius: 999px;
    background: var(--nav-glass-bg);
    color: #fff;
    box-shadow: var(--nav-glass-shadow);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    pointer-events: auto;
    transition:
      max-width .48s cubic-bezier(.16, 1, .3, 1),
      padding .48s cubic-bezier(.16, 1, .3, 1),
      background-color .32s ease,
      border-color .32s ease,
      box-shadow .32s ease,
      transform .48s cubic-bezier(.16, 1, .3, 1);
  }

  .nav-inner::before,
  .nav-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
  }

  .nav-inner::before {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .26) 0%, rgba(255, 255, 255, .08) 36%, rgba(255, 255, 255, 0) 68%),
      linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 58%);
    opacity: .9;
  }

  .nav-inner::after {
    background:
      radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .18) 0, rgba(255, 255, 255, 0) 24%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='rgba(255,255,255,0.16)'%3E%3Ccircle cx='18' cy='18' r='1'/%3E%3Ccircle cx='74' cy='32' r='1'/%3E%3Ccircle cx='102' cy='82' r='1'/%3E%3Ccircle cx='42' cy='94' r='1'/%3E%3Ccircle cx='88' cy='108' r='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: .18;
    mix-blend-mode: screen;
  }

  .nav-inner>* {
    position: relative;
    z-index: 1;
  }

  @supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))) {
    .nav-inner {
      background: rgba(28, 20, 18, .82);
    }

    .nav.is-sticky .nav-inner {
      background: rgba(250, 250, 250, .94);
    }
  }

  .nav.is-sticky {
    top: 14px;
  }

  .nav.is-sticky .nav-inner {
    max-width: min(1180px, calc(100vw - 32px));
    padding: 9px 18px;
    background: rgba(250, 250, 250, .76);
    border-color: rgba(10, 10, 10, .08);
    color: #0a0a0a;
    box-shadow:
      0 18px 46px rgba(10, 10, 10, .12),
      inset 0 1px 0 rgba(255, 255, 255, .62);
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] {
    --nav-glass-bg: rgba(247, 244, 240, .72);
    --nav-glass-border: rgba(10, 10, 10, .08);
    --nav-glass-shadow:
      0 18px 46px rgba(10, 10, 10, .1),
      inset 0 1px 0 rgba(255, 255, 255, .55);
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .nav-inner {
    color: #0a0a0a;
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .nav-inner::before {
    opacity: .7;
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .nav-inner::after {
    opacity: .12;
  }

  @media(min-width:1024px) {
    .nav-inner {
      width: 98%;
      border-radius: 9px;
    }
  }

  .nav.is-hidden {
    opacity: .72;
    transform: translate3d(0, -44%, 0) scale(.985);
  }

  .nav.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .nav-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
  }

  .nav-brand__logo {
    display: block;
    width: auto;
    height: 24px;
    flex: 0 0 auto;
  }

  .nav-brand__logo--dark {
    display: none;
  }

  .nav.is-sticky .nav-brand__logo--light,
  .nav:not(.is-sticky)[data-surface-tone="light"] .nav-brand__logo--light {
    display: none;
  }

  .nav.is-sticky .nav-brand__logo--dark,
  .nav:not(.is-sticky)[data-surface-tone="light"] .nav-brand__logo--dark {
    display: block;
  }

  .nav-links {
    display: none;
    gap: 32px;
    align-items: center;
  }

  .nav-links ul {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
  }

  .nav-links li {
    list-style: none;
  }

  @media(min-width:1024px) {
    .nav-links {
      display: flex;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
  }

  .nav-links a {
    color: rgba(255, 231, 224, .82);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s, opacity 0.2s;
    font-weight: 500;
    outline-offset: 6px;
  }

  .nav.is-sticky .nav-links a {
    color: rgba(10, 10, 10, .62);
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .nav-links a {
    color: rgba(10, 10, 10, .62);
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-links li.current-menu-item>a,
  .nav-links li.current-menu-ancestor>a,
  .nav.is-sticky .nav-links a:hover,
  .nav.is-sticky .nav-links a.active,
  .nav.is-sticky .nav-links li.current-menu-item>a,
  .nav.is-sticky .nav-links li.current-menu-ancestor>a {
    color: currentColor;
  }

  .nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    transition:
      background-color .24s ease,
      border-color .24s ease,
      color .24s ease,
      box-shadow .24s ease,
      transform .24s cubic-bezier(.16, 1, .3, 1);
    gap: 6px;
    outline-offset: 4px;
  }

  .pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
  }

  .pill:focus-visible,
  .btn:focus-visible,
  .nav-links a:focus-visible,
  .nav-brand:focus-visible,
  .mobile-menu__brand:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 5px;
  }

  .pill-light {
    background: rgba(250, 250, 250, .9);
    color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .34);
  }

  .pill-light:hover {
    background: #fff;
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .pill-light,
  .nav.is-sticky .pill-light {
    background: #0a0a0a;
    color: #fafafa;
    border-color: rgba(10, 10, 10, .08);
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .pill-light:hover,
  .nav.is-sticky .pill-light:hover {
    background: #1a1a1a;
  }

  .pill-dark {
    background: #0a0a0a;
    color: #fafafa;
    border: 1px solid #ffffff1a;
  }

  .pill-dark:hover {
    background: #1a1a1a;
    border-color: #ffffff40;
  }

  .pill-en {
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 11px;
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .pill-en,
  .nav.is-sticky .pill-en {
    background: rgba(10, 10, 10, .06);
    color: #0a0a0a;
    border-color: rgba(10, 10, 10, .08);
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .pill-en:hover,
  .nav.is-sticky .pill-en:hover {
    background: rgba(10, 10, 10, .1);
  }

  @media(max-width:767px) {
    .nav {
      top: 24px;
      left: 16px;
      right: 16px;
    }

    .nav.is-sticky {
      top: 10px;
    }

    .nav.is-hidden {
      opacity: 1;
      transform: none;
    }

    .nav-inner {
      padding: 10px 12px;
      max-width: 100%;
      border-radius: 24px;
    }

    .nav.is-sticky .nav-inner {
      max-width: 100%;
      padding: 9px 12px;
    }

    .nav-brand {
      line-height: 0;
    }

    .nav-brand__logo {
      height: 19px;
    }

    .nav-cta {
      gap: 6px;
    }

    .pill {
      padding: 9px 11px;
      font-size: 10px;
    }

    .nav-estimate span {
      display: none;
    }

    .nav-estimate {
      width: 38px;
      height: 38px;
      padding: 0;
      border-radius: 999px;
    }
  }

  @media(prefers-reduced-motion:reduce) {
    html {
      scroll-behavior: auto;
    }

    .nav,
    .nav-inner,
    .pill,
    .nav-links a,
    .btn {
      transition: none !important;
    }

    .pill:hover,
    .btn:hover,
    .nav.is-hidden {
      transform: none;
    }
  }

  /* ───── HERO ───── */
  .hero {
    padding: 16px;
  }

  .hero-inner {
    position: relative;
    min-height: calc(100vh - 32px);
    border-radius: 16px;
    overflow: hidden;
    background: #160303;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    isolation: isolate;
    padding: 140px 48px 60px;
  }

  .hero-inner::before,
  .hero-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero-inner::before {
    z-index: 0;
    background:
      linear-gradient(90deg, rgba(16, 3, 2, 0.84) 0%, rgba(16, 3, 2, 0.58) 36%, rgba(16, 3, 2, 0.18) 66%, rgba(16, 3, 2, 0.54) 100%),
      linear-gradient(180deg, rgba(8, 2, 2, 0.24) 0%, rgba(8, 2, 2, 0.08) 42%, rgba(8, 2, 2, 0.62) 100%),
      url("../img/higor-ferraco-designer-ui-ux-fundo-hero.jpg") 72% center / cover no-repeat;
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.02);
    transform-origin: center;
  }

  .hero-inner::after {
    z-index: 0;
    background:
      radial-gradient(circle at 74% 18%, rgba(255, 118, 42, 0.2) 0%, transparent 24%),
      radial-gradient(circle at 0% 100%, rgba(126, 14, 14, 0.36) 0%, transparent 48%),
      url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h1v1H1z' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
    opacity: 0.45;
  }

  .hero-inner> :not(.nav) {
    position: relative;
    z-index: 1;
  }

  @media(min-width:1024px) {
    .hero-inner {
      padding: 140px 80px 80px;
    }
  }

  /* Large and 4K displays: keep the hero fluid instead of stopping at 1920px. */
  @media(min-width:1921px) {
    .page {
      max-width: none;
    }

    .nav:not(.is-sticky) .nav-inner {
      width: calc(100% - 32px);
      max-width: none;
    }

    .hero-inner {
      padding-inline: clamp(80px, 5vw, 192px);
    }

    .hero .hero-inner h1 {
      max-width: 18ch;
      font-size: clamp(4.5rem, 3vw, 7.5rem);
    }

    .hero .hero-inner p {
      max-width: clamp(540px, 24vw, 920px);
      font-size: clamp(1.125rem, .7vw, 1.75rem);
    }

    .hero .hero-eyebrow .we,
    .hero .hero-eyebrow .arrow {
      font-size: clamp(12px, .4vw, 18px);
    }

    .hero .hero-actions {
      margin-top: clamp(40px, 1.5vw, 58px);
    }

    .hero .hero-actions .btn {
      padding: clamp(16px, .55vw, 22px) clamp(28px, 1vw, 40px);
      font-size: clamp(12px, .4vw, 16px);
    }
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-eyebrow .we {
    color: #ffcfc2;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .hero-eyebrow .arrow {
    color: #ffcfc2;
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-align: left;
    color: #fafafa;
    font-weight: 500;
    text-wrap: balance;
  }

  .hero h1 span {
    display: inline-block;
    animation: fadeUp 1s ease forwards;
  }

  .hero p {
    margin-top: 24px;
    max-width: 540px;
    text-align: left;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    color: #ffdcd2;
    opacity: 0;
    animation: fadeUp 1s 0.2s ease forwards;
  }

  .hero-actions {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 1s 0.4s ease forwards;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
  }

  .btn-light {
    background: #f0f0f0;
    color: #0a0a0a;
  }

  .btn-light:hover {
    background: #fff;
  }

  .btn-dark {
    background: #0a0a0a;
    color: #fafafa;
  }

  .btn-dark:hover {
    background: #1a1a1a;
    box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.1);
  }

  .scroll-tag {
    display: none;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translate(-50%, 0);
    }

    50% {
      transform: translate(-50%, -10px);
    }
  }

  /* ───── FEATURED WORK ───── */
  .section-pad {
    padding: 60px 16px 0;
  }

  .section-wrap {
    border-radius: 16px;
    border: 1px solid #00000010;
    background: transparent;
    padding: 40px 16px 16px;
  }

  @media(min-width:768px) {
    .section-wrap {
      padding: 40px 32px 32px;
    }
  }

  .section-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 8px 32px;
  }

  @media(min-width:768px) {
    .section-head {
      flex-direction: row;
      align-items: flex-end;
    }
  }

  .section-head h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    font-weight: 500;
  }

  .featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  @media(min-width:768px) {
    .featured-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .w3 {
      grid-column: 1/-1;
      aspect-ratio: 21/9;
    }
  }

  @media(min-width:1024px) {
    .featured-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .w1 {
      grid-column: span 2;
    }

    .w2 {
      grid-column: span 1;
    }

    .w3 {
      grid-column: 1/-1;
      min-height: 500px;
    }

    .w4,
    .w5,
    .w6 {
      grid-column: span 1;
    }
  }

  .work-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    aspect-ratio: 4/3;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    cursor: pointer;
  }

  .work-card__link {
    z-index: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: inherit;
    text-decoration: none;
  }

  @media(min-width:1024px) {
    .work-card {
      aspect-ratio: auto;
      min-height: 450px;
    }
  }

  .work-card .thumb {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
    background-size: cover;
    background-position: center;
    opacity: .85;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  }

  .work-card .thumb video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
  }

  .work-card .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
  }

  .work-card:hover .thumb {
    transform: scale(1.05);
    opacity: .6;
  }

  .work-card .meta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.4s ease;
  }

  @media(min-width:768px) {
    .work-card .meta {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      transform: translateY(20px);
      opacity: 0;
    }
  }

  .work-card:hover .meta {
    transform: translateY(0);
    opacity: 1;
  }

  .work-card .title {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: -.02em;
  }

  .work-card .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .tag {
    padding: 6px 12px;
    border: 1px solid #ffffff33;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -.01em;
    background: #0a0a0a99;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .featured-work-empty {
    border-radius: 12px;
    border: 1px dashed #0000001f;
    padding: 32px 24px;
    color: #4b4b4b;
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
  }

  /* color washes per project */
  .w1 .thumb {
    background: linear-gradient(135deg, #16223e, #3a4f8a)
  }

  .w2 .thumb {
    background: linear-gradient(135deg, #2d6e2a, #1a3d18)
  }

  .w3 .thumb {
    background: linear-gradient(135deg, #7a3a17, #341507)
  }

  .w4 .thumb {
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a)
  }

  .w5 .thumb {
    background: linear-gradient(135deg, #082f22, #0a4a37)
  }

  .w6 .thumb {
    background: linear-gradient(135deg, #3a1f5a, #171022)
  }

  /* ───── SERVICES + ABOUT ───── */
  .services-about {
    padding: 16px;
    display: flex;
    flex-direction: column;
  }

  .services {
    background: #111111;
    color: #f0f0f0;
    border-radius: 16px 16px 0 0;
    padding: 80px 24px;
  }

  @media(min-width:768px) {
    .services {
      padding: 100px 48px;
    }
  }

  .eyebrow {
    color: #a1a1aa;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: left;
  }

  .services h2 {
    margin-top: 24px;
    text-align: left;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    font-weight: 500;
    text-wrap: balance;
  }

  .services .lead {
    margin: 24px 0 0;
    max-width: 760px;
    text-align: left;
    color: #a1a1aa;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
  }

  .service-cards {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .service-card {
    --media-shift-x: 0px;
    --media-shift-y: 0px;
    --media-scale: 0.8;
    flex: 1 1 0;
    min-width: 0;
  }

  .service-card--split-media {
    --media-scale: 0.6;
    --split-media-collapsed-scale: 1.18;
    --split-media-active-scale: 1.04;
  }

  .service-card__surface {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: #000;
    color: #f5f1ea;
    cursor: pointer;
    outline: none;
    transition:
      min-height .55s cubic-bezier(.16, 1, .3, 1),
      border-color .35s ease,
      box-shadow .45s ease,
      transform .45s cubic-bezier(.16, 1, .3, 1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 22px 54px rgba(0, 0, 0, 0.26);
  }

  .service-card__surface:hover,
  .service-card__surface:focus-visible {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 28px 64px rgba(0, 0, 0, 0.38);
    transform: translateY(-3px);
  }

  .service-card__surface:focus-visible {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.26),
      0 28px 64px rgba(0, 0, 0, 0.38);
  }

  .service-card__media,
  .service-card__overlay,
  .service-card__content,
  .service-card__rail,
  .service-card__index {
    position: absolute;
  }

  .service-card__media {
    inset: 0;
    background: #000;
    overflow: hidden;
    transition:
      inset .55s cubic-bezier(.16, 1, .3, 1),
      width .55s cubic-bezier(.16, 1, .3, 1),
      border-radius .55s cubic-bezier(.16, 1, .3, 1),
      opacity .35s ease,
      box-shadow .45s ease;
  }

  .service-card__media img,
  .service-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--media-scale)) translate3d(var(--media-shift-x), var(--media-shift-y), 0);
    transform-origin: center;
    filter: brightness(.52) saturate(.88);
    transition:
      transform .7s cubic-bezier(.16, 1, .3, 1),
      filter .45s ease;
  }

  .service-card__overlay {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(6, 6, 6, .34) 0%, rgba(6, 6, 6, .2) 30%, rgba(6, 6, 6, .08) 58%, rgba(6, 6, 6, 0) 100%),
      linear-gradient(180deg, rgba(8, 8, 8, .08) 0%, rgba(8, 8, 8, .2) 38%, rgba(8, 8, 8, .58) 100%),
      linear-gradient(120deg, rgba(255, 255, 255, .04), transparent 44%);
    pointer-events: none;
  }

  .service-card--split-media .service-card__overlay {
    background:
      linear-gradient(90deg, rgba(6, 6, 6, .18) 0%, rgba(6, 6, 6, .1) 34%, rgba(6, 6, 6, .04) 60%, rgba(6, 6, 6, 0) 100%),
      linear-gradient(180deg, rgba(8, 8, 8, .04) 0%, rgba(8, 8, 8, .14) 42%, rgba(8, 8, 8, .36) 100%),
      linear-gradient(120deg, rgba(255, 255, 255, .03), transparent 44%);
  }

  .service-card__index {
    top: 18px;
    left: 18px;
    z-index: 2;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, .62);
  }

  .service-card__rail {
    left: 20px;
    bottom: 22px;
    z-index: 2;
    max-width: 12ch;
    font-size: 1.2rem;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: #f5f1ea;
    transition:
      opacity .28s ease,
      transform .45s cubic-bezier(.16, 1, .3, 1);
  }

  .service-card__content {
    inset: auto 0 0;
    z-index: 3;
    padding: 64px 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    pointer-events: none;
  }

  .service-card__kicker {
    max-width: 28ch;
    font-size: .73rem;
    line-height: 1.45;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, .62);
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity .28s ease,
      transform .45s cubic-bezier(.16, 1, .3, 1);
  }

  .service-card h3 {
    margin-top: auto;
    max-width: 14ch;
    font-size: clamp(1.45rem, 5vw, 1.85rem);
    line-height: 1.02;
    color: #fdfcfa;
    font-weight: 600;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(16px);
    transition:
      transform .45s cubic-bezier(.16, 1, .3, 1),
      opacity .28s ease,
      max-width .45s cubic-bezier(.16, 1, .3, 1),
      font-size .45s cubic-bezier(.16, 1, .3, 1);
  }

  .service-card__body {
    max-width: 34rem;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity .28s ease,
      transform .45s cubic-bezier(.16, 1, .3, 1);
  }

  .service-card__body p {
    max-width: 34ch;
    color: #d0cbc3;
    font-size: 1rem;
    line-height: 1.68;
  }

  .service-card__body ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    padding: 0;
  }

  .service-card__body li {
    position: relative;
    padding-left: 18px;
    color: rgba(232, 232, 235, .82);
    font-size: .98rem;
    line-height: 1.45;
  }

  .service-card__body li::before {
    content: "";
    position: absolute;
    top: .55rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff8b52 0%, #ff4d1d 100%);
    box-shadow: 0 0 0 6px rgba(255, 77, 29, .08);
  }

  .service-card--split-media .service-card__media video {
    object-position: center center;
    filter: brightness(.72) saturate(.98);
  }

  .service-card.is-active .service-card__surface {
    min-height: 520px;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 34px 84px rgba(0, 0, 0, 0.42);
  }

  .service-card.is-active .service-card__media img,
  .service-card.is-active .service-card__media video {
    transform: scale(var(--media-scale)) translate3d(var(--media-shift-x), var(--media-shift-y), 0);
    filter: brightness(.9) saturate(1.02);
  }

  .service-card.is-active .service-card__rail {
    opacity: 0;
    transform: translateY(18px);
  }

  .service-card.is-active .service-card__overlay {
    background:
      linear-gradient(90deg, rgba(4, 4, 4, .96) 0%, rgba(4, 4, 4, .88) 26%, rgba(4, 4, 4, .54) 52%, rgba(4, 4, 4, .18) 76%, rgba(4, 4, 4, 0) 100%),
      linear-gradient(180deg, rgba(8, 8, 8, .2) 0%, rgba(8, 8, 8, .42) 34%, rgba(8, 8, 8, .92) 100%),
      linear-gradient(120deg, rgba(255, 255, 255, .04), transparent 44%);
  }

  .service-card--split-media.is-active .service-card__media video {
    object-fit: contain;
    object-position: 68% center;
    transform: scale(var(--split-media-active-scale)) translate3d(var(--media-shift-x), var(--media-shift-y), 0);
    filter: brightness(1) saturate(1.04);
  }

  .service-card--split-media.is-active .service-card__overlay {
    background:
      linear-gradient(90deg, rgba(4, 4, 4, .58) 0%, rgba(4, 4, 4, .48) 38%, rgba(4, 4, 4, .18) 58%, rgba(4, 4, 4, 0) 100%),
      linear-gradient(180deg, rgba(8, 8, 8, .04) 0%, rgba(8, 8, 8, .16) 46%, rgba(8, 8, 8, .62) 100%),
      linear-gradient(120deg, rgba(255, 255, 255, .03), transparent 44%);
  }

  .service-card.is-active .service-card__kicker,
  .service-card.is-active .service-card__body {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card.is-active h3 {
    max-width: 11ch;
    font-size: clamp(2rem, 2.4vw, 3rem);
    opacity: 1;
    transform: translateY(0);
  }

  @media(min-width:1024px) {
    .service-cards {
      flex-direction: row;
      align-items: stretch;
      gap: 12px;
      min-height: 520px;
    }

    .service-card__rail {
      font-size: 1.6rem;
    }

    .service-card {
      transition: flex .55s cubic-bezier(.16, 1, .3, 1);
    }

    .service-card:not(.is-active) {
      flex: 0.82 1 0;
    }

    .service-card.is-active {
      flex: 2.2 1 0;
    }

    .service-card:not(.is-active) .service-card__surface {
      min-height: 520px;
    }

    .service-card:not(.is-active) h3 {
      max-width: 9ch;
      font-size: 1.55rem;
      opacity: 0;
      transform: translateY(16px);
    }

    .service-card:not(.is-active) .service-card__body,
    .service-card:not(.is-active) .service-card__kicker {
      opacity: 0;
      transform: translateY(18px);
    }

    .service-card:not(.is-active) .service-card__media img,
    .service-card:not(.is-active) .service-card__media video {
      filter: brightness(.46) saturate(.82);
    }

    .service-card--split-media:not(.is-active) .service-card__media video {
      object-fit: contain;
      object-position: center center;
      transform: scale(var(--split-media-collapsed-scale)) translate3d(var(--media-shift-x), var(--media-shift-y), 0);
      filter: brightness(1) saturate(.94);
    }

    .service-card--split-media.is-active .service-card__surface {
      display: block;
    }

    .service-card--split-media.is-active .service-card__media {
      inset: 0;
      width: auto;
      border-radius: inherit;
      box-shadow: none;
    }

    .service-card--split-media.is-active .service-card__overlay {
      background:
        linear-gradient(90deg, rgba(4, 4, 4, .82) 0%, rgba(4, 4, 4, .74) 34%, rgba(4, 4, 4, .24) 52%, rgba(4, 4, 4, .03) 60%, rgba(4, 4, 4, 0) 68%),
        linear-gradient(180deg, rgba(8, 8, 8, .08) 0%, rgba(8, 8, 8, .2) 42%, rgba(8, 8, 8, .56) 100%) left / 56% 100% no-repeat,
        linear-gradient(120deg, rgba(255, 255, 255, .03), transparent 44%);
    }

    .service-card--split-media.is-active .service-card__media video {
      object-fit: contain;
      object-position: 68% center;
      transform: scale(var(--split-media-active-scale)) translate3d(var(--media-shift-x), var(--media-shift-y), 0);
    }

    .service-card--split-media.is-active .service-card__content {
      inset: 0 auto 0 0;
      width: min(48%, 34rem);
      padding: 64px 26px 28px 26px;
    }

    .service-card--split-media.is-active .service-card__body {
      max-width: 31rem;
    }

    .service-card--split-media.is-active .service-card__body p {
      max-width: 29ch;
    }
  }

  .about {
    background: #0a0a0a;
    color: #f0f0f0;
    border-radius: 0 0 16px 16px;
    padding: 60px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  @media(min-width:768px) {
    .about {
      padding: 80px 48px 60px;
    }
  }

  .about-tag {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #a1a1aa;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .about-tag::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px #10b98133;
    animation: pulse-green 2s infinite;
  }

  @keyframes pulse-green {
    0% {
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
      box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
  }

  .bento {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "stats"
      "photo"
      "founder"
      "location"
      "toolbox";
    gap: 16px;
  }

  @media(min-width:768px) {
    .bento {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      grid-template-areas:
        "stats photo"
        "founder founder"
        "location location"
        "toolbox toolbox";
    }
  }

  @media(min-width:1024px) {
    .bento {
      grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.8fr) minmax(0, 1.12fr) minmax(0, 1.02fr);
      grid-template-areas:
        "stats photo founder location"
        "toolbox toolbox toolbox toolbox";
      align-items: stretch;
    }
  }

  .bento>* {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 32px;
    color: #f0f0f0;
    overflow: hidden;
    position: relative;
    transition: border 0.3s ease;
    margin: 0;
  }

  .bento>*:hover {
    border-color: #444;
  }

  .stats {
    grid-area: stats;
    display: grid;
    gap: 24px;
    align-content: space-between;
    min-width: 0;
  }

  .stat {
    min-width: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  @media(min-width:1024px) {
    .stats {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 28px 18px;
      min-height: 420px;
    }

    .stat {
      padding-right: 0;
      padding-bottom: 24px;
      border-right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
  }

  .stat .num {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 0.92;
    color: #fff;
  }

  .stat .lbl {
    margin-top: 6px;
    color: #a1a1aa;
    font-size: 13px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  @media(min-width:1024px) {
    .stat .num {
      font-size: clamp(2rem, 2.45vw, 3rem);
      letter-spacing: -.05em;
    }

    .stat .lbl {
      margin-top: 10px;
      font-size: 11px;
      letter-spacing: 0.08em;
      max-width: 15ch;
    }
  }

  .about-photo {
    grid-area: photo;
    display: flex;
    padding: 0;
    background: #0c0c0c;
  }

  @media(min-width:1024px) {
    .about-photo {
      min-height: 420px;
    }
  }

  .about-photo__media {
    position: relative;
    flex: 1;
    min-height: 280px;
    border-radius: inherit;
    background:
      radial-gradient(circle at 28% 20%, rgba(232, 174, 138, 0.2) 0%, rgba(232, 174, 138, 0) 38%),
      linear-gradient(135deg, #18283b 0%, #0a1018 54%, #050607 100%);
    padding: 28px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
  }

  .about-photo__media::before {
    content: "HF";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    font-size: clamp(4rem, 11vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.07);
    z-index: 0;
  }

  .about-photo__media::after {
    content: "";
    position: absolute;
    left: -18%;
    bottom: -16%;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    z-index: 0;
  }

  .about-photo__placeholder {
    position: relative;
    z-index: 2;
    max-width: 14rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .about-photo__placeholder strong {
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
  }

  .about-photo__placeholder p {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.6;
  }

  .about-photo__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
  }

  .about-photo__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 72px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .about-photo__caption::before {
    content: "";
    position: absolute;
    left: -28px;
    right: -28px;
    bottom: -28px;
    top: -44px;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(16, 5, 6, 0.18) 28%,
        rgba(32, 7, 9, 0.58) 68%,
        rgba(6, 6, 7, 0.9) 100%);
    z-index: -1;
    pointer-events: none;
  }

  .about-photo__caption span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    max-width: 22ch;
  }

  .location {
    grid-area: location;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    text-align: center;
    background: #050505;
    min-height: 250px;
    padding-top: 32px;
  }

  @media(min-width:1024px) {
    .location {
      min-height: 420px;
    }
  }

  .location::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 56%, rgba(5, 5, 5, .12) 82%, #050505 100%);
    z-index: 1;
    pointer-events: none;
  }

  .location-globe-bg {
    position: absolute;
    left: 58%;
    bottom: -210px;
    width: min(220%, 980px);
    height: auto;
    max-width: none;
    transform: translateX(-50%);
    opacity: .72;
    filter: blur(.15px);
    z-index: 0;
    pointer-events: auto;
    cursor: grab;
    touch-action: none;
    background: transparent;
  }

  .location-globe-bg:active {
    cursor: grabbing;
  }

  .location-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: min(100%, 16.5rem);
    max-width: none;
    text-align: center;
  }

  .location .pin {
    color: #a1a1aa;
    font-size: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .location .pin::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
  }

  .location .pin::after {
    content: "DISPONIVEL";
    font-size: 14px;
  }

  .location h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    color: #f0f0f0;
    font-weight: 500;
    line-height: 1.05;
    text-wrap: pretty;
  }

  .location .sub {
    color: #71717a;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .founder {
    grid-area: founder;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
  }

  @media(min-width:1024px) {
    .founder {
      min-height: 420px;
    }
  }

  .founder-kicker {
    color: #a1a1aa;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .founder h3,
  .about-photo__name {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    color: #f0f0f0;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
  }

  .founder p {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.72;
    max-width: 43ch;
  }

  .founder .lead {
    font-size: 15px;
    color: #e4e4e7;
  }

  .toolbox {
    grid-area: toolbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: center;
  }

  @media(min-width:768px) {
    .toolbox {
      flex-direction: row;
      text-align: left;
    }
  }

  @media(min-width:1024px) {
    .toolbox {
      grid-row: auto;
    }
  }

  .toolbox .left {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .toolbox .left .t {
    color: #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.01em;
  }

  .toolbox .left .s {
    color: #a1a1aa;
    font-size: 13px;
  }

  .icons {
    --tool-gap: 12px;
    position: relative;
    flex: 1;
    width: min(100%, 640px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .icons__track {
    display: flex;
    align-items: center;
    gap: var(--tool-gap);
    width: max-content;
    flex-wrap: nowrap;
    animation: toolbox-marquee 24s linear infinite;
  }

  .icons--static {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .icons--static .icons__track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  @keyframes toolbox-marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f0;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: default;
    flex: 0 0 auto;
    overflow: hidden;
  }

  .icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .icon--image {
    padding: 10px;
  }

  .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .icon:hover {
    background: #222;
    transform: translateY(-2px);
    border-color: #555;
    color: #fff;
  }

  @media(min-width:768px) {
    .icon {
      width: 56px;
      height: 56px;
      font-size: 13px;
    }
  }

  .toolbox:hover .icons__track {
    animation-play-state: paused;
  }

  @media(prefers-reduced-motion: reduce) {
    .icons__track {
      animation: none;
    }
  }

  /* ───── CTA ───── */
  .cta {
    padding: 80px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  @media(min-width:768px) {
    .cta {
      padding: 120px 48px;
    }
  }

  .cta .av {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #62626b !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }

  .cta .av::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-green 2s infinite;
  }

  .cta h2 {
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: #0a0a0a;
  }

  .cta h2+h2 {
    color: #df3f12 !important;
  }

  .cta-actions {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* ───── FOOTER ───── */
  .footer-pad {
    padding: 0 16px 16px;
  }

  .footer {
    position: relative;
    background: #050505;
    color: #f0f0f0;
    border-radius: 16px;
    padding: 40px 24px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }

  @media(min-width:768px) {
    .footer {
      padding: 60px 48px;
      min-height: 600px;
    }
  }

  .footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(100% 100% at 50% 100%, rgba(255, 77, 29, 0.15) 0%, transparent 60%),
      radial-gradient(80% 80% at 80% 20%, rgba(255, 65, 27, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  .footer>* {
    position: relative;
    z-index: 1;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  @media(min-width:1024px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
  }

  .contact h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 500;
    color: #fafafa;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .contact .row {
    margin-top: 24px;
    color: #a1a1aa;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    transition: color 0.2s;
    cursor: pointer;
  }

  .contact .row:hover {
    color: #fff;
  }

  .footer-local-seo {
    max-width: 40rem;
    margin-top: 24px;
    color: #8d8d96;
    font-size: 14px;
    line-height: 1.7;
  }

  .sitemap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  @media(min-width:768px) {
    .sitemap {
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
  }

  .sitemap h3 {
    font-size: 14px;
    color: #f0f0f0;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
  }

  .sitemap a {
    display: block;
    color: #a1a1aa;
    font-size: 15px;
    line-height: 2.2;
    cursor: pointer;
  }

  .sitemap a:hover {
    color: #fff;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    color: #71717a;
    font-size: 14px;
    margin-top: 80px;
    border-top: 1px solid #333;
    padding-top: 32px;
  }

  .footer-signature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-signature__logo {
    display: block;
    width: auto;
    height: 30px;
  }

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

  .footer-menu li {
    list-style: none;
  }

  @media(min-width:768px) {
    .footer-bottom {
      flex-direction: row;
      align-items: flex-end;
    }
  }

  /* ═══════════════════════════════════════════════════════
     RESPONSIVE REFINEMENTS — tablet + mobile
     Desktop (≥1024px) is intentionally preserved untouched.
     ═══════════════════════════════════════════════════════ */

  /* ─── Nav: hamburger trigger (tablet + mobile only) ─── */
  .nav-menu-btn {
    display: none;
    appearance: none;
    background: transparent;
    border: 1px solid transparent;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    color: inherit;
    cursor: pointer;
    transition: background-color .24s ease, border-color .24s ease, transform .24s ease;
    outline-offset: 4px;
  }

  .nav-menu-btn:hover {
    background: rgba(255, 255, 255, .14);
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .nav-menu-btn:hover,
  .nav.is-sticky .nav-menu-btn:hover {
    background: rgba(10, 10, 10, .08);
  }

  .nav-menu-btn[aria-expanded="true"] {
    background: rgba(255, 255, 255, .16);
  }

  .nav:not(.is-sticky)[data-surface-tone="light"] .nav-menu-btn[aria-expanded="true"],
  .nav.is-sticky .nav-menu-btn[aria-expanded="true"] {
    background: rgba(10, 10, 10, .08);
  }

  .nav-menu-btn svg {
    width: 22px;
    height: 22px;
  }

  .nav-menu-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
  }

  @media(max-width:1023px) {
    .nav-menu-btn {
      display: inline-flex;
    }

    .nav .pill-en {
      display: none;
    }

    /* Language surfaced inside the drawer */
  }

  @media(max-width:767px) {
    .nav .nav-estimate {
      display: none;
    }

    /* CTA promoted to the drawer footer */
  }

  /* ─── Tablet (768–1023px) ─── */
  @media(min-width:768px) and (max-width:1023px) {
    .hero-inner {
      padding: 124px 36px 56px;
      border-radius: 20px;
    }

    .hero h1 {
      font-size: clamp(3rem, 7.2vw, 4.25rem);
      line-height: 1.04;
    }

    .hero p {
      max-width: 520px;
      font-size: 1rem;
      line-height: 1.55;
    }

    .section-head h2,
    .services h2,
    .cta h2 {
      letter-spacing: -0.045em;
    }

    .about {
      padding: 72px 32px 52px;
      gap: 34px;
    }

    .about-tag {
      font-size: 14px;
    }

    .bento {
      gap: 14px;
    }

    .bento>* {
      padding: 28px;
    }

    .about-photo,
    .location,
    .founder {
      min-height: 320px;
    }

    .stats {
      padding: 28px;
    }

    .stat .lbl {
      max-width: 18ch;
    }

    .founder {
      gap: 16px;
    }

    .founder p {
      max-width: 58ch;
      font-size: .96rem;
      line-height: 1.66;
    }

    .sitemap {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  }

  /* ─── Compact desktop / landscape tablet (1024–1199px) ─── */
  @media(min-width:1024px) and (max-width:1199px) {
    .hero-inner {
      padding: 128px 64px 72px;
    }

    .hero h1 {
      max-width: 780px;
      font-size: clamp(3.65rem, 6.25vw, 4.25rem);
      line-height: 1.04;
    }

    .hero p {
      max-width: 560px;
      font-size: 1.04rem;
      line-height: 1.56;
    }

    .about {
      padding: 76px 44px 56px;
      gap: 34px;
    }

    .bento {
      grid-template-columns: minmax(132px, .42fr) minmax(230px, .82fr) minmax(0, 1.35fr);
      grid-template-areas:
        "stats photo founder"
        "location location location"
        "toolbox toolbox toolbox";
      gap: 16px;
    }

    .bento>* {
      padding: 28px;
    }

    .stats {
      gap: 20px;
      min-height: 380px;
      padding: 28px 20px;
    }

    .stat {
      padding-bottom: 20px;
    }

    .stat .num {
      font-size: clamp(2.15rem, 3.4vw, 2.7rem);
      letter-spacing: -.045em;
    }

    .stat .lbl {
      max-width: 18ch;
      font-size: 11px;
      letter-spacing: .06em;
      line-height: 1.35;
    }

    .about-photo,
    .founder {
      min-height: 380px;
    }

    .founder {
      gap: 16px;
    }

    .founder h3,
    .about-photo__name {
      font-size: clamp(1.45rem, 2.1vw, 1.65rem);
      line-height: 1.08;
    }

    .founder p {
      max-width: 50ch;
      font-size: .94rem;
      line-height: 1.64;
    }

    .founder .lead {
      font-size: .98rem;
    }

    .location {
      min-height: 320px;
      padding-top: 34px;
    }

    .location-content {
      width: min(100%, 22rem);
    }

    .location-globe-bg {
      left: 52%;
      bottom: -300px;
      width: min(145%, 980px);
    }
  }

  /* ─── Mobile (≤767px) ─── */
  @media(max-width:767px) {

    html,
    body {
      font-size: 15px;
    }

    /* Hero */
    .hero {
      padding: 8px;
    }

    .hero-inner {
      min-height: calc(100svh - 16px);
      padding: 108px 22px 44px;
      border-radius: 20px;
    }

    .hero-inner::before {
      background:
        linear-gradient(180deg, rgba(16, 3, 2, 0.54) 0%, rgba(16, 3, 2, 0.24) 34%, rgba(16, 3, 2, 0.68) 100%),
        linear-gradient(90deg, rgba(16, 3, 2, 0.74) 0%, rgba(16, 3, 2, 0.32) 52%, rgba(16, 3, 2, 0.5) 100%),
        url("../img/higor-ferraco-designer-ui-ux-fundo-hero.jpg") 74% center / cover no-repeat;
      transform: scale(1.04);
    }

    .hero-eyebrow {
      margin-bottom: 18px;
      gap: 10px;
    }

    .hero-eyebrow .we {
      font-size: 11px;
      letter-spacing: 0.08em;
    }

    .hero h1 {
      font-size: clamp(2.75rem, 12vw, 4rem);
      line-height: 1.04;
    }

    .hero p {
      font-size: 0.95rem;
      max-width: 100%;
      margin-top: 18px;
    }

    .hero-actions {
      margin-top: 28px;
      width: 100%;
      gap: 10px;
    }

    .hero-actions .btn {
      flex: 1 1 140px;
      justify-content: center;
      min-height: 48px;
      padding: 14px 18px;
      font-size: 11px;
    }

    /* Featured Work */
    .section-pad {
      padding: 40px 8px 0;
    }

    .section-wrap {
      padding: 28px 12px 12px;
      border-radius: 20px;
    }

    .section-head {
      padding: 4px 4px 24px;
      gap: 16px;
    }

    .section-head h2 {
      font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .section-head .btn {
      min-height: 48px;
      padding: 14px 22px;
    }

    .featured-grid {
      gap: 10px;
    }

    .work-card {
      padding: 20px;
      border-radius: 16px;
      aspect-ratio: 4/4.2;
      min-height: auto;
    }

    .work-card .meta {
      gap: 10px;
      transform: none;
      opacity: 1;
    }

    .work-card .title {
      font-size: 1.125rem;
    }

    .work-card .tags {
      gap: 6px;
    }

    .tag {
      padding: 5px 10px;
      font-size: 11px;
    }

    /* Services + About */
    .services-about {
      padding: 8px;
    }

    .services {
      padding: 56px 20px;
      border-radius: 20px 20px 0 0;
    }

    .services h2 {
      font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .services .lead {
      margin-top: 18px;
      font-size: 0.95rem;
    }

    .service-cards {
      margin-top: 36px;
      gap: 12px;
    }

    .service-card__surface {
      min-height: 104px;
      border-radius: 18px;
    }

    .service-card__index {
      top: 16px;
      left: 16px;
    }

    .service-card__rail {
      left: 16px;
      bottom: 18px;
      font-size: 0.95rem;
    }

    .service-card__content {
      padding: 56px 16px 18px;
    }

    .service-card__kicker {
      max-width: none;
      font-size: .68rem;
      letter-spacing: .16em;
    }

    .service-card h3 {
      max-width: 12ch;
      font-size: 1.35rem;
    }

    .service-card__body {
      margin-top: 12px;
    }

    .service-card__body p {
      font-size: .94rem;
      line-height: 1.6;
    }

    .service-card__body ul {
      gap: 8px;
      margin-top: 18px;
    }

    .service-card__body li {
      font-size: .92rem;
    }

    .service-card.is-active .service-card__surface {
      min-height: 430px;
    }

    .service-card.is-active h3 {
      font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .about {
      padding: 48px 20px 32px;
      border-radius: 0 0 20px 20px;
      gap: 28px;
    }

    .bento {
      gap: 12px;
    }

    .bento>* {
      padding: 24px;
      border-radius: 16px;
    }

    .stats {
      gap: 16px;
      padding: 26px 22px;
    }

    .stat {
      min-width: 0;
      padding-bottom: 18px;
    }

    .stat .num {
      font-size: 2.25rem;
    }

    .stat .lbl {
      font-size: 12px;
    }

    .location {
      display: none;
    }

    .location-globe-bg {
      left: 60%;
      bottom: -190px;
      width: min(240%, 720px);
    }

    .location h3 {
      font-size: 1.25rem;
    }

    .about-photo {
      padding: 0;
    }

    .about-photo__media {
      min-height: 280px;
      padding: 20px;
      border-radius: inherit;
    }

    .about-photo__caption {
      padding: 88px 20px 20px;
      gap: 6px;
    }

    .about-photo__caption::before {
      left: -20px;
      right: -20px;
      bottom: -20px;
      top: -52px;
    }

    .about-photo__caption span {
      font-size: 10px;
      letter-spacing: 0.14em;
    }

    .about-photo__placeholder strong {
      font-size: 1.15rem;
    }

    .founder {
      gap: 14px;
    }

    .founder p {
      max-width: none;
    }

    .toolbox {
      padding: 28px 22px;
      gap: 20px;
    }

    .icons {
      gap: 10px;
    }

    .icon {
      width: 46px;
      height: 46px;
      font-size: 12px;
    }

    /* CTA */
    .cta {
      padding: 64px 20px;
    }

    .cta .av {
      margin-bottom: 24px;
      font-size: 12px;
    }

    .cta h2 {
      font-size: clamp(3rem, 18vw, 5rem);
    }

    .cta-actions {
      margin-top: 32px;
      width: 100%;
      gap: 10px;
    }

    .cta-actions .btn {
      width: 100%;
      justify-content: center;
      min-height: 48px;
    }

    /* Footer */
    .footer-pad {
      padding: 0 8px 8px;
    }

    .footer {
      padding: 40px 22px;
      border-radius: 20px;
      min-height: auto;
    }

    .footer-top {
      gap: 40px;
    }

    .contact h2 {
      font-size: clamp(2.25rem, 10vw, 3rem);
    }

    .contact .row {
      font-size: 1rem;
      margin-top: 14px;
    }

    .contact .row:first-of-type {
      margin-top: 22px;
    }

    .sitemap {
      grid-template-columns: 1fr 1fr;
      gap: 28px 20px;
    }

    .sitemap h3 {
      margin-bottom: 14px;
    }

    .sitemap a {
      line-height: 2;
    }

    .footer-bottom {
      margin-top: 40px;
      text-align: center;
      gap: 4px;
      border-top-color: rgba(255, 255, 255, .08);
    }

    .footer-signature {
      align-items: center;
    }
  }

  /* 44px minimum touch target on small screens */
  @media(max-width:1023px) {
    .btn {
      min-height: 44px;
    }

    .pill {
      min-height: 40px;
    }

    .nav-links a,
    .sitemap a,
    .contact .row {
      padding-block: 2px;
    }
  }

  /* ═══════════════════════════════════════════════════════
     MOBILE MENU — drawer (<1024px)
     ═══════════════════════════════════════════════════════ */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-menu[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 4, .55);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    opacity: 0;
    transition: opacity .5s ease;
    cursor: pointer;
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu__backdrop {
    opacity: 1;
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(460px, 100%);
    background:
      radial-gradient(120% 90% at 100% 0%, rgba(255, 77, 29, .30) 0%, transparent 58%),
      radial-gradient(80% 60% at 0% 100%, rgba(171, 19, 19, .20) 0%, transparent 60%),
      linear-gradient(180deg, #141110 0%, #070605 100%);
    color: #fafafa;
    display: flex;
    flex-direction: column;
    padding: 20px 22px 26px;
    transform: translate3d(100%, 0, 0);
    transition: transform .58s cubic-bezier(.16, 1, .3, 1);
    box-shadow: -30px 0 80px rgba(0, 0, 0, .55);
    border-left: 1px solid rgba(255, 255, 255, .06);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu__panel {
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mobile-menu__brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }

  .mobile-menu__brand-logo {
    display: block;
    width: auto;
    height: 20px;
    flex: 0 0 auto;
  }

  .mobile-menu__close {
    appearance: none;
    background: transparent;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #fafafa;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    transition: background-color .24s ease, transform .32s ease, border-color .24s ease;
  }

  .mobile-menu__close:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .3);
    transform: rotate(90deg);
  }

  .mobile-menu__close:focus-visible {
    outline: 2px solid #fafafa;
    outline-offset: 3px;
  }

  .mobile-menu__close svg {
    width: 16px;
    height: 16px;
  }

  .mobile-menu__eyebrow {
    margin: 28px 0 6px;
    color: #ffcfc2;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: .85;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
  }

  .mobile-menu__nav li {
    list-style: none;
  }

  .mobile-menu__nav a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: clamp(1.625rem, 6.5vw, 2rem);
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #fafafa;
    line-height: 1;
    transform: translateY(16px);
    opacity: 0;
    transition: color .24s ease, transform .6s cubic-bezier(.16, 1, .3, 1), opacity .48s ease;
  }

  .mobile-menu__nav li:last-child>a {
    border-bottom: none;
  }

  .mobile-menu__nav a .num {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #71717a;
    font-weight: 500;
    text-transform: uppercase;
    transition: color .24s ease;
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu__nav a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(0.16s + var(--i, 0) * 0.055s);
  }

  .mobile-menu__nav li:nth-child(1) a {
    --i: 0;
  }

  .mobile-menu__nav li:nth-child(2) a {
    --i: 1;
  }

  .mobile-menu__nav li:nth-child(3) a {
    --i: 2;
  }

  .mobile-menu__nav li:nth-child(4) a {
    --i: 3;
  }

  .mobile-menu__nav li:nth-child(5) a {
    --i: 4;
  }

  .mobile-menu__nav a:hover,
  .mobile-menu__nav a:focus-visible {
    color: var(--orange);
  }

  .mobile-menu__nav a:hover .num,
  .mobile-menu__nav a:focus-visible .num {
    color: var(--orange);
  }

  .mobile-menu__nav a:focus-visible {
    outline: none;
  }

  .mobile-menu__nav a.active {
    color: var(--orange);
  }

  .mobile-menu__nav a.active .num {
    color: var(--orange);
  }

  .mobile-menu__nav li.current-menu-item>a,
  .mobile-menu__nav li.current-menu-ancestor>a {
    color: var(--orange);
  }

  .mobile-menu__nav li.current-menu-item>a .num,
  .mobile-menu__nav li.current-menu-ancestor>a .num {
    color: var(--orange);
  }

  .mobile-menu__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 28px;
  }

  .mobile-menu__cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 16px 24px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    background: #ff4d1d;
    color: #0a0a0a;
    cursor: pointer;
    transform: translateY(16px);
    opacity: 0;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1) .5s,
      opacity .5s ease .5s,
      background-color .24s ease;
  }

  .mobile-menu__cta:hover {
    background: #ff6a1d;
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu__cta {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu__utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(16px);
    opacity: 0;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1) .58s, opacity .5s ease .58s;
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu__utility {
    transform: translateY(0);
    opacity: 1;
  }

  .page-hero {
    padding: 176px 0 72px;
    background:
      radial-gradient(circle at top left, rgba(255, 77, 29, .16), transparent 38%),
      linear-gradient(180deg, #0f0b0a 0%, #171210 100%);
    color: #fafafa;
  }

  .page-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .page-hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 231, 224, .72);
  }

  .page-hero__title {
    max-width: 10ch;
    font-size: clamp(3rem, 9vw, 6.8rem);
    line-height: .92;
    letter-spacing: -.05em;
  }

  .page-hero__description {
    max-width: 640px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, .78);
    line-height: 1.65;
  }

  .page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
  }

  .content-shell {
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(10, 10, 10, .08);
    border-radius: 32px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 24px 60px rgba(10, 10, 10, .06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .entry-featured-media {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 28px;
    background: #111;
  }

  .entry-featured-media img {
    width: 100%;
    height: auto;
  }

  .entry-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, .48);
  }

  .entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(10, 10, 10, .84);
  }

  .entry-content>*+* {
    margin-top: 1.25em;
  }

  .entry-content h2,
  .entry-content h3,
  .entry-content h4 {
    color: #0a0a0a;
    line-height: 1.15;
    letter-spacing: -.03em;
  }

  .entry-content ul,
  .entry-content ol {
    padding-left: 1.25rem;
  }

  .project-case {
    padding-top: 168px;
  }

  .project-case__wrap {
    padding: clamp(28px, 3.4vw, 44px);
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
  }

  .project-case__article {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 68px);
  }

  .project-case__header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .82fr);
    gap: 40px 64px;
    align-items: start;
  }

  .project-case__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .project-case__eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, .44);
  }

  .project-case__title {
    max-width: 10ch;
    font-size: clamp(3rem, 5vw, 56px);
    font-weight: 300;
    line-height: .94;
    letter-spacing: -.05em;
    color: #0a0a0a;
  }

  .project-case__summary {
    max-width: 560px;
    font-size: clamp(1rem, 1.7vw, 1.12rem);
    line-height: 1.7;
    color: rgba(10, 10, 10, .64);
  }

  .project-case__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .project-case__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border: 1px solid rgba(10, 10, 10, .09);
    border-radius: 999px;
    background: rgba(10, 10, 10, .03);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(10, 10, 10, .72);
  }

  .project-case__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
  }

  .project-case__meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 6px 0 0;
  }

  .project-case__meta-row {
    display: grid;
    grid-template-columns: minmax(92px, .55fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 10, 10, .16);
  }

  .project-case__meta-row dt {
    font-size: 12px;
    font-weight: 500;
    color: rgba(10, 10, 10, .62);
  }

  .project-case__meta-row dd {
    text-align: right;
    font-size: 15px;
    font-weight: 500;
    color: #0a0a0a;
  }

  .project-case__meta-row a {
    color: var(--accent);
  }

  .project-case__media {
    width: 100%;
  }

  .project-case__media-frame {
    position: relative;
    overflow: hidden;
    height: var(--project-hero-height, clamp(320px, 46vw, 720px));
    min-height: 0;
    border-radius: var(--project-hero-radius, 20px);
    background: linear-gradient(135deg, rgba(10, 10, 10, .08), rgba(10, 10, 10, .16));
    line-height: 0;
    isolation: isolate;
  }

  .project-case__media-frame img,
  .project-case__media-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100% !important;
    min-height: 100%;
    display: block;
    object-fit: var(--project-hero-fit, cover);
    object-position: var(--project-hero-position, center);
  }

  .project-case__media-frame--empty::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .25), transparent 42%),
      linear-gradient(315deg, rgba(10, 10, 10, .12), transparent 60%);
  }

  .project-case__story {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 32px 48px;
    align-items: start;
  }

  .project-case__story-title h2,
  .project-case__content-head h2 {
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    line-height: 1;
    letter-spacing: -.05em;
    color: #0a0a0a;
  }

  .project-case__story-body,
  .project-case__detail-copy {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(10, 10, 10, .68);
  }

  .project-case__story-body>*+*,
  .project-case__detail-copy>*+* {
    margin-top: 1.1em;
  }

  .project-case__details-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .project-case__detail-card {
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(10, 10, 10, .08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(247, 245, 242, .96));
  }

  .project-case__detail-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: #0a0a0a;
  }

  .project-case__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .project-case__content-body {
    max-width: 900px;
  }

  .project-case__gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .project-case__gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
  }

  .project-case__gallery-item {
    overflow: hidden;
    border-radius: 20px;
    background: #efefef;
  }

  .project-case__gallery-item.is-half {
    grid-column: span 6;
  }

  .project-case__gallery-item.is-wide {
    grid-column: 1 / -1;
  }

  .project-case__gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .project-case__gallery-item.is-half img {
    aspect-ratio: 4 / 3;
  }

  .project-case__gallery-item.is-wide img {
    aspect-ratio: 16 / 9;
  }

  .project-case__gallery-item figcaption {
    padding: 12px 14px 14px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(10, 10, 10, .58);
    background: rgba(255, 255, 255, .88);
  }

  .project-case__gallery--modular {
    gap: 0;
  }

  .project-case__gallery--visual {
    gap: 0;
  }

  .project-case__visual-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: row dense;
    gap: 10px;
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
  }

  .project-case__visual-item {
    grid-column-start: auto;
    grid-column-end: span 12;
    min-width: 0;
    margin: 0;
  }

  .project-case__visual-item.starts-row {
    grid-column-start: 1;
  }

  .project-case__visual-media {
    overflow: hidden;
    width: 100%;
    height: var(--gallery-height, 420px);
    border-radius: var(--gallery-radius, 20px);
    background: #efefef;
  }

  .project-case__visual-item.height-responsive .project-case__visual-media {
    height: auto;
    aspect-ratio: var(--gallery-ratio, 16 / 9);
  }

  .project-case__visual-item.height-original .project-case__visual-media {
    height: auto;
  }

  .project-case__visual-media img,
  .project-case__visual-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--gallery-fit, cover);
    object-position: var(--gallery-position, center);
  }

  .project-case__visual-item.height-original .project-case__visual-media img,
  .project-case__visual-item.height-original .project-case__visual-media video {
    height: auto;
  }

  .project-case__visual-item figcaption {
    padding: 10px 2px 2px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(10, 10, 10, .58);
  }

  .project-case__modular-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .project-case__gallery-row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
  }

  .project-case__gallery-module {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 0;
  }

  .project-case__gallery-row.is-half .project-case__gallery-module {
    grid-column: span 6;
  }

  .project-case__gallery-row.is-wide-left .project-case__gallery-module:first-child,
  .project-case__gallery-row.is-wide-right .project-case__gallery-module:last-child {
    grid-column: span 8;
  }

  .project-case__gallery-row.is-wide-left .project-case__gallery-module:last-child,
  .project-case__gallery-row.is-wide-right .project-case__gallery-module:first-child {
    grid-column: span 4;
  }

  .project-case__gallery-row.is-thirds .project-case__gallery-module {
    grid-column: span 4;
  }

  .project-case__gallery-row.is-free-left,
  .project-case__gallery-row.is-free-center,
  .project-case__gallery-row.is-free-right {
    display: flex;
  }

  .project-case__gallery-row.is-free-center { justify-content: center; }
  .project-case__gallery-row.is-free-right { justify-content: flex-end; }

  .project-case__gallery-row.is-free-left .project-case__gallery-module,
  .project-case__gallery-row.is-free-center .project-case__gallery-module,
  .project-case__gallery-row.is-free-right .project-case__gallery-module {
    flex: 0 0 calc((100% - 110px) / 12 * var(--project-row-width, 8) + (var(--project-row-width, 8) - 1) * 10px);
  }

  .project-case__gallery-module-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: var(--project-media-radius, 20px);
    background: #efefef;
  }

  .project-case__gallery-module.ratio-16-9 .project-case__gallery-module-media { aspect-ratio: 16 / 9; }
  .project-case__gallery-module.ratio-4-3 .project-case__gallery-module-media { aspect-ratio: 4 / 3; }
  .project-case__gallery-module.ratio-1-1 .project-case__gallery-module-media { aspect-ratio: 1; }
  .project-case__gallery-module.ratio-3-4 .project-case__gallery-module-media { aspect-ratio: 3 / 4; }
  .project-case__gallery-module.ratio-custom .project-case__gallery-module-media { height: var(--project-media-height, 520px); }

  .project-case__gallery-module-media img,
  .project-case__gallery-module-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--project-media-fit, cover);
    object-position: var(--project-media-position, center);
  }

  .project-case__gallery-module.ratio-auto .project-case__gallery-module-media img,
  .project-case__gallery-module.ratio-auto .project-case__gallery-module-media video {
    height: auto;
  }

  .project-case__gallery-module figcaption {
    padding: 10px 2px 2px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(10, 10, 10, .58);
  }

  .archive-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
  }

  .entry-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(10, 10, 10, .08);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 24px 60px rgba(10, 10, 10, .06);
  }

  .entry-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    background: #111;
  }

  .entry-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .entry-card__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
  }

  .entry-card__meta {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, .42);
  }

  .entry-card__content h2 {
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    letter-spacing: -.04em;
    line-height: 1.05;
  }

  .entry-card__content p {
    color: rgba(10, 10, 10, .7);
    line-height: 1.7;
  }

  .archive-grid--projects .archive-work-card {
    grid-column: span 4;
  }

  .archive-work-card__link {
    display: block;
    height: 100%;
  }

  .archive-grid--projects .thumb--image,
  .archive-grid--projects .thumb--placeholder {
    min-height: 360px;
    background: linear-gradient(135deg, #191919, #343434);
    overflow: hidden;
  }

  .archive-grid--projects .thumb--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .thumb--placeholder {
    width: 100%;
    height: 100%;
  }

  .pagination,
  .nav-links__list,
  .mobile-menu__list {
    margin: 0;
    padding: 0;
  }

  .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
  }

  .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(10, 10, 10, .08);
    background: rgba(255, 255, 255, .84);
    font-size: 13px;
    font-weight: 600;
  }

  .pagination .page-numbers.current {
    background: #0a0a0a;
    color: #fafafa;
    border-color: #0a0a0a;
  }

  @media (max-width: 1023px) {
    .page-hero {
      padding-top: 148px;
    }

    .project-case {
      padding-top: 144px;
    }

    .project-case__header,
    .project-case__story {
      grid-template-columns: minmax(0, 1fr);
    }

    .project-case__details-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .entry-card,
    .archive-grid--projects .archive-work-card {
      grid-column: span 1;
    }
  }

  @media (max-width: 767px) {
    .page-hero {
      padding: 132px 0 56px;
    }

    .project-case {
      padding-top: 128px;
    }

    .project-case__wrap {
      padding: 22px 16px;
      border-radius: 24px;
    }

    .project-case__article {
      gap: 32px;
    }

    .project-case__title {
      max-width: none;
      font-size: clamp(2.6rem, 10vw, 56px);
      font-weight: 300;
    }

    .project-case__summary {
      max-width: none;
      font-size: .96rem;
    }

    .project-case__actions {
      width: 100%;
    }

    .project-case__actions .btn {
      flex: 1 1 100%;
      justify-content: center;
    }

    .project-case__meta-row {
      grid-template-columns: minmax(0, 1fr);
      gap: 6px;
    }

    .project-case__meta-row dd {
      text-align: left;
    }

    .project-case__media-frame {
      height: var(--project-hero-mobile-height, 240px);
      border-radius: min(var(--project-hero-radius, 20px), 20px);
    }

    .project-case__story-title h2,
    .project-case__content-head h2 {
      font-size: clamp(1.8rem, 9vw, 2.7rem);
    }

    .project-case__details-grid,
    .project-case__gallery-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .project-case__detail-card {
      padding: 22px 18px;
      border-radius: 20px;
    }

    .project-case__gallery-item,
    .project-case__gallery-item.is-half,
    .project-case__gallery-item.is-wide {
      grid-column: 1 / -1;
    }

    .project-case__gallery-row {
      grid-template-columns: minmax(0, 1fr);
    }

    .project-case__visual-gallery {
      grid-template-columns: minmax(0, 1fr);
    }

    .project-case__visual-item,
    .project-case__visual-item.starts-row {
      grid-column: 1 / -1;
    }

    .project-case__visual-item.height-fixed .project-case__visual-media {
      height: min(var(--gallery-height, 420px), 72vh);
    }

    .project-case__gallery-row .project-case__gallery-module,
    .project-case__gallery-row.is-half .project-case__gallery-module,
    .project-case__gallery-row.is-wide-left .project-case__gallery-module,
    .project-case__gallery-row.is-wide-right .project-case__gallery-module,
    .project-case__gallery-row.is-thirds .project-case__gallery-module,
    .project-case__gallery-row.is-free-left .project-case__gallery-module,
    .project-case__gallery-row.is-free-center .project-case__gallery-module,
    .project-case__gallery-row.is-free-right .project-case__gallery-module {
      grid-column: 1 / -1;
      flex-basis: 100%;
    }

    .project-case__gallery-module.ratio-custom .project-case__gallery-module-media {
      height: min(var(--project-media-height, 520px), 70vh);
    }

    .page-hero__actions {
      flex-direction: column;
      align-items: flex-start;
    }

    .archive-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .content-shell {
      border-radius: 24px;
      padding: 24px 18px;
    }

    .archive-grid--projects .thumb--image,
    .archive-grid--projects .thumb--placeholder {
      min-height: 280px;
    }
  }

  .mobile-menu__lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
    color: #fafafa;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .24s ease, border-color .24s ease;
  }

  .mobile-menu__lang:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .28);
  }

  .mobile-menu__lang svg {
    width: 14px;
    height: 14px;
  }

  .mobile-menu__meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #71717a;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-align: right;
  }

  .mobile-menu__meta strong {
    color: #d4d4d4;
    font-weight: 500;
  }

  body.menu-open {
    overflow: hidden;
  }

  @media(min-width:1024px) {
    .mobile-menu {
      display: none;
    }
  }

  @media(prefers-reduced-motion:reduce) {

    .site-intro {
      display: none !important;
    }

    .nav,
    .page {
      animation: none !important;
      transition: none !important;
    }

    .mobile-menu__panel,
    .mobile-menu__backdrop,
    .mobile-menu__nav a,
    .mobile-menu__cta,
    .mobile-menu__utility,
    .mobile-menu__close {
      transition: none !important;
      transform: none !important;
    }

    .mobile-menu[aria-hidden="false"] .mobile-menu__nav a,
    .mobile-menu[aria-hidden="false"] .mobile-menu__cta,
    .mobile-menu[aria-hidden="false"] .mobile-menu__utility {
      opacity: 1;
    }
  }
