/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

:root {
  --bg:        #0a0e15;
  --bg-2:      #10151f;
  --bg-3:      #19212f;
  --cream:     #f2efe7;
  --cream-2:   #c7cbd4;
  --cream-3:   #7d8494;
  --accent:    #3fa66b;
  --accent-2:  #2c7a4e;
  --accent-soft: rgba(63,166,107,0.16);
  --gold:      #c9a24b;
  --gold-soft: rgba(201,162,75,0.18);
  --line:      rgba(242,239,231,0.12);
  --line-strong: rgba(242,239,231,0.22);

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
em { font-style: italic; color: var(--accent); font-weight: 400; }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.kicker {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); display: inline-flex;
  align-items: center; gap: .5rem;
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.section { position: relative; padding-block: clamp(4rem, 9vw, 8rem); }
.section-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: .9rem; }
.section-head p { color: var(--cream-2); margin-top: 1rem; font-size: 1.05rem; }

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200; background: rgba(242,239,231,0.06); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear;
}

/* =============================================================
   4. Buttons & links
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s, color .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary { background: var(--accent); color: #04140b; }
.btn-primary:hover { box-shadow: 0 22px 50px rgba(63,166,107,0.3), 0 10px 22px rgba(0,0,0,0.3); background: #49bd7c; }
.btn-ghost { background: transparent; border: 1px solid var(--line-strong); color: var(--cream); }
.btn-ghost:hover { border-color: var(--accent); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }

.link-underline {
  position: relative; padding-bottom: 2px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: currentColor; transition: right .4s var(--ease-out);
}
.link-underline:hover::after { right: 0; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .3s var(--ease-out);
  padding-block: 1.3rem;
}
.nav.is-scrolled {
  background: rgba(10,14,21,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .85rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; flex-direction: column; gap: .15rem; color: var(--cream); }
.wordmark {
  font-family: var(--serif); font-weight: 500; font-size: 1.28rem;
  letter-spacing: 0.01em; color: var(--cream);
}
.wordmark em { font-style: italic; font-weight: 400; color: var(--accent); }
.wordmark-sub {
  display: block; font-family: var(--mono); font-size: .6rem; letter-spacing: .16em;
  color: var(--cream-3); text-transform: uppercase;
}

.nav-links { display: none; align-items: center; gap: 2.1rem; font-size: .92rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a { position: relative; color: var(--cream-2); transition: color .3s; padding-bottom: 4px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--accent); transition: right .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--cream); }
.nav-links a.is-active::after { right: 0; }

section[id] { scroll-margin-top: 84px; }
.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong);
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger .bars { width: 16px; height: 10px; position: relative; }
.nav-burger .bars span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--cream); transition: transform .3s, opacity .3s; }
.nav-burger .bars span:nth-child(1) { top: 0; }
.nav-burger .bars span:nth-child(2) { bottom: 0; }
.nav-mobile[aria-hidden="false"] ~ .nav .nav-burger .bars span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav-mobile[aria-hidden="false"] ~ .nav .nav-burger .bars span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg-2); color: var(--cream);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile-list a { font-family: var(--serif); font-size: 2.1rem; }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: var(--gutter);
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-size: 1.4rem;
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 7rem; padding-bottom: 4rem; overflow: hidden; isolation: isolate;
}
.hero-topo {
  position: absolute; inset: -10%; z-index: -3; opacity: .38;
  animation: topoDrift 60s linear infinite;
}
@keyframes topoDrift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-1.5%,1%,0) scale(1.03); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
.hero::before {
  content: ""; position: absolute; inset: -20%; z-index: -2;
  background:
    radial-gradient(50% 45% at var(--mesh-x) var(--mesh-y), rgba(63,166,107,.30), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(201,162,75,.14), rgba(63,166,107,.08), rgba(201,162,75,.14));
  filter: blur(90px) saturate(120%);
  opacity: .8;
  animation: meshShift 24s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 30%; --mesh-y: 30%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 68%; --mesh-y: 55%; }
  100% { --mesh-angle: 360deg; --mesh-x: 30%; --mesh-y: 30%; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,14,21,0) 0%, rgba(10,14,21,.5) 78%, var(--bg) 100%);
}
.hero-inner { position: relative; max-width: 880px; }
.hero-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.6rem; }
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  text-wrap: balance;
  max-width: 16ch;
}
.hero-sub {
  margin-top: 1.6rem; max-width: 46ch; font-size: 1.1rem; color: var(--cream-2);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 3.6rem;
  padding-top: 2.2rem; border-top: 1px solid var(--line);
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); }
.hero-trust-item span { font-size: .82rem; color: var(--cream-3); max-width: 20ch; margin-top: .2rem; }

/* =============================================================
   7. Reveal / reusable
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

.grain {
  position: fixed; inset: 0; z-index: 1; opacity: .045; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =============================================================
   8. About teaser (home)
   ============================================================= */
