/* ============================================================
   NT EKSPERTAI — Luxury dark + gold design system
   ============================================================ */

:root {
  --bg: #0a0e17;
  --bg-2: #0d1220;
  --bg-3: #111828;
  --panel: #131b2e;
  --panel-2: #17203a;
  --line: rgba(201, 163, 92, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);
  --gold: #c9a35c;
  --gold-2: #e8cf9a;
  --gold-dim: rgba(201, 163, 92, 0.55);
  --text: #ece9e0;
  --muted: #9aa3b5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #0a0e17; }

/* custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #2a3550; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.container { width: min(1200px, 92%); margin: 0 auto; }
.container-wide { width: min(1400px, 94%); margin: 0 auto; }

/* ---------- language toggle ---------- */
html[data-lang="lt"] .en { display: none !important; }
html[data-lang="en"] .lt { display: none !important; }

/* ---------- scroll progress ---------- */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 1001;
}

/* ---------- grain overlay ---------- */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}
.nav.scrolled {
  height: 68px;
  background: rgba(10, 14, 23, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 20px 50px rgba(0,0,0,0.45);
}
.nav-inner {
  width: min(1400px, 94%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px; border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--gold);
  letter-spacing: 0.05em;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 3px; border: 1px solid rgba(201,163,92,0.35);
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name b {
  font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: 0.28em;
  color: var(--text); text-transform: uppercase;
}
.brand-name span {
  font-size: 9.5px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  padding: 8px 0; position: relative; transition: color 0.3s;
}
.nav-links a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a.nav-link:hover, .nav-links a.nav-link.active { color: var(--text); }
.nav-links a.nav-link:hover::after, .nav-links a.nav-link.active::after { width: 100%; }

/* dropdown */
.has-drop .drop {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; padding: 10px 0;
  background: rgba(15, 20, 34, 0.97); border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
}
.has-drop:hover .drop, .has-drop:focus-within .drop {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.drop a {
  display: block; padding: 11px 24px; font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); transition: all 0.25s;
}
.drop a:hover { color: var(--gold-2); background: rgba(201,163,92,0.06); padding-left: 30px; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: flex; border: 1px solid var(--line); overflow: hidden;
}
.lang-switch button {
  background: none; border: none; color: var(--muted); font-family: var(--sans);
  font-size: 11.5px; letter-spacing: 0.12em; padding: 7px 12px; cursor: pointer;
  transition: all 0.25s;
}
.lang-switch button.on { background: var(--gold); color: #0a0e17; font-weight: 500; }

.burger {
  display: none; background: none; border: none; cursor: pointer; z-index: 1002;
  width: 34px; height: 26px; position: relative;
}
.burger span {
  position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--gold);
  transition: all 0.35s var(--ease);
}
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 12px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(9, 12, 20, 0.98); z-index: 1001;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(26px, 6vw, 38px); color: var(--muted);
  padding: 8px 0; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-2); }
.mobile-menu .mm-sub { font-family: var(--sans); font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -6% 0; z-index: -2;
  background-size: cover; background-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(9,12,20,0.94) 0%, rgba(9,12,20,0.72) 45%, rgba(9,12,20,0.35) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 30%);
}
.hero-inner { width: min(1400px, 94%); margin: 0 auto; padding: 140px 0 100px; }
.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold);
}
.kicker::before { content: ""; width: 48px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  margin: 26px 0 28px; max-width: 15ch;
  color: var(--text);
}
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero p.lead {
  max-width: 54ch; color: var(--muted); font-size: 18px; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 44px; }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--gold-dim); font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: drip 2s infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* page hero (inner pages) */
