/* -----------------------------------------------------
     Tokens
  ------------------------------------------------------ */
  :root {
    --bg: #FDF6EC;
    --ink: #1A0F00;
    --ink-soft: #3A2A1A;
    --ink-muted: #6B5A45;
    --orange: #FF7A3E;
    --orange-deep: #E85A1F;
    --amber: #FFB84D;
    --white: #FFFFFF;
    --border: #1A0F00;

    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-accent: 'Fraunces', Georgia, serif;
    --font-body: 'Geist', system-ui, sans-serif;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-brutal: 0 6px 0 var(--ink);
    --shadow-brutal-sm: 0 4px 0 var(--ink);
    --shadow-brutal-lg: 0 8px 0 var(--ink);

    --max: 1200px;
  }

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

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    min-height: 100vh;
  }

  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ul { list-style: none; }

  ::selection { background: var(--orange); color: var(--white); }

  a:focus-visible,
  button:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
  }

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* -----------------------------------------------------
     Utility: container & accents
  ------------------------------------------------------ */
  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
  }

  .italic-accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    color: var(--orange-deep);
  }

  .eyebrow {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    color: var(--orange-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .eyebrow::before {
    content: "✦";
    font-size: 14px;
    color: var(--amber);
  }

  /* Section base */
  section { position: relative; }

  .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    max-width: 780px;
    margin-bottom: 18px;
    overflow-wrap: break-word;
  }

  .section-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 600px;
    line-height: 1.55;
    margin-bottom: 56px;
    overflow-wrap: break-word;
  }

  /* -----------------------------------------------------
     Background blobs (global)
  ------------------------------------------------------ */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
  }

  @keyframes blobA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-30px, 40px) scale(1.08); }
  }

  @keyframes blobB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -30px) scale(0.92); }
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-10px, -14px); }
  }

  @keyframes wobble {
    0%, 100% { border-radius: 50% 30% 55% 45% / 45% 55% 35% 50%; transform: rotate(0deg); }
    50%      { border-radius: 45% 55% 30% 50% / 55% 40% 55% 45%; transform: rotate(4deg); }
  }

  /* -----------------------------------------------------
     NAVBAR
  ------------------------------------------------------ */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
    border-bottom: 1px solid transparent;
  }

  .nav.scrolled {
    background: rgba(253, 246, 236, 0.82);
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
    border-bottom-color: rgba(26, 15, 0, 0.08);
    padding: 12px 0;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.04em;
    color: var(--ink);
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
  }

  .logo .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.15);
  }

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

  .nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 6px 2px;
    transition: color 0.15s ease;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--orange);
    transition: right 0.2s ease;
  }

  .nav-links a:hover::after { right: 0; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-brutal-sm);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    min-height: 44px;
    line-height: 1;
    cursor: pointer;
  }

  .btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }
  .btn:active { transform: translateY(4px); box-shadow: 0 0 0 var(--ink); }

  .btn-outline {
    background: var(--white);
    color: var(--ink);
  }

  .btn-lg { padding: 16px 30px; font-size: 16px; box-shadow: var(--shadow-brutal); }
  .btn-lg:hover { box-shadow: var(--shadow-brutal-sm); }

  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: none;
    box-shadow: none;
    padding: 10px 18px;
  }

  .btn-ghost:hover { transform: none; box-shadow: none; color: var(--orange-deep); }

  /* Mobile menu toggle */
  .menu-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-brutal-sm);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
    border-radius: 2px;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }

  .menu-toggle span::before { top: -6px; }
  .menu-toggle span::after  { top: 6px; }

  /* -----------------------------------------------------
     HERO
  ------------------------------------------------------ */
  .hero {
    position: relative;
    padding: 140px 0 40px;
    overflow: hidden;
  }

  .hero-blob-1 {
    top: 80px; right: -120px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
    opacity: 0.45;
    animation: blobA 12s ease-in-out infinite;
  }

  .hero-blob-2 {
    top: 360px; left: -180px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 65%);
    opacity: 0.45;
    animation: blobB 15s ease-in-out infinite;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    min-width: 0;
  }

  .hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(44px, 6.5vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    overflow-wrap: break-word;
  }

  .hero h1 .italic-accent {
    display: inline-block;
    font-weight: 500;
    position: relative;
  }

  .hero h1 .italic-accent::after {
    content: "✦";
    position: absolute;
    top: -8px; right: -22px;
    font-size: 18px;
    color: var(--amber);
    font-family: var(--font-display);
    font-style: normal;
  }

  .hero p.lede {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  /* -----------------------------------------------------
     HERO 3D SCENE — browser flotante con parallax
  ------------------------------------------------------ */
  .hero-art {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin-left: auto;
    perspective: 1400px;
    perspective-origin: 50% 45%;
  }

  .scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.12s ease-out;
    will-change: transform;
  }

  /* Browser mockup */
  .browser {
    position: absolute;
    top: 14%; left: 6%; right: 6%; bottom: 16%;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 18px;
    box-shadow:
      var(--shadow-brutal-lg),
      0 40px 70px rgba(26, 15, 0, 0.18),
      0 80px 140px rgba(232, 90, 31, 0.18);
    transform-style: preserve-3d;
    transform: translateZ(0);
    overflow: hidden;
  }

  .browser-chrome {
    height: 38px;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
  }

  .chrome-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    flex-shrink: 0;
  }
  .chrome-dot.r { background: #FF6B6B; }
  .chrome-dot.y { background: var(--amber); }
  .chrome-dot.g { background: #22C55E; }

  .chrome-url {
    flex: 1;
    margin-left: 10px;
    height: 22px;
    background: var(--white);
    border: 1.5px solid var(--ink);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--ink);
    gap: 5px;
    letter-spacing: -0.01em;
  }

  .chrome-url svg { width: 9px; height: 9px; stroke: var(--ink); }

  .browser-view {
    position: relative;
    height: calc(100% - 38px);
    padding: 22px 24px;
    transform-style: preserve-3d;
  }

  /* Internal parallax layers — each at its own Z depth */
  .layer-eyebrow {
    width: 38%;
    height: 8px;
    border-radius: 4px;
    background: var(--orange);
    margin-bottom: 14px;
    transform: translateZ(18px);
  }

  .layer-headline {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
    transform: translateZ(42px);
  }

  .hl-bar {
    height: 14px;
    border-radius: 4px;
    background: var(--ink);
  }
  .hl-bar.w1 { width: 85%; }
  .hl-bar.w2 { width: 70%; }
  .hl-bar.italic {
    width: 55%;
    height: 14px;
    background: var(--orange-deep);
    border-radius: 4px;
    position: relative;
  }
  .hl-bar.italic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -20deg,
      transparent 0 3px,
      rgba(255,255,255,0.25) 3px 4px
    );
    border-radius: inherit;
  }

  .layer-sub {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
    transform: translateZ(14px);
  }

  .sub-bar {
    height: 5px;
    border-radius: 3px;
    background: rgba(26, 15, 0, 0.2);
  }
  .sub-bar.s1 { width: 90%; }
  .sub-bar.s2 { width: 72%; }

  .layer-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--ink);
    color: var(--white);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
    transform: translateZ(58px);
    width: fit-content;
  }

  .layer-blob {
    position: absolute;
    bottom: 14%;
    right: 8%;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #FF9B6B, var(--orange-deep));
    border-radius: 50% 30% 55% 45% / 45% 55% 35% 50%;
    box-shadow:
      0 10px 20px rgba(232, 90, 31, 0.4),
      inset 0 -6px 12px rgba(0, 0, 0, 0.2),
      inset 0 6px 12px rgba(255, 255, 255, 0.25);
    transform: translateZ(72px);
    animation: wobble 7s ease-in-out infinite;
  }

  /* Floating 3D accents around the browser */
  .float-dot {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--ink);
  }

  .dot-amber {
    top: -2%; right: 0%;
    width: 82px; height: 82px;
    background: linear-gradient(135deg, var(--amber), #E89C2A);
    box-shadow:
      0 14px 28px rgba(255, 184, 77, 0.5),
      inset 0 -6px 14px rgba(0, 0, 0, 0.18),
      inset 0 6px 14px rgba(255, 255, 255, 0.3);
    transform: translateZ(110px);
    animation: float 4.5s ease-in-out infinite;
  }

  .dot-dark {
    bottom: 6%; left: -2%;
    width: 54px; height: 54px;
    background: radial-gradient(circle at 30% 30%, #3A2A1A, var(--ink));
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
    transform: translateZ(95px);
    animation: float 5.2s ease-in-out infinite reverse;
  }

  .dot-white {
    top: 52%; right: -4%;
    width: 40px; height: 40px;
    background: var(--white);
    box-shadow: var(--shadow-brutal-sm);
    transform: translateZ(80px);
    animation: float 6s ease-in-out infinite;
  }

  .float-sparkle {
    position: absolute;
    top: 24%; left: -2%;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 400;
    color: var(--orange-deep);
    transform: translateZ(100px);
    animation: float 5.5s ease-in-out infinite;
    text-shadow: 0 4px 10px rgba(232, 90, 31, 0.3);
    pointer-events: none;
    user-select: none;
  }

  /* Social proof ticker bar */
  .proof {
    position: relative;
    z-index: 2;
    margin-top: 72px;
    padding: 18px 24px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-brutal);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
  }

  .proof-dot {
    width: 8px; height: 8px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 10px #22C55E;
    display: inline-block;
    margin-right: 8px;
    animation: pulseDot 2s ease-in-out infinite;
  }

  @keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.45; }
  }

  .proof-sep {
    width: 4px; height: 4px;
    background: var(--ink);
    border-radius: 50%;
    opacity: 0.35;
  }

  .proof-item { display: inline-flex; align-items: center; }

  /* -----------------------------------------------------
     SERVICES
  ------------------------------------------------------ */
  .services {
    padding: 120px 0 80px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    min-width: 0;
  }

  .service {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-brutal);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .service:hover {
    transform: translateY(3px);
    box-shadow: var(--shadow-brutal-sm);
  }

  .service-num {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    color: var(--orange-deep);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
  }

  .service-icon {
    width: 54px; height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-brutal-sm);
    border: 2px solid var(--ink);
  }

  .service:nth-child(1) .service-icon { background: var(--orange); transform: rotate(-4deg); }
  .service:nth-child(2) .service-icon { background: var(--amber); transform: rotate(3deg); }
  .service:nth-child(3) .service-icon { background: var(--ink); transform: rotate(-2deg); }

  .service-icon svg { width: 26px; height: 26px; stroke: var(--white); }
  .service:nth-child(2) .service-icon svg { stroke: var(--ink); }

  .service h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }

  .service p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 24px;
    flex-grow: 1;
  }

  .service-price {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    font-size: 15.5px;
    color: var(--orange-deep);
    padding-top: 16px;
    border-top: 1px dashed rgba(26, 15, 0, 0.25);
  }

  /* -----------------------------------------------------
     ABOUT
  ------------------------------------------------------ */
  .about {
    padding: 80px 0;
    position: relative;
  }

  .about-blob {
    top: 200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
    opacity: 0.22;
    animation: blobA 14s ease-in-out infinite;
  }

  .about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    min-width: 0;
  }

  .about-text h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    overflow-wrap: break-word;
  }

  .about-text > p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
    overflow-wrap: break-word;
  }

  .pillars {
    display: grid;
    gap: 18px;
  }

  .pillar {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    box-shadow: var(--shadow-brutal-sm);
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: start;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    min-width: 0;
  }

  .pillar:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--ink);
  }

  .pillar-mark {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--bg);
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    color: var(--orange-deep);
  }

  .pillar h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17.5px;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }

  .pillar p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
  }

  /* About: photo placeholder */
  .about-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #EFE4D1 0%, #E5D5BB 100%);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: var(--ink-muted);
    min-width: 0;
    max-width: 100%;
  }

  .about-photo::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.6;
  }

  .about-photo::after {
    content: "";
    position: absolute;
    bottom: -30px; left: -30px;
    width: 100px; height: 100px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.5;
  }

  .about-photo .photo-icon {
    width: 64px; height: 64px;
    border: 2px solid var(--ink);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-brutal-sm);
  }

  .about-photo .photo-icon svg { width: 28px; height: 28px; stroke: var(--ink); }

  .about-photo .photo-label {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--ink);
    z-index: 2;
  }

  /* -----------------------------------------------------
     PORTFOLIO
  ------------------------------------------------------ */
  .portfolio {
    padding: 100px 0;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    min-width: 0;
  }

  .project {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-width: 0;
    max-width: 100%;
  }

  .project:hover {
    transform: translateY(3px);
    box-shadow: var(--shadow-brutal-sm);
  }

  .project-visual {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
  }

  .project-visual.v-tamales {
    background: linear-gradient(135deg, #FFE4C8 0%, #FFB84D 100%);
  }
  .project-visual.v-salon {
    background: linear-gradient(135deg, #FFD1B3 0%, #FF7A3E 100%);
  }

  .project-mock {
    position: absolute;
    inset: 18px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 10px;
    box-shadow: var(--shadow-brutal-sm);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mock-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(26, 15, 0, 0.12);
  }
  .mock-bar.wide { width: 70%; }
  .mock-bar.med  { width: 50%; }
  .mock-bar.short{ width: 35%; }
  .mock-bar.accent {
    background: var(--orange);
    height: 10px;
    width: 40%;
  }

  .mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: auto;
  }

  .mock-tile {
    aspect-ratio: 1;
    border-radius: 6px;
    background: rgba(26, 15, 0, 0.08);
  }
  .mock-tile:nth-child(2) { background: var(--amber); opacity: 0.9; }

  .project-visual.empty {
    background: repeating-linear-gradient(
      45deg,
      rgba(26,15,0,0.04),
      rgba(26,15,0,0.04) 10px,
      transparent 10px,
      transparent 20px
    );
    border-bottom: 2px dashed var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .project-visual.empty .empty-mark {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 20px;
    color: var(--ink-muted);
    padding: 10px 18px;
    border: 2px dashed var(--ink);
    border-radius: var(--radius-pill);
    background: var(--bg);
  }

  .project-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; min-width: 0; }

  .project h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }

  .project p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
  }

  .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }

  .tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--bg);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-pill);
    color: var(--ink);
    letter-spacing: 0.01em;
  }

  .project-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px dashed rgba(26, 15, 0, 0.25);
    transition: color 0.15s ease, gap 0.2s ease;
  }

  .project-link:hover {
    color: var(--orange-deep);
    gap: 12px;
  }

  .project-link.disabled {
    color: var(--ink-muted);
    pointer-events: none;
  }

  /* -----------------------------------------------------
     PROCESS
  ------------------------------------------------------ */
  .process {
    padding: 100px 0;
    position: relative;
  }

  .process-blob {
    bottom: 100px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 65%);
    opacity: 0.3;
    animation: blobB 16s ease-in-out infinite;
  }

  .steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: step;
    min-width: 0;
  }

  .step {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-brutal);
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-width: 0;
    max-width: 100%;
  }

  .step:hover {
    transform: translateY(3px);
    box-shadow: var(--shadow-brutal-sm);
  }

  .step-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 52px;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--orange);
    margin-bottom: 20px;
    display: block;
  }

  .step h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .step p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
  }

  .step:nth-child(2) .step-num { color: var(--orange-deep); }
  .step:nth-child(3) .step-num { color: var(--amber); }
  .step:nth-child(4) .step-num { color: var(--ink); }

  /* -----------------------------------------------------
     CONTACT / CTA
  ------------------------------------------------------ */
  .contact {
    padding: 100px 0 80px;
  }

  .contact-card {
    position: relative;
    background: var(--ink);
    color: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    text-align: center;
    box-shadow: var(--shadow-brutal-lg);
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
  }

  .contact-card::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
    opacity: 0.55;
    animation: blobA 10s ease-in-out infinite;
  }

  .contact-card::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 65%);
    opacity: 0.35;
    animation: blobB 12s ease-in-out infinite;
  }

  .contact-card .contact-inner {
    position: relative;
    z-index: 2;
  }

  .contact-card h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 5.2vw, 60px);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-card h2 .italic-accent { color: var(--amber); }

  .contact-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 26px;
  }

  .btn-wa {
    background: #25D366;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 6px 0 rgba(255, 255, 255, 0.3);
  }

  .btn-wa:hover { box-shadow: 0 2px 0 rgba(255, 255, 255, 0.3); }

  .btn-on-dark {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 6px 0 rgba(255, 255, 255, 0.2);
  }

  .btn-on-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.2);
  }

  .contact-email {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
  }

  .contact-email a {
    color: var(--amber);
    border-bottom: 1px solid rgba(255, 184, 77, 0.4);
    transition: color 0.15s ease;
  }

  .contact-email a:hover { color: var(--white); }

  /* -----------------------------------------------------
     FOOTER
  ------------------------------------------------------ */
  .footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(26, 15, 0, 0.1);
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
  }

  .footer-brand { max-width: 320px; }

  .footer-brand p {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.55;
  }

  .footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.15s ease;
  }

  .footer-links a:hover { color: var(--orange-deep); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(26, 15, 0, 0.1);
    font-size: 13.5px;
    color: var(--ink-muted);
  }

  .footer-handle {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--ink);
  }

  /* -----------------------------------------------------
     Reveal on scroll
  ------------------------------------------------------ */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  /* -----------------------------------------------------
     Responsive
  ------------------------------------------------------ */
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-art { margin: 0 auto; max-width: 360px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-photo { max-width: 420px; }
    .services-grid, .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 720px) {
    .container { padding: 0 22px; }
    .nav { padding: 14px 0; }
    .nav-inner { gap: 14px; }
    .nav-links { display: none; }
    #navCta { display: none; }
    .menu-toggle { display: inline-flex; }
    .hero { padding: 112px 0 30px; }
    .hero-grid { gap: 34px; }
    .hero-text { min-width: 0; }
    .hero h1 {
      max-width: 10.8ch;
      font-size: clamp(38px, 10.4vw, 46px);
      letter-spacing: -0.032em;
    }
    .hero h1 br { display: none; }
    .hero h1 .italic-accent { display: block; width: max-content; }
    .hero h1 .italic-accent::after { top: -6px; right: -18px; font-size: 16px; }
    .hero p.lede { max-width: 32ch; font-size: 17px; }
    .hero-actions { gap: 12px; }
    .hero-actions .btn-lg {
      padding: 14px 18px;
      justify-content: center;
    }
    .hero-art {
      width: min(100%, 320px);
      max-width: 320px;
      margin-inline: auto;
    }
    .browser {
      top: 16%;
      left: 5%;
      right: 5%;
      bottom: 18%;
      border-radius: 14px;
    }
    .browser-view { padding: 18px; }
    .dot-amber { top: 1%; right: 1%; width: 68px; height: 68px; }
    .dot-dark { bottom: 9%; left: 0; width: 46px; height: 46px; }
    .dot-white { top: 52%; right: 0; width: 34px; height: 34px; }
    .float-sparkle { top: 26%; left: 0; font-size: 30px; }
    .proof { margin-top: 48px; }
    .services, .portfolio, .process, .contact { padding: 72px 0; }
    .about { padding: 60px 0; }
    .services-grid, .portfolio-grid, .steps { grid-template-columns: 1fr; }
    .service, .project, .step { width: 100%; }
    .about-text h2 {
      max-width: 11ch;
      font-size: clamp(34px, 9vw, 46px);
      letter-spacing: -0.032em;
    }
    .pillar {
      grid-template-columns: 38px minmax(0, 1fr);
      gap: 14px;
    }
    .pillar-mark {
      width: 38px;
      height: 38px;
      border-radius: 10px;
    }
    .contact-card { padding: 52px 28px; }
    .footer-top { flex-direction: column; }
    .proof { flex-direction: column; gap: 10px; padding: 18px 20px; border-radius: 22px; }
    .proof-sep { display: none; }
  }

  @media (max-width: 480px) {
    .container { padding: 0 20px; }
    .logo { font-size: 20px; }
    .section-title {
      font-size: clamp(32px, 9vw, 42px);
      letter-spacing: -0.03em;
      max-width: 11.5ch;
    }
    .section-sub {
      font-size: 16.5px;
      margin-bottom: 36px;
    }
    .hero h1 {
      max-width: 10.5ch;
      font-size: clamp(36px, 10.2vw, 42px);
    }
    .hero p.lede { font-size: 16.5px; }
    .hero-art {
      width: min(100%, 304px);
      max-width: 304px;
    }
    .proof {
      padding: 18px 16px;
      text-align: center;
    }
    .contact-actions .btn {
      width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 360px) {
    .container { padding: 0 18px; }
    .hero h1 {
      max-width: 10ch;
      font-size: 34px;
    }
    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }
    .hero-art {
      width: min(100%, 286px);
      max-width: 286px;
    }
  }

  /* Mobile menu drawer */
  .mobile-menu {
    position: fixed;
    inset: 0 0 auto 0;
    top: 68px;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    padding: 24px 22px 32px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    padding: 14px 4px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px dashed rgba(26, 15, 0, 0.2);
  }

  .mobile-menu .btn { margin-top: 18px; justify-content: center; }
