/* ============================================================
   FINGY — Финансовый консалтинг · «5th Avenue» edition
   Luxury editorial: ivory + black + champagne gold
   Bold uppercase sans headings · Didone serif accents
   Hero preserved 1:1 from original; everything else airy,
   image-led, NO divider lines between text.
   ============================================================ */

:root {
  /* dark hero / footer palette (unchanged for hero) */
  --bg:        #0d0f14;
  --bg-2:      #13161d;
  --bg-3:      #0a0c10;

  /* champagne gold */
  --gold:      #b08d4f;
  --gold-soft: #c4a572;
  --gold-lite: #d9c193;
  --gold-deep: #8f7038;

  --ink:       #16130d;        /* near-black warm */
  --ink-soft:  rgba(22,19,13,.66);
  --ink-mut:   rgba(22,19,13,.46);
  --ink-dim:   rgba(22,19,13,.28);

  --paper:     #ffffff;
  --cream:     #f7f3ec;        /* warm off-white */
  --cream-2:   #efe9df;

  --text:      #f2f1ec;        /* on dark */
  --text-soft: rgba(242, 241, 236, .68);
  --text-mut:  rgba(242, 241, 236, .46);
  --text-dim:  rgba(242, 241, 236, .30);

  --pos:       #5fb98a;
  --neg:       #cf6b54;

  --display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif; /* hero wordmark — unchanged */
  --serif:   'Playfair Display', 'Times New Roman', Georgia, serif;    /* Didone accents */
  --sans:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif; /* body — unchanged */
  --head:    'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif; /* uppercase headings */

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 80px);
  --nav-h: 88px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); background: var(--paper); color: var(--ink);
  font-size: 16px; line-height: 1.7; font-weight: 300;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }
::selection { background: var(--gold); color: #fff; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--head); font-size: 12px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep);
}
.section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.section.cream { background: var(--cream); }
.section.dark { background: var(--bg); color: var(--text); }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.wrap.wide { max-width: 1480px; }