.page-hero {
  position: relative; padding: 210px 0 110px; overflow: hidden;
}
.page-hero .hero-bg { animation: heroZoom 14s var(--ease) forwards; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(9,12,20,0.95) 0%, rgba(9,12,20,0.75) 50%, rgba(9,12,20,0.45) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 40%);
}
.page-hero h1 { font-size: clamp(38px, 5.5vw, 68px); margin-top: 24px; }
.page-hero p { max-width: 60ch; color: var(--muted); margin-top: 18px; font-size: 17.5px; }
.crumbs { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 26px; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 34px; font-family: var(--sans); font-size: 12.5px;
  letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer;
  border: 1px solid var(--gold); color: var(--gold-2); background: transparent;
  position: relative; overflow: hidden; transition: color 0.35s;
  z-index: 1;
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
  z-index: -1;
}
.btn:hover { color: #0a0e17; }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn.solid { background: var(--gold); color: #0a0e17; }
.btn.solid::before { background: var(--gold-2); }
.btn.solid:hover { color: #0a0e17; }
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.link-more {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-2); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
}
.link-more .arr { transition: transform 0.3s; }
.link-more:hover .arr { transform: translateX(6px); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 110px 0; position: relative; }
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center .kicker::before { display: none; }
.section-head h2 { font-size: clamp(32px, 4.2vw, 54px); margin-top: 18px; }
.section-head h2 em { font-style: italic; color: var(--gold-2); }
.section-head p.sub { color: var(--muted); max-width: 62ch; margin-top: 16px; }
.section-head.center p.sub { margin-inline: auto; }

.bg-alt { background: var(--bg-2); }
.bg-panel {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(201,163,92,0.06), transparent),
    var(--bg-2);
}

/* dividers */
.gold-rule { width: 64px; height: 1px; background: var(--gold); margin: 22px 0; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: all 1s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: all 1s var(--ease); }
.reveal-l.visible, .reveal-r.visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.48s; }
[data-delay="5"] { transition-delay: 0.6s; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
.stat {
  background: var(--bg); padding: 46px 30px; text-align: center;
  transition: background 0.4s;
}
.stat:hover { background: var(--bg-3); }
.stat .num {
  font-family: var(--serif); font-size: clamp(42px, 4.5vw, 64px); color: var(--gold-2);
  line-height: 1;
}
.stat .num sup { font-size: 0.5em; color: var(--gold); }
.stat .lbl { margin-top: 12px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scrollX 36s linear infinite; }
.marquee-track span {
  font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--gold-dim);
  display: flex; align-items: center; gap: 64px; white-space: nowrap;
}
.marquee-track span::after { content: "✦"; font-size: 12px; color: var(--gold); font-style: normal; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ============================================================
   CARDS — categories on home
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cat-card {
  position: relative; height: 480px; overflow: hidden; display: block;
  border: 1px solid var(--line-soft);
}
.cat-card .cc-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 1.1s var(--ease), filter 0.6s;
  filter: saturate(0.75) brightness(0.85);
}
.cat-card:hover .cc-img { transform: scale(1.07); filter: saturate(1) brightness(0.95); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,19,0.95) 8%, rgba(8,11,19,0.25) 55%, transparent);
}
.cat-card .cc-body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px; z-index: 2;
}
.cat-card .cc-num {
  font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 16px;
  letter-spacing: 0.1em;
}
.cat-card h3 { font-size: 28px; margin: 10px 0 8px; }
.cat-card p { color: var(--muted); font-size: 14.5px; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s var(--ease); }
.cat-card:hover p { max-height: 120px; opacity: 1; margin-bottom: 14px; }
.cat-card .cc-link { color: var(--gold-2); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; display: inline-flex; gap: 8px; align-items: center; }
.cat-card .cc-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); z-index: 3; }
.cat-card:hover .cc-line { transform: scaleX(1); }