.about-teaser { }
.about-teaser-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 960px) { .about-teaser-grid { grid-template-columns: 0.75fr 1fr; gap: 4.5rem; } }
.portrait-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 4 / 5; max-width: 380px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%;
  filter: saturate(1.05) contrast(1.03);
  transition: transform .9s var(--ease-soft);
}
.portrait-frame:hover img { transform: scale(1.06); }
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,14,21,.75) 100%);
}
.portrait-caption {
  position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1rem; z-index: 2;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; color: var(--cream-2);
}
.about-teaser-copy p { color: var(--cream-2); margin-top: 1.1rem; max-width: 54ch; }
.about-teaser-copy .lede { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-top: 1rem; }

/* =============================================================
   9. Services showcase (horizontal scroll carousel)
   ============================================================= */
.showcase { }
.showcase-scroller { position: relative; }
.showcase-track {
  display: flex; gap: 1.4rem;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: .4rem;
  padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1);
  scroll-padding-inline: var(--gutter);
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track .svc-card { flex: 0 0 min(78vw, 360px); scroll-snap-align: start; }

.showcase-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(10,14,21,0.88); border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--cream);
  opacity: 0; pointer-events: none; z-index: 5;
  transition: opacity .3s var(--ease-out), border-color .3s, transform .3s var(--ease-out);
}
.showcase-scroller:hover .showcase-arrow.is-available { opacity: 1; pointer-events: auto; }
.showcase-arrow:hover { border-color: var(--accent); color: var(--accent); }
.showcase-arrow-prev { left: -4px; }
.showcase-arrow-next { right: -4px; }
@media (min-width: 1280px) {
  .showcase-arrow-prev { left: -24px; }
  .showcase-arrow-next { right: -24px; }
}
@media (hover: none) {
  .showcase-arrow { display: none; }
}

.svc-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 20px;
  padding: 2.2rem; min-height: 340px; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.svc-card .num {
  font-family: var(--mono); font-size: .8rem; color: var(--gold); letter-spacing: .1em;
}
.svc-card h3 { font-size: 1.5rem; margin-top: 1.6rem; }
.svc-card p { color: var(--cream-2); margin-top: .9rem; font-size: .96rem; }
.svc-card::before {
  content: ""; position: absolute; inset: -40% -10% auto -10%; height: 60%;
  background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.svc-card:hover::before { opacity: 1; }

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   10. Marquee ticker
   ============================================================= */
.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden; padding-block: 1.6rem;
}
.ticker-track {
  display: flex; gap: 3.2rem; width: max-content;
  animation: tickerScroll 32s linear infinite;
  font-family: var(--mono); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3);
}
.ticker-track span { display: flex; align-items: center; gap: .8rem; white-space: nowrap; }
.ticker-track span::after { content: "\2022"; color: var(--accent); }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* =============================================================
   11. Stats
   ============================================================= */