/* section heading — bold uppercase sans (trump-style) */
.sec-head { text-align: center; max-width: 880px; margin: 0 auto; }
.sec-head .eyebrow { display: block; margin-bottom: 22px; }
.sec-head h2 {
  font-family: var(--head); font-weight: 700; font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.12; letter-spacing: .01em; text-transform: uppercase; color: var(--ink);
  text-wrap: balance;
}
.sec-head h2 em { font-style: normal; color: var(--gold-deep); }
.sec-head .lead { margin: 22px auto 0; max-width: 640px; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.dark .sec-head h2 { color: var(--text); }
.dark .sec-head .lead { color: var(--text-soft); }

/* one-line italic-serif kicker used under big headings (the "Visit Trump Tower | ..." line) */
.sub-line {
  text-align: center; margin: 26px auto 0; max-width: 760px;
  font-size: 16px; color: var(--ink-soft); font-weight: 300; letter-spacing: .01em;
}
.sub-line b { color: var(--ink); font-weight: 500; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  padding: 16px 34px; font-family: var(--head); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold-deep); background: transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.btn:hover { background: rgba(176,141,79,.1); }
.btn:hover svg { transform: translateX(3px); }
.btn-solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-solid:hover { background: #000; border-color: #000; transform: translateY(-2px); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; transform: translateY(-2px); }
.dark .btn { color: var(--gold-lite); border-color: var(--gold); }
.dark .btn:hover { background: rgba(176,141,79,.14); }
.dark .btn-gold { color: #16130d; }

.link-u {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--head);
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep);
}
.link-u svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.link-u:hover svg { transform: translateX(3px); }

/* ============================================================
   NAV  (light, over hero it floats on dark; turns ivory on scroll)
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px var(--gutter); transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease); }
.nav.scrolled { padding: 14px var(--gutter); background: rgba(255,255,255,.9); backdrop-filter: blur(16px) saturate(1.1); box-shadow: 0 1px 0 rgba(22,19,13,.08); }
.brand { display: flex; align-items: center; gap: 13px; color: #fff; }
.nav.scrolled .brand { color: var(--ink); }
.brand .mono { color: var(--gold-soft); display: grid; place-items: center; }
.brand .mono svg { width: 30px; height: 30px; display: block; }
.brand .bt { display: flex; flex-direction: column; line-height: 1; }
.brand .mark { font-family: var(--display); font-weight: 600; font-size: 25px; letter-spacing: .28em; text-transform: uppercase; padding-left: .28em; }
.brand .sub { font-family: var(--head); font-size: 8px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); margin-top: 6px; padding-left: .3em; }
.nav.scrolled .brand .sub { color: var(--gold-deep); }
.nav-menu { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); }
.nav-menu a { font-family: var(--head); font-size: 11.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.82); padding: 6px 0; position: relative; transition: color .2s var(--ease); }
.nav.scrolled .nav-menu a { color: var(--ink); }
.nav-menu a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--gold); transform: scaleX(0); transition: transform .25s var(--ease); }
.nav-menu a:hover, .nav-menu a.active { color: #fff; }
.nav.scrolled .nav-menu a:hover, .nav.scrolled .nav-menu a.active { color: var(--ink); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-cta { flex-shrink: 0; display: flex; align-items: center; gap: 0; }
.nav-cta .btn { padding: 12px 26px; color: #fff; border-color: rgba(255,255,255,.55); }
.nav-cta .btn:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.nav.scrolled .nav-cta .btn { color: #fff; background: var(--ink); border-color: var(--ink); }
.nav.scrolled .nav-cta .btn:hover { background: #000; }
.nav-lang-mobile { display: none; margin-left: auto; margin-right: 8px; }
.nav-burger { display: none; width: 44px; height: 44px; place-items: center; color: #fff; }
.nav.scrolled .nav-burger { color: var(--ink); }
.nav-burger svg { width: 24px; height: 24px; }

.drawer { position: fixed; inset: 0; z-index: 1100; background: rgba(10,12,16,.98); backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer a { font-family: var(--serif); font-size: 30px; color: var(--text); }
.drawer a:hover { color: var(--gold-lite); }
.drawer .close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--text); }
.drawer .close svg { width: 26px; height: 26px; }
.drawer .btn { margin-top: 8px; color: var(--gold-lite); border-color: var(--gold); }

/* ============================================================
   HERO  — preserved 1:1 from original
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(100% 80% at 50% 40%, transparent 30%, var(--bg) 92%), linear-gradient(180deg, transparent 60%, var(--bg) 100%); pointer-events: none; }
.hero-data { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-data .dnum { position: absolute; font-family: var(--sans); font-weight: 500; color: rgba(176,141,79,.18); white-space: nowrap; letter-spacing: .02em; animation: dataDrift var(--dur,18s) linear infinite; }
@keyframes dataDrift { from { transform: translateY(40px); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } to { transform: translateY(-120px); opacity: 0; } }

.hero-inner { position: relative; z-index: 3; width: 100%; max-width: 980px; margin: 0 auto; padding: 130px var(--gutter) 90px; text-align: center; }
.hero h1 { font-family: var(--display); font-weight: 600; font-size: clamp(40px, 7vw, 86px); line-height: 1.02; letter-spacing: .005em; margin-top: 28px; opacity: 0; transform: translateY(22px); }
.hero-sub { margin: 26px auto 0; max-width: 600px; font-size: 17px; line-height: 1.75; color: var(--text-soft); opacity: 0; transform: translateY(18px); }
.hero-cta { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; transform: translateY(18px); }
.hero-badges { margin-top: 48px; display: flex; gap: clamp(20px, 4vw, 50px); justify-content: center; flex-wrap: wrap; opacity: 0; transform: translateY(18px); }
.hero-badges .b { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-soft); }
.hero-badges .b svg { width: 18px; height: 18px; color: var(--gold-soft); flex-shrink: 0; }
.hero-badges .b b { color: var(--text); font-weight: 600; }
.hero-mono { color: var(--gold-soft); margin-bottom: 26px; opacity: 0; transform: translateY(20px); display: inline-grid; place-items: center; }
.hero-mono svg { width: 58px; height: 58px; }
.hero-word { font-family: var(--display); font-weight: 600; font-size: clamp(82px, 22vw, 320px); line-height: .82; letter-spacing: .14em; text-transform: uppercase; color: var(--text); padding-left: .14em; text-shadow: 0 12px 60px rgba(0,0,0,.55); opacity: 0; transform: translateY(26px); }
.hero-tag { margin-top: 26px; font-family: var(--head); font-size: 12px; font-weight: 500; letter-spacing: .4em; text-transform: uppercase; color: var(--text-soft); opacity: 0; transform: translateY(18px); }
.hero-loaded .hero-mono { animation: heroUp .9s var(--ease) .2s forwards; }
.hero-loaded .hero-word { animation: heroUp 1.1s var(--ease) .34s forwards; }
.hero-loaded .hero-tag { animation: heroUp .9s var(--ease) .56s forwards; }
.hero-loaded .hero-sub { animation: heroUp .9s var(--ease) .68s forwards; }
.hero-loaded .hero-cta { animation: heroUp .9s var(--ease) .82s forwards; }
.hero-loaded .hero-badges { animation: heroUp .9s var(--ease) .96s forwards; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

.hero-photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.hero-photo .fingy-picture--cover { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo .fingy-picture__img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; transform: scale(1.06); animation: heroZoom 22s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero.has-photo::after {
  background:
    linear-gradient(180deg, rgba(8,10,14,.82) 0%, rgba(8,10,14,.66) 38%, rgba(8,10,14,.74) 70%, rgba(8,10,14,.95) 100%),
    radial-gradient(105% 90% at 50% 42%, rgba(8,10,14,.35) 0%, rgba(8,10,14,.78) 100%);
}

/* ============================================================
   GRID  (RESIDE/WORK/SHOP equivalent — image + serif label)
   ============================================================ */
.gridcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); margin-top: clamp(48px, 6vw, 84px); }
.gcard { display: flex; flex-direction: column; }
.gcard .gc-img { position: relative; aspect-ratio: 1 / 1.04; overflow: hidden; background: var(--cream-2); }
.gcard .gc-img .fingy-picture__img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), opacity .55s var(--ease); }
.gcard:hover .gc-img .fingy-picture__img { transform: scale(1.05); }
.gcard .gc-num { position: absolute; top: 20px; left: 22px; font-family: var(--serif); font-size: 16px; letter-spacing: .2em; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.gcard .gc-body { text-align: center; padding-top: 26px; }
.gcard .gc-label { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 2.6vw, 36px); letter-spacing: .02em; text-transform: uppercase; color: var(--ink); }
.gcard .gc-sub { margin-top: 8px; font-size: 15px; color: var(--ink-soft); }
.gcard .gc-price { margin-top: 14px; font-family: var(--head); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.gcard .gc-list { list-style: none; margin: 18px auto 0; max-width: 300px; display: flex; flex-direction: column; gap: 11px; text-align: left; }
.gcard .gc-list li { display: grid; grid-template-columns: 16px 1fr; gap: 11px; align-items: start; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.gcard .gc-list li .ck { width: 15px; height: 15px; color: var(--gold); margin-top: 3px; }
.gcard .gc-list li b { color: var(--ink); font-weight: 600; }
.gcard .gc-cta { margin-top: 22px; align-self: center; }

/* ============================================================
   ABOUT  (editorial split: image + copy, no lines)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about-fig { position: relative; }
.about-fig .ph { aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream-2); }
.about-fig .ph img { width: 100%; height: 100%; object-fit: cover; }
.about-fig .tag { position: absolute; right: -18px; bottom: 28px; background: var(--ink); color: #fff; padding: 22px 28px; max-width: 230px; }
.about-fig .tag .n { font-family: var(--serif); font-weight: 600; font-size: 38px; color: var(--gold-lite); line-height: 1; }
.about-fig .tag .l { font-family: var(--head); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 10px; line-height: 1.5; }
.about-copy .eyebrow { display: block; margin-bottom: 20px; }
.about-copy h2 { font-family: var(--head); font-weight: 700; font-size: clamp(26px, 3.4vw, 46px); line-height: 1.16; text-transform: uppercase; letter-spacing: .01em; }
.about-copy h2 em { font-style: normal; color: var(--gold-deep); }
.about-copy p { margin-top: 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.85; max-width: 520px; }
.about-stats { display: flex; gap: clamp(28px, 4vw, 56px); margin-top: 38px; flex-wrap: wrap; }
.about-stats .s .n { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 3.6vw, 46px); color: var(--ink); line-height: 1; }
.about-stats .s .l { font-family: var(--head); font-size: 11px; color: var(--ink-mut); margin-top: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* ============================================================
   PROCESS  (numbered steps — NO connector line)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 48px); margin-top: clamp(48px, 6vw, 80px); }
.step { text-align: center; }
.step .pn { font-family: var(--serif); font-weight: 600; font-size: clamp(48px, 5vw, 72px); line-height: 1; color: var(--gold); opacity: .9; }
.step .ico { width: 56px; height: 56px; margin: 20px auto 22px; display: grid; place-items: center; color: var(--gold-deep); }
.step .ico svg { width: 30px; height: 30px; }
.step h4 { font-family: var(--serif); font-weight: 600; font-size: 23px; letter-spacing: .01em; }
.step p { margin-top: 12px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 240px; margin-left: auto; margin-right: auto; }
.process-cta { text-align: center; margin-top: clamp(44px, 5vw, 66px); }
.dark .step .pn { color: var(--gold-soft); }
.dark .step .ico { color: var(--gold-soft); }
.dark .step p { color: var(--text-soft); }

/* ============================================================
   TEAM  (clean cards, no lines)
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); margin-top: clamp(48px, 6vw, 80px); }
.tm { text-align: center; }
.tm .avatar { width: 132px; height: 132px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); border: 1px solid rgba(176,141,79,.4); color: var(--gold-deep); overflow: hidden; }
.tm .avatar .fingy-picture { width: 100%; height: 100%; }
.tm .avatar .fingy-picture__img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tm .avatar .ini { font-family: var(--serif); font-weight: 600; font-size: 44px; color: var(--gold-deep); }
.tm h4 { font-family: var(--serif); font-weight: 600; font-size: 26px; }
.tm .role { font-family: var(--head); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-top: 10px; }
.tm p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin-top: 16px; max-width: 320px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CASES CAROUSEL  (full-bleed, arrows on edges)
   ============================================================ */
.cases-carousel { position: relative; margin-top: clamp(44px, 5vw, 72px); width: 100%; }
.car-viewport {
  overflow-x: auto; overflow-y: hidden;
  width: 100%; max-width: 100%;
  scroll-snap-type: x proximity;
  scroll-padding-left: clamp(20px, 5vw, 80px);
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.car-viewport::-webkit-scrollbar { display: none; }
.car-track {
  display: flex; flex-wrap: nowrap; gap: clamp(14px, 1.6vw, 22px);
  width: max-content; box-sizing: border-box;
  padding: 6px clamp(20px, 5vw, 80px);
}
.ccard {
  flex: 0 0 clamp(280px, 30vw, 400px); width: clamp(280px, 30vw, 400px); scroll-snap-align: start;
  background: var(--paper); border: 1px solid rgba(22,19,13,.09);
  display: flex; flex-direction: column; overflow: hidden;
}
.cream .ccard { background: var(--paper); }
.ccard .cc-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.ccard .cc-img .fingy-picture__img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .55s var(--ease); }
.ccard:hover .cc-img .fingy-picture__img { transform: scale(1.06); }
.ccard .cc-tag { position: absolute; top: 16px; left: 16px; font-family: var(--head); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(22,19,13,.62); backdrop-filter: blur(4px); padding: 7px 13px; }
.ccard .cc-body { padding: clamp(22px, 2vw, 30px); display: flex; flex-direction: column; flex: 1; }
.ccard .cc-scale { font-family: var(--head); font-size: 11px; letter-spacing: .04em; color: var(--ink-mut); }
.ccard .cc-title { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 1.8vw, 25px); line-height: 1.2; margin-top: 12px; }
.ccard .cc-result { font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 4vw, 52px); line-height: 1; color: var(--gold-deep); margin-top: 20px; }
.ccard .cc-result small { font-size: .42em; color: var(--gold); }
.ccard .cc-rlbl { font-size: 13.5px; color: var(--ink-soft); margin-top: 9px; }
.ccard .cc-meta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.ccard .cc-meta .row { display: grid; grid-template-columns: 14px 1fr; gap: 11px; align-items: start; }
.ccard .cc-meta .row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; }
.ccard .cc-meta .row span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--ink); color: #fff; transition: background .2s var(--ease), opacity .2s var(--ease);
}
.car-arrow:hover { background: #000; }
.car-arrow.prev { left: 0; }
.car-arrow.next { right: 0; }
.car-arrow svg { width: 22px; height: 22px; }
.car-arrow[disabled] { opacity: .28; cursor: default; }
.car-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.car-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(22,19,13,.2); transition: all .25s var(--ease); }
.car-dots button.active { background: var(--gold); width: 26px; border-radius: 100px; }

