/* ========================================
       DESIGN TOKENS
       ======================================== */
    :root {
      --bg-light: #FAFAF8;
      --bg-tinted: #F0F0EC;
      --bg-dark: #141820;
      --bg-darker: #0C0F14;
      --text-primary: #1A1A1A;
      --text-secondary: #5A6474;
      --text-light: #E8E6E1;
      --text-muted: #8891A0;
      --accent: #E85D30;
      --accent-hover: #D14E24;
      --teal: #2D9B83;
      --teal-muted: rgba(45, 155, 131, 0.15);
      --surface-card: rgba(255, 255, 255, 0.6);
      --surface-dark-card: rgba(255, 255, 255, 0.04);
      --border-light: rgba(0, 0, 0, 0.06);
      --border-dark: rgba(255, 255, 255, 0.08);
      --font-display: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    }

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

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

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

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ========================================
       LOADER
       ======================================== */
    .loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--bg-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
    }

    .loader.done {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-brand {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      color: var(--text-light);
      letter-spacing: 0;
      opacity: 0;
      transform: translateY(20px);
      animation: loaderReveal 0.8s var(--ease-out-expo) 0.2s forwards;
    }

    .loader-brand span {
      color: var(--accent);
    }

    .loader-line {
      width: 60px;
      height: 2px;
      background: var(--accent);
      margin-top: 1.5rem;
      transform: scaleX(0);
      transform-origin: left;
      animation: loaderLine 1s var(--ease-out-expo) 0.5s forwards;
    }

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

    @keyframes loaderLine {
      to { transform: scaleX(1); }
    }

    /* ========================================
       NAV
       ======================================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.25rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
    }

    .nav.scrolled {
      background: rgba(250, 250, 248, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 0.75rem 3rem;
      border-bottom: 1px solid var(--border-light);
    }

    .nav-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--text-light);
      text-decoration: none;
      letter-spacing: 0;
    }

    .nav-logo .by {
      font-weight: 500;
      color: rgba(232, 230, 225, 0.68);
    }

    .nav.scrolled .nav-logo {
      color: var(--text-primary);
    }

    .nav.scrolled .nav-logo .by {
      color: var(--text-secondary);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(232, 230, 225, 0.72);
      text-decoration: none;
      transition: color 0.3s;
      letter-spacing: 0.01em;
    }

    .nav-links a:hover { color: var(--text-light); }

    .nav.scrolled .nav-links a {
      color: var(--text-secondary);
    }

    .nav.scrolled .nav-links a:hover {
      color: var(--text-primary);
    }

    .nav-links .nav-cta {
      background: rgba(232, 230, 225, 0.94);
      color: var(--bg-darker);
      padding: 0.6rem 1.5rem;
      border-radius: 100px;
      transition: background 0.3s, transform 0.3s;
    }

    .nav-links .nav-cta:hover {
      background: var(--accent);
      color: white;
      transform: translateY(-1px);
    }

    .nav.scrolled .nav-links .nav-cta {
      background: var(--text-primary);
      color: var(--bg-light);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 28px;
      height: 20px;
      position: relative;
    }

    .mobile-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text-light);
      position: absolute;
      left: 0;
      transition: all 0.3s;
    }

    .mobile-toggle span:nth-child(1) { top: 0; }
    .mobile-toggle span:nth-child(2) { top: 9px; }
    .mobile-toggle span:nth-child(3) { top: 18px; }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(12, 15, 20, 0.96);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s;
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu a {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 2rem;
      color: var(--text-light);
      text-decoration: none;
      letter-spacing: 0;
      transition: color 0.3s;
    }

    .mobile-menu a:hover { color: var(--accent); }

    .mobile-menu .nav-cta {
      margin-top: 1rem;
      font-size: 1.1rem;
      background: var(--accent);
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 100px;
    }

    body.menu-open { overflow: hidden; }

    .mobile-toggle.open span:nth-child(1) {
      top: 9px;
      transform: rotate(45deg);
    }

    .mobile-toggle.open span:nth-child(2) { opacity: 0; }

    .mobile-toggle.open span:nth-child(3) {
      top: 9px;
      transform: rotate(-45deg);
    }

    /* ========================================
       SCROLL PROGRESS
       ======================================== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--accent), var(--teal));
      z-index: 10001;
      transition: width 0.1s linear;
    }

    /* ========================================
       HERO
       ======================================== */
    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      padding: 8rem 3rem 5rem;
      position: relative;
      overflow: hidden;
      background: var(--bg-darker);
    }

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.56fr);
      gap: 4rem;
      align-items: end;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      max-width: 600px;
      position: relative;
      z-index: 2;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.02);
      animation: heroDrift 18s ease-in-out infinite alternate;
    }

    .hero-scrim {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(12, 15, 20, 0.92) 0%, rgba(12, 15, 20, 0.72) 35%, rgba(12, 15, 20, 0.2) 72%, rgba(12, 15, 20, 0.5) 100%),
        linear-gradient(180deg, rgba(12, 15, 20, 0.22) 0%, rgba(12, 15, 20, 0.16) 55%, rgba(12, 15, 20, 0.86) 100%);
      z-index: 1;
    }

    @keyframes heroDrift {
      0% { transform: scale(1.02) translate3d(0, 0, 0); }
      100% { transform: scale(1.06) translate3d(-1.25%, -0.75%, 0); }
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      font-weight: 500;
      color: #F0A06F;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(20px);
    }

    .hero-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(3rem, 8vw, 6.5rem);
      line-height: 0.95;
      letter-spacing: 0;
      color: var(--text-light);
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(40px);
    }

    .hero-title .accent {
      color: #F0A06F;
      position: relative;
      display: inline-block;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      font-weight: 400;
      color: rgba(232, 230, 225, 0.74);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      opacity: 0;
      transform: translateY(30px);
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 0.9rem 2rem;
      border-radius: 100px;
      text-decoration: none;
      transition: all 0.3s var(--ease-out-quart);
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--accent);
      color: white;
    }

    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(232, 93, 48, 0.3);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      color: var(--text-light);
      border: 1.5px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(12px);
    }

    .btn-secondary:hover {
      border-color: rgba(255, 255, 255, 0.42);
      transform: translateY(-2px);
    }

    .btn-arrow {
      transition: transform 0.3s;
    }

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

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
      max-width: 600px;
      margin-top: 3.25rem;
      opacity: 0;
      transform: translateY(20px);
    }

    .hero-metrics div {
      min-height: 94px;
      padding: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.13);
      background: rgba(12, 15, 20, 0.34);
      backdrop-filter: blur(16px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-metrics strong {
      font-family: var(--font-mono);
      color: #F0A06F;
      font-size: 0.78rem;
      font-weight: 500;
    }

    .hero-metrics span {
      color: rgba(232, 230, 225, 0.82);
      font-size: 0.92rem;
      line-height: 1.3;
    }

    .hero-proof {
      align-self: end;
      justify-self: end;
      width: min(100%, 390px);
      padding: 1.35rem;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(12, 15, 20, 0.48);
      color: var(--text-light);
      backdrop-filter: blur(20px);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    }

    .proof-kicker {
      display: block;
      font-family: var(--font-mono);
      color: #F0A06F;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.9rem;
    }

    .hero-proof h2 {
      font-family: var(--font-display);
      font-size: 1.45rem;
      line-height: 1.1;
      letter-spacing: 0;
      margin-bottom: 1.15rem;
    }

    .hero-proof ul {
      list-style: none;
      display: grid;
      gap: 0.7rem;
    }

    .hero-proof li {
      color: rgba(232, 230, 225, 0.72);
      font-size: 0.9rem;
      display: flex;
      gap: 0.65rem;
      align-items: center;
    }

    .hero-proof li::before {
      content: '';
      width: 0.45rem;
      height: 0.45rem;
      background: var(--teal);
      flex: 0 0 auto;
    }

    /* Waveform canvas */
    .waveform-container {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 200px;
      z-index: 1;
      opacity: 0.72;
      mix-blend-mode: screen;
    }

    .waveform-container canvas {
      width: 100%;
      height: 100%;
    }

    /* ========================================
       TICKER
       ======================================== */
    .ticker {
      background: var(--accent);
      padding: 0.9rem 0;
      overflow: hidden;
      position: relative;
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: tickerScroll 30s linear infinite;
    }

    .ticker-item {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.85rem;
      color: white;
      white-space: nowrap;
      padding: 0 2.5rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .ticker-item::after {
      content: '◆';
      margin-left: 2.5rem;
      opacity: 0.5;
      font-size: 0.5rem;
      vertical-align: middle;
    }

    @keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ========================================
       SECTION UTILITIES
       ======================================== */
    .section {
      padding: 7rem 3rem;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: 0;
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-secondary);
      max-width: 550px;
      line-height: 1.7;
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ========================================
       PORTFOLIO
       ======================================== */
    .portfolio {
      background: var(--bg-dark);
      color: var(--text-light);
    }

    .portfolio .section-subtitle {
      color: var(--text-muted);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
    }

    .portfolio-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      background: var(--surface-dark-card);
      border: 1px solid var(--border-dark);
      transition: transform 0.5s var(--ease-out-expo), border-color 0.4s;
      cursor: pointer;
      text-decoration: none;
      color: var(--text-light);
      display: block;
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 255, 255, 0.15);
    }

    .portfolio-card.featured {
      grid-column: span 2;
    }

    .portfolio-card--bottom-left {
      grid-column: 1;
      grid-row: 3;
    }

    .portfolio-preview {
      height: 280px;
      position: relative;
      overflow: hidden;
      background: var(--bg-darker);
    }

    .portfolio-card.featured .portfolio-preview {
      height: 360px;
    }

    .portfolio-card:not(.featured) .portfolio-preview {
      height: 260px;
    }

    .portfolio-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out-expo);
    }

    .portfolio-card:hover .portfolio-preview img {
      transform: scale(1.05);
    }

    .work-shot {
      isolation: isolate;
    }

    .work-shot::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      opacity: 0.42;
    }

    .work-shot img {
      filter: saturate(0.94) contrast(1.04);
    }

    .work-shot--ovlp img {
      object-position: center 10%;
    }

    .work-shot--ovlp::before {
      background:
        linear-gradient(90deg, rgba(12, 15, 20, 0.24), transparent 56%),
        linear-gradient(180deg, transparent 55%, rgba(12, 15, 20, 0.28));
    }

    .work-shot--bbq img {
      object-position: center top;
    }

    .work-shot--bbq::before {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(83, 26, 8, 0.34));
    }

    .work-shot--dj img {
      object-position: center top;
      filter: saturate(0.88) contrast(1.08) brightness(0.92);
    }

    .work-shot--dj::before {
      background: linear-gradient(135deg, rgba(10, 47, 31, 0.3), transparent 62%);
    }

    .work-shot--richard img {
      object-position: center center;
      filter: saturate(0.86) contrast(1.03);
    }

    .work-shot--richard::before {
      background: linear-gradient(135deg, rgba(15, 49, 57, 0.2), rgba(12, 15, 20, 0.2));
    }

    .work-shot-header {
      position: absolute;
      left: 1.25rem;
      top: 1.25rem;
      z-index: 2;
      display: grid;
      gap: 0.35rem;
      max-width: min(72%, 430px);
      padding: 0.95rem 1.1rem;
      background: rgba(12, 15, 20, 0.62);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--text-light);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    }

    .work-shot-header span {
      font-family: var(--font-mono);
      color: #F0A06F;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .work-shot-header strong {
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 2vw, 1.45rem);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .portfolio-preview--logo img {
      object-fit: contain;
      padding: 2.5rem;
      background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%);
    }

    .portfolio-preview--dark img {
      object-fit: contain;
      padding: 2rem;
      background: linear-gradient(135deg, #1A1520, #2C2435);
    }

    .portfolio-preview-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(12, 15, 20, 0.85) 100%);
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
      opacity: 0;
      transition: opacity 0.4s;
      z-index: 3;
    }

    .portfolio-card:hover .portfolio-preview-overlay {
      opacity: 1;
    }

    .portfolio-preview-overlay span {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Individual site aesthetic treatments */
    .preview-ovlp {
      background: linear-gradient(135deg, #1B4332, #2D6A4F, #40916C);
    }

    .preview-ovlp::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(64, 145, 108, 0.3);
      top: -80px;
      right: -60px;
      filter: blur(60px);
    }

    .preview-ovlp .preview-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .preview-ovlp .preview-text .site-name {
      font-size: 1.8rem;
      color: rgba(255, 255, 255, 0.95);
    }

    .preview-ovlp .preview-text .site-tag {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .preview-bbq {
      background: linear-gradient(135deg, #1A0A00, #3D1C00, #5C2E00);
    }

    .preview-bbq::before {
      content: '';
      position: absolute;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: rgba(232, 93, 48, 0.15);
      bottom: -60px;
      left: -40px;
      filter: blur(50px);
    }

    .preview-bbq .preview-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .preview-bbq .preview-text .site-name {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.95);
      text-align: center;
      line-height: 1.3;
    }

    .preview-bbq .preview-text .site-tag {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .preview-landscape {
      background: linear-gradient(135deg, #0A2F1F, #145A38, #1E8C55);
    }

    .preview-landscape::before {
      content: '';
      position: absolute;
      width: 350px;
      height: 200px;
      background: rgba(30, 140, 85, 0.2);
      bottom: 0;
      right: -50px;
      filter: blur(60px);
    }

    .preview-landscape .preview-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .preview-landscape .preview-text .site-name {
      font-size: 1.6rem;
      color: rgba(255, 255, 255, 0.95);
    }

    .preview-landscape .preview-text .site-tag {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .preview-barware {
      background: linear-gradient(135deg, #1A1520, #2C2435, #3E3048);
    }

    .preview-barware::before {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(182, 145, 210, 0.12);
      top: -50px;
      left: 50%;
      filter: blur(50px);
    }

    .preview-barware .preview-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .preview-barware .preview-text .site-name {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.95);
      text-align: center;
    }

    .preview-barware .preview-text .site-tag {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .portfolio-info {
      padding: 1.5rem;
    }

    .portfolio-name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 0.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .portfolio-name .arrow {
      font-size: 1.2rem;
      transition: transform 0.3s;
      opacity: 0.4;
    }

    .portfolio-card:hover .portfolio-name .arrow {
      transform: translate(3px, -3px);
      opacity: 1;
    }

    .portfolio-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .portfolio-tags {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .portfolio-tag {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.05em;
      padding: 0.3rem 0.7rem;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .mobile-showcase {
      grid-column: 2;
      grid-row: 3;
      min-height: 100%;
      border: 1px solid var(--border-dark);
      border-radius: 8px;
      background:
        radial-gradient(circle at 18% 20%, rgba(232, 93, 48, 0.18), transparent 30%),
        radial-gradient(circle at 82% 76%, rgba(45, 155, 131, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.04);
      overflow: hidden;
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.88fr);
      gap: 1.25rem;
      align-items: center;
      padding: 1.5rem;
      color: var(--text-light);
    }

    .mobile-showcase-copy {
      position: relative;
      z-index: 2;
    }

    .mobile-showcase-copy span {
      display: block;
      font-family: var(--font-mono);
      color: #F0A06F;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.8rem;
    }

    .mobile-showcase-copy h3 {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 2.4vw, 2rem);
      line-height: 1.05;
      letter-spacing: 0;
      margin-bottom: 0.75rem;
    }

    .mobile-showcase-copy p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.6;
      max-width: 300px;
    }

    .phone-row {
      min-height: 360px;
      position: relative;
    }

    .phone-frame {
      position: absolute;
      width: 168px;
      height: 363px;
      border: 7px solid #0b0d10;
      border-radius: 32px;
      background: #0b0d10;
      box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.48),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
      overflow: hidden;
    }

    .phone-frame::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 50%;
      width: 46px;
      height: 5px;
      transform: translateX(-50%);
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.22);
      z-index: 2;
      pointer-events: none;
    }

    .phone-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 38%,
        transparent 72%,
        rgba(0, 0, 0, 0.12) 100%
      );
      z-index: 2;
      pointer-events: none;
    }

    .phone-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      filter: saturate(1.04) contrast(1.03);
    }

    .phone-frame--front {
      right: 18px;
      top: 0;
      z-index: 2;
      transform: rotate(5deg);
    }

    .phone-frame--back {
      right: 148px;
      top: 36px;
      z-index: 1;
      opacity: 0.92;
      transform: rotate(-8deg) scale(0.92);
    }

    /* ========================================
       SERVICES
       ======================================== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 3.5rem;
    }

    .service-card {
      padding: 2.25rem;
      border-radius: 8px;
      border: 1px solid var(--border-light);
      background: var(--surface-card);
      backdrop-filter: blur(10px);
      transition: all 0.4s var(--ease-out-expo);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s var(--ease-out-expo);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
      border-color: transparent;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
    }

    .service-icon.design { background: rgba(232, 93, 48, 0.1); }
    .service-icon.dev { background: var(--teal-muted); }
    .service-icon.seo { background: rgba(99, 102, 241, 0.1); }
    .service-icon.hosting { background: rgba(20, 24, 32, 0.06); }

    .service-card h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 0.75rem;
      letter-spacing: 0;
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ========================================
       PAGE SYSTEM
       ======================================== */
    .page-system {
      background:
        linear-gradient(135deg, rgba(45, 155, 131, 0.08), transparent 34%),
        linear-gradient(315deg, rgba(232, 93, 48, 0.08), transparent 40%),
        var(--bg-light);
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
    }

    .page-system-inner {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
      gap: 4rem;
      align-items: start;
    }

    .page-map {
      display: grid;
      gap: 0.7rem;
    }

    .page-map-row {
      display: grid;
      grid-template-columns: 44px minmax(92px, 0.38fr) minmax(0, 1fr);
      gap: 1rem;
      align-items: center;
      min-height: 78px;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid var(--border-light);
      border-radius: 8px;
      box-shadow: 0 18px 50px rgba(20, 24, 32, 0.04);
    }

    .page-map-row.active {
      background: var(--bg-dark);
      color: var(--text-light);
      border-color: var(--bg-dark);
    }

    .page-map-row span {
      font-family: var(--font-mono);
      color: var(--accent);
      font-size: 0.75rem;
    }

    .page-map-row strong {
      font-family: var(--font-display);
      font-size: 1.08rem;
      letter-spacing: 0;
    }

    .page-map-row em {
      color: var(--text-secondary);
      font-style: normal;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .page-map-row.active em {
      color: rgba(232, 230, 225, 0.7);
    }

    /* ========================================
       PROCESS
       ======================================== */
    .process {
      background: var(--bg-tinted);
    }

    .process-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 3.5rem;
      position: relative;
    }

    .process-track::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--teal));
      opacity: 0.2;
    }

    .process-step {
      text-align: center;
      padding: 0 1.5rem;
      position: relative;
    }

    .process-number {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.3rem;
      margin: 0 auto 1.5rem;
      background: var(--bg-light);
      border: 2px solid var(--border-light);
      color: var(--text-primary);
      position: relative;
      z-index: 1;
      transition: all 0.4s var(--ease-out-expo);
    }

    .process-step:hover .process-number {
      border-color: var(--accent);
      color: var(--accent);
      transform: scale(1.1);
    }

    .process-step h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
    }

    .process-step p {
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ========================================
       TRUST BAND
       ======================================== */
    .trust-band {
      background: var(--bg-dark);
      color: var(--text-light);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
      gap: 3rem;
      align-items: start;
    }

    .trust-copy h2 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3.4rem);
      letter-spacing: 0;
      line-height: 1.05;
      max-width: 760px;
      margin-bottom: 1.35rem;
    }

    .trust-copy > p:last-child {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 680px;
    }

    .trust-points {
      display: grid;
      gap: 1rem;
    }

    .trust-points div {
      padding: 1.35rem;
      border: 1px solid var(--border-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.04);
    }

    .trust-points span {
      display: block;
      font-family: var(--font-mono);
      color: #F0A06F;
      font-size: 0.74rem;
      margin-bottom: 0.75rem;
    }

    .trust-points strong {
      display: block;
      font-family: var(--font-display);
      color: var(--text-light);
      font-size: 1.2rem;
      line-height: 1.15;
      margin-bottom: 0.65rem;
    }

    .trust-points p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    /* ========================================
       APPROACH — What sets us apart
       ======================================== */
    .approach-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3.5rem;
      align-items: start;
    }

    .approach-text h3 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.6rem;
      margin-bottom: 1.25rem;
      letter-spacing: 0;
    }

    .approach-text p {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .approach-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .approach-list li {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .approach-check {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 8px;
      background: rgba(232, 93, 48, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 0.85rem;
      margin-top: 2px;
    }

    .approach-list li div {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .approach-list li strong {
      display: block;
      font-family: var(--font-display);
      font-weight: 700;
      margin-bottom: 0.15rem;
    }

    .approach-list li span {
      color: var(--text-secondary);
      font-size: 0.875rem;
    }

    /* ========================================
       FINAL CTA
       ======================================== */
    .final-cta {
      text-align: center;
      padding: 8rem 3rem;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(232, 93, 48, 0.04);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      filter: blur(80px);
    }

    .final-cta .section-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      max-width: 700px;
      margin: 0 auto 1rem;
      position: relative;
    }

    .final-cta .section-subtitle {
      margin: 0 auto 2.5rem;
      text-align: center;
    }

    .final-cta .btn {
      font-size: 1.05rem;
      padding: 1rem 2.5rem;
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background: var(--bg-darker);
      color: var(--text-muted);
      padding: 4rem 3rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .footer-brand {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--text-light);
      margin-bottom: 0.75rem;
    }

    .footer-brand .by {
      font-weight: 500;
      color: var(--text-muted);
    }

    .footer-tagline {
      font-size: 0.85rem;
      max-width: 280px;
      line-height: 1.6;
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: 1rem;
      letter-spacing: 0.03em;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-col a {
      font-size: 0.85rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-col a:hover { color: var(--text-light); }

    .footer-bottom {
      max-width: 1200px;
      margin: 3rem auto 0;
      padding-top: 2rem;
      border-top: 1px solid var(--border-dark);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
    }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .hero-proof {
        justify-self: start;
      }

      .page-system-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .process-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }

      .process-track::before { display: none; }

      .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .approach-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .nav { padding: 1rem 1.5rem; }
      .nav.scrolled { padding: 0.75rem 1.5rem; }
      .nav-links { display: none; }
      .mobile-toggle { display: block; }

      .hero { padding: 7rem 1.5rem 3.5rem; min-height: auto; }
      .hero-bg { object-position: 62% center; }
      .hero-scrim {
        background:
          linear-gradient(90deg, rgba(12, 15, 20, 0.94) 0%, rgba(12, 15, 20, 0.78) 55%, rgba(12, 15, 20, 0.5) 100%),
          linear-gradient(180deg, rgba(12, 15, 20, 0.18), rgba(12, 15, 20, 0.9));
      }
      .hero-metrics {
        grid-template-columns: 1fr;
        margin-top: 2rem;
      }
      .hero-metrics div {
        min-height: 72px;
      }
      .hero-proof {
        width: 100%;
      }
      .section { padding: 4.5rem 1.5rem; }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-card.featured {
        grid-column: span 1;
      }

      .portfolio-card--bottom-left,
      .mobile-showcase {
        grid-column: 1;
        grid-row: auto;
      }

      .portfolio-card.featured .portfolio-preview {
        height: 240px;
      }

      .mobile-showcase {
        grid-template-columns: 1fr;
      }

      .phone-row {
        min-height: 340px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .page-map-row {
        grid-template-columns: 42px 1fr;
        align-items: start;
      }

      .page-map-row em {
        grid-column: 2;
      }

      .process-track {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .trust-points {
        grid-template-columns: 1fr;
      }

      .final-cta { padding: 5rem 1.5rem; }
      .footer { padding: 3rem 1.5rem; }

      .footer-inner {
        flex-direction: column;
        gap: 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .hero-ctas {
        flex-direction: column;
      }

      .hero-ctas .btn {
        text-align: center;
        justify-content: center;
      }

      .portfolio-preview { height: 200px; }

      .trust-points div {
        padding: 1.1rem;
      }
    }
