/* ============================================================
   TLK SERVICES — Design System
   Palette: Navy #021B44 · Slate #68686A · Ice #F5F8FC
   Type: Geologica (300–700)
   ============================================================ */

:root {
  --navy: #021B44;
  --navy-deep: #010F27;
  --navy-soft: #0A2C63;
  --slate: #68686A;
  --slate-light: #9AA3B5;
  --ice: #F5F8FC;
  --ice-2: #EAF0F8;
  --white: #FFFFFF;
  --glacier: #C9D9EF;
  --azure: #437FC4;
  --azure-soft: rgba(67, 127, 196, 0.14);
  --line: rgba(2, 27, 68, 0.10);
  --line-light: rgba(255, 255, 255, 0.14);

  --font: "Geologica", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 32px;
  --radius-xl: 44px;

  --shadow-soft: 0 10px 40px rgba(2, 27, 68, 0.08);
  --shadow-lift: 0 24px 70px rgba(2, 27, 68, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font);
  font-weight: 340;
  font-variation-settings: "wght" 340;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--navy); color: var(--white); }

.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 560; line-height: 1.12; letter-spacing: -0.02em; }
.display { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 620; }
.h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--slate); font-weight: 320; max-width: 58ch; }
.muted { color: var(--slate); }
.on-dark .muted, .on-dark .lead { color: var(--glacier); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 540; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--azure); }
.on-dark .eyebrow { color: var(--glacier); }
.on-dark .eyebrow::before { background: var(--glacier); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; border-radius: 999px;
  font-weight: 500; font-size: 1rem; line-height: 1;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.45s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 14px 34px rgba(2, 27, 68, 0.28); }
.btn-primary:hover { background: var(--azure); box-shadow: 0 14px 34px rgba(67, 127, 196, 0.38); }

.btn-glass {
  background: rgba(255, 255, 255, 0.14); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn-glass:hover { background: var(--azure); border-color: var(--azure); }

.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--azure); border-color: var(--azure); color: var(--white); }

.btn-white { background: var(--white); color: var(--navy); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22); }
.btn-white:hover { background: var(--azure); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: transform 0.5s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; margin: 16px auto 0;
  width: min(1320px, 100% - 32px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 32px rgba(2, 27, 68, 0.10);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled .header-inner { background: rgba(255, 255, 255, 0.88); box-shadow: 0 12px 40px rgba(2, 27, 68, 0.14); }
.brand img { height: 30px; width: auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name { font-size: 0.7rem; letter-spacing: 0.28em; font-weight: 560; color: var(--navy); display: none; }

.nav-list { display: flex; gap: clamp(14px, 2.4vw, 34px); align-items: center; }
.nav-list a { font-size: 0.95rem; font-weight: 420; color: var(--navy); position: relative; padding: 6px 2px; }
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--azure); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 24px; font-size: 0.92rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
  background: var(--navy-deep);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1, 13, 34, 0.92) 0%, rgba(1, 15, 39, 0.45) 45%, rgba(2, 27, 68, 0.25) 100%);
}
#hero-canvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; padding: 0 0 clamp(64px, 10vh, 120px); width: 100%; }
.hero h1 { max-width: 15ch; margin-bottom: 24px; }
.hero .lead { color: rgba(255, 255, 255, 0.82); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: clamp(40px, 7vh, 72px); }

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 12vh, 150px) 0; position: relative; }
.section-ice { background: var(--ice); }
.section-navy { background: var(--navy); color: var(--white); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vh, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .h2 { margin-bottom: 18px; }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: 34px 28px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.why-card .icon {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--azure-soft), var(--white));
  border: 1px solid rgba(67, 127, 196, 0.25); color: var(--azure);
}
.why-card .icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.08rem; margin-bottom: 10px; font-weight: 520; }
.why-card p { font-size: 0.93rem; color: var(--slate); line-height: 1.6; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; counter-reset: step; }
.step { padding: 8px 34px 8px 0; position: relative; }
.step + .step { border-left: 1px solid var(--line-light); padding-left: 34px; }
.step .num {
  font-size: 3.4rem; font-weight: 640; letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(143,186,234,0.45));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 10px; font-weight: 520; }