/* ============================================================
   TESTIMONIALS  (clean — NO left border line)
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); margin-top: clamp(48px, 6vw, 80px); }
.tst { position: relative; text-align: left; }
.tst .quote-mark { font-family: var(--serif); font-weight: 700; font-size: 80px; line-height: .6; color: var(--gold); display: block; height: 40px; }
.tst .q { font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.5; color: var(--ink); margin-top: 18px; }
.tst .who { margin-top: 24px; }
.tst .who .nm { font-family: var(--head); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.tst .who .co { font-size: 13px; color: var(--ink-mut); margin-top: 5px; }

/* ============================================================
   STATS  (NO divider lines — just spaced numbers)
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 48px); margin-top: clamp(48px, 6vw, 76px); }
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-weight: 600; font-size: clamp(44px, 5vw, 70px); line-height: 1; color: var(--gold-deep); }
.stat .n small { font-size: .42em; color: var(--gold); }
.stat .l { margin-top: 16px; font-family: var(--head); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mut); line-height: 1.6; }
.dark .stat .n { color: var(--gold-lite); }
.dark .stat .l { color: var(--text-mut); }

/* full-bleed luxury image band */
.band { position: relative; min-height: clamp(340px, 46vw, 540px); display: grid; place-items: center; overflow: hidden; text-align: center; color: #fff; }
.band .fingy-picture--cover,
.band .band__media { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,9,6,.55), rgba(10,9,6,.7)); pointer-events: none; }
.band .band-in { position: relative; z-index: 2; max-width: 820px; padding: 0 var(--gutter); }
.band .eyebrow { color: var(--gold-lite); display: block; margin-bottom: 22px; }
.band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4.6vw, 60px); line-height: 1.12; text-wrap: balance; }
.band h2 em { font-style: italic; color: var(--gold-lite); }
.band .band-cta { margin-top: 34px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 80px); margin-top: clamp(48px, 6vw, 70px); align-items: start; }
.form-card { background: transparent; padding: 0; }
.form-card .fc-cap { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 26px; }
.field { position: relative; margin-bottom: 20px; }
.field .ic { position: absolute; left: 2px; top: 14px; width: 18px; height: 18px; color: var(--gold-deep); opacity: .8; pointer-events: none; }
.field input, .field textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(22,19,13,.22); color: var(--ink); font-size: 15.5px; padding: 12px 4px 12px 32px; transition: border-color .2s var(--ease); }
.field textarea { padding-left: 4px; min-height: 70px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field.invalid input, .field.invalid textarea { border-color: var(--neg); }
.field .err { display: none; font-size: 11.5px; color: var(--neg); margin-top: 6px; }
.field.invalid .err { display: block; }
.form-card .btn { width: 100%; margin-top: 12px; }
.form-note { font-family: var(--head); font-size: 10.5px; letter-spacing: .04em; color: var(--ink-dim); margin-top: 18px; line-height: 1.7; text-align: center; text-transform: uppercase; }
.form-note a { color: var(--gold-deep); }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success.show { display: block; animation: fade .4s var(--ease); }
.form-success .ok { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-deep); }
.form-success .ok svg { width: 30px; height: 30px; }
.form-success h3 { font-family: var(--serif); font-weight: 600; font-size: 30px; }
.form-success p { color: var(--ink-soft); margin-top: 12px; }
@keyframes fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.contact-side .ci { display: flex; gap: 18px; align-items: flex-start; padding: 16px 0; }
.contact-side .ci .ico { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(176,141,79,.4); color: var(--gold-deep); flex-shrink: 0; }
.contact-side .ci .ico svg { width: 20px; height: 20px; }
.contact-side .ci .k { font-family: var(--head); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mut); }
.contact-side .ci .v { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-top: 5px; }
.contact-side .ci a.v:hover { color: var(--gold-deep); }
.callout { margin-top: 28px; background: var(--cream); padding: 28px; }
.callout .ttl { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--ink); }
.callout .ttl svg { width: 24px; height: 24px; color: var(--gold-deep); }
.callout p { margin-top: 12px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   NEWS  (alternating full-bleed image / text rows)
   ============================================================ */
.news-rows { margin-top: clamp(48px, 6vw, 80px); }
.news-row { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.news-fig { position: relative; min-height: clamp(340px, 40vw, 540px); overflow: hidden; background: var(--cream-2); }
.news-fig .fingy-picture--cover { position: absolute; inset: 0; }
.news-fig .fingy-picture__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity .55s var(--ease); }
.news-row:hover .news-fig .fingy-picture__img { transform: scale(1.05); }
.news-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 92px) clamp(28px, 6vw, 96px); }
.news-row.reverse .news-fig { order: 2; }
.news-row.dark { background: var(--bg-3); color: var(--text); }
.news-kicker { font-family: var(--head); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.news-row.dark .news-kicker { color: var(--gold-soft); }
.news-body h3 { font-family: var(--head); font-weight: 700; font-size: clamp(24px, 3vw, 40px); line-height: 1.12; text-transform: uppercase; margin-top: 16px; letter-spacing: .005em; }
.news-rule { width: 54px; height: 2px; background: var(--gold); margin: 24px 0; }
.news-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.85; max-width: 470px; }
.news-row.dark .news-body p { color: var(--text-soft); }
.news-body .btn { margin-top: 32px; align-self: flex-start; }
.news-row.dark .news-body .btn { color: var(--gold-lite); border-color: var(--gold); }
.news-row.dark .news-body .btn:hover { background: rgba(176,141,79,.14); }
.news-all { text-align: center; margin-top: clamp(44px, 5vw, 70px); }