/* ============================================================
   LISTING CARDS
   ============================================================ */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.listing {
  background: var(--panel); border: 1px solid var(--line-soft); overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
  display: flex; flex-direction: column;
}
.listing:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.listing .l-img { position: relative; height: 250px; overflow: hidden; }
.listing .l-img > div {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.9s var(--ease);
}
.listing:hover .l-img > div { transform: scale(1.08); }
.badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(10,14,23,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--gold-2);
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 13px;
}
.badge.sample { right: 16px; left: auto; color: var(--muted); border-color: var(--line-soft); }
.listing .l-body { padding: 26px 26px 24px; flex: 1; display: flex; flex-direction: column; }
.listing .l-price { font-family: var(--serif); font-size: 27px; color: var(--gold-2); }
.listing .l-price small { font-size: 15px; color: var(--muted); font-family: var(--sans); }
.listing h3 { font-size: 21px; margin: 8px 0 4px; font-family: var(--sans); font-weight: 400; }
.listing .l-loc { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 7px; }
.listing .l-loc svg { flex: none; }
.listing .l-meta {
  display: flex; gap: 22px; margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px; color: var(--muted);
}
.listing .l-meta b { color: var(--text); font-weight: 400; }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.chip {
  background: none; border: 1px solid var(--line-soft); color: var(--muted);
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 22px; cursor: pointer; transition: all 0.3s;
}
.chip:hover { border-color: var(--gold-dim); color: var(--text); }
.chip.on { background: var(--gold); border-color: var(--gold); color: #0a0e17; font-weight: 500; }

.notice {
  border: 1px solid var(--line); background: rgba(201,163,92,0.05);
  padding: 18px 24px; font-size: 14px; color: var(--muted); margin-bottom: 40px;
  display: flex; gap: 14px; align-items: flex-start;
}
.notice svg { flex: none; margin-top: 3px; }

/* ============================================================
   BROKER CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.broker {
  background: var(--panel); border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s;
  position: relative; overflow: hidden;
}
.broker:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 26px 60px rgba(0,0,0,0.5); }
.broker .b-photo {
  height: 340px; position: relative; overflow: hidden;
  background: radial-gradient(500px 300px at 50% 110%, rgba(201,163,92,0.22), rgba(19,27,46,0.4)), linear-gradient(to bottom, #1a2440, #131b2e);
  display: flex; align-items: flex-end; justify-content: center;
}
.broker .b-photo img {
  height: 105%; width: auto; object-fit: contain; object-position: bottom;
  filter: grayscale(35%) contrast(1.02);
  transition: filter 0.5s, transform 0.7s var(--ease);
}
.broker:hover .b-photo img { filter: grayscale(0%); transform: scale(1.03); }
.broker .b-body { padding: 26px 28px 28px; border-top: 1px solid var(--line); }
.broker h3 { font-size: 24px; }
.broker .b-role { color: var(--gold); font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; margin: 6px 0 14px; }
.broker .b-bio { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.broker .b-bio.clamped {
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.b-toggle {
  background: none; border: none; color: var(--gold-2); font-family: var(--sans);
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  padding: 10px 0 0; display: inline-flex; align-items: center; gap: 7px;
}
.b-toggle:hover { color: var(--gold); }
.broker .b-contacts { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.broker .b-contacts a {
  display: inline-flex; align-items: center; gap: 11px; color: var(--muted); font-size: 14.5px;
  transition: color 0.3s;
}
.broker .b-contacts a:hover { color: var(--gold-2); }
.broker .b-contacts svg { color: var(--gold); flex: none; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc {
  background: var(--panel); border: 1px solid var(--line-soft); padding: 44px 36px;
  position: relative; overflow: hidden; transition: all 0.45s var(--ease);
}
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.svc:hover { transform: translateY(-6px); border-color: var(--line); background: var(--panel-2); }
.svc:hover::before { transform: scaleX(1); }
.svc .s-num {
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold-dim);
  letter-spacing: 0.1em;
}
.svc .s-icon { margin: 22px 0 20px; color: var(--gold); }
.svc h3 { font-size: 25px; margin-bottom: 12px; }
.svc p { color: var(--muted); font-size: 15px; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { padding: 38px 30px; border-left: 1px solid var(--line-soft); position: relative; }
.step:first-child { border-left: none; }
.step .st-num {
  font-family: var(--serif); font-size: 58px; color: transparent;
  -webkit-text-stroke: 1px var(--gold-dim); line-height: 1;
}
.step h4 { font-size: 21px; margin: 18px 0 10px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   SPLIT / FEATURE BLOCKS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .sp-img {
  position: relative; height: 540px;
}
.split .sp-img .frame {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: saturate(0.85);
}
.split .sp-img::before {
  content: ""; position: absolute; inset: -22px 22px 22px -22px;
  border: 1px solid var(--line); z-index: -1;
}
.split .sp-img .tag {
  position: absolute; bottom: -26px; right: -18px;
  background: var(--gold); color: #0a0e17; padding: 22px 30px;
  font-family: var(--serif); font-size: 19px; font-style: italic; max-width: 260px; line-height: 1.35;
}
.split h2 { font-size: clamp(30px, 3.8vw, 46px); margin: 18px 0 22px; }
.split h2 em { color: var(--gold-2); font-style: italic; }
.split p { color: var(--muted); margin-bottom: 16px; }

.checks { margin: 26px 0 34px; display: grid; gap: 14px; }
.checks li { display: flex; gap: 16px; align-items: flex-start; color: var(--text); font-size: 15.5px; }
.checks li svg { color: var(--gold); flex: none; margin-top: 5px; }

/* ============================================================
   QUOTE / CTA BANDS
   ============================================================ */
.cta-band {
  position: relative; padding: 130px 0; text-align: center; overflow: hidden;
}
.cta-band .hero-bg { animation: none; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(9, 12, 20, 0.88);
}
.cta-band h2 { font-size: clamp(32px, 5vw, 58px); max-width: 22ch; margin: 20px auto 20px; }
.cta-band h2 em { color: var(--gold-2); font-style: italic; }
.cta-band p { color: var(--muted); max-width: 55ch; margin: 0 auto 40px; }

blockquote.pull {
  font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4; color: var(--text); max-width: 30ch; margin: 0 auto; text-align: center;
}
blockquote.pull::before { content: "“"; color: var(--gold); font-size: 1.6em; display: block; line-height: 0.4; margin-bottom: 20px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft);
  color: var(--text); font-family: var(--sans); font-weight: 300; font-size: 15.5px;
  padding: 15px 18px; outline: none; transition: border-color 0.3s, background 0.3s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a35c' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.field select option { background: var(--bg-3); color: var(--text); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold-dim); background: rgba(201,163,92,0.04);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }
.form-ok {
  display: none; border: 1px solid var(--gold-dim); background: rgba(201,163,92,0.08);
  color: var(--gold-2); padding: 18px 24px; margin-top: 22px; font-size: 15px;
}
.form-ok.show { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.c-card {
  display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line-soft);
}
.c-card .ci { color: var(--gold); flex: none; margin-top: 4px; }
.c-card h4 { font-size: 13px; font-family: var(--sans); font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.c-card a, .c-card p { font-size: 17px; color: var(--text); }
.c-card a:hover { color: var(--gold-2); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #070a12; border-top: 1px solid var(--line);
  padding: 80px 0 0; margin-top: 0;
}
.f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.f-brand p { color: var(--muted); font-size: 14.5px; margin-top: 18px; max-width: 34ch; }
.f-col h4 {
  font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.f-col ul { display: grid; gap: 12px; }
.f-col a { color: var(--muted); font-size: 14.5px; transition: color 0.3s, padding-left 0.3s; }
.f-col a:hover { color: var(--gold-2); padding-left: 6px; }
.f-col p { color: var(--muted); font-size: 14.5px; }
.f-bottom {
  border-top: 1px solid var(--line-soft); padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #5d6575;
}
.f-bottom a:hover { color: var(--gold-2); }

/* back to top */
#toTop {
  position: fixed; right: 26px; bottom: 26px; width: 48px; height: 48px;
  border: 1px solid var(--gold-dim); background: rgba(10,14,23,0.8); backdrop-filter: blur(8px);
  color: var(--gold-2); cursor: pointer; z-index: 900;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.4s var(--ease);
}
#toTop.show { opacity: 1; visibility: visible; transform: none; }
#toTop:hover { background: var(--gold); color: #0a0e17; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cat-grid, .listing-grid, .svc-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-left: none; border-top: 1px solid var(--line-soft); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .split .sp-img { height: 420px; order: -1; }
  .f-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 80px 0; }
  .cat-grid, .listing-grid, .svc-grid, .team-grid, .steps, .stats { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 120px; }
  .page-hero { padding: 160px 0 80px; }
  .cat-card { height: 400px; }
  .split .sp-img .tag { right: 0; }
}
