/* =========================================================
   RADOSTINA — Vision Architect  |  Pixel-precise rebuild
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --ivory:  #F4EFE7;   /* warm cream background */
  --steel:  #456070;   /* muted slate-blue accent */
  --gold:   #B8975A;   /* warm gold for highlights */
  --ink:    #191916;   /* near-black */
  --body:   #2E2C28;   /* body text */
  --muted:  #8A8276;   /* secondary text */
  --line:   rgba(25,25,22,.11);
  --white:  #FFFFFF;
  --black:  #0D0D0B;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --ease:   cubic-bezier(.16, 1, .3, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { background: var(--ivory); color: var(--ink); font-family: var(--sans); overflow-x: hidden; line-height: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
em { font-style: italic; }
button { cursor: pointer; border: none; background: none; }

/* ── Color helpers ─────────────────────────────────────── */
.clr-steel { color: var(--steel); }
.clr-gold  { color: var(--gold);  }

/* ── Kickers ───────────────────────────────────────────── */
.kicker {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 20px;
}
/* "— Section Name" variant */
.kicker-dash {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.kicker-dash::before { content: '—'; font-style: normal; letter-spacing: 0; }
.kicker-light { color: rgba(255,255,255,.5); }
.kicker-gold  { color: var(--gold); }

/* ── Reveal animations ─────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.rv.in { opacity: 1; transform: none; }

/* Also handle special hero classes */
.ru  { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease) .15s, transform .9s var(--ease) .15s; }
.ru2 { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease) .38s, transform .9s var(--ease) .38s; }
.ru3 { opacity: 0; transition: opacity .9s var(--ease) .58s; }
.hero-loaded .ru, .hero-loaded .ru2, .hero-loaded .ru3 { opacity: 1; transform: none; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-ivory {
  background: rgba(244,239,231,.92);
  color: var(--ink);
}
.btn-ivory:hover { background: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: var(--white); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #2e2d29; transform: translateY(-2px); }

.view-all {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: opacity .2s;
  align-self: flex-end;
}
.view-all:hover { opacity: .55; }

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  padding: 28px 5.5vw;
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--white);
  transition: padding .45s var(--ease), background .45s, color .45s, box-shadow .45s;
}
.hdr.solid {
  padding: 18px 5.5vw;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

/* Wordmark — 2 lines: Radostina / Ruseva */
.hdr-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.hdr-logo span:first-child {
  font-size: 22px;
  font-weight: 600;
}
.hdr-logo span:last-child {
  font-size: 22px;
  font-weight: 600;
  opacity: 1;
  letter-spacing: .01em;
}

/* Nav — bold, fully opaque */
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 52px;
  margin: 0 auto;
}
.hdr-nav a {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity .2s;
  text-shadow: 0 1px 10px rgba(0,0,0,.5), 0 0 24px rgba(0,0,0,.2);
}
.hdr-nav a:hover { opacity: .65; }
.hdr.solid .hdr-nav a { text-shadow: none; }

/* CTA — inverted: filled white on dark hero, filled dark when scrolled */
.hdr-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 13px 24px;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  flex-shrink: 0;
}
.hdr-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
}
.hdr.solid .hdr-cta {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.hdr.solid .hdr-cta:hover {
  background: #2e2d29;
  transform: translateY(-1px);
}

/* Hamburger — bigger lines, wider icon */
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 6px;
  color: inherit;
  margin-left: auto;
}
.hdr-burger span {
  display: block;
  width: 32px;
  height: 1.5px;
  background: currentColor;
  transition: transform .38s var(--ease), opacity .25s;
}
.hdr-burger.open span:first-child { transform: translateY(8.5px) rotate(45deg); }
.hdr-burger.open span:last-child  { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile overlay — bigger nav links */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mob-overlay.open { opacity: 1; pointer-events: auto; }
.mob-overlay a {
  font-family: var(--serif);
  font-size: clamp(46px, 8.5vw, 82px);
  color: var(--white);
  letter-spacing: -.02em;
  transition: color .2s;
}
.mob-overlay a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

/* ── Intro video ────────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;          /* sits above slider */
  opacity: 1;
  transition: opacity 1.6s ease-in-out;
}
.hero-video.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ── Slider ─────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  /* DO NOT use `background` shorthand here — it would override inline background-image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.8s ease-in-out,
    transform 8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.1);
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.08);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.75);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow--prev { left: 3.5vw; }
.hero-arrow--next { right: 3.5vw; }

/* Dash indicators — bottom right */
.hero-dots {
  position: absolute;
  bottom: 38px;
  right: 5.5vw;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .5s ease, width .4s ease;
  border-radius: 0;
}