/* ============================================================
   EMAIL SIGN-UP  (trump-style)
   ============================================================ */
.signup { text-align: center; padding: clamp(64px, 8vw, 120px) 0; }
.signup .eyebrow { display: block; margin-bottom: 14px; }
.signup h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 5vw, 60px); letter-spacing: .04em; text-transform: uppercase; }
.signup-form { display: flex; gap: 18px; align-items: center; max-width: 640px; margin: 40px auto 0; flex-wrap: wrap; justify-content: center; }
.signup-form .fwrap { flex: 1; min-width: 240px; }
.signup-form input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(22,19,13,.3); padding: 14px 4px; font-size: 16px; color: var(--ink); }
.signup-form input::placeholder { color: var(--ink-dim); }
.signup-form input:focus { outline: none; border-color: var(--gold); }
.signup-form .btn { flex-shrink: 0; }
.signup-done { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold-deep); margin-top: 28px; display: none; }
.signup-done.show { display: block; }

/* social row */
.social-row { text-align: center; padding-bottom: clamp(20px, 4vw, 48px); }
.social-row .ttl { font-family: var(--head); font-weight: 700; font-size: clamp(20px, 2.4vw, 30px); letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }
.social-row .ic-row { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.social-row .ic-row a { width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); transition: color .2s var(--ease), transform .2s var(--ease); }
.social-row .ic-row a:hover { color: var(--gold-deep); transform: translateY(-2px); }
.social-row .ic-row svg { width: 22px; height: 22px; }