.step p { font-size: 0.93rem; color: var(--glacier); line-height: 1.6; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  aspect-ratio: 4 / 5; display: flex; align-items: flex-end;
  color: var(--white); isolation: isolate;
  transform: translateZ(0);
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); z-index: -2; }
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(1, 13, 34, 0.88) 0%, rgba(1, 13, 34, 0.15) 55%, transparent 100%);
  transition: background 0.5s;
}
.svc-card:hover img { transform: scale(1.06); }
.svc-body { padding: 30px; width: 100%; }
.svc-body .tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 14px; font-weight: 480;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.svc-body h3 { font-size: 1.45rem; margin-bottom: 8px; font-weight: 540; }
.svc-body p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.78); max-width: 34ch; }
.svc-link {
  position: absolute; top: 22px; right: 22px; width: 48px; height: 48px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s, transform 0.45s var(--ease);
}
.svc-card:hover .svc-link { background: var(--azure); border-color: var(--azure); color: var(--white); transform: rotate(45deg); }
.svc-link svg { width: 20px; height: 20px; }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; }
.testi-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 min(480px, 86%); scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: 38px;
  box-shadow: var(--shadow-soft);
}
.testi-card .stars { color: #E8B93B; letter-spacing: 3px; margin-bottom: 18px; font-size: 1rem; }
.testi-card blockquote { font-size: 1.06rem; line-height: 1.7; margin-bottom: 24px; font-weight: 360; }
.testi-card .who { display: flex; align-items: center; gap: 14px; }
.testi-card .avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: var(--white); font-weight: 560; font-size: 0.95rem;
}
.testi-card .who strong { display: block; font-weight: 520; font-size: 0.98rem; }
.testi-card .who span { font-size: 0.84rem; color: var(--slate); }
.testi-nav { display: flex; gap: 12px; margin-top: 28px; }
.testi-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--navy);
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease);
}
.testi-btn:hover { background: var(--azure); border-color: var(--azure); color: var(--white); }
.testi-btn svg { width: 20px; height: 20px; }

/* ---------- Video band ---------- */
.video-band { position: relative; overflow: hidden; background: var(--navy-deep); }
.video-band video { display: block; width: 100%; height: min(76vh, 640px); object-fit: cover; }
.video-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, rgba(2, 27, 68, 0.40), rgba(67, 127, 196, 0.18));
}

/* ---------- Mouse scroll hint ---------- */
.mouse-hint {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 4; display: grid; place-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.75); text-decoration: none;
}
.mouse {
  width: 27px; height: 44px; border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px; display: block; position: relative;
  transition: border-color 0.3s;
}
.mouse .wheel {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 9px;
  margin-left: -2px; border-radius: 4px; background: var(--azure);
  animation: wheel-roll 1.9s var(--ease) infinite;
}
.mouse-hint:hover .mouse { border-color: var(--azure); }
@keyframes wheel-roll {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  62% { transform: translateY(17px); opacity: 1; }
  100% { transform: translateY(17px); opacity: 0; }
}
@media (max-width: 620px) { .mouse-hint { display: none; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  padding: clamp(56px, 9vw, 110px) clamp(28px, 7vw, 96px);
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, var(--navy-soft));
  color: var(--white); text-align: center;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.4; pointer-events: none;
}
.cta-banner::before { width: 420px; height: 420px; background: var(--azure); top: -180px; left: -120px; }
.cta-banner::after { width: 360px; height: 360px; background: #14335F; bottom: -160px; right: -100px; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .h2 { max-width: 20ch; margin: 0 auto 18px; }
.cta-banner p { color: var(--glacier); max-width: 52ch; margin: 0 auto 38px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.split-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-lift); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: 14px; margin-top: 28px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; }
.check-list svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--azure); margin-top: 3px; }
.on-dark .check-list svg { color: #8FBAEA; }

/* ---------- Service detail sections ---------- */
.svc-detail { padding: clamp(70px, 10vh, 120px) 0; border-top: 1px solid var(--line); }
.svc-detail:first-of-type { border-top: none; }
.svc-detail .split-media { aspect-ratio: 16 / 10; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { padding: 10px 18px; border-radius: 999px; background: var(--ice); border: 1px solid var(--line); font-size: 0.86rem; font-weight: 420; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; text-align: left; font-size: 1.08rem; font-weight: 480; color: var(--navy);
}
.faq-q .fx { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); position: relative; transition: transform 0.45s var(--ease), background 0.3s; }
.faq-q .fx::before, .faq-q .fx::after { content: ""; position: absolute; inset: 0; margin: auto; background: currentColor; }
.faq-q .fx::before { width: 12px; height: 1.5px; }
.faq-q .fx::after { width: 1.5px; height: 12px; transition: transform 0.4s var(--ease); }
.faq-item.open .fx { transform: rotate(180deg); background: var(--azure); color: var(--white); border-color: var(--azure); }
.faq-item.open .fx::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--slate); max-width: 62ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.86rem; font-weight: 480; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--navy);
  padding: 15px 18px; border-radius: 14px; border: 1.5px solid var(--line);
  background: var(--ice); transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--azure); background: var(--white);
  box-shadow: 0 0 0 4px var(--azure-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.info-stack { display: grid; gap: 18px; }
.info-card {
  border-radius: var(--radius-m); padding: 28px;
  background: var(--white); border: 1px solid var(--line);
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.info-card .icon { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), var(--azure)); color: var(--white); }
.info-card .icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1rem; font-weight: 520; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 0.94rem; color: var(--slate); }
.info-card a:hover { color: var(--azure); }
.map-ph {
  border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16 / 8; background:
    linear-gradient(rgba(2,27,68,0.03), rgba(2,27,68,0.03)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(2,27,68,0.06) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(2,27,68,0.06) 38px 39px),
    var(--ice);
  display: grid; place-items: center; text-align: center; color: var(--slate); font-size: 0.9rem;
}
.map-ph .pin { width: 44px; height: 44px; margin: 0 auto 10px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--navy); display: grid; place-items: center; }
.map-ph .pin::after { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--white); }

