
    /* ── Reset & Root ─────────────────────────────────────────── */
    :root {
      --bg-0: #040404;
      --bg-1: #0A0A0B;
      --bg-2: #111114;
      --bg-3: #16161A;
      --surface: #1A1A1F;
      --surface-2: #22222A;
      --hair: rgba(255,255,255,0.07);
      --hair-2: rgba(255,255,255,0.12);
      --hair-strong: rgba(255,255,255,0.22);
      --fg-0: #F5F4F0;
      --fg-1: #DEDAD4;
      --fg-2: #C8C6C0;
      --fg-3: #AEACA6;
      --silver-hi: #F2F1ED;
      --silver-1:  #D8D6CF;
      --silver-2:  #A8A6A0;
      --silver-3:  #9C9A94;
      --silver-lo: #3A3935;
      --accent: #D8D6CF;
      --accent-warm: #C9A87C;
      --grad-silver: linear-gradient(135deg, #F2F1ED 0%, #B9B7B0 30%, #6F6D67 50%, #C7C5BE 75%, #F2F1ED 100%);
      --grad-silver-flat: linear-gradient(180deg, #E6E4DD 0%, #ADAAA3 100%);
      --grad-brass: linear-gradient(135deg, #F4E2B8 0%, #C9A87C 38%, #7A5E37 55%, #D8B987 78%, #F4E2B8 100%);
      --font-display: "Outfit", system-ui, sans-serif;
      --font-body: "Outfit", system-ui, sans-serif;
      --font-serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
      --max-w: 1280px;
      --gutter: 32px;
      --section-y: 140px;
    }
    html { scroll-behavior: smooth; }
    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; overflow-x: hidden; }
    body {
      background: var(--bg-0);
      color: var(--fg-0);
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      letter-spacing: 0.005em;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ── Typography ───────────────────────────────────────────── */
    .eyebrow {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--fg-2);
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }
    .eyebrow::before {
      content: "";
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--silver-2);
      opacity: 0.6;
    }
    .h-display {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(44px, 6.4vw, 92px);
      line-height: 0.98;
      letter-spacing: -0.018em;
      text-transform: uppercase;
      margin: 0;
    }
    .h-section {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(34px, 4.4vw, 60px);
      line-height: 1.02;
      letter-spacing: -0.012em;
      text-transform: uppercase;
      margin: 0;
    }
    .h-card {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 22px;
      line-height: 1.2;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      margin: 0;
    }
    .serif-it {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      letter-spacing: 0.01em;
      text-transform: none;
    }
    .silver-text {
      background: var(--grad-silver);
      -webkit-background-clip: text;
              background-clip: text;
      color: transparent;
      background-size: 200% 100%;
      background-position: 30% 50%;
    }
    .muted { color: var(--fg-1); }
    .dim   { color: var(--fg-2); }

    /* ── Layout ───────────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    section {
      position: relative;
      padding: var(--section-y) 0;
    }
    section + section { padding-top: 0; }
    .section-head {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 80px;
    }
    .section-head .lead { font-size: 18px; color: var(--fg-1); max-width: 56ch; }

    /* ── Hairlines & corner ticks ─────────────────────────────── */
    .rule { height: 1px; background: var(--hair); width: 100%; }
    .corner-tick {
      position: absolute;
      width: 14px; height: 14px;
      border-color: var(--silver-2);
      pointer-events: none;
    }
    .corner-tick.tl { top: -1px; left: -1px; border-top: 1px solid; border-left: 1px solid; }
    .corner-tick.tr { top: -1px; right: -1px; border-top: 1px solid; border-right: 1px solid; }
    .corner-tick.bl { bottom: -1px; left: -1px; border-bottom: 1px solid; border-left: 1px solid; }
    .corner-tick.br { bottom: -1px; right: -1px; border-bottom: 1px solid; border-right: 1px solid; }

    /* ── Buttons ──────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 18px 28px;
      border-radius: 2px;
      cursor: pointer;
      position: relative;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), border-color 0.2s, color 0.2s;
      will-change: transform;
      border: 1px solid transparent;
      white-space: nowrap;
    }
    .btn .arrow {
      display: inline-block;
      width: 24px; height: 1px;
      background: currentColor;
      position: relative; flex-shrink: 0;
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
    }
    .btn .arrow::after {
      content: "";
      position: absolute;
      right: 0; top: 50%;
      width: 7px; height: 7px;
      border-top: 1px solid currentColor;
      border-right: 1px solid currentColor;
      transform: translateY(-50%) rotate(45deg);
    }
    @media (hover: hover) { .btn:hover .arrow { transform: translateX(7px); } }
    .btn-silver {
      color: #0A0A0A;
      background: var(--grad-silver);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.4) inset,
        0 -1px 0 rgba(0,0,0,0.25) inset,
        0 16px 40px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.15);
    }
    @media (hover: hover) {
      .btn-silver:hover {
        transform: translateY(-2px);
        box-shadow:
          0 1px 0 rgba(255,255,255,0.55) inset,
          0 -1px 0 rgba(0,0,0,0.25) inset,
          0 24px 48px rgba(0,0,0,0.5),
          0 0 0 1px rgba(255,255,255,0.22);
      }
    }
    .btn-ghost {
      color: var(--fg-0);
      background: transparent;
      border-color: var(--hair-2);
    }
    .btn-ghost:hover {
      border-color: var(--silver-2);
      background: rgba(255,255,255,0.03);
    }

    /* ── Nav ──────────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      padding: 10px 0;
      background: rgba(4,4,4,0.6);
      backdrop-filter: blur(18px) saturate(1.2);
      -webkit-backdrop-filter: blur(18px) saturate(1.2);
      border-bottom: 1px solid var(--hair);
      transition: padding 0.3s ease, background 0.3s ease;
    }
    .nav.scrolled { padding: 8px 0; background: rgba(4,4,4,0.85); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
    .nav-logo .word {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
    }
    .nav-logo .word small {
      display: block;
      font-weight: 300;
      font-size: 9px;
      letter-spacing: 0.5em;
      color: var(--fg-2);
      margin-top: 2px;
    }
    .nav-links { display: flex; gap: 2px; align-items: center; }
    .nav-link {
      font-size: 11.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 400;
      color: var(--fg-1);
      padding: 10px 11px;
      border-radius: 2px;
      transition: color 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }
    .nav-link:hover { color: var(--fg-0); background: rgba(255,255,255,0.04); }
    .nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
    .nav-phone {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.12em;
      color: var(--fg-0);
    }
    .nav-phone .dot { color: var(--fg-3); margin: 0 8px; }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 52;
    }
    .nav-hamburger span {
      display: block;
      width: 24px; height: 1.5px;
      background: var(--fg-0);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.active span:nth-child(2) { opacity: 0; }
    .nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(4,4,4,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 49;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 80px 40px 40px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu .nav-link {
      font-size: 18px;
      letter-spacing: 0.22em;
      color: var(--fg-1);
      padding: 18px 32px;
      width: 100%;
      max-width: 320px;
      text-align: center;
      border-bottom: 1px solid var(--hair);
    }
    .mobile-menu .nav-link:last-of-type { border-bottom: none; }
    .mobile-menu .btn { margin-top: 24px; }

    /* ── Hero ─────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      padding: 140px 0 80px;
      overflow: hidden;
      isolation: isolate;
      display: flex;
      align-items: center;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: -2;
      background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(120,110,90,0.10), transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 30%, rgba(180,180,180,0.06), transparent 60%),
        linear-gradient(180deg, #050505 0%, #0A0A0B 60%, #050505 100%);
    }
    .hero-grid {
      position: absolute; inset: 0; z-index: -1;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 80%);
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .hero-left .eyebrow { margin-bottom: 28px; }
    .hero-headline {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(48px, 6.8vw, 104px);
      line-height: 0.95;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin: 0 0 28px;
    }
    .hero-headline .line { display: block; }
    .hero-headline .line.it {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0;
      font-size: 0.95em;
    }
    .hero-sub {
      font-size: 18px;
      color: var(--fg-1);
      max-width: 52ch;
      margin: 0 0 44px;
      line-height: 1.65;
    }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-trust {
      margin-top: 56px;
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
      border-top: 1px solid var(--hair);
      padding-top: 32px;
    }
    .trust-item { display: flex; flex-direction: column; gap: 4px; }
    .hero-trust .num {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 28px;
      letter-spacing: 0;
    }
    .hero-trust .lbl {
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-2);
    }
    .hero-right {
      position: relative;
      height: 620px;
      border: 1px solid var(--hair);
      background: linear-gradient(180deg, #0E0E11 0%, #050505 100%);
      overflow: hidden;
    }
    .hero-art {
      position: absolute; inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-art svg {
      width: 90%;
      max-width: 520px;
      height: auto;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
      animation: floatY 6s ease-in-out infinite;
    }
    @keyframes floatY {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .hero-art-label {
      position: absolute;
      left: 24px; bottom: 24px; right: 24px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-2);
    }
    .hero-art-label .est {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 14px;
      letter-spacing: 0.02em;
      color: var(--fg-1);
      text-transform: none;
    }

    /* ── Marquee ──────────────────────────────────────────────── */
    .marquee {
      border-top: 1px solid var(--hair);
      border-bottom: 1px solid var(--hair);
      overflow: hidden;
      padding: 22px 0;
      background: var(--bg-1);
    }
    .marquee-track {
      display: flex;
      gap: 60px;
      animation: marquee 38s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    .marquee-item {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--fg-2);
      display: inline-flex;
      align-items: center;
      gap: 60px;
    }
    .marquee-item::after { content: "◆"; color: var(--silver-2); opacity: 0.55; }
    @keyframes marquee { to { transform: translateX(-50%); } }

    /* ── Services ─────────────────────────────────────────────── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--hair);
      border: 1px solid var(--hair);
    }
    .service-card {
      background: var(--bg-1);
      padding: 48px 44px;
      display: grid;
      grid-template-rows: auto auto 1fr auto;
      gap: 20px;
      min-height: 360px;
      position: relative;
      transition: background 0.4s ease;
    }
    .service-card:hover { background: var(--bg-2); }
    .service-card .num {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 11px;
      letter-spacing: 0.32em;
      color: var(--fg-2);
    }
    .service-card .icon {
      width: 64px; height: 64px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--hair-2);
      border-radius: 2px;
    }
    .service-card .icon svg { width: 32px; height: 32px; }
    .service-card p { color: var(--fg-1); margin: 0; max-width: 38ch; }
    .service-card .read {
      font-family: var(--font-display);
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-1);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 12px;
      transition: color 0.2s ease;
    }
    .service-card .read:hover { color: var(--fg-0); }
    .service-card .read::after {
      content: "";
      display: inline-block;
      width: 18px; height: 1px;
      background: currentColor;
    }

    /* ── Why Us ───────────────────────────────────────────────── */
    .why {
      background: var(--bg-1);
      border-top: 1px solid var(--hair);
      border-bottom: 1px solid var(--hair);
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 100px;
      align-items: start;
    }
    .why-pillars { display: grid; gap: 28px; margin-top: 48px; }
    .why-pillar {
      display: grid;
      grid-template-columns: 56px 1fr auto;
      gap: 24px;
      align-items: start;
      padding: 24px 0;
      border-bottom: 1px solid var(--hair);
    }
    .why-pillar:last-child { border-bottom: 0; }
    .why-pillar .ic {
      width: 56px; height: 56px;
      border: 1px solid var(--hair-2);
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
    }
    .why-pillar .ic svg { width: 24px; height: 24px; }
    .why-pillar h4 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin: 0 0 8px;
    }
    .why-pillar p { color: var(--fg-1); margin: 0; max-width: 42ch; }
    .why-pillar .idx {
      font-family: var(--font-display);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--fg-3);
    }
    .why-stat-box {
      border: 1px solid var(--hair);
      padding: 56px 48px;
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 60%), var(--bg-2);
    }
    .why-stat-box .big {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(80px, 9vw, 132px);
      line-height: 0.9;
      letter-spacing: -0.04em;
      margin: 0;
    }
    .why-stat-box .sub {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 22px;
      color: var(--fg-1);
      margin-top: 8px;
    }
    .why-stat-box .ledger {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 32px;
      border-top: 1px solid var(--hair);
      padding-top: 28px;
    }
    .why-stat-box .ledger .k {
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-2);
      margin-bottom: 4px;
    }
    .why-stat-box .ledger .v {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 16px;
    }

    /* ── Process ──────────────────────────────────────────────── */
    .process { padding-top: 0; }
    .process-rail {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--hair);
      border-bottom: 1px solid var(--hair);
    }
    .process-step {
      padding: 56px 36px;
      border-right: 1px solid var(--hair);
      position: relative;
    }
    .process-step:last-child { border-right: 0; }
    .process-step .step-num {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: 14px;
      color: var(--fg-2);
      margin-bottom: 28px;
    }
    .process-step h4 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 18px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin: 0 0 14px;
    }
    .process-step p { color: var(--fg-1); font-size: 14px; margin: 0; }

    /* ── Gallery ──────────────────────────────────────────────── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }
    .gal {
      position: relative;
      overflow: hidden;
      background: var(--bg-2);
      border: 1px solid var(--hair);
      cursor: pointer;
      transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
    }
    @media (hover: hover) { .gal:hover { transform: translateY(-4px); } }
    .gal .img { position: relative; width: 100%; height: 100%; min-height: 320px; }
    .gal .img svg { width: 100%; height: 100%; display: block; }
    .gal-coming-soon {
      background: var(--bg-2);
      display: flex; align-items: center; justify-content: center;
    }
    .gal-coming-soon span {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--fg-3);
      text-align: center;
      line-height: 1.9;
    }
    .gal .meta {
      position: absolute;
      left: 20px; bottom: 16px; right: 20px;
      display: flex; justify-content: space-between; align-items: flex-end;
      z-index: 2;
      color: var(--fg-0);
    }
    .gal .meta .title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .gal .meta .sub {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fg-2);
      margin-top: 2px;
    }
    .gal .badge {
      font-family: var(--font-display);
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--fg-1);
      border: 1px solid var(--hair-2);
      padding: 6px 10px;
    }
    .gal::after {
      content: "";
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
      pointer-events: none;
    }
    .gal-tall   { grid-column: span 4; grid-row: span 2; }
    .gal-wide   { grid-column: span 8; }
    .gal-med    { grid-column: span 4; }
    .gal-square { grid-column: span 4; }
    .gal-wide2  { grid-column: span 8; }

    /* ── Portfolio Masonry ────────────────────────────────────── */
    .portfolio-masonry {
      columns: 3;
      column-gap: 12px;
    }
    .pm-item {
      break-inside: avoid;
      margin-bottom: 12px;
      overflow: hidden;
      position: relative;
      cursor: zoom-in;
      border: 1px solid var(--hair);
    }
    .pm-item img {
      width: 100%;
      display: block;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
      filter: brightness(0.9);
    }
    @media (hover: hover) {
      .pm-item:hover img {
        transform: scale(1.04);
        filter: brightness(1);
      }
    }
    /* Lightbox */
    .lb {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(4,4,4,0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      align-items: center;
      justify-content: center;
    }
    .lb.open { display: flex; }
    .lb-img {
      max-width: 88vw;
      max-height: 86vh;
      object-fit: contain;
      display: block;
      border: 1px solid var(--hair-2);
    }
    .lb-close {
      position: absolute;
      top: 20px; right: 24px;
      font-family: var(--font-display);
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--fg-2);
      cursor: pointer;
      border: 1px solid var(--hair-2);
      padding: 8px 16px;
      background: none;
      transition: color 0.2s, border-color 0.2s;
    }
    .lb-close:hover { color: var(--fg-0); border-color: var(--silver-2); }
    .lb-nav {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      font-family: var(--font-display);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fg-2);
      cursor: pointer;
      border: 1px solid var(--hair-2);
      padding: 14px 18px;
      background: rgba(4,4,4,0.7);
      transition: color 0.2s, border-color 0.2s;
    }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }
    .lb-nav:hover { color: var(--fg-0); border-color: var(--silver-2); }
    .lb-counter {
      position: absolute;
      bottom: 20px; left: 50%; transform: translateX(-50%);
      font-family: var(--font-display);
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-3);
      white-space: nowrap;
    }
    /* Gallery expand/collapse */
    .gallery-extra-wrap {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.85s cubic-bezier(0.4,0,0.2,1);
    }
    .gallery-extra-wrap .portfolio-masonry {
      margin-top: 12px;
    }
    .gallery-toggle-row {
      display: flex;
      justify-content: center;
      margin-top: 36px;
    }
    .gallery-toggle-btn {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-1);
      background: none;
      border: 1px solid var(--hair-2);
      padding: 16px 36px;
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .gallery-toggle-btn:hover {
      color: var(--fg-0);
      border-color: var(--silver-2);
      background: rgba(255,255,255,0.03);
    }
    .gallery-toggle-arrow {
      display: inline-block;
      font-style: normal;
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
      line-height: 1;
    }
    .gallery-toggle-btn.open .gallery-toggle-arrow {
      transform: rotate(180deg);
    }

    @media (max-width: 900px) {
      .portfolio-masonry { columns: 2; column-gap: 8px; }
      .pm-item { margin-bottom: 8px; }
      .lb-img { max-width: 94vw; max-height: 78vh; }
      .lb-nav { padding: 10px 14px; min-height: 44px; min-width: 44px; }
    }
    @media (max-width: 600px) {
      .portfolio-masonry { columns: 2; column-gap: 6px; }
      .pm-item { margin-bottom: 6px; }
      .gallery-toggle-btn { width: 100%; justify-content: center; padding: 16px 20px; }
      /* Lightbox: stack controls above/below image */
      .lb-img { max-width: 96vw; max-height: 72vh; }
      .lb-prev { left: 8px; }
      .lb-next { right: 8px; }
      .lb-nav { padding: 10px 12px; min-height: 44px; min-width: 44px; font-size: 9px; }
      .lb-close { top: 12px; right: 12px; padding: 10px 14px; min-height: 44px; }
      .lb-counter { bottom: 12px; font-size: 9px; }
    }
    @media (max-width: 420px) {
      .portfolio-masonry { columns: 1; column-gap: 0; }
      .pm-item { margin-bottom: 6px; }
    }

    /* ── Testimonials ─────────────────────────────────────────── */
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--hair);
      border: 1px solid var(--hair);
    }
    .test-card {
      background: var(--bg-1);
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      min-height: 340px;
    }
    .test-quote-mark {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: 60px;
      line-height: 0.6;
      color: var(--silver-2);
      opacity: 0.5;
      height: 30px;
    }
    .test-quote {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: 22px;
      line-height: 1.4;
      color: var(--fg-0);
      flex: 1;
    }
    .test-meta {
      display: flex;
      flex-direction: column;
      gap: 4px;
      border-top: 1px solid var(--hair);
      padding-top: 20px;
    }
    .test-meta .name {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .test-meta .role {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fg-2);
    }
    .test-stars { display: inline-flex; gap: 4px; }

    /* ── CTA Strip ────────────────────────────────────────────── */
    .cta-strip {
      padding: 110px 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(160,150,130,0.08), transparent 60%),
        var(--bg-1);
      border-top: 1px solid var(--hair);
      border-bottom: 1px solid var(--hair);
    }
    .cta-strip .container { text-align: center; }
    .cta-strip h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(36px, 4.8vw, 72px);
      line-height: 1;
      letter-spacing: -0.015em;
      text-transform: uppercase;
      margin: 0 0 24px;
    }
    .cta-strip h2 .it {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      text-transform: none;
    }
    .cta-strip p { color: var(--fg-1); max-width: 52ch; margin: 0 auto 40px; }
    .cta-strip .ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

    /* ── Contact ──────────────────────────────────────────────── */
    .contact { background: var(--bg-1); border-top: 1px solid var(--hair); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: start;
    }
    .contact-info p { color: var(--fg-1); max-width: 46ch; }
    .contact-channels {
      margin-top: 40px;
      display: grid;
      gap: 0;
      border-top: 1px solid var(--hair);
    }
    .channel {
      display: grid;
      grid-template-columns: 56px 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 22px 0;
      border-bottom: 1px solid var(--hair);
      transition: opacity 0.2s ease;
    }
    .channel:hover { opacity: 0.8; }
    .channel .ic {
      width: 44px; height: 44px;
      border: 1px solid var(--hair-2);
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
    }
    .channel .ic svg { width: 18px; height: 18px; }
    .channel .k {
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-2);
      margin-bottom: 4px;
    }
    .channel .v {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 18px;
      letter-spacing: 0.01em;
    }
    .channel .v.serif {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      font-size: 20px;
    }
    .channel .arrow-r { width: 20px; height: 1px; background: var(--fg-2); position: relative; }
    .channel .arrow-r::after {
      content: "";
      position: absolute; right: 0; top: 50%;
      width: 6px; height: 6px;
      border-top: 1px solid var(--fg-2);
      border-right: 1px solid var(--fg-2);
      transform: translateY(-50%) rotate(45deg);
    }
    .form {
      border: 1px solid var(--hair);
      background: var(--bg-1);
      position: relative;
      overflow: hidden;
    }
    .form-header {
      padding: 28px 32px 24px;
      border-bottom: 1px solid var(--hair);
    }
    .form-header .eyebrow { margin: 0; }
    .form-rows-wrap { padding: 0; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--hair);
    }
    .field {
      background: transparent;
      padding: 20px 24px;
      position: relative;
      transition: background 200ms;
    }
    .field + .field { border-left: 1px solid var(--hair); }
    .field:focus-within { background: rgba(255,255,255,0.018); }
    .field label {
      display: block;
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-3);
      margin-bottom: 10px;
      transition: color 200ms;
    }
    .field input, .field textarea, .field select {
      width: 100%;
      background: transparent;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      color: var(--fg-0);
      font-family: var(--font-display);
      font-size: 15px;
      padding: 6px 0;
      outline: none;
      font-weight: 300;
      transition: border-color 200ms;
    }
    .field select option { background: var(--bg-2); color: var(--fg-0); }
    .field input::placeholder, .field textarea::placeholder { color: var(--fg-3); }
    .field textarea { resize: vertical; min-height: 100px; }
    .field:focus-within label { color: var(--silver-1); }
    .field:focus-within input,
    .field:focus-within textarea,
    .field:focus-within select { border-bottom-color: var(--silver-2); }
    .form-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      gap: 20px;
      flex-wrap: wrap;
      border-top: 1px solid var(--hair);
    }
    .form-note {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fg-3);
    }
    .form-success {
      position: absolute; inset: 0;
      background: var(--bg-1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 20px;
      padding: 48px 40px;
      text-align: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .form-success.show { opacity: 1; pointer-events: auto; }
    .form-success .check {
      width: 56px; height: 56px;
      border: 1px solid var(--silver-2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .form-success h3 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 20px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin: 0;
    }
    .form-success p { color: var(--fg-1); margin: 0; max-width: 32ch; font-size: 14px; line-height: 1.65; }

    /* ── Footer ───────────────────────────────────────────────── */
    .footer {
      background: var(--bg-0);
      padding: 80px 0 40px;
      border-top: 1px solid var(--hair);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand p {
      color: var(--fg-1);
      max-width: 38ch;
      margin: 24px 0 0;
      font-size: 15px;
    }
    .footer-col h5 {
      font-family: var(--font-display);
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-2);
      margin: 0 0 20px;
      font-weight: 500;
    }
    .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
    .footer-col a { color: var(--fg-1); font-size: 14px; transition: color 0.2s ease; }
    .footer-col a:hover { color: var(--fg-0); }
    .footer-base {
      border-top: 1px solid var(--hair);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fg-1);
    }

    /* ── Social links ─────────────────────────────────────────── */
    .footer-social {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-top: 20px;
    }
    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--hair-2);
      color: var(--fg-2);
      text-decoration: none;
      transition: border-color 220ms, color 220ms, background 220ms;
    }
    .social-btn:hover {
      border-color: var(--silver-2);
      color: var(--fg-0);
      background: rgba(255,255,255,0.05);
    }
    .social-btn svg { display: block; }

    /* ── Reveal on scroll ─────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ── Section decorations ──────────────────────────────────── */
    .section-eyebrow-row {
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: var(--font-display);
      font-size: 11px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--fg-1);
      margin-bottom: 36px;
    }
    .section-eyebrow-row .line { flex: 1; height: 1px; background: var(--hair-2); }
    .section-eyebrow-row .idx { color: var(--fg-2); }
    .section-bottom-rule {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 80px;
      font-family: var(--font-serif);
      font-style: italic;
      color: var(--fg-2);
    }
    .section-bottom-rule .line { flex: 1; height: 1px; background: var(--hair); }

    /* ── Service Area Section ─────────────────────────────────── */
    .service-area-section { padding: var(--section-y) 0; border-top: 1px solid var(--hair); }
    .sa-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-top: 48px;
    }
    .sa-heading {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 0 0 24px;
    }
    .sa-sub {
      font-size: 16px;
      color: var(--fg-1);
      line-height: 1.7;
      max-width: 44ch;
      margin: 0 0 36px;
    }
    .sa-areas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 32px;
    }
    .sa-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .sa-list li {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--fg-1);
      padding: 10px 0;
      border-bottom: 1px solid var(--hair);
      display: flex;
      align-items: center;
      gap: 12px;
      transition: color 0.2s ease;
    }
    .sa-list li::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--silver-2);
      flex-shrink: 0;
    }
    .sa-list li:first-child { border-top: 1px solid var(--hair); }
    .sa-map-wrap {
      position: relative;
      height: 480px;
      border: 1px solid var(--hair);
      border-radius: 2px;
      overflow: hidden;
    }
    .sa-map-label {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fg-0);
      background: rgba(10,10,10,0.85);
      padding: 6px 12px;
      border: 1px solid var(--hair);
      backdrop-filter: blur(8px);
    }
    .sa-map {
      width: 100%;
      height: 100%;
      display: block;
      filter: grayscale(100%) invert(92%) contrast(85%);
    }
    .sa-map-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      box-shadow: inset 0 0 40px rgba(10,10,10,0.5);
    }
    @media (max-width: 980px) {
      .sa-layout { grid-template-columns: 1fr; gap: 48px; }
      .sa-map-wrap { height: 380px; }
    }
    @media (max-width: 600px) {
      .sa-areas-grid { grid-template-columns: 1fr 1fr; gap: 0 16px; }
      .sa-map-wrap { height: 280px; }
      .sa-heading { font-size: clamp(26px, 8vw, 40px); }
      .sa-sub { font-size: 15px; }
      .sa-list li { font-size: 11px; letter-spacing: 0.08em; padding: 9px 0; }
      .sa-content .btn { width: 100%; justify-content: center; text-align: center; }
    }
    @media (max-width: 420px) {
      .sa-areas-grid { grid-template-columns: 1fr; }
      .sa-list li { font-size: 12px; letter-spacing: 0.1em; }
    }

    /* ── Global ───────────────────────────────────────────────── */
    ::selection { background: var(--silver-2); color: #000; }
    ::-webkit-scrollbar { width: 10px; height: 10px; }
    ::-webkit-scrollbar-track { background: var(--bg-0); }
    ::-webkit-scrollbar-thumb { background: #1A1A1A; border-radius: 0; }
    ::-webkit-scrollbar-thumb:hover { background: #2A2A2A; }

    /* ── Responsive ───────────────────────────────────────────── */
    .nav-btn-short { display: none; }
    @media (max-width: 980px) { .nav-cta { display: none !important; } }
    @media (max-width: 980px) {
      .nav-links, .nav-phone { display: none; }
      .nav-hamburger { display: flex; }
      .nav-inner { gap: 12px; }
      .why-grid { grid-template-columns: 1fr; gap: 60px; }
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .test-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 880px) {
      .section-head { grid-template-columns: 1fr; gap: 28px; }
    }
    @media (max-width: 768px) {
      .hero { padding: 110px 0 60px; min-height: auto; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-right { height: 320px; }
      .hero-art-label { display: none; }
      .hero-headline { font-size: clamp(36px, 9vw, 64px); }
      .hero-sub { font-size: 16px; margin-bottom: 32px; }
      .hero-trust { margin-top: 36px; gap: 20px; }
      .why-stat-box { padding: 36px 28px; }
      .process-rail { grid-template-columns: 1fr 1fr; }
      .process-step { padding: 40px 28px; }
      .gal-tall, .gal-wide, .gal-med, .gal-square, .gal-wide2 { grid-column: span 12; grid-row: auto; }
      .gal .img { min-height: 260px; }
      .form { padding: 28px 20px; }
      .test-card { padding: 36px 28px; }
    }
    @media (max-width: 600px) {
      :root { --gutter: 18px; --section-y: 72px; }
      .hero-left .eyebrow::before { display: none; }
      .hero-left .eyebrow {
        display: block;
        letter-spacing: 0.18em;
        font-size: 10px;
        line-height: 1.9;
        margin-bottom: 20px;
      }
      .hero { padding: 106px 0 52px; min-height: auto; }
      .hero-right { height: 260px; }
      .hero-headline { font-size: clamp(30px, 8.5vw, 48px); line-height: 1.0; }
      .hero-sub { font-size: 15px; margin-bottom: 28px; }
      .hero-ctas { flex-direction: column; }
      .hero-ctas .btn { text-align: center; justify-content: center; }
      .hero-trust { gap: 18px; margin-top: 28px; padding-top: 24px; flex-wrap: wrap; }
      .hero-trust .num { font-size: 22px; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { padding: 36px 28px; min-height: auto; }
      .process-rail { grid-template-columns: 1fr; }
      .process-step { border-right: 0; border-bottom: 1px solid var(--hair); padding: 36px 24px; }
      .process-step:last-child { border-bottom: 0; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-strip { padding: 72px 0; }
      .cta-strip h2 { font-size: clamp(28px, 8vw, 48px); }
      .cta-strip .ctas { flex-direction: column; align-items: center; width: 100%; }
      .cta-strip .ctas .btn { width: 100%; justify-content: center; text-align: center; }
      .quote-layout { gap: 40px; }
      .section-eyebrow-row { flex-wrap: wrap; gap: 8px; }
      .why-pillar { grid-template-columns: 48px 1fr; gap: 16px; }
      .why-pillar .idx { display: none; }
      .why-pillar .ic { width: 48px; height: 48px; }
      .test-card { padding: 32px 24px; }
      .footer-base { flex-direction: column; gap: 8px; text-align: center; }
      /* iOS form zoom fix — inputs must be ≥16px to prevent auto-zoom */
      .form-input, .chat-input { font-size: 16px; }
      /* Contact channel links */
      .channel { grid-template-columns: 40px 1fr auto; gap: 14px; padding: 18px 0; }
      .channel .ic { width: 40px; height: 40px; }
      .channel .v { font-size: 15px; }
      .channel .v.serif { font-size: 15px; }
      /* Quote intro stacked */
      .quote-intro p { font-size: 15px; margin: 20px 0 32px; }
      .quote-trust-row { font-size: 13px; }
      /* Ledger in stat box */
      .why-stat-box .ledger { grid-template-columns: 1fr; gap: 20px; }
      /* Mobile menu padding */
      .mobile-menu { padding: 80px 28px 40px; }
    }
    @media (max-width: 420px) {
      .hero { padding: 100px 0 48px; }
      .hero-right { height: 220px; }
      .hero-headline { font-size: clamp(28px, 8vw, 40px); }
      .hero-trust { gap: 14px; }
      .hero-trust .num { font-size: 20px; }
      .hero-trust .lbl { font-size: 9px; }
      .why-stat-box { padding: 28px 20px; }
      .why-stat-box .big { font-size: 56px; }
      .btn { padding: 16px 22px; font-size: 12px; }
      .section-eyebrow-row span { font-size: 10px; }
      /* Channel: hide arrow on tiny screens to prevent overflow */
      .channel .arrow-r { display: none; }
      .channel { grid-template-columns: 36px 1fr; gap: 12px; }
      .channel .ic { width: 36px; height: 36px; }
      /* Svc card body tighter */
      .svc-card-body { padding: 16px 16px 18px; }
      .svc-card-name { font-size: 13px; }
      /* Testimonials */
      .test-card { padding: 28px 20px; }
      /* Form */
      .quote-form { gap: 16px; }
    }
    /* ── All-services grid ─────────────────────────────────────── */
    #all-services { padding: 80px 0 var(--section-y); }
    .all-services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 60px;
    }
    .svc-card {
      display: flex;
      flex-direction: column;
      background: var(--bg-1);
      border: 1px solid var(--hair);
      border-radius: 3px;
      overflow: hidden;
      text-decoration: none;
      transition: transform 300ms cubic-bezier(0.4,0,0.2,1), box-shadow 300ms cubic-bezier(0.4,0,0.2,1), border-color 300ms;
      cursor: pointer;
    }
    @media (hover: hover) {
      .svc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.45);
        border-color: var(--silver-2);
      }
    }
    .svc-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      position: relative;
      overflow: hidden;
    }
    .svc-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    @media (hover: hover) { .svc-card:hover .svc-img { transform: scale(1.06); } }
    .svc-t1  { background: linear-gradient(135deg, #0f1923 0%, #1a2e3d 60%, #0a1520 100%); }
    .svc-t2  { background: linear-gradient(135deg, #111b14 0%, #1c3020 60%, #0d1710 100%); }
    .svc-t3  { background: linear-gradient(135deg, #101823 0%, #152840 60%, #0a1018 100%); }
    .svc-t4  { background: linear-gradient(135deg, #181018 0%, #2c1e30 60%, #100c12 100%); }
    .svc-t5  { background: linear-gradient(135deg, #0f1318 0%, #1a2030 60%, #0a0e14 100%); }
    .svc-t6  { background: linear-gradient(135deg, #1a1008 0%, #2e200e 60%, #150e04 100%); }
    .svc-t7  { background: linear-gradient(135deg, #121a10 0%, #1e2c18 60%, #0e1610 100%); }
    .svc-t8  { background: linear-gradient(135deg, #0e1418 0%, #182030 60%, #0a1018 100%); }
    .svc-t9  { background: linear-gradient(135deg, #1a1218 0%, #2a1c28 60%, #140e14 100%); }
    .svc-t10 { background: linear-gradient(135deg, #121418 0%, #1c2028 60%, #0e1018 100%); }
    .svc-t11 { background: linear-gradient(135deg, #0e1620 0%, #162238 60%, #0a1018 100%); }
    .svc-t12 { background: linear-gradient(135deg, #181412 0%, #2c2018 60%, #141008 100%); }
    .svc-t13 { background: linear-gradient(135deg, #0f1a1f 0%, #1a2e36 60%, #0a1318 100%); }
    .svc-card-body {
      padding: 20px 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
    }
    .svc-card-num {
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      color: var(--silver-2);
      text-transform: uppercase;
    }
    .svc-card-name {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      color: var(--fg-0);
      line-height: 1.25;
      margin-top: 2px;
    }
    .svc-card-desc {
      font-size: 13px;
      color: var(--fg-2);
      line-height: 1.55;
      margin-top: 4px;
      flex: 1;
    }
    .svc-card-cta {
      margin-top: 16px;
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      color: var(--silver-1);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .svc-card-cta::after {
      content: '';
      display: inline-block;
      width: 16px;
      height: 1px;
      background: var(--silver-2);
      flex-shrink: 0;
      transition: transform 200ms cubic-bezier(0.4,0,0.2,1);
    }
    @media (hover: hover) { .svc-card:hover .svc-card-cta::after { transform: translateX(6px); } }

    /* ── Quote form section ─────────────────────────────────────── */
    .quote-layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 80px;
      align-items: start;
    }
    .quote-intro { position: sticky; top: 120px; }
    .quote-intro p { color: var(--fg-1); line-height: 1.75; margin: 28px 0 44px; font-size: 16px; max-width: 40ch; }
    .quote-trust { display: flex; flex-direction: column; gap: 14px; }
    .quote-trust-row {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      color: var(--fg-1);
      letter-spacing: 0.02em;
    }
    .quote-trust-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--silver-1);
      flex-shrink: 0;
    }
    .quote-form-wrap { position: relative; }
    .quote-form { display: grid; gap: 20px; }
    .quote-form .form-row { grid-template-columns: 1fr 1fr; gap: 20px; display: grid; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-label {
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--fg-3);
      font-family: var(--font-display);
    }
    .form-input {
      width: 100%;
      background: var(--bg-2);
      border: 1px solid var(--hair);
      border-radius: 2px;
      color: var(--fg-0);
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 300;
      padding: 12px 16px;
      transition: border-color 200ms, background 200ms;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
    }
    .form-input::placeholder { color: var(--fg-3); }
    .form-input:focus {
      border-color: var(--silver-2);
      background: var(--bg-1);
    }
    .form-input option { background: var(--bg-2); color: var(--fg-0); }
    textarea.form-input { resize: vertical; min-height: 120px; }
    .radio-group { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 4px; }
    .radio-opt {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      font-size: 14px;
      color: var(--fg-1);
    }
    .radio-opt input[type="radio"] {
      appearance: none;
      -webkit-appearance: none;
      width: 17px;
      height: 17px;
      border: 1px solid var(--fg-3);
      border-radius: 50%;
      flex-shrink: 0;
      transition: border-color 200ms;
      position: relative;
      cursor: pointer;
    }
    .radio-opt input[type="radio"]:checked { border-color: var(--silver-1); }
    .radio-opt input[type="radio"]:checked::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--silver-1);
    }
    #quote-success {
      position: absolute;
      inset: 0;
      background: var(--bg-1);
      border: 1px solid var(--hair);
      border-radius: 3px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 64px 48px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 400ms ease;
    }
    #quote-success.visible { opacity: 1; pointer-events: all; }
    #quote-success .success-icon { margin-bottom: 28px; color: var(--silver-1); }
    #quote-success h3 { font-size: 22px; margin-bottom: 12px; }
    #quote-success p { color: var(--fg-2); font-size: 15px; max-width: 36ch; }

    @media (max-width: 1100px) {
      .all-services-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .quote-layout { grid-template-columns: 1fr; gap: 52px; }
      .quote-intro { position: static; }
    }
    @media (max-width: 700px) {
      .all-services-grid { grid-template-columns: repeat(2, 1fr); }
      .quote-form .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 420px) {
      .all-services-grid { grid-template-columns: 1fr; }
    }

    /* ── Chatbot widget ─────────────────────────────────────────── */
    @keyframes chatRipple {
      0%   { transform: scale(1);   opacity: 0.55; }
      100% { transform: scale(2.2); opacity: 0; }
    }
    @keyframes chatBounce {
      0%,100% { transform: translateY(0) scale(1); }
      30%      { transform: translateY(-10px) scale(1.04); }
      60%      { transform: translateY(-4px) scale(1.01); }
    }
    @keyframes chatTooltipIn {
      from { opacity: 0; transform: translateX(10px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes chatTooltipOut {
      from { opacity: 1; transform: translateX(0); }
      to   { opacity: 0; transform: translateX(10px); }
    }
    .chat-fab {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--bg-1); border: 1px solid var(--silver-2);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(0,0,0,0.6);
      transition: transform 220ms cubic-bezier(0.4,0,0.2,1), box-shadow 220ms, border-color 220ms;
      padding: 0;
    }
    .chat-fab::before, .chat-fab::after {
      content: ''; position: absolute; inset: -1px;
      border-radius: 50%; border: 1px solid var(--silver-2);
      animation: chatRipple 2.8s ease-out infinite;
      pointer-events: none;
    }
    .chat-fab::after { animation-delay: 1.4s; }
    .chat-fab.bounce { animation: chatBounce 0.7s cubic-bezier(0.4,0,0.2,1); }
    .chat-fab:hover {
      transform: scale(1.08);
      box-shadow: 0 12px 40px rgba(0,0,0,0.7);
      border-color: var(--silver-1);
    }
    .chat-fab:hover::before, .chat-fab:hover::after { animation-play-state: paused; opacity: 0; }
    .chat-fab.chat-open::before,
    .chat-fab.chat-open::after { display: none; }
    .chat-fab img { width: 40px; height: 40px; object-fit: contain; position: relative; z-index: 1; }
    .chat-tooltip {
      position: fixed; bottom: 40px; right: 100px; z-index: 200;
      background: var(--bg-1); border: 1px solid var(--silver-2);
      color: var(--fg-0); font-family: var(--font-display);
      font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
      padding: 10px 16px; border-radius: 4px;
      white-space: nowrap; pointer-events: none;
      opacity: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
    .chat-tooltip::after {
      content: '';
      position: absolute; right: -5px; top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 8px; height: 8px;
      background: var(--bg-1);
      border-right: 1px solid var(--silver-2);
      border-top: 1px solid var(--silver-2);
    }
    .chat-tooltip.show { animation: chatTooltipIn 300ms ease forwards; }
    .chat-tooltip.hide { animation: chatTooltipOut 300ms ease forwards; }
    .chat-panel {
      position: fixed; bottom: 100px; right: 28px; z-index: 200;
      width: 320px; height: 460px; background: var(--bg-1);
      border: 1px solid var(--hair); border-radius: 6px;
      display: flex; flex-direction: column;
      box-shadow: 0 24px 64px rgba(0,0,0,0.7); overflow: hidden;
      transform: scale(0.92) translateY(16px); opacity: 0; pointer-events: none;
      transform-origin: bottom right;
      transition: transform 250ms cubic-bezier(0.4,0,0.2,1), opacity 250ms ease;
    }
    .chat-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
    .chat-header {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 16px; border-bottom: 1px solid var(--hair); flex-shrink: 0;
    }
    .chat-header img { width: 34px; height: 34px; object-fit: contain; }
    .chat-header-title { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--fg-0); }
    .chat-header-sub { font-size: 11px; color: var(--fg-2); margin-top: 2px; }
    .chat-close {
      background: none; border: none; cursor: pointer; color: var(--fg-2);
      padding: 4px; display: flex; align-items: center; margin-left: auto;
      transition: color 150ms; border-radius: 3px;
    }
    .chat-close:hover { color: var(--fg-0); }
    .chat-messages {
      flex: 1; overflow-y: auto; padding: 16px;
      display: flex; flex-direction: column; gap: 10px;
      scrollbar-width: thin; scrollbar-color: var(--hair) transparent;
    }
    .chat-msg {
      max-width: 90%; padding: 10px 14px;
      font-size: 13px; line-height: 1.6;
    }
    .chat-msg.bot {
      background: var(--bg-2); border: 1px solid var(--hair);
      color: var(--fg-1); align-self: flex-start;
      border-radius: 2px 8px 8px 8px;
    }
    .chat-msg.user {
      background: rgba(216,214,207,0.15); border: 1px solid var(--silver-2);
      color: var(--fg-0); align-self: flex-end; font-weight: 500;
      border-radius: 8px 2px 8px 8px;
    }
    .chat-typing { display: flex; gap: 4px; align-items: center; padding: 12px 14px; }
    .chat-typing span {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--fg-3); animation: chatBounce 1.2s infinite;
    }
    .chat-typing span:nth-child(2) { animation-delay: 0.2s; }
    .chat-typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes chatBounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
    .chat-input-row {
      display: flex; gap: 8px; padding: 12px 14px;
      border-top: 1px solid var(--hair); flex-shrink: 0;
    }
    .chat-input {
      flex: 1; background: var(--bg-2); border: 1px solid var(--hair);
      border-radius: 4px; padding: 9px 12px;
      font-size: 13px; font-family: var(--font-display);
      color: var(--fg-0); outline: none; transition: border-color 150ms;
    }
    .chat-input::placeholder { color: var(--fg-3); }
    .chat-input:focus { border-color: var(--silver-2); }
    .chat-send {
      background: var(--bg-2); border: 1px solid var(--hair); border-radius: 4px;
      padding: 9px 13px; cursor: pointer; color: var(--silver-1);
      transition: background 150ms, border-color 150ms;
      display: flex; align-items: center; justify-content: center;
    }
    .chat-send:hover { background: rgba(255,255,255,0.04); border-color: var(--silver-2); }
    @media (max-width: 420px) {
      .chat-panel { width: calc(100vw - 24px); right: 12px; bottom: 90px; }
      .chat-fab { right: 16px; bottom: 20px; }
    }

    /* ── Logo image overrides ────────────────────────────────────── */
    .nav-logo-img {
      height: 96px;
      width: auto;
      display: block;
      filter: drop-shadow(0 0 16px rgba(216, 214, 207, 0.45)) drop-shadow(0 0 4px rgba(255,255,255,0.2));
      transition: filter 250ms ease;
    }
    .nav-logo:hover .nav-logo-img {
      filter: drop-shadow(0 0 24px rgba(216, 214, 207, 0.65)) drop-shadow(0 0 6px rgba(255,255,255,0.3));
    }
    .footer-logo-img { height: 58px; width: auto; display: block; }
    .hero-logo-img {
      width: 100%; max-width: 340px; height: auto; display: block;
      margin: 0 auto;
      filter: drop-shadow(0 0 48px rgba(200,195,180,0.18));
    }
    @media (max-width: 980px) {
      .nav-logo-img { height: 88px; }
    }
    @media (max-width: 600px) {
      .nav-logo-img { height: 80px; }
      .hero-logo-img { max-width: 220px; }
      .footer-logo-img { height: 44px; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    }

    /* ── Page Loader ──────────────────────────────────────────── */
    @keyframes loaderLogoIn {
      0%   { opacity: 0; transform: scale(0.88); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes loaderRingPulse {
      0%   { transform: scale(1);   opacity: 0.5; }
      100% { transform: scale(1.9); opacity: 0; }
    }
    @keyframes loaderFadeOut {
      0%   { opacity: 1; visibility: visible; }
      100% { opacity: 0; visibility: hidden; }
    }
    #page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--bg-0);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    #page-loader.done {
      animation: loaderFadeOut 1100ms ease forwards;
      pointer-events: none;
    }
    .loader-logo-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .loader-logo-wrap::before,
    .loader-logo-wrap::after {
      content: '';
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      border: 1px solid var(--silver-2);
      animation: loaderRingPulse 2s ease-out infinite;
    }
    .loader-logo-wrap::after { animation-delay: 1s; }
    .loader-logo {
      width: 120px;
      height: auto;
      display: block;
      filter: drop-shadow(0 0 24px rgba(216,214,207,0.3));
      animation: loaderLogoIn 700ms cubic-bezier(0.4,0,0.2,1) forwards;
    }
    .loader-wordmark {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--silver-2);
      opacity: 0;
      animation: loaderLogoIn 700ms 300ms cubic-bezier(0.4,0,0.2,1) forwards;
    }
    .loader-bar-wrap {
      width: 120px;
      height: 1px;
      background: var(--hair-2);
      overflow: hidden;
      opacity: 0;
      animation: loaderLogoIn 400ms 400ms ease forwards;
    }
    .loader-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--silver-3), var(--silver-1), var(--silver-3));
      transition: width 1400ms cubic-bezier(0.4,0,0.2,1);
    }

    /* Anchor landing offset so the fixed nav doesn't cover the contact form */
    #quote-form-new { scroll-margin-top: 130px; }
    @media (max-width: 600px) { #quote-form-new { scroll-margin-top: 108px; } }
  