.stats-grid { display: grid; gap: 2.5rem; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card { border-top: 1px solid var(--line-strong); padding-top: 1.6rem; }
.stat-card .stat-value {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--gold); display: block;
}
.stat-card p { color: var(--cream-2); margin-top: .6rem; max-width: 30ch; }

/* =============================================================
   12. Testimonials
   ============================================================= */
.testimonials-grid { display: grid; gap: 1.6rem; }
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem;
}
.testimonial-card .quote-mark { font-family: var(--serif); font-size: 3rem; color: var(--accent); line-height: 1; }
.testimonial-card p.quote { font-size: 1.1rem; margin-top: 1rem; color: var(--cream); font-family: var(--serif); }
.testimonial-card .author { margin-top: 1.4rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .08em; color: var(--cream-3); text-transform: uppercase; }

/* =============================================================
   13. Final CTA
   ============================================================= */
.cta-final {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: 28px; margin-inline: var(--gutter); padding: clamp(3rem, 7vw, 5.5rem) clamp(1.6rem, 6vw, 4.5rem);
  background: var(--bg-2); border: 1px solid var(--line-strong);
  text-align: center;
}
.cta-final::before {
  content: ""; position: absolute; inset: -30%; z-index: -1;
  background: radial-gradient(45% 45% at var(--mesh-x) var(--mesh-y), rgba(63,166,107,.28), transparent 70%);
  filter: blur(80px); animation: meshShift 20s linear infinite;
}
.cta-final h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.cta-final p { color: var(--cream-2); max-width: 48ch; margin: 1.2rem auto 0; }
.cta-final .hero-actions { justify-content: center; }
.cta-final .contact-quick { margin-top: 2.2rem; display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; font-family: var(--mono); font-size: .85rem; color: var(--cream-2); }

/* =============================================================
   14. Footer
   ============================================================= */
.footer { padding-block: 3.5rem 2.5rem; border-top: 1px solid var(--line); margin-top: 2rem; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--cream-3); margin-top: .8rem; font-size: .9rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); margin-bottom: .9rem; }
.footer-col a { display: block; color: var(--cream-2); font-size: .92rem; padding-block: .3rem; transition: color .3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .8rem; color: var(--cream-3); }

/* =============================================================
   15. Inner page headers (about / services / contact)
   ============================================================= */
.page-header { padding-top: 9.5rem; padding-bottom: 3.5rem; position: relative; overflow: hidden; isolation: isolate; }
.page-header::before {
  content: ""; position: absolute; inset: -20%; z-index: -2;
  background: radial-gradient(45% 40% at 25% 20%, rgba(63,166,107,.22), transparent 65%);
  filter: blur(90px); mix-blend-mode: screen;
}
.page-header h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); max-width: 18ch; margin-top: 1rem; }
.page-header .lede { margin-top: 1.4rem; font-size: 1.15rem; color: var(--cream-2); max-width: 56ch; }

/* =============================================================
   16. About page
   ============================================================= */
.about-grid { display: grid; gap: 3.5rem; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 0.7fr 1fr; gap: 5rem; align-items: start; } }
.about-copy p { color: var(--cream-2); margin-bottom: 1.2rem; max-width: 62ch; }
.about-copy p:first-of-type { font-size: 1.12rem; color: var(--cream); }

.pull-quote {
  margin-block: clamp(3rem, 6vw, 5rem); padding: clamp(2rem, 5vw, 3.2rem);
  border-left: 3px solid var(--gold); background: var(--bg-2); border-radius: 0 20px 20px 0;
  position: relative;
}
.pull-quote .quote-mark { font-family: var(--serif); font-size: 3.4rem; color: var(--gold); line-height: 0.6; display: block; margin-bottom: .6rem; }
.pull-quote p { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.35; color: var(--cream); max-width: 42ch; }
.pull-quote span.label { display: block; margin-top: 1.2rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); }