/* ---------- Fashion coming soon ---------- */
.coming {
  min-height: 78vh; display: grid; align-items: center;
  padding-top: 140px;
}
.coming-tag {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  margin-bottom: 26px; font-weight: 520; color: var(--slate);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--white); padding: clamp(64px, 9vh, 110px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); padding-bottom: 56px; border-bottom: 1px solid var(--line-light); }
.site-footer .brand img { height: 34px; }
.footer-about p { color: var(--slate-light); font-size: 0.94rem; margin-top: 20px; max-width: 34ch; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--glacier); margin-bottom: 22px; font-weight: 520; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--slate-light); font-size: 0.95rem; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: #8FBAEA; padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; color: var(--slate-light); font-size: 0.94rem; align-items: flex-start; }
.footer-contact svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 4px; color: var(--glacier); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 32px; color: var(--slate-light); font-size: 0.86rem; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-light); color: var(--glacier);
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease);
}
.socials a:hover { background: var(--azure); border-color: var(--azure); color: var(--white); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; padding: clamp(160px, 24vh, 240px) 0 clamp(64px, 9vh, 110px);
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, var(--navy-soft));
  color: var(--white); overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 127, 196, 0.35), transparent 65%);
  top: -220px; right: -160px; pointer-events: none;
}
.breadcrumbs { display: flex; gap: 10px; font-size: 0.85rem; color: var(--glacier); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: #8FBAEA; }
.breadcrumbs span[aria-hidden] { opacity: 0.5; }

/* ---------- Reveal defaults (motion-safe handled in JS) ---------- */
.will-reveal { will-change: transform; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 999; display: grid; place-items: center;
  background: var(--navy-deep); transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader { animation: loader-away 0.7s var(--ease) 2.6s forwards; }
.loader.done { opacity: 0; visibility: hidden; }
@keyframes loader-away { to { opacity: 0; visibility: hidden; } }
.loader img { height: 44px; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .step + .step { border-left: none; padding-left: 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-list {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 30px;
    background: rgba(2, 27, 68, 0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s;
  }
  .nav-list a { color: var(--white); font-size: 1.5rem; font-weight: 480; }
  .nav-list a::after { background: var(--white); }
  .nav-cta { background: var(--white); color: var(--navy); }
  body.nav-open .nav-list { opacity: 1; visibility: visible; z-index: 90; }
  .nav-toggle { display: flex; position: relative; z-index: 95; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .svc-detail .split { gap: 30px; }
}
@media (max-width: 620px) {
  .why-grid, .svc-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
