:root {
    /* Bone / ink core, bronze accent (sampled from logo) */
    --bone: #F2EEE3;
    --bone-2: #ECE6D8;
    --ink: #14130F;
    --ink-2: #2B2823;
    --muted: #6E6757;
    --hair: #C9C2AF;

    --bronze: #8B7548;
    --bronze-deep: #6B5A38;
    --bronze-soft: #C4AC7A;

    --warm-white: #FAF7EF;

    --max-w: 1440px;
    --gutter: clamp(20px, 4vw, 64px);
    --ff: 'Onest', system-ui, sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--ff);
    background: var(--bone);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.5;
    font-feature-settings: 'kern', 'liga';
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  ::selection { background: var(--bronze); color: var(--bone); }

  .accent { color: var(--bronze); }

  .mono-label, .eyebrow {
    font-family: var(--ff);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--muted);
  }
  .eyebrow { color: var(--bronze); }

  .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
  section { position: relative; }

  /* ─── TOP BAR ─── */
  .topbar {
    background: var(--ink);
    color: var(--bone);
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 9px 0;
  }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .topbar-left { display: flex; gap: 24px; align-items: center; opacity: 0.75; }
  .topbar-right { display: flex; gap: 18px; align-items: center; }
  .topbar a:hover { color: var(--bronze-soft); }
  .topbar .dot { width: 6px; height: 6px; background: #5DC176; border-radius: 50%; display: inline-block; margin-right: 8px; box-shadow: 0 0 0 4px rgba(93,193,118,0.15); }

  /* ─── NAV (removed - now inside hero) ─── */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(242, 238, 227, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--hair);
  }
  .nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 24px; }
  .logo {
    display: inline-flex; align-items: center; gap: 8px;
  }
  .logo img { height: 40px; width: auto; object-fit: contain; }
  .nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
  .nav-links a { position: relative; padding: 4px 0; transition: color 0.25s; }
  .nav-links a:hover { color: var(--bronze); }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
    background: var(--bronze); transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 11px 22px;
    background: var(--ink); color: var(--bone);
    font-size: 13px; font-weight: 500;
    border-radius: 0;
    transition: background 0.25s, transform 0.25s;
  }
  .nav-cta:hover { background: var(--bronze); transform: translateY(-1px); }
  .burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
  .burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }
  .hero-topnav .burger span { background: var(--bone); }

  /* ─── HEADLINE TYPOGRAPHY ─── */
  .h-display {
    font-family: var(--ff);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--ink);
  }
  .h-2 { font-weight: 500; line-height: 1; letter-spacing: -0.03em; }
  .h-3 { font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }

  /* ─── HERO ─── */
  .hero {
    padding: 0 0 0 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex; flex-direction: column;
    background-image: url('https://static.tildacdn.com/tild3832-3132-4631-a539-316136373233/01-1.jpg');
    background-size: cover;
    background-position: center 30%;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background:
      linear-gradient(to bottom, rgba(20,18,15,0.70) 0%, rgba(20,18,15,0.25) 30%, rgba(20,18,15,0.35) 65%, rgba(20,18,15,0.92) 100%),
      linear-gradient(to right, rgba(20,18,15,0.65) 0%, rgba(20,18,15,0.20) 55%, rgba(20,18,15,0.40) 100%);
    pointer-events: none;
  }
  /* Hero text — light on dark photo */
  .hero h1 { color: var(--bone) !important; text-align: left !important; text-shadow: 0 2px 16px rgba(20,18,15,0.55), 0 1px 4px rgba(20,18,15,0.40); }
  .hero .hero-sub { color: rgba(242,238,227,0.88); text-align: left !important; text-shadow: 0 1px 8px rgba(20,18,15,0.50); }
  .hero .btn-ghost { border-color: rgba(242,238,227,0.6); color: var(--bone) !important; }
  .hero .btn-ghost:hover { background: rgba(242,238,227,0.15); color: var(--bone) !important; }
  /* Eyebrow: stays as requested — dark ink color */
  .hero .eyebrow { color: rgba(242,238,227,0.72); letter-spacing: 0.22em; }
  .hero-grid h1,
  .hero-grid .eyebrow,
  .hero-grid .hero-sub,
  .hero-grid .hero-actions {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
  }
  .hero > .container { position: relative; z-index: 1; flex: 1; display: flex; align-items: flex-start; justify-content: flex-start; padding-top: clamp(40px,5vw,80px); padding-bottom: clamp(80px,10vw,120px); }
  .hero-content-wrapper {
    position: relative; z-index: 1; flex: 1;
    display: flex; align-items: flex-start; justify-content: flex-start;
    width: 100%;
    padding: clamp(40px,5vw,80px) var(--gutter,56px) clamp(80px,10vw,120px);
    box-sizing: border-box;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: end;
    width: 100%;
    text-align: left !important;
  }
  .hero-meta { display: flex; flex-direction: column; gap: 36px; padding-bottom: 8px; }
  .hero-meta-block { border-top: 1px solid var(--hair); padding-top: 14px; }
  .hero-meta-num {
    font-weight: 500; font-size: clamp(28px, 2.8vw, 38px);
    letter-spacing: -0.025em; line-height: 1; margin-bottom: 6px;
  }
  .hero-meta-num sup { font-size: 14px; color: var(--bronze); vertical-align: super; margin-left: 4px; font-weight: 500; }
  .hero-meta-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
  .hero h1 {
    font-weight: 500;
    font-size: clamp(36px, 5.5vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .hero-sub {
    margin-top: 32px;
    max-width: 600px;
    font-size: clamp(14px, 1.3vw, 19px);
    color: var(--ink-2);
    line-height: 1.55;
  }
  .hero-actions { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: flex-start; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 32px;
    background: var(--bronze);
    color: var(--bone) !important;
    font-weight: 500; font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 0;
    transition: background 0.25s, transform 0.25s;
  }
  .btn-primary:hover { background: var(--bronze-deep); transform: translateY(-1px); }
  .btn-primary .arrow {
    display: inline-block; width: 18px; height: 1px; background: currentColor; position: relative;
    transition: width 0.25s;
  }
  .btn-primary .arrow::after {
    content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px;
    border-top: 1px solid currentColor; border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }
  .btn-primary:hover .arrow { width: 26px; }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border: 1px solid var(--ink); color: var(--ink) !important;
    font-weight: 500; font-size: 14px;
    border-radius: 0;
    transition: background 0.25s, color 0.25s;
  }
  .btn-ghost:hover { background: var(--ink); color: var(--bone) !important; }


  /* ─── STATS STRIP ─── */
  .stats-strip { background: var(--bone); padding: 52px 0; border-bottom: 1px solid var(--hair); }
  .stats-strip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; text-align: center; }
  .stats-strip-num { font-weight: 500; font-size: clamp(38px,4.5vw,56px); line-height:1; letter-spacing:-0.03em; color:var(--ink); margin-bottom:10px; }
  .stats-strip-num sup { font-size:50%; vertical-align:super; }
  .stats-strip-label { font-size:12px; letter-spacing:0.15em; text-transform:uppercase; color:var(--muted); font-weight:500; }
  @media(max-width:680px){ .stats-strip-grid { grid-template-columns:1fr; gap:24px; } }

  /* ─── MARQUEE ─── */
  .marquee {
    overflow: hidden;
    padding: 22px 0;
    border-top: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
    background: var(--bone-2);
  }
  .marquee-track { display: flex; gap: 56px; width: max-content; }
  .marquee-item {
    font-weight: 500; font-size: 22px;
    letter-spacing: -0.015em; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 48px;
    color: var(--ink);
  }
  .marquee-dot { width: 6px; height: 6px; background: var(--bronze); border-radius: 50%; flex-shrink: 0; }

  .marquee-static { overflow: visible; }
  .marquee-static-row { display:flex; flex-wrap:wrap; align-items:center; gap:12px 18px; justify-content:center; font-weight:500; font-size:18px; letter-spacing:-0.01em; color:var(--ink); }

  /* ─── MANIFESTO ─── */
  .manifesto { padding: clamp(80px, 11vw, 160px) 0; background: var(--bone); }
  .manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
  }
  .manifesto-side { position: sticky; top: 120px; }
  .manifesto-side h2 { font-size: clamp(36px, 4.5vw, 58px); margin: 18px 0 28px; }
  .manifesto-side p { color: var(--muted); font-size: 15px; max-width: 360px; line-height: 1.6; }
  .manifesto-points { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--hair); }
  .mp {
    display: grid; grid-template-columns: 48px 1fr; gap: 24px;
    padding: 28px 0; border-bottom: 1px solid var(--hair); align-items: start;
  }
  .mp-num { font-weight: 500; font-size: 14px; color: var(--bronze); letter-spacing: 0.05em; padding-top: 4px; }
  .mp h3 { font-size: 22px; margin-bottom: 10px; color: var(--ink); }
  .mp p { color: var(--muted); font-size: 15px; line-height: 1.55; }

  /* ─── SERVICES JOURNEY ─── */
  .services { padding: clamp(80px, 11vw, 140px) 0; background: var(--ink); color: var(--bone); position: relative; }
  .services .eyebrow { color: var(--bronze-soft); }
  .services-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    margin-bottom: 80px; align-items: end;
  }
  .services-head h2 { font-size: clamp(30px, 3.8vw, 54px); color: var(--bone); }
  .services-head h2 .accent { color: var(--bronze-soft); }
  .services-head p { color: rgba(242, 238, 227, 0.6); font-size: 16px; max-width: 460px; line-height: 1.6; }
  .services-head .eyebrow { margin-bottom: 14px; display: block; }
  .journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .journey::before {
    content: ''; position: absolute; top: 40px; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(242,238,227,0.25) 12%, rgba(242,238,227,0.25) 88%, transparent);
  }
  .journey-step { padding: 0 28px 28px 0; position: relative; }
  .journey-step:not(:last-child) { border-right: 1px solid rgba(242,238,227,0.1); padding-right: 32px; }
  .journey-step:not(:first-child) { padding-left: 32px; }
  .journey-step:first-child { padding-left: 0; }
  .step-dot {
    width: 14px; height: 14px; background: var(--bone); border-radius: 50%;
    margin-bottom: 44px; position: relative; z-index: 2;
    transition: background 0.25s, transform 0.25s;
  }
  .journey-step:hover .step-dot { background: var(--bronze-soft); transform: scale(1.3); }
  .step-num { font-weight: 500; font-size: 12px; color: var(--bronze-soft); letter-spacing: 0.15em; margin-bottom: 16px; display: block; }
  .journey-step h3 { font-weight: 500; font-size: 24px; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; color: var(--bone); }
  .journey-step p { color: rgba(242, 238, 227, 0.6); font-size: 14px; line-height: 1.55; margin-bottom: 20px; }
  .journey-step ul { list-style: none; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(242, 238, 227, 0.78); }
  .journey-step li { display: flex; gap: 10px; align-items: baseline; }
  .journey-step li::before { content: '+'; color: var(--bronze-soft); font-weight: 500; }
  .services-foot {
    margin-top: 80px; padding: 36px;
    border: 1px solid rgba(242,238,227,0.15);
    border-radius: 4px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
    background: rgba(242,238,227,0.02);
  }
  .services-foot p {
    font-weight: 500; font-size: 22px;
    letter-spacing: -0.02em; line-height: 1.3;
    max-width: 620px; color: var(--bone);
  }
  .services-foot p .accent { color: var(--bronze-soft); }
  .btn-light {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    background: var(--bone); color: var(--ink);
    font-weight: 500; font-size: 14px; border-radius: 0;
    transition: background 0.25s, transform 0.25s; white-space: nowrap;
  }
  .btn-light:hover { background: var(--bronze-soft); color: var(--ink); transform: translateY(-1px); }

  /* ─── SECTORS ─── */
  .sectors { padding: clamp(80px, 11vw, 140px) 0; background: var(--bone); }
  .sectors-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
  .sectors-head h2 { font-size: clamp(40px, 5.2vw, 76px); margin: 16px 0 22px; }
  .sectors-head p { color: var(--muted); font-size: 17px; line-height: 1.55; }
  .tabs-bar { display: inline-flex; background: var(--bone-2); padding: 4px; border-radius: 0; border: 1px solid var(--hair); }
  .tab-bar-wrap { display: flex; justify-content: center; margin-bottom: 60px; }
  .tab-btn {
    padding: 12px 28px; border-radius: 0;
    font-size: 14px; font-weight: 500; color: var(--muted);
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .tab-btn.active { background: var(--ink); color: var(--bone); }
  .tab-btn .tag {
    font-size: 10px; background: var(--bronze); color: var(--bone);
    padding: 3px 8px; border-radius: 999px;
    letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500;
  }
  .tab-btn.active .tag { background: var(--bronze-soft); color: var(--ink); }
  .tab-content { display: none; }
  .tab-content.active { display: block; animation: fadeUp 0.5s ease; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  .sector-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
  .sector-visual {
    aspect-ratio: 4/5; border-radius: 2px; position: relative; overflow: hidden;
    background: var(--ink);
  }
  .sector-visual::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 25% 25%, rgba(196, 172, 122, 0.20), transparent 55%),
      radial-gradient(ellipse at 75% 80%, rgba(242, 238, 227, 0.05), transparent 50%);
  }
  .sector-visual-comm::before {
    background:
      radial-gradient(ellipse at 25% 25%, rgba(242, 238, 227, 0.07), transparent 55%),
      radial-gradient(ellipse at 75% 80%, rgba(196, 172, 122, 0.10), transparent 50%);
  }
  .sector-visual-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 36px; color: var(--bone); z-index: 2;
  }
  .sector-visual-tag { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.65; font-weight: 500; }
  .sector-visual-title {
    font-weight: 500;
    font-size: clamp(34px, 3.6vw, 50px);
    line-height: 1; letter-spacing: -0.025em;
  }
  .sector-visual-foot { display: flex; justify-content: space-between; align-items: flex-end; font-size: 13px; }
  .sector-visual-foot div { opacity: 0.75; }
  .sector-visual::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 60%; height: 1px; background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%);
  }
  .sector-info h3 {
    font-weight: 500; font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 24px;
  }
  .sector-info > p { color: var(--muted); font-size: 17px; line-height: 1.6; margin-bottom: 36px; max-width: 480px; }
  .sector-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin-bottom: 40px; }
  .sector-feat { border-top: 1px solid var(--hair); padding-top: 14px; }
  .sector-feat-num {
    font-weight: 500; font-size: 26px; color: var(--bronze);
    line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
  }
  .sector-feat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
  .sector-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
  .sector-tag {
    padding: 7px 14px; border: 1px solid var(--hair); border-radius: 999px;
    font-size: 12px; color: var(--ink-2); background: var(--bone-2);
  }

  /* ─── PORTFOLIO ─── */
  .portfolio { padding: clamp(80px, 11vw, 140px) 0; background: var(--warm-white); border-top: 1px solid var(--hair); }
  .portfolio-head {
    display: grid; grid-template-columns: 1fr auto; gap: 32px;
    margin-bottom: 60px; align-items: end;
  }
  .portfolio-head h2 { font-size: clamp(40px, 5.2vw, 76px); }
  .portfolio-head .eyebrow { display: block; margin-bottom: 12px; }
  .portfolio-filter { display: flex; gap: 6px; flex-wrap: wrap; }
  .filter-chip {
    padding: 9px 16px; border: 1px solid var(--hair); border-radius: 999px;
    font-size: 13px; font-weight: 500; color: var(--ink-2); transition: all 0.25s;
  }
  .filter-chip.active, .filter-chip:hover {
    background: var(--ink); color: var(--bone); border-color: var(--ink);
  }
  .case-grid {
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
  }
  .case {
    grid-column: span 6;
    position: relative; overflow: hidden;
    border-radius: 2px;
    background: var(--ink);
    cursor: pointer;
  }
  .case-1 { grid-column: span 7; }
  .case-2 { grid-column: span 5; }
  .case-3 { grid-column: span 5; }
  .case-4 { grid-column: span 7; }
  .case-5 { grid-column: span 12; }
  .case-img {
    aspect-ratio: 4/3; position: relative; overflow: hidden;
  }
  .case-1 .case-img, .case-4 .case-img { aspect-ratio: 16/10; }
  .case-5 .case-img { aspect-ratio: 21/9; }
  .case-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(20,19,15,0.75));
    z-index: 1; transition: opacity 0.4s;
  }
  .case-img-inner {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.8s ease;
  }
  .case:hover .case-img-inner { transform: scale(1.05); }
  .case-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px; color: var(--bone); z-index: 2;
  }
  .case-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
  .case-tag {
    background: rgba(242,238,227,0.18);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    padding: 5px 12px; border-radius: 999px;
    font-size: 11px; letter-spacing: 0.05em; font-weight: 500;
  }
  .case-name {
    font-weight: 500;
    font-size: clamp(18px, 1.8vw, 26px);
    line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 8px;
  }
  .case-meta { display: flex; gap: 18px; font-size: 13px; opacity: 0.85; flex-wrap: wrap; }
  .case-meta span:not(:last-child)::after { content: '·'; margin-left: 18px; opacity: 0.5; }
  .case-arrow {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px;
    background: rgba(242,238,227,0.18);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--bone); z-index: 3;
    transition: background 0.25s, transform 0.25s;
  }
  .case:hover .case-arrow { background: var(--bronze); transform: scale(1.1); }
  .case-arrow svg { width: 14px; height: 14px; }
  .case-photo-count {
    position: absolute; top: 24px; left: 24px; z-index: 3;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--bone);
    background: rgba(20, 19, 15, 0.5);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    padding: 7px 12px; border-radius: 999px;
    display: inline-flex; align-items: center; gap: 7px;
    font-weight: 500;
  }
  .case-photo-count svg { width: 12px; height: 12px; }
  .portfolio-foot { margin-top: 56px; display: flex; justify-content: center; }
  .portfolio-note {
    margin-top: 80px;
    padding: 32px 36px;
    border: 1px dashed var(--hair);
    border-radius: 4px;
    background: var(--bone);
    display: flex; gap: 20px; align-items: center;
    flex-wrap: wrap;
  }
  .portfolio-note-icon {
    width: 48px; height: 48px; border-radius: 50%; background: var(--bone-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--bronze); font-size: 24px; font-weight: 500; flex-shrink: 0;
  }
  .portfolio-note-text {
    flex: 1; min-width: 280px;
    font-size: 14px; color: var(--muted); line-height: 1.55;
  }
  .portfolio-note-text strong { color: var(--ink); font-weight: 500; }

  /* ─── PROCESS ─── */
  .process { padding: clamp(80px, 11vw, 140px) 0; background: var(--bone); border-top: 1px solid var(--hair); }
  .process-head { margin-bottom: 80px; max-width: 760px; }
  .process-head h2 { font-size: clamp(40px, 5.2vw, 76px); margin: 16px 0 22px; }
  .process-head p { color: var(--muted); font-size: 17px; max-width: 580px; line-height: 1.55; }
  .timeline { display: flex; flex-direction: column; border-top: 1px solid var(--hair); }
  .stage {
    display: grid; grid-template-columns: 90px 1fr 1.4fr 200px;
    gap: 40px; padding: 40px 0;
    border-bottom: 1px solid var(--hair);
    align-items: start;
    transition: background 0.3s, padding 0.3s, margin 0.3s;
  }
  .stage:hover { background: var(--bone-2); padding-left: 24px; padding-right: 24px; margin-left: -24px; margin-right: -24px; }
  .stage-num {
    font-weight: 500; font-size: clamp(28px, 3.2vw, 44px);
    color: var(--bronze); line-height: 0.9; letter-spacing: -0.03em;
  }
  .stage-title {
    font-weight: 500; font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.1; letter-spacing: -0.02em;
  }
  .stage-desc { color: var(--muted); font-size: 15px; line-height: 1.6; }
  .stage-deliv { border-left: 1px solid var(--hair); padding-left: 28px; font-size: 13px; }
  .stage-deliv-label {
    color: var(--muted); text-transform: uppercase;
    letter-spacing: 0.15em; font-size: 11px; margin-bottom: 10px; font-weight: 500;
  }
  .stage-deliv ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .stage-deliv li { color: var(--ink-2); line-height: 1.4; }

  /* ─── CALCULATOR ─── */
  .calc { padding: clamp(80px, 11vw, 140px) 0; background: var(--ink); color: var(--bone); }
  .calc .eyebrow { color: var(--bronze-soft); }
  .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .calc-side .eyebrow { display: block; margin-bottom: 18px; }
  .calc-side h2 { font-size: clamp(36px, 4.6vw, 64px); margin-bottom: 24px; color: var(--bone); }
  .calc-side h2 .accent { color: var(--bronze-soft); }
  .calc-side p { color: rgba(242,238,227,0.65); font-size: 16px; line-height: 1.6; max-width: 460px; }
  .calc-cred { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .calc-cred-item { border-top: 1px solid rgba(242,238,227,0.2); padding-top: 14px; }
  .calc-cred-num { font-weight: 500; font-size: clamp(20px, 2.2vw, 28px); color: var(--bronze-soft); line-height: 1; letter-spacing: -0.02em; }
  .calc-cred-label { font-size: 13px; color: rgba(242,238,227,0.65); margin-top: 6px; }
  .calc-form {
    background: rgba(242,238,227,0.04);
    border: 1px solid rgba(242,238,227,0.1);
    padding: 40px; border-radius: 4px;
  }
  .calc-row { margin-bottom: 28px; }
  .calc-row:last-child { margin-bottom: 0; }
  .calc-label {
    display: block; font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(242,238,227,0.6);
    margin-bottom: 14px; font-weight: 500;
  }
  .calc-opts { display: flex; gap: 8px; flex-wrap: wrap; }
  .calc-opt {
    padding: 11px 18px;
    border: 1px solid rgba(242,238,227,0.18);
    border-radius: 0;
    font-size: 13px; color: rgba(242,238,227,0.85);
    transition: all 0.25s; font-weight: 500;
  }
  .calc-opt:hover { border-color: var(--bronze-soft); }
  .calc-opt.active { background: var(--bronze); border-color: var(--bronze); color: var(--bone); }
  .calc-slider-wrap { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
  .calc-slider {
    flex: 1; -webkit-appearance: none; appearance: none;
    height: 2px; background: rgba(242,238,227,0.2);
    outline: none; border-radius: 2px;
  }
  .calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    background: var(--bronze-soft);
    border-radius: 50%; cursor: pointer;
    border: 3px solid var(--ink);
  }
  .calc-slider::-moz-range-thumb {
    width: 22px; height: 22px; background: var(--bronze-soft);
    border-radius: 50%; cursor: pointer; border: 3px solid var(--ink);
  }
  .calc-slider-val {
    font-weight: 500; font-size: 24px;
    color: var(--bone); min-width: 90px; text-align: right; letter-spacing: -0.02em;
  }
  .calc-slider-val em { color: var(--muted); font-size: 13px; font-style: normal; margin-left: 4px; font-weight: 400; }
  .calc-result {
    margin-top: 32px; padding-top: 28px;
    border-top: 1px solid rgba(242,238,227,0.15);
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  }
  .calc-result-label {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(242,238,227,0.5); margin-bottom: 8px; font-weight: 500;
  }
  .calc-result-val {
    font-weight: 500; font-size: clamp(28px, 3vw, 40px);
    line-height: 1; letter-spacing: -0.025em; color: var(--bone);
  }
  .calc-result-val small { font-size: 13px; color: var(--bronze-soft); margin-left: 4px; font-weight: 500; }
  .calc-cta {
    margin-top: 32px; width: 100%; padding: 18px;
    background: var(--bronze); color: var(--bone);
    border-radius: 0;
    font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
    transition: background 0.25s;
    display: flex; align-items: center; justify-content: center; gap: 12px;
  }
  .calc-cta:hover { background: var(--bronze-deep); }

  /* ─── LEAD MODAL ─── */
  .lead-modal-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(20,18,15,0.72);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .lead-modal-overlay.open { opacity: 1; pointer-events: all; }
  .lead-modal {
    background: var(--bone);
    padding: 44px;
    width: 100%; max-width: 480px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.35s ease;
    box-sizing: border-box;
  }
  .lead-modal-overlay.open .lead-modal { transform: translateY(0); }
  .lead-modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none;
    color: var(--muted); font-size: 22px;
    cursor: pointer; line-height: 1;
    transition: color 0.2s;
  }
  .lead-modal-close:hover { color: var(--ink); }
  .lead-modal-submit {
    width: 100%; margin-top: 4px;
    background: var(--bronze); color: var(--bone);
    border: none; font-family: var(--ff);
    font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
    text-transform: uppercase; padding: 18px;
    cursor: pointer; transition: background 0.25s, transform 0.25s;
  }
  .lead-modal-submit:hover { background: var(--bronze-deep); transform: translateY(-1px); }
  .lead-modal-agree {
    font-size: 11px; color: var(--muted);
    line-height: 1.5; margin-top: 14px; text-align: center;
  }
  .lead-modal-agree a { color: var(--ink); text-decoration: underline; }
  .lead-modal-success {
    text-align: center; display: none;
  }
  .lead-modal-success .success-icon {
    font-size: 40px; margin-bottom: 16px; color: var(--bronze);
  }
  .lead-modal-success h3 {
    font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
    color: var(--ink); margin-bottom: 8px;
  }
  .lead-modal-success p {
    font-size: 14px; color: var(--muted); line-height: 1.5;
  }
  @media (max-width: 520px) {
    .lead-modal { padding: 32px 24px; }
  }
  .calc-disclaimer { text-align: center; font-size: 12px; color: rgba(242,238,227,0.4); margin-top: 14px; }

  /* ─── ADVANTAGES ─── */
  .advantages { padding: clamp(80px, 11vw, 140px) 0; background: var(--bone); }
  .advantages-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: end; margin-bottom: 70px;
  }
  .advantages-head h2 { font-size: clamp(40px, 5.2vw, 76px); }
  .advantages-head p { color: var(--muted); font-size: 17px; line-height: 1.55; max-width: 460px; }
  .adv-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--hair); border: 1px solid var(--hair);
  }
  .adv {
    background: var(--bone); padding: 44px 36px;
    display: flex; flex-direction: column;
    transition: background 0.3s, color 0.3s;
    min-height: 320px;
  }
  .adv:hover { background: var(--ink); color: var(--bone); }
  .adv:hover .adv-num { color: var(--bronze-soft); }
  .adv:hover h3 { color: var(--bone); }
  .adv:hover .adv-desc { color: rgba(242,238,227,0.7); }
  .adv-num { font-weight: 500; font-size: 13px; color: var(--bronze); margin-bottom: 36px; letter-spacing: 0.1em; transition: color 0.3s; }
  .adv h3 { font-weight: 500; font-size: 24px; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--ink); transition: color 0.3s; }
  .adv-desc { color: var(--ink-2); font-size: 14px; line-height: 1.6; transition: color 0.3s; margin-top: auto; }

  /* ─── FAQ ─── */
  .faq { padding: clamp(80px, 11vw, 140px) 0; background: var(--bone); border-top: 1px solid var(--hair); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
  .faq-side h2 { font-size: clamp(36px, 4.5vw, 58px); margin: 16px 0 24px; }
  .faq-side p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 32px; max-width: 360px; }
  .faq-list { border-top: 1px solid var(--hair); }
  .faq-item { border-bottom: 1px solid var(--hair); padding: 24px 0; cursor: pointer; }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    font-weight: 500; font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.25; letter-spacing: -0.015em; color: var(--ink);
  }
  .faq-plus { width: 24px; height: 24px; position: relative; flex-shrink: 0; transition: transform 0.3s; }
  .faq-plus::before, .faq-plus::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    background: var(--bronze); transform: translate(-50%, -50%);
  }
  .faq-plus::before { width: 16px; height: 1.5px; }
  .faq-plus::after { width: 1.5px; height: 16px; transition: transform 0.3s; }
  .faq-item.open .faq-plus::after { transform: translate(-50%, -50%) scaleY(0); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease;
    color: var(--muted); font-size: 15px; line-height: 1.6;
  }
  .faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }

  /* ─── CTA ─── */
  .cta { padding: clamp(80px, 11vw, 140px) 0; background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
  .cta::before {
    content: ''; position: absolute;
    top: -50%; right: -10%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(139, 117, 72, 0.20), transparent 65%);
    pointer-events: none;
  }
  .cta .eyebrow { color: var(--bronze-soft); }
  .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; position: relative; align-items: start; }
  .cta-side .eyebrow { display: block; margin-bottom: 18px; }
  .cta-side h2 { font-size: clamp(40px, 5.2vw, 72px); line-height: 0.95; margin-bottom: 28px; color: var(--bone); }
  .cta-side h2 .accent { color: var(--bronze-soft); }
  .cta-side > p { color: rgba(242,238,227,0.65); font-size: 17px; line-height: 1.6; margin-bottom: 36px; max-width: 460px; }
  .cta-list { list-style: none; display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: rgba(242,238,227,0.85); }
  .cta-list li { display: flex; gap: 14px; align-items: baseline; }
  .cta-list li::before { content: ''; width: 7px; height: 7px; background: var(--bronze-soft); border-radius: 50%; flex-shrink: 0; transform: translateY(-2px); }
  .cta-form { background: var(--bone); color: var(--ink); padding: 44px; border-radius: 4px; }
  .cta-form h3 { font-weight: 500; font-size: clamp(20px, 2vw, 28px); line-height: 1; letter-spacing: -0.025em; margin-bottom: 8px; }
  .cta-form .sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
  .field { margin-bottom: 18px; }
  .field label {
    display: block; font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500;
  }
  .field input, .field textarea {
    width: 100%; background: var(--bone-2);
    border: 1px solid transparent;
    padding: 14px 16px;
    font-family: inherit; font-size: 15px; color: var(--ink);
    border-radius: 2px; outline: none;
    transition: border-color 0.25s, background 0.25s;
  }
  .field input:focus, .field textarea:focus { border-color: var(--bronze); background: var(--bone); }
  .field textarea { resize: vertical; min-height: 90px; }
  .checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); margin: 22px 0 22px; }
  .checkbox-row input { margin-top: 3px; accent-color: var(--bronze); }
  .checkbox-row a { color: var(--ink); text-decoration: underline; }
  .cta-form button {
    width: 100%; padding: 18px;
    background: var(--bronze); color: var(--bone);
    border-radius: 0;
    font-size: 14px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
    transition: background 0.25s, transform 0.25s;
  }
  .cta-form button:hover { background: var(--bronze-deep); transform: translateY(-1px); }

  /* ─── FOOTER ─── */
  .footer { background: #0A0908; color: rgba(242,238,227,0.7); padding: 80px 0 32px; font-size: 14px; }
  .footer-top {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 56px;
    border-bottom: 1px solid rgba(242,238,227,0.1);
  }
  .footer-logo img { height: 54px; width: auto; margin-bottom: 18px; object-fit: contain; }
  .footer-desc { color: rgba(242,238,227,0.55); max-width: 300px; line-height: 1.55; font-size: 14px; }
  .footer-col h4 {
    color: var(--bone); font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 500; margin-bottom: 22px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { transition: color 0.25s; }
  .footer-col a:hover { color: var(--bronze-soft); }
  .footer-contact { font-weight: 500; font-size: clamp(16px, 1.6vw, 20px); color: var(--bone); line-height: 1.2; margin-bottom: 8px; display: block; letter-spacing: -0.01em; }
  .footer-contact:hover { color: var(--bronze-soft); }
  .footer-socials { display: flex; gap: 10px; margin-top: 18px; }
  .footer-socials a {
    width: 38px; height: 38px;
    border: 1px solid rgba(242,238,227,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s;
    font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  }
  .footer-socials a:hover { background: var(--bronze); border-color: var(--bronze); color: var(--bone); }
  .footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; font-size: 12px; color: rgba(242,238,227,0.4); }
  .footer-bottom a { text-decoration: underline; }

  /* ─── LIGHTBOX ─── */
  .lightbox {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10, 9, 8, 0.96);
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
  }
  .lightbox.open { display: flex; opacity: 1; }
  .lb-close {
    position: absolute; top: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(242,238,227,0.1);
    color: var(--bone);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s;
    z-index: 10;
  }
  .lb-close:hover { background: var(--bronze); }
  .lb-close svg { width: 18px; height: 18px; }
  .lb-info {
    position: absolute; top: 24px; left: 24px;
    color: var(--bone); z-index: 10; max-width: 60%;
  }
  .lb-info-title { font-weight: 500; font-size: 20px; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 4px; }
  .lb-info-meta { font-size: 13px; color: rgba(242,238,227,0.65); }
  .lb-counter {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: var(--bone); font-size: 13px; letter-spacing: 0.1em; z-index: 10;
    background: rgba(242,238,227,0.08); padding: 8px 16px; border-radius: 999px;
    font-weight: 500;
  }
  .lb-stage {
    width: 90vw; height: 80vh;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .lb-blur-bg {
    position: absolute; inset: -40px;
    background-size: cover; background-position: center;
    filter: blur(28px) brightness(0.35) saturate(0.8);
    transform: scale(1.08);
    z-index: 0;
    transition: background-image 0.25s ease;
  }
  .lb-stage .lb-img { position: relative; z-index: 1; }
  .lb-stage::after { z-index: 2; }
  .lb-img {
    display: block;
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    background: transparent !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  }
  .lb-stage::after {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none; z-index: 2;
    background:
      linear-gradient(to bottom, rgba(10,9,8,0.18) 0%, transparent 12%, transparent 88%, rgba(10,9,8,0.18) 100%),
      linear-gradient(to right,  rgba(10,9,8,0.18) 0%, transparent 12%, transparent 88%, rgba(10,9,8,0.18) 100%);
  }
  .lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(242,238,227,0.1);
    color: var(--bone);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s;
    z-index: 10;
  }
  .lb-nav:hover { background: var(--bronze); }
  .lb-nav svg { width: 18px; height: 18px; }
  .lb-prev { left: 24px; }
  .lb-next { right: 24px; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .services-head { grid-template-columns: 1fr; }
    .journey { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .journey::before { display: none; }
    .journey-step { padding: 0 !important; border-right: none !important; }
    .sector-grid { grid-template-columns: 1fr; gap: 50px; }
    .calc-grid { grid-template-columns: 1fr; gap: 50px; }
    .cta-grid { grid-template-columns: 1fr; gap: 50px; }
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
    .test-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .case { grid-column: span 12 !important; }
    .stage { grid-template-columns: 70px 1fr; gap: 24px; }
    .stage-desc { grid-column: 2; }
    .stage-deliv { grid-column: 2; border-left: none; border-top: 1px solid var(--hair); padding-left: 0; padding-top: 18px; margin-top: 6px; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
    .manifesto-side { position: static; }
    .advantages-head { grid-template-columns: 1fr; gap: 24px; }
    .portfolio-head { grid-template-columns: 1fr; }
  }
  @media (max-width: 720px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .adv-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .sector-feats { grid-template-columns: 1fr 1fr; }
    .hero-actions .btn-ghost,
    .hero-actions .btn-primary { flex: 1; justify-content: center; }
    .calc-cred { grid-template-columns: 1fr 1fr; }
    .stage-num { font-size: clamp(22px, 5vw, 32px); }
    .logo img { height: 44px; }
    .lb-info { max-width: calc(100% - 100px); }
    .lb-info-title { font-size: 15px; }
    .lb-info-meta { font-size: 11px; }
    .lb-nav { width: 44px; height: 44px; }
    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }
  }

  /* ─── REVEAL ANIMATIONS ─── */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s cubic-bezier(.22,.68,0,1.1), transform 0.75s cubic-bezier(.22,.68,0,1.1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s cubic-bezier(.22,.68,0,1.1), transform 0.75s cubic-bezier(.22,.68,0,1.1); }
  .reveal-left.in { opacity: 1; transform: translateX(0); }
  .reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal-scale.in { opacity: 1; transform: scale(1); }

  /* ─── LIGHTBOX PHOTO TRANSITION ─── */
  .lb-img {
    display: block;
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    background: transparent !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .lb-img.fade-out { opacity: 0; transform: scale(0.97); }
  .lb-img.slide-left  { opacity: 0; transform: translateX(-40px) scale(0.97); }
  .lb-img.slide-right { opacity: 0; transform: translateX( 40px) scale(0.97); }
  .lb-stage::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 2;
    background:
      linear-gradient(to bottom, rgba(10,9,8,0.18) 0%, transparent 12%, transparent 88%, rgba(10,9,8,0.18) 100%),
      linear-gradient(to right,  rgba(10,9,8,0.18) 0%, transparent 12%, transparent 88%, rgba(10,9,8,0.18) 100%);
  }

  /* ─── HERO TOP NAV (overlaid on photo) ─── */
  .hero-topnav {
    position: relative; z-index: 3;
    padding: 28px 0;
    border-bottom: 1px solid rgba(242,238,227,0.18);
  }
  .hero-topnav .container {
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
  }
  .hero-topnav .logo img { height: 36px; width: auto; }
  .hero-topnav-links {
    display: flex; gap: 36px;
    flex: 1; justify-content: center;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
  }
  .hero-topnav-links a {
    color: var(--bone) !important; opacity: 0.88;
    transition: opacity 0.25s, color 0.25s;
    padding: 4px 0;
  }
  .hero-topnav-links a:hover { opacity: 1; color: var(--bronze-soft); }
  .hero-topnav-cta {
    display: inline-flex; align-items: center;
    padding: 11px 24px;
    border: 1px solid rgba(242,238,227,0.88);
    color: var(--bone) !important;
    font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
    background: transparent;
    transition: background 0.25s, border-color 0.25s;
    white-space: nowrap;
  }
  .hero-topnav-cta:hover { background: var(--bronze); border-color: var(--bronze); }

  /* ─── HERO STATS OVERLAY (bottom-right of photo) ─── */
  .hero-stats-overlay {
    position: absolute;
    bottom: 0; right: 0;
    z-index: 3;
    padding: 28px var(--gutter);
    display: flex; gap: 0; align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(20,18,15,0.65) 0%, transparent 100%);
    padding-top: 60px;
  }
  .hero-stat { text-align: left; width: 180px; flex: 0 0 180px; padding-left: 24px; }
  .hero-stat-num {
    font-weight: 500;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1; letter-spacing: -0.03em;
    color: var(--bone);
    margin-bottom: 6px;
  }
  .hero-stat-num sup { font-size: 55%; vertical-align: super; }
  .hero-stat-label {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(242,238,227,0.72); font-weight: 500; line-height: 1.4;
  }

  @media (max-width: 768px) {
    .hero-topnav-links { display: none; }
  }
  @media (max-width: 720px) {
    .hero-topnav .logo img { height: clamp(42px, 8vw, 64px); }
    .hero-stats-overlay { gap: 24px; padding: 20px var(--gutter); }
    .hero-stat-num { font-size: clamp(18px, 4vw, 24px); }
  }


  @media (max-width: 480px) {
    .hero-topnav-cta { display: none; }
    .hero-stats-overlay { gap: 16px; }
    .hero-stat-num { font-size: 20px; }
    .hero-stat-label { font-size: 9px; letter-spacing: 0.1em; }
    .cta-grid { gap: 32px; }
    .cta-form { padding: 28px 20px; }
    .case-info { padding: 20px; }
    .case-name { font-size: 16px; }
  }

  /* ═══ COMPREHENSIVE RESPONSIVE ═══ */

  /* Tablet wide 901–1100px */
  @media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; text-align: left !important; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
    .manifesto-side { position: static; }
    .services-head { grid-template-columns: 1fr; gap: 24px; }
    .journey { grid-template-columns: repeat(2,1fr); gap: 32px; }
    .journey::before { display: none; }
    .journey-step { padding: 0 !important; border-right: none !important; }
    .sector-grid { grid-template-columns: 1fr; gap: 40px; }
    .advantages-head { grid-template-columns: 1fr; gap: 24px; }
    .portfolio-head { grid-template-columns: 1fr; gap: 24px; }
    .adv-grid { grid-template-columns: repeat(2,1fr); }
    .test-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .calc-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stage { grid-template-columns: 80px 1fr 1fr; gap: 20px; }
    .stage-deliv { border-left: none; border-top: 1px solid var(--hair); padding-left: 0; padding-top: 14px; }
    .case { grid-column: span 12 !important; }
    .hero-topnav-links { gap: 22px; font-size: 12px; }
    .hero-topnav-cta { padding: 9px 16px; font-size: 11px; }
    .hero-stats-overlay { gap: 28px; }
  }

  /* Tablet 481–720px */
  @media (max-width: 720px) {
    .hero-topnav-links { display: none; }
    .hero > .container { padding-bottom: 110px; padding-top: 24px; }
    .hero-grid { text-align: left !important; }
    .hero-stats-overlay { gap: 20px; }
    .hero-sub { max-width: 100%; font-size: clamp(14px, 3.5vw, 18px); }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; justify-content: flex-start; padding-left: 24px; }
    .journey { grid-template-columns: 1fr; gap: 24px; }
    .adv-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .sector-feats { grid-template-columns: 1fr 1fr; }
    .calc-cred { grid-template-columns: 1fr 1fr; }
    .stage { grid-template-columns: 60px 1fr; gap: 16px; }
    .stage-desc, .stage-deliv { grid-column: 2; }
    .stage-num { font-size: clamp(24px,6vw,36px); }
    .cta-form { padding: 32px 24px; }
    .tabs-bar { width: 100%; }
    .tab-btn { flex: 1; justify-content: center; padding: 12px 14px; font-size: 12px; }
    .portfolio-filter { gap: 6px; }
    .filter-chip { font-size: 12px; padding: 7px 12px; }
    .process-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
    .step:not(:last-child)::after,
    .step:not(:last-child)::before { display: none; }
    .case-grid { gap: 16px; }
  }

  /* Mobile ≤480px */
  @media (max-width: 480px) {
    .hero-topnav .logo img { height: clamp(38px,12vw,54px); }
    .hero-topnav-cta { display: none; }
    .hero-stats-overlay { gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
    .hero-stat-num { font-size: clamp(18px,5.5vw,26px); }
    .hero-stat-label { font-size: 9px; letter-spacing: 0.08em; }
    .adv { padding: 28px 20px; min-height: auto; }
    .cta-form { padding: 24px 16px; }
    .calc-form { padding: 24px 16px; }
    .stage { grid-template-columns: 48px 1fr; gap: 12px; }
    .faq-q { font-size: 16px; }
    .process-grid { grid-template-columns: 1fr; gap: 20px; }
    .sector-tag { font-size: 11px; padding: 6px 10px; }
    .tabs-bar { flex-direction: column; }
    .tab-btn { width: 100%; justify-content: center; }
    .footer-top { padding-bottom: 36px; }
    .case-arrow { width: 36px; height: 36px; top: 14px; right: 14px; }
    .case-info { padding: 20px; }
    .case-name { font-size: 18px; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-nav { width: 40px; height: 40px; }
    .lb-info-title { font-size: 14px; }
  }