.hero-dot.active {
  background: rgba(255,255,255,.92);
  width: 44px;
}

.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,10,8,.10) 0%,
    rgba(12,10,8,.38) 40%,
    rgba(12,10,8,.56) 75%,
    rgba(12,10,8,.64) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  padding: 0 5.5vw;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(50px, 7.7vw, 112px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-bottom: 50px;
  color: #fff;
}
/* Second line — italic, softer */
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.68);
  display: block;
}

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

.hero-tags {
  font-family: var(--sans);
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff;
  line-height: 2;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
  text-align: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.65), transparent);
  animation: scrollFade 2s ease-in-out infinite;
}
@keyframes scrollFade { 0%,100% { opacity:.4; } 50% { opacity:1; } }

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 92vh;
  background: var(--ivory);
}

.about-img {
  overflow: hidden;
  background: #e8e2d8;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .9s var(--ease);
}
.about-img:hover img { transform: scale(1.04); }

.about-txt {
  padding: 90px 7vw 80px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 32px;
}

.about-p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--body);
  margin-bottom: 16px;
}

.about-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-style: italic;
  color: var(--body);
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 32px;
}

.about-rule {
  width: 52px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 22px;
}

.about-cities {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.svc {
  padding: 110px 5.5vw 100px;
  background: var(--ivory);
}

.svc-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.svc-h2 {
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .94;
  margin-top: 6px;
}

.svc-sub {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 420px;
  padding-bottom: 8px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  background: var(--white);
  border: 1px solid rgba(25,25,22,.13);
  padding: 44px 36px 44px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .38s var(--ease), transform .38s var(--ease);
  cursor: default;
}
.svc-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.07);
  transform: translateY(-4px);
}
.svc-card--active { border-color: var(--steel); }

/* Icon — left-aligned, generous space below */
.svc-ico {
  width: 34px;
  height: 34px;
  color: var(--steel);
  margin-bottom: 40px;
  flex-shrink: 0;
}
.svc-ico svg { width: 100%; height: 100%; }

/* Title — larger serif */
.svc-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}

/* Divider line */
.svc-line {
  width: 100%;
  height: 1px;
  background: rgba(25,25,22,.10);
  margin-bottom: 24px;
}

/* List items — larger, darker */
.svc-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.svc-card li {
  font-size: 16px;
  line-height: 1.35;
  color: var(--body);
  font-weight: 400;
}

/* Arrow hidden by default, shown on hover */
.svc-arr {
  display: block;
  text-align: right;
  font-size: 18px;
  color: var(--steel);
  margin-top: 28px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .28s, transform .3s var(--ease);
}
.svc-card:hover .svc-arr { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════ */
.port {
  padding: 100px 5.5vw;
  background: var(--ivory);
}

.port-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 46px;
  gap: 24px;
}

.port-h2 {
  font-family: var(--serif);
  font-size: clamp(72px, 12vw, 150px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.05em;
  margin-top: 10px;
}

.port-row {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}
.port-row--split { grid-template-columns: 1.28fr 1fr; }
.port-row--half  { grid-template-columns: 1fr 1fr; }
.port-row--full  { grid-template-columns: 1fr; }

.port-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.port-card--wide { min-height: 520px; }

.port-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--img) center / cover no-repeat;
  z-index: -2;
  transition: transform .75s var(--ease);
}
.port-card:hover::before { transform: scale(1.06); }

.port-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,4,.82) 0%, rgba(6,6,4,.14) 52%, transparent 100%);
  z-index: -1;
}

.port-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  color: var(--white);
  transform: translateY(4px);
  transition: transform .4s var(--ease);
}
.port-card:hover .port-info { transform: none; }

.port-cat {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}

.port-info h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.port-link {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  opacity: 0;
  display: inline-block;
  transition: opacity .3s;
}
.port-card:hover .port-link { opacity: 1; }

/* ═══════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════ */
.proc {
  padding: 110px 5.5vw 100px;
  background:
    linear-gradient(rgba(8,14,18,.76), rgba(8,14,18,.80)),
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=2000&q=90')
    center / cover fixed;
  color: var(--white);
}

.proc-h2 {
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 118px);
  font-weight: 300;
  line-height: .93;
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: 80px;
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.proc-step { padding-right: 0; }

.proc-top {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.proc-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.proc-connector {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin-left: 14px;
}

.proc-step h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 10px;
}

.proc-step p {
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255,255,255,.52);
  padding-right: 16px;
}

/* ═══════════════════════════════════════════════
   ATMOSPHERE
   ═══════════════════════════════════════════════ */
.atm {
  background: var(--ivory);
  padding: 100px 5.5vw 0;
}