/* ============================================================
   FOOTER  (black, trump-style)
   ============================================================ */
.footer { background: var(--bg-3); color: var(--text-soft); padding: clamp(56px, 7vw, 96px) 0 40px; text-align: center; }
.footer .flinks { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 0; }
.footer .flinks a { font-family: var(--head); font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); padding: 0 22px; position: relative; transition: color .2s var(--ease); }
.footer .flinks a:not(:last-child)::after { content: "|"; position: absolute; right: -1px; color: var(--text-dim); }
.footer .flinks a:hover { color: var(--gold-lite); }
.footer .faddr { margin-top: 40px; font-family: var(--head); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mut); }
.footer .fcontact { margin-top: 40px; }
.footer .fcontact .btn { color: var(--gold-lite); border-color: var(--gold); padding: 16px 48px; }
.footer .fcontact .btn:hover { background: rgba(176,141,79,.12); }
.footer .fbrand { margin: 44px 0 0; }
.footer .fbrand .mark { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: .28em; text-transform: uppercase; padding-left: .28em; color: var(--text); }
.footer .fbrand .tagline { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 15px; margin-top: 8px; }
.footer .fbottom { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; }
.footer .fbottom a, .footer .fbottom span { font-family: var(--head); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.footer .fbottom a { position: relative; }
.footer .fbottom a:hover { color: var(--gold-lite); }
.f-credit { margin-top: 28px; }
.f-credit__link {
  font-family: var(--head); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.f-credit__link:hover { color: var(--gold); }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-data .dnum { animation: none !important; opacity: .14 !important; }
  .hero-photo .fingy-picture__img { animation: none !important; transform: none !important; }
  .fingy-picture__ph { filter: none !important; transform: none !important; opacity: 0 !important; visibility: hidden !important; }
  .fingy-picture__img { opacity: 1 !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.section.page-hero,
.section.detail-page {
  padding-top: calc(var(--nav-h) + clamp(20px, 3vw, 36px));
}
.page-hero { padding-bottom: 24px; }
.page-hero .sec-head { margin-bottom: 0; }
.page-list { padding-top: clamp(24px, 4vw, 40px); }
.cases-grid-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 28px; }
.page-case-card .ccard-link { display: block; color: inherit; text-decoration: none; }
.page-case-card:hover .cc-title { color: var(--gold-lite); }

.section.detail-page { padding-bottom: clamp(64px, 8vw, 96px); }
.detail-back { display: inline-flex; margin-bottom: 28px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.detail-back:hover { color: var(--ink); }
.detail-card { display: grid; grid-template-columns: minmax(min(100%, 280px), 420px) 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.detail-card--article { grid-template-columns: 1fr; max-width: 820px; }
.detail-media { position: relative; overflow: hidden; background: var(--cream-2); }
.detail-media .fingy-picture--cover { position: relative; min-height: 260px; width: 100%; }
.detail-media .fingy-picture__img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 260px; }
.detail-head { padding-bottom: clamp(20px, 3vw, 28px); border-bottom: 1px solid rgba(22,19,13,.08); }
.detail-head .eyebrow { display: block; margin-bottom: 16px; }
.detail-cta { margin-top: clamp(28px, 4vw, 40px); padding-top: clamp(24px, 3vw, 32px); border-top: 1px solid rgba(176,141,79,.22); }

/* ---------- service detail (news-row hero + partner-style deliverables) ---------- */
.service-detail { padding-bottom: 0; }
.service-detail > .wrap { padding-bottom: 0; }
.service-detail .detail-back { margin-bottom: clamp(20px, 3vw, 32px); }
.service-hero { margin-top: 0; }
.service-hero__fig .gc-num {
  position: absolute; top: 22px; left: 24px; z-index: 3;
  font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: .22em;
  color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.service-hero__body h1 {
  margin: 0;
  font-family: var(--head); font-weight: 700;
  font-size: clamp(24px, 3vw, 40px); line-height: 1.12;
  text-transform: uppercase; letter-spacing: .005em;
}
.service-hero__body p { max-width: 520px; }
.service-hero__price {
  margin-top: clamp(20px, 2.5vw, 28px);
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px); line-height: 1;
  color: var(--gold-deep);
}
.service-hero__body .btn { margin-top: 32px; align-self: flex-start; }
.service-hero__body .btn-gold:hover {
  background: var(--gold); border-color: var(--gold); color: #fff; transform: none;
}
.service-hero__body .btn-gold:hover svg { transform: none; }
.service-detail__content { margin: 0; }
.service-detail__content .service-deliverables {
  padding: clamp(72px, 9vw, 120px) 0;
  margin: 0;
}
.service-deliverables__head { margin-bottom: clamp(48px, 6vw, 72px); }
.service-items {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}
.service-item {
  display: grid; grid-template-columns: clamp(56px, 8vw, 88px) 1fr;
  gap: clamp(20px, 3vw, 36px); align-items: start;
  padding-bottom: clamp(36px, 4vw, 48px);
  border-bottom: 1px solid rgba(22,19,13,.08);
}
.service-item:last-child { padding-bottom: 0; border-bottom: none; }
.service-item__num {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(44px, 5vw, 70px); line-height: 1;
  color: var(--gold-deep);
}
.service-item__num small { font-size: .42em; color: var(--gold); }
.service-item__body h3 {
  margin: 0;
  font-family: var(--head); font-weight: 700;
  font-size: clamp(18px, 2.2vw, 28px); line-height: 1.15;
  text-transform: uppercase; letter-spacing: .005em;
}
.service-item__body .news-rule { margin: 18px 0 20px; }
.service-item__body .artifact-list { max-width: 620px; }
.service-item__note {
  margin: 0; max-width: 620px;
  color: var(--ink-soft); font-size: 16px; line-height: 1.85;
}
.service-detail > .wrap .service-cases {
  padding-bottom: clamp(64px, 8vw, 96px);
}

/* ---------- progressive images (LQIP blur-up) ---------- */
.fingy-picture { position: relative; overflow: hidden; background: var(--cream-2); isolation: isolate; }
.fingy-picture--cover { width: 100%; height: 100%; }
.fingy-picture--circle { border-radius: 50%; }
.fingy-picture__ph {
  position: absolute; inset: 0; z-index: 1;
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
  pointer-events: none;
}
.fingy-picture__ph--blur {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1) translateZ(0);
  filter: blur(14px) saturate(1.1) brightness(1.04);
  will-change: opacity, filter;
  backface-visibility: hidden;
}
.fingy-picture__ph--sharp {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12);
  filter: blur(28px) saturate(1.04);
  image-rendering: auto;
}
.fingy-picture__full { position: absolute; inset: 0; z-index: 2; display: block; width: 100%; height: 100%; margin: 0; }
.fingy-picture__img { display: block; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .65s var(--ease); }
.fingy-picture.is-loaded .fingy-picture__img { opacity: 1; }
.fingy-picture.is-loaded .fingy-picture__ph { opacity: 0; visibility: hidden; }
.fingy-picture--circle .fingy-picture__ph,
.fingy-picture--circle .fingy-picture__img { border-radius: 50%; }
.gc-img,
.cc-img,
.news-fig,
.detail-media { position: relative; }
.gc-img .fingy-picture--cover,
.cc-img .fingy-picture--cover { position: absolute; inset: 0; }
.detail-body h1 { margin: 0 0 16px; font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); line-height: 1.1; }
.detail-content { color: var(--ink-soft); line-height: 1.75; }
.detail-content p + p { margin-top: 14px; }
.detail-content strong { color: var(--ink); font-weight: 600; }
.artifact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.artifact-list li { display: grid; grid-template-columns: 14px 1fr; gap: 11px; align-items: start; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.artifact-list .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; }
.artifact-list strong { color: var(--ink); font-weight: 600; }
.detail-result { margin: 10px 0 6px; }

