/* ─── RESET & BASE ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:   #000000;
      --black2:  #0a0a0a;
      --black3:  #111111;
      --white:   #ffffff;
      --grey:    #888888;
      --grey2:   rgba(255,255,255,0.4);
      --grey3:   rgba(255,255,255,0.06);
      --accent:  #699af5;
      --divider: rgba(255,255,255,0.08);
      --ease:    cubic-bezier(0.16, 1, 0.3, 1);
      --font-display: 'Bebas Neue', sans-serif;
      --font-body:    'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      scrollbar-width: none;
    }
    body::-webkit-scrollbar { display: none; }

    img, video { display: block; max-width: 100%; }

    a { color: inherit; text-decoration: none; }

    :focus-visible { outline: 1px solid var(--white); outline-offset: 4px; }

    /* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.12s; }
    .reveal-delay-2 { transition-delay: 0.24s; }
    .reveal-delay-3 { transition-delay: 0.36s; }
    .reveal-delay-4 { transition-delay: 0.48s; }
    .reveal-delay-5 { transition-delay: 0.60s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .line, .scroll-arrow { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
    }

    /* ─── NAV ───────────────────────────────────────────────────────── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 24px 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
    }
    .navbar.scrolled {
      background: rgba(0,0,0,0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--grey3);
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 20px;
      letter-spacing: 0.22em;
      color: var(--white);
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      gap: 40px;
      align-items: center;
    }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 100%; height: 1px;
      background: var(--white);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px; height: 1.5px;
      background: var(--white);
      transition: all 0.35s var(--ease);
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile overlay */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s var(--ease);
    }
    .mobile-menu.open { opacity: 1; pointer-events: all; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: clamp(48px, 10vw, 72px);
      letter-spacing: 0.06em;
      color: var(--white);
      text-transform: uppercase;
      transition: color 0.2s ease;
    }
    .mobile-menu a:hover { color: var(--accent); }

    /* ─── HERO ──────────────────────────────────────────────────────── */
    .hero {
      width: 100vw;
      height: 100vh;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #080808 100%);
    }
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.7;
      object-position: center 20%;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.88) 100%);
      z-index: 1;
    }
    /* animated gradient fallback / accent when no video */
    .hero-bg-anim {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(59,123,245,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 60%),
        #050505;
      animation: bgPulse 8s ease-in-out infinite alternate;
    }
    @keyframes bgPulse {
      from { opacity: 0.7; }
      to   { opacity: 1; }
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 5vw;
      transform: translateY(-50%);
      z-index: 2;
      max-width: 900px;
    }
    .hero-tag {
      display: block;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.32em;
      color: var(--grey);
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0;
      animation: slideUp 0.8s var(--ease) 0.1s forwards;
    }
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(80px, 13vw, 170px);
      line-height: 0.88;
      letter-spacing: 0.02em;
      color: var(--white);
    }
    .hero-headline .line {
      display: block;
      opacity: 0;
      animation: slideUp 1s var(--ease) forwards;
    }
    .hero-headline .line-1 { animation-delay: 0.3s; }
    .hero-headline .line-2 { animation-delay: 0.55s; }
    .hero-headline .line-3 { animation-delay: 0.78s; color: var(--accent); }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(60px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeIn 1s ease 1.4s forwards;
    }
    @keyframes fadeIn { to { opacity: 1; } }

    .scroll-text {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.2);
      animation: scrollLinePulse 1.8s ease-in-out infinite;
    }
    @keyframes scrollLinePulse {
      0%, 100% { opacity: 0.2; transform: scaleY(1); }
      50%       { opacity: 0.6; transform: scaleY(0.7); }
    }
    .scroll-arrow {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      animation: bounce 1.8s ease-in-out infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(8px); }
    }

    /* ─── ABOUT ─────────────────────────────────────────────────────── */
    .about-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--black);
      padding: 120px 5vw;
      gap: 80px;
      border-bottom: 1px solid var(--divider);
    }
    .about-left {
      flex: 0 0 58%;
      max-width: 58%;
    }
    .about-intro {
      font-family: var(--font-body);
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 30px;
    }
    .about-stat-headline {
      font-family: var(--font-display);
      font-size: clamp(80px, 12vw, 150px);
      line-height: 0.85;
      letter-spacing: 0.01em;
      color: var(--white);
      margin: 4px 0;
    }
    .about-stat-headline .accent { color: var(--accent); }
    .about-sub {
      font-family: var(--font-body);
      font-size: clamp(22px, 3vw, 42px);
      font-weight: 300;
      color: var(--grey);
      line-height: 1.2;
    }

    .about-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .stat-item {
      padding: 32px 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .stat-item + .stat-item { border-top: 1px solid var(--divider); }
    .stat-row {
      display: flex;
      align-items: baseline;
      gap: 0;
    }
    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(56px, 7vw, 88px);
      line-height: 1;
      color: var(--white);
    }
    .stat-suffix {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 60px);
      color: var(--grey);
      line-height: 1;
      margin-left: 2px;
    }
    .stat-label {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 300;
      color: var(--grey);
      letter-spacing: 0.04em;
      margin-top: 6px;
    }

    /* ─── WORK ──────────────────────────────────────────────────────── */
    .work-section {
      width: 100vw;
      background: var(--black);
      padding: 0;
      overflow: hidden;
      border-top: 1px solid var(--divider);
      border-bottom: 1px solid var(--divider);
      position: relative;
    }

    .work-header {
      padding: 80px 5vw 48px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .work-scroll-hint {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      padding-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .work-scroll-hint::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 1px;
      background: rgba(255,255,255,0.2);
    }

    /* Horizontal scroll track */
    .work-track-outer {
      width: 100%;
      overflow-x: scroll;
      overflow-y: hidden;
      cursor: grab;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 0 5vw 72px;
      box-sizing: border-box;
    }
    .work-track-outer::-webkit-scrollbar { display: none; }
    .work-track-outer.grabbing { cursor: grabbing; }

    .work-track {
      display: flex;
      gap: 12px;
      align-items: center;
      width: max-content;
    }

    /* Each work item */
    .work-item {
      flex-shrink: 0;
      position: relative;
      height: 500px;
    }
    .work-item-inner {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .work-item-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition: transform 0.8s var(--ease);
    }
    .work-image,
    .work-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
      -webkit-user-drag: none;
      user-select: none;
    }
    .work-item:hover .work-item-bg { transform: scale(1.04); }

    /* Size variants */
    .wi-portrait-tall  { width: 280px; height: 420px; }
    .wi-portrait-med   { width: 240px; height: 340px; }
    .wi-landscape      { width: 520px; height: 340px; }
    .wi-landscape-med  { width: 400px; height: 300px; }
    .wi-square         { width: 300px; height: 300px; }
    .wi-portrait-sm    { width: 200px; height: 300px; }
    .wi-landscape-sm   { width: 360px; height: 260px; }
    .wi-tall           { width: 260px; height: 460px; }

    /* Vertical offsets */
    .wi-offset-1 { margin-top: 60px; }
    .wi-offset-2 { margin-top: 120px; }
    .wi-offset-3 { margin-top: 30px; }
    .wi-offset-4 { margin-top: 90px; }

    /* Gradient backgrounds */
    .wbg-1 { background: linear-gradient(145deg, #080a10 0%, #0a0e1c 50%, #060810 100%); }
    .wbg-2 { background: linear-gradient(160deg, #090b12 0%, #0c1020 50%, #07090f 100%); }
    .wbg-3 { background: linear-gradient(130deg, #070910 0%, #090d1a 50%, #060810 100%); }
    .wbg-4 { background: linear-gradient(150deg, #0a0b14 0%, #0d1122 50%, #08090e 100%); }
    .wbg-5 { background: linear-gradient(140deg, #080a0f 0%, #0b0f1c 50%, #070910 100%); }
    .wbg-6 { background: linear-gradient(155deg, #090a12 0%, #0c1020 50%, #08090f 100%); }
    .wbg-7 { background: linear-gradient(135deg, #07090e 0%, #0a0e1a 50%, #060810 100%); }
    .wbg-8 { background: linear-gradient(165deg, #080a11 0%, #0c1020 50%, #07090f 100%); }

    /* Art layers */
    .work-item-art {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .work-item:nth-child(odd) .work-item-art {
      background: radial-gradient(ellipse 70% 60% at 30% 40%, rgba(59,123,245,0.07) 0%, transparent 65%);
    }
    .work-item:nth-child(even) .work-item-art {
      background: radial-gradient(ellipse 60% 70% at 70% 60%, rgba(59,123,245,0.05) 0%, transparent 65%);
    }
    .work-item:nth-child(3n) .work-item-art::after,
    .work-item:nth-child(5n) .work-item-art::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .work-item:nth-child(4n) .work-item-art::before {
      content: '';
      position: absolute;
      width: 1px; height: 100%;
      background: rgba(255,255,255,0.04);
      left: 50%;
    }

    /* ─── SERVICES ──────────────────────────────────────────────────── */
    .services-section {
      background: var(--black);
      padding: 120px 5vw;
      border-top: 1px solid var(--divider);
      border-bottom: 1px solid var(--divider);
    }
    .section-header {
      margin-bottom: 64px;
    }
    .section-tag {
      display: block;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(52px, 8vw, 100px);
      line-height: 0.9;
      letter-spacing: 0.02em;
      color: var(--white);
    }

    .services-grid {
      display: flex;
      gap: 16px;
      align-items: stretch;
    }

    .service-card {
      flex: 1;
      min-width: 0;
      position: relative;
      aspect-ratio: 9/16;
      overflow: hidden;
      border-radius: 6px;
      cursor: default;
    }
    .card-image-wrapper {
      position: relative;
      width: 100%; height: 100%;
    }
    .card-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.7s var(--ease);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .card-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .card-bg-2 { background: linear-gradient(160deg, #101810 0%, #151f12 60%, #0a0f0a 100%); }
    .card-bg-3 { background: linear-gradient(160deg, #181210 0%, #201a15 60%, #100e0a 100%); }
    .card-bg-4 { background: linear-gradient(160deg, #101518 0%, #121c20 60%, #0a0d10 100%); }
    .card-bg-5 { background: linear-gradient(160deg, #181018 0%, #201520 60%, #100a10 100%); }

    /* geometric art inside each card */
    .card-geo {
      position: absolute;
      inset: 0;
      overflow: hidden;
      opacity: 0.5;
      transition: opacity 0.5s ease;
    }
    .card-geo::before {
      content: '';
      position: absolute;
      width: 200%; height: 200%;
      top: -50%; left: -50%;
      background: conic-gradient(from 0deg, transparent 0%, rgba(255,255,255,0.015) 25%, transparent 50%);
      animation: rotateSlow 20s linear infinite;
    }
    .card-geo::after {
      content: '';
      position: absolute;
      width: 80px; height: 80px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 50%;
      bottom: 120px; left: 50%;
      transform: translateX(-50%);
    }
    @keyframes rotateSlow { to { transform: rotate(360deg); } }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.25) 55%,
        transparent 100%);
      transition: background 0.5s ease;
      z-index: 2;
    }

    /* ── CARD CONTENT — always absolute bottom, never relative ── */
    .card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 22px;
      z-index: 3;
    }

    .card-number {
      display: block;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .card-title {
      font-family: var(--font-display);
      font-size: clamp(24px, 2.5vw, 36px);
      color: var(--white);
      line-height: 1;
      letter-spacing: 0.02em;
      margin: 0 0 14px 0;
    }
    .card-description {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,0.68);
      margin: 0;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.4s ease 0.08s, transform 0.4s ease 0.08s;
    }
    .card-accent-line {
      width: 0;
      height: 1px;
      background: var(--accent);
      margin-bottom: 14px;
      transition: width 0.5s var(--ease) 0.05s;
    }

    /* Desktop hover states */
    .service-card:hover .card-bg { transform: scale(1.06); }
    .service-card:hover .card-overlay {
      background: linear-gradient(to top,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.12) 100%);
    }
    .service-card:hover .card-description {
      opacity: 1;
      transform: translateY(0);
    }
    .service-card:hover .card-accent-line { width: 32px; }
    .service-card:hover .card-geo { opacity: 0.9; }

    /* ─── CONTACT ───────────────────────────────────────────────────── */
    .contact-section {
      display: flex;
      min-height: 100vh;
      background: var(--black);
    }
    .contact-image {
      flex: 0 0 50%;
      position: relative;
      overflow: hidden;
    }
    .contact-image-inner {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .contact-image-inner img {
      width: 100%; height: 100%;
      object-fit: cover;
      background-position: center top;
    }
    .contact-img-grad {
      background: linear-gradient(155deg, #0a0d14 0%, #0d1220 35%, #0a0e14 65%, #070808 100%);
    }
    .contact-img-art {
      position: absolute;
      inset: 0;
    }
    .contact-img-art::before {
      content: '';
      position: absolute;
      width: 70%; height: 70%;
      top: 15%; left: 15%;
      border: 1px solid rgba(59,123,245,0.08);
      border-radius: 2px;
    }
    .contact-img-art::after {
      content: '';
      position: absolute;
      width: 1px; height: 60%;
      background: linear-gradient(to bottom, transparent, rgba(59,123,245,0.15), transparent);
      left: 50%; top: 20%;
    }
    .contact-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 70%, rgba(0,0,0,0.6) 100%);
    }

    .contact-content {
      flex: 0 0 50%;
      background: var(--black);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 8vw 80px 6vw;
      gap: 32px;
    }
    .contact-headline {
      font-family: var(--font-display);
      font-size: clamp(56px, 8vw, 104px);
      line-height: 0.9;
      letter-spacing: 0.01em;
      color: var(--white);
    }
    .contact-subtext {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255,255,255,0.5);
      max-width: 380px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      padding: 18px 36px;
      border: 1px solid rgba(255,255,255,0.25);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: all 0.35s var(--ease);
      width: fit-content;
      cursor: pointer;
      background: transparent;
    }
    .cta-button:hover {
      background: var(--white);
      color: var(--black);
      border-color: var(--white);
      gap: 28px;
    }
    .btn-arrow { transition: transform 0.35s var(--ease); }
    .cta-button:hover .btn-arrow { transform: translateX(4px); }

    /* ─── FOOTER ────────────────────────────────────────────────────── */
    .footer {
      padding: 32px 5vw;
      border-top: 1px solid var(--divider);
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer a, .footer-location {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 300;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.06em;
      transition: color 0.25s ease;
    }
    .footer a:hover { color: var(--white); }
    .footer-socials {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .footer-socials a {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .footer-dot { color: rgba(255,255,255,0.15); }

    /* ─── RESPONSIVE ────────────────────────────────────────────────── */
    @media (max-width: 1200px) {
      .about-left { flex: 0 0 54%; max-width: 54%; }
    }

    @media (max-width: 1024px) {
      .about-section {
        flex-direction: column;
        gap: 60px;
        padding: 100px 6vw;
      }
      .about-left { flex: none; max-width: 100%; }
      .services-grid { flex-wrap: wrap; }
      .service-card { flex: 0 0 calc(50% - 8px); aspect-ratio: 9/14; }
    }

    @media (max-width: 768px) {

      /* ─── NAV ─── */
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* ─── HERO ─── */
      .hero-content { left: 6vw; right: 6vw; max-width: 100%; }
      .hero-headline { font-size: clamp(60px, 16vw, 100px); }
      .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 50%;
      }

      /* ─── ABOUT ─── */
      .about-section { padding: 80px 6vw; min-height: auto; }
      .about-intro { font-size: clamp(22px, 5.5vw, 36px); margin-bottom: 12px; }

      /* ─── ABOUT (mobile headline size) ─── */
      .about-stat-headline {
        font-size: clamp(40px, 13vw, 100px);
      }

      /* ─── WORK (CAROUSEL MOBILE) — original sizing restored ─── */
      .work-header { padding: 60px 6vw 32px; }

      .wi-portrait-tall,
      .wi-portrait-med,
      .wi-landscape,
      .wi-landscape-med,
      .wi-square,
      .wi-portrait-sm,
      .wi-landscape-sm,
      .wi-tall {
        width: auto !important;
        height: 200px !important;
      }

      .wi-offset-1,
      .wi-offset-2,
      .wi-offset-3,
      .wi-offset-4 {
        margin-top: 0 !important;
      }

      .work-item-inner {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .work-image,
      .work-video {
        height: 100%;
        width: auto;
        object-fit: contain;
        pointer-events: none;
        -webkit-user-drag: none;
        user-select: none;
      }

      /* ─── SERVICES (MOBILE) — original layout, only content pinned to bottom ─── */
      .services-section { padding: 80px 5vw; }

      .services-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .service-card {
        position: relative;
        display: block;
        width: 100%;
        height: 70vh;
        min-height: 420px;
        max-height: 600px;
        overflow: hidden;
        border-radius: 8px;
        aspect-ratio: unset;
      }
      .card-image-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }

      .card-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background-size: cover;
        background-position: center 20%;
      }

      .card-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        /* Stronger gradient so text is always readable without hover */
        background: linear-gradient(to top,
          rgba(0,0,0,0.92) 0%,
          rgba(0,0,0,0.4) 55%,
          transparent 100%) !important;
      }

      /* Pin content to bottom — this is the only thing that was wrong */
      .card-content {
        position: absolute !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2 !important;
      }

      /* Description and accent line always visible (no hover on mobile) */
      .card-description {
        opacity: 1 !important;
        transform: translateY(0) !important;
      }

      .card-accent-line {
        width: 32px !important;
      }

      /* ─── CONTACT ─── */
      .contact-section { flex-direction: column; }

      .contact-image {
        flex: none;
        width: 100%;
        height: 300px;
        position: relative;
      }

      .contact-image-inner {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center 20%;
      }

      .contact-content {
        flex: none;
        padding: 60px 6vw;
      }

      /* ─── FOOTER ─── */
      .footer {
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
        text-align: center;
        padding: 28px 6vw;
      }
    }

    @media (max-width: 480px) {
      .hero-headline { font-size: clamp(52px, 18vw, 80px); }
      .section-title { font-size: clamp(44px, 12vw, 72px); }
      .contact-headline { font-size: clamp(48px, 14vw, 80px); }
      /* Cards: slightly shorter on very small screens */
      .service-card { height: 460px; }
    }