.atm-h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.03em;
  max-width: 820px;
  margin-bottom: 60px;
}

/* Infinite marquee strip */
.atm-marquee {
  overflow: hidden;
  width: 100%;
  padding-bottom: 80px;
}

.atm-strip {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: atm-scroll 40s linear infinite;
}
.atm-strip:hover { animation-play-state: paused; }

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

.atm-slide {
  width: 420px;
  height: 560px;
  flex-shrink: 0;
  background: center / cover no-repeat;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   BELIEF / QUOTE
   ═══════════════════════════════════════════════ */
.belief {
  background: var(--black);
  padding: 130px 5.5vw;
  text-align: center;
  color: var(--white);
}

.belief-q {
  font-family: var(--serif);
  font-size: clamp(24px, 3.6vw, 50px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.32;
  letter-spacing: -.02em;
  max-width: 1040px;
  margin: 0 auto 30px;
}

.belief-cite {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  display: block;
}

/* ═══════════════════════════════════════════════
   SHOWREEL
   ═══════════════════════════════════════════════ */
.reel { background: var(--ivory); }

.reel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 72px 5.5vw 40px;
}

.reel-h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1;
}

.reel-dur {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 6px; /* align to baseline of heading */
}

/* Full-bleed: no side padding, edge-to-edge */
.reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  display: block;
}

.reel-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=2400&q=90')
    center / cover no-repeat;
  transition: transform .8s var(--ease);
}
.reel-frame:hover .reel-bg { transform: scale(1.03); }

.reel-dim {
  position: absolute;
  inset: 0;
  /* subtle darkening at bottom only for caption legibility */
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(6,6,4,.50) 100%
  );
}

/* Large white filled circle — centered */
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,.93);
  color: var(--ink);
  display: grid;
  place-items: center;
  padding-left: 5px; /* optical centering of play triangle */
  transition: transform .35s var(--ease), background .25s;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.reel-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}

/* Caption: bottom-left, inside the video frame */
.reel-caption {
  position: absolute;
  bottom: 44px;
  left: 5.5vw;
  color: var(--white);
  z-index: 2;
  max-width: 560px;
}

.reel-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  margin-bottom: 10px;
}

.reel-sub {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -.02em;
}

/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.stats {
  padding: 80px 5.5vw 72px;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.stats-nums {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  gap: 0;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  align-items: start;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(56px, 7.5vw, 108px);
  font-weight: 300;
  color: var(--steel);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  white-space: nowrap;
}
.stat span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel);
  opacity: .75;
}

.stats-countries {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steel);
  opacity: .75;
  display: flex;
  align-items: center;
  gap: 20px;
}
.stats-dot { color: var(--steel); font-size: 8px; }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.cta {
  padding: 100px 5.5vw 120px;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 9.5vw, 130px);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.05em;
  margin-bottom: 64px;
  max-width: 800px;
}

.cta-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}

.cta-links { display: flex; flex-direction: column; }

.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  transition: padding-left .3s var(--ease);
}
.cta-row:first-child { border-top: 1px solid var(--line); }
.cta-row:hover { padding-left: 6px; }

.cta-lbl {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 90px;
}

.cta-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  text-align: right;
}

.cta-note {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.ftr {
  background: #101010;
  color: rgba(255,255,255,.38);
  padding: 28px 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ftr-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(255,255,255,.6);
}
.ftr-nav {
  display: flex;
  gap: 28px;
}
.ftr-nav a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .2s;
}
.ftr-nav a:hover { color: rgba(255,255,255,.75); }
.ftr-copy { font-size: 9px; letter-spacing: .1em; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .proc-steps { grid-template-columns: 1fr 1fr 1fr; }
  .port-row--split { grid-template-columns: 1fr 1fr; }
  .svc-head { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 900px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 55vw; }
  .about-txt { padding: 60px 6vw; }

  .port-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .port-row--split, .port-row--half { grid-template-columns: 1fr; }

  .cta-body { grid-template-columns: 1fr; }

  .atm-slide { width: 320px; height: 420px; }

  .stats-nums { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .stat strong { font-size: clamp(48px, 10vw, 72px); }
}

@media (max-width: 640px) {
  .svc { padding: 70px 5.5vw; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc { padding: 80px 5.5vw 70px; }
  .proc-steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .atm-slide { width: 260px; height: 340px; }
  .atm { padding-bottom: 0; }
  .reel-frame { aspect-ratio: 4/3; }
  .ftr { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ftr-nav { flex-wrap: wrap; gap: 12px 20px; }
  .cta-h2 { font-size: clamp(52px, 13vw, 80px); }
}