/* ---------- cases on service detail ---------- */
.service-cases {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid rgba(176,141,79,.22);
}
.service-cases__head { margin-bottom: clamp(20px, 3vw, 28px); }
.service-cases__head .eyebrow { display: block; margin-bottom: 12px; }
.service-cases__title {
  margin: 0; font-family: var(--serif); font-weight: 600;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.15;
}
.cases-carousel--inline { margin-top: clamp(24px, 3vw, 36px); }
.cases-carousel--inline .car-viewport { scroll-padding-left: 0; }
.cases-carousel--inline .car-track { padding-left: 0; padding-right: 0; }

/* ---------- linked case cards ---------- */
.ccard--linked { transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.ccard--linked:hover { border-color: rgba(176,141,79,.35); box-shadow: 0 12px 40px rgba(22,19,13,.06); }
.ccard-link { display: flex; flex-direction: column; flex: 1; color: inherit; text-decoration: none; height: 100%; }
.ccard--linked .cc-body { flex: 1; }
.cc-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 18px;
  font-family: var(--head); font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-deep); transition: gap .2s var(--ease), color .2s var(--ease);
}
.cc-more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.ccard--linked:hover .cc-more { color: var(--ink); gap: 12px; }
.ccard--linked:hover .cc-more svg { transform: translateX(3px); }