.mv-grid { display: grid; gap: 1.6rem; margin-top: 1rem; }
@media (min-width: 720px) { .mv-grid { grid-template-columns: repeat(2, 1fr); } }
.mv-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem; }
.mv-card h3 { font-size: 1.3rem; color: var(--accent); }
.mv-card p { color: var(--cream-2); margin-top: .9rem; }

.map-panel {
  position: relative; overflow: hidden; isolation: isolate;
  border: 1px solid var(--line-strong); border-radius: 24px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--bg-2); text-align: center;
}
.map-topo { position: absolute; inset: -15%; z-index: -1; opacity: .3; }
.map-panel::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(45% 45% at 50% 50%, rgba(63,166,107,.22), transparent 70%);
  filter: blur(70px);
}
.map-panel .countries-strip { justify-content: center; margin-top: 0; }

.countries-strip { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.country-chip {
  border: 1px solid var(--line-strong); border-radius: 999px; padding: .6rem 1.3rem;
  font-family: var(--mono); font-size: .82rem; letter-spacing: .04em; color: var(--cream-2);
  transition: border-color .3s, color .3s;
}
.country-chip:hover { border-color: var(--accent); color: var(--cream); }

/* =============================================================
   17. Services page
   ============================================================= */
.services-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem;
  padding-block: 2.4rem; border-top: 1px solid var(--line);
  align-items: start;
}
.services-list .svc-row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 720px) { .svc-row { grid-template-columns: 100px 1fr; gap: 2.5rem; } }
.svc-row .num { font-family: var(--mono); font-size: 1.1rem; color: var(--gold); padding-top: .3rem; }
.svc-row h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.svc-row p { color: var(--cream-2); margin-top: .8rem; max-width: 62ch; }
.svc-row { position: relative; transition: padding-left .4s var(--ease-out); }
.svc-row:hover { padding-left: .6rem; }
.svc-row:hover .num { color: var(--accent); }

/* =============================================================
   18. Contact page
   ============================================================= */
.contact-grid { display: grid; gap: 3.5rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 0.85fr; gap: 4.5rem; } }

.field { position: relative; margin-bottom: 1.3rem; }
.field input, .field textarea {
  width: 100%; padding: 1.3rem 1rem .6rem; border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--bg-2); color: var(--cream); font-family: var(--sans); font-size: 1rem;
  transition: border-color .3s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 1.1rem;
  pointer-events: none; transition: all .25s var(--ease-out);
  color: var(--cream-3); font-size: .95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .5rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
}

.cta-form { position: relative; transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.cta-submit { position: relative; width: 100%; justify-content: center; }
.cta-form-spinner, .cta-form-check {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none;
}
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px;
  border: 1.5px solid rgba(4,20,11,0.3); border-top-color: #04140b;
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cta-success {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -40%);
  opacity: 0; pointer-events: none; text-align: center; width: 100%;
  transition: opacity .8s var(--ease-out) .25s, transform .9s var(--ease-soft) .25s;
}
.cta-success.is-visible { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
.cta-success h3 { font-size: 1.5rem; }
.cta-success p { color: var(--cream-2); margin-top: .7rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-info-item { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.contact-info-item h4 { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3); }
.contact-info-item a, .contact-info-item p { font-size: 1.15rem; margin-top: .5rem; display: inline-block; }
.contact-info-item a:hover { color: var(--accent); }
.social-row { display: flex; gap: 1rem; margin-top: 1.6rem; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; transition: border-color .3s, color .3s, transform .3s;
}
.social-row a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* =============================================================
   19. Responsive tweaks
   ============================================================= */
@media (max-width: 719px) {
  .hero-trust { gap: 1.6rem; }
  .cta-final .contact-quick { flex-direction: column; align-items: center; gap: .8rem; }
}

/* =============================================================
   20. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-topo, .hero::before, .cta-final::before, .ticker-track { animation: none; }
}