/* ---------- case detail (news-row hero + timeline steps) ---------- */
.case-detail { padding-bottom: 0; }
.case-detail > .wrap { padding-bottom: 0; }
.case-detail .detail-back { margin-bottom: clamp(20px, 3vw, 32px); }
.case-hero { margin-top: 0; }
.case-hero__fig .cc-tag {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  font-family: var(--head); font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: #fff; background: rgba(22,19,13,.62); backdrop-filter: blur(4px); padding: 7px 13px;
}
.case-hero__body h1 {
  margin: 0;
  font-family: var(--head); font-weight: 700;
  font-size: clamp(22px, 2.8vw, 36px); line-height: 1.12;
  text-transform: uppercase; letter-spacing: .005em;
}
.case-hero__result {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(40px, 5vw, 64px); line-height: 1;
  color: var(--gold-deep);
}
.case-hero__result small { font-size: .42em; color: var(--gold); }
.case-hero__rlbl {
  margin-top: 10px; max-width: 420px;
  font-family: var(--head); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-mut); line-height: 1.6;
}
.case-hero__facts {
  margin-top: clamp(22px, 3vw, 30px);
  display: flex; flex-direction: column; gap: 12px; max-width: 520px;
}
.case-hero__fact {
  display: grid; grid-template-columns: 14px 1fr; gap: 11px; align-items: start;
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
}
.case-hero__fact .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; }
.case-hero__service { margin-top: clamp(24px, 3vw, 32px); }
.case-hero__body .btn { margin-top: 24px; align-self: flex-start; }
.case-hero__body .btn-gold:hover {
  background: var(--gold); border-color: var(--gold); color: #fff; transform: none;
}
.case-detail__content { margin: 0; }
.case-detail__content .case-story {
  padding: clamp(72px, 9vw, 120px) 0;
  margin: 0;
}
.case-story__head { margin-bottom: clamp(48px, 6vw, 72px); }
.case-steps {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 0;
}
.case-step {
  display: grid; grid-template-columns: clamp(56px, 8vw, 88px) 1fr;
  gap: clamp(20px, 3vw, 36px); align-items: start;
  padding: clamp(32px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(22,19,13,.08);
}
.case-step:last-child { border-bottom: none; padding-bottom: 0; }
.case-step__num {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(44px, 5vw, 70px); line-height: 1;
  color: var(--gold-deep); opacity: .9;
}
.case-step__body h3 {
  margin: 0;
  font-family: var(--head); font-weight: 700;
  font-size: clamp(17px, 2vw, 24px); line-height: 1.15;
  text-transform: uppercase; letter-spacing: .005em;
}
.case-step__body .news-rule { margin: 16px 0 18px; }
.case-step__body .artifact-list { max-width: 620px; }
.case-step__note {
  margin: 0; max-width: 620px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 2vw, 20px); line-height: 1.65; color: var(--ink-soft);
}
.case-step--lead .case-step__num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(32px, 4vw, 48px); color: var(--gold); opacity: .75;
}
.case-step--result {
  padding-top: clamp(40px, 5vw, 52px);
  border-bottom: none;
  border-top: 2px solid rgba(176,141,79,.35);
  margin-top: clamp(8px, 1.5vw, 16px);
}
.case-step--result .case-step__num { color: var(--gold); }
.case-step--result .case-step__body h3 { color: var(--gold-deep); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-lang-mobile { display: inline-flex; }
  .detail-card { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; gap: 12px; }
  .service-item__num { font-size: clamp(36px, 8vw, 52px); }
  .case-step { grid-template-columns: 1fr; gap: 12px; }
  .case-step__num { font-size: clamp(36px, 8vw, 52px); }
  .nav-burger { display: grid; }
  .gridcards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; gap: 52px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-fig .tag { right: 16px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; gap: 48px; }
  .tst-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .news-row { grid-template-columns: 1fr; }
  .news-row.reverse .news-fig { order: -1; }
  .news-fig { min-height: 300px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 36px; }
  .about-fig .tag { position: static; max-width: none; margin-top: 0; }
  .car-arrow { width: 44px; height: 44px; }
  .signup-form .btn { width: 100%; }
}
