/* ===== EURO CARS INDIA — V3 · EFFECTS FIRST ===== */
:root {
  --bg: #0F1923;
  --deep: #090F16;
  --surface: #141F2B;
  --line: #1C2E3F;
  --blue: #28508C;
  --sky: #6B9CC8;
  --ivory: #F7F5F2;
  --warm: #E8D5B7;
  --text: #F0F4F8;
  --text-dark: #1A1A1A;
  --serif: 'Cormorant', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;

  /* Dynamic background colour driven by scroll */
  --dyn-bg: var(--bg);
  --dyn-text: var(--text);
  --dyn-accent: var(--sky);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #0a1320;
  scroll-padding-top: 88px; /* so #anchor jumps clear the fixed nav */
}
body {
  font-family: var(--sans);
  color: var(--dyn-text);
  /* One continuous blue gradient, fixed to the viewport — the background never
     jumps between sections, so scrolling feels like a single smooth surface. */
  background: linear-gradient(168deg, #0a1422 0%, #0e1f34 38%, #122a44 60%, #0c1c30 82%, #0a1320 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
  position: relative;
  min-height: 100vh;
}
@media (hover: none) { body { cursor: auto; } }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CUSTOM CURSOR ===== */
#cursor-dot, #cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--dyn-accent);
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: width .25s, height .25s;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--dyn-accent);
  border-radius: 50%;
  transition: width .25s ease, height .25s ease, background-color .25s ease, border-color .25s ease;
}
#cursor-ring.hover {
  width: 60px; height: 60px;
  background: rgba(107,156,200,0.12);
  border-color: var(--dyn-accent);
}
#cursor-ring.press { width: 28px; height: 28px; }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  z-index: 9998;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* ===== NOISE ===== */
#noise-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.8'/></svg>");
}

/* ===== BACKGROUND BLOBS ===== */
.blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.55;
}
.nav, main, .footer { position: relative; z-index: 2; }
section { position: relative; z-index: 2; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  will-change: transform;
}
.blob-1 { width: 560px; height: 560px; background: #28508C; top: -120px; left: -120px; animation: blob1 22s infinite ease-in-out; }
.blob-2 { width: 480px; height: 480px; background: #6B9CC8; bottom: -140px; right: -140px; animation: blob2 28s infinite ease-in-out; }
.blob-3 { width: 500px; height: 500px; background: #4a3a65; top: 38%; left: 28%; animation: blob3 34s infinite ease-in-out; }
@keyframes blob1 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(220px,120px) scale(1.25);} }
@keyframes blob2 { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(-180px,-100px) scale(1.15);} }
@keyframes blob3 { 0%,100% { transform: translate(0,0) scale(1);} 33% { transform: translate(-140px,80px) scale(1.2);} 66% { transform: translate(160px,-100px) scale(0.9);} }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }

section {
  padding: 84px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dyn-accent);
  display: inline-block;
  margin-bottom: 22px;
  opacity: 0.85;
}

/* ===== NAV (always-visible, blurred) ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 74px;
  display: flex; align-items: center;
  padding: 0;
  z-index: 9500;
  border-bottom: 1px solid rgba(107,156,200,0.16);
}
/* Blur lives on a pseudo-element so .nav does NOT become the containing block
   for the position:fixed mobile menu (backdrop-filter would otherwise trap it). */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,18,30,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  z-index: -1;
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center;
}
/* Transparent logo sits natively on the dark blue — its own grey/navy bands give it backing */
.nav-brand {
  display: inline-flex;
  align-items: center;
}
.nav-brand img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links > a,
.nav-drop-toggle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.72;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.nav-links > a:hover,
.nav-item.has-dropdown:hover .nav-drop-toggle { opacity: 1; }
.nav-links a.nav-cta {
  border: 1px solid rgba(255,255,255,0.55);
  padding: 9px 18px;
  border-radius: 4px;
  opacity: 0.92;
}
.nav-links a.nav-cta:hover { opacity: 1; background: rgba(255,255,255,0.08); }

/* ===== SERVICES DROPDOWN ===== */
.nav-item.has-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-drop-toggle .caret { font-size: 9px; transition: transform 0.25s ease; }
.nav-item.has-dropdown:hover .nav-drop-toggle .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 10px);
  margin-top: 14px;
  min-width: 230px;
  background: rgba(13,22,36,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(107,156,200,0.2);
  border-radius: 8px;
  padding: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
/* invisible hover bridge so the menu doesn't close in the gap */
.nav-item.has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 18px;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.dropdown a {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text);
  opacity: 0.82;
  padding: 10px 14px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.dropdown a:hover { opacity: 1; background: rgba(107,156,200,0.14); }
.dropdown a.dropdown-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  pointer-events: auto;
}
.dropdown .dropdown-sep { height: 1px; background: rgba(107,156,200,0.16); margin: 6px 8px; }

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 9001; /* stay above the mobile menu overlay (8999) so it can close */
}
.nav-toggle span {
  display: block;
  height: 2px; width: 100%;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding-top: 150px;
  padding-bottom: 70px;
  min-height: 90vh;
}
.hero-inner { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 40px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--dyn-accent);
}
.hero .lede {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 44px;
}

/* Text reveal (no overflow:hidden — descenders would clip on huge fonts) */
.split-text { display: inline-block; }
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  animation: charRise 1.1s cubic-bezier(.22,1,.36,1) forwards;
  will-change: transform, opacity;
}
@keyframes charRise {
  from { opacity: 0; transform: translateY(0.6em); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.5;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--dyn-accent), transparent);
  animation: cueDrop 2s infinite ease-in-out;
}
@keyframes cueDrop { 0%,100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* ===== MAGNETIC BUTTONS ===== */
.magnetic {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  border: 1px solid var(--dyn-accent);
  background: transparent;
  color: var(--dyn-text);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  will-change: transform;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
.magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dyn-accent);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  z-index: -1;
}
.magnetic:hover::before { transform: translateY(0); }
.magnetic:hover { color: var(--dyn-bg); }
.magnetic .m-inner { display: inline-flex; align-items: center; gap: 14px; transition: transform 0.4s ease; pointer-events: none; }
.magnetic .arrow { display: inline-block; transition: transform 0.4s ease; }
.magnetic:hover .arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--dyn-accent);
  color: var(--dyn-bg);
  border-color: var(--dyn-accent);
}
.btn-primary::before { background: var(--dyn-text); }
.btn-primary:hover { color: var(--dyn-bg); }

/* ===== CHAPTER SECTIONS (scroll-driven colour shift) ===== */
.chapter {
  padding: 96px 0;
}
.chapter h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.chapter h2 em { font-style: italic; color: var(--dyn-accent); font-weight: 400; }
.chapter p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.75;
}
.chapter-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
  display: block;
}

/* ===== STATS ===== */
.stats { padding: 96px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(143,184,221,0.16);
  border-bottom: 1px solid rgba(143,184,221,0.16);
  padding: 56px 0;
}
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 6.4vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ===== TILT CARDS ===== */
.cards { padding: 96px 0; }
.cards-head { margin-bottom: 52px; max-width: 820px; }
.cards-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.cards-head h2 em { font-style: italic; color: var(--dyn-accent); }
.cards-head p { opacity: 0.7; max-width: 540px; font-size: 17px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1200px;
}
.tilt-card {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  background: rgba(20,31,43,0.55);
  border: 1px solid rgba(107,156,200,0.12);
  padding: 40px 32px 32px;
  border-radius: 4px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tilt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(107,156,200,0.25), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tilt-card:hover { border-color: rgba(107,156,200,0.35); }
.tilt-card:hover::before { opacity: 1; }
.tilt-card > * { transform: translateZ(40px); }
.tilt-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.tilt-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
}
.tilt-card p { font-size: 14px; opacity: 0.7; line-height: 1.65; flex: 1; }
.tilt-card .arrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dyn-accent);
  margin-top: auto;
}

/* ===== INTERACTIVE / CLICK DEMO ===== */
.interactive {
  text-align: center;
  padding: 220px 0;
}
.interactive h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  margin-bottom: 24px;
}
.interactive p { opacity: 0.7; max-width: 480px; margin: 0 auto 48px; }

/* Click ripple (injected by JS) */
.ripple {
  position: fixed;
  pointer-events: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dyn-accent);
  transform: translate(-50%, -50%);
  z-index: 9995;
  animation: rippleExpand 900ms cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes rippleExpand {
  0% { width: 8px; height: 8px; opacity: 0.65; }
  100% { width: 340px; height: 340px; opacity: 0; }
}

/* Confetti particle */
.confetti {
  position: fixed;
  width: 10px; height: 14px;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  animation: confettiFly 1.5s cubic-bezier(.22,1,.36,1) forwards;
  border-radius: 1px;
}
@keyframes confettiFly {
  0% { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)); opacity: 0; }
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 40px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  overflow: hidden;
  min-height: auto;
  display: block;
  opacity: 0.9;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: scrollX 40s linear infinite;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after {
  content: '◆';
  color: var(--dyn-accent);
  font-size: 0.5em;
  font-style: normal;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SPOTLIGHT SECTION ===== */
.spotlight {
  --sx: 50%; --sy: 50%;
  position: relative;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--sx) var(--sy), rgba(107,156,200,0.07), transparent 45%);
  pointer-events: none;
  transition: background 0.1s linear;
  z-index: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 116px 0;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.final-cta h2 em { font-style: italic; color: var(--dyn-accent); }
.final-cta p { opacity: 0.75; max-width: 520px; margin: 0 auto 56px; font-size: 17px; }
.final-cta .cta-big {
  font-size: 14px;
  padding: 28px 56px;
}

/* ===== FOOTER ===== */
.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px 44px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(107,156,200,0.16);
}
.footer a:hover { opacity: 1; color: var(--dyn-accent); }

/* ===== REVEAL (scroll-in) — gentle so the page reads as one continuous scroll,
   not a sequence of panels animating in ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== INNER PAGES ===== */
.page-hero {
  padding: 132px 0 44px;
  min-height: auto;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(33px, 7.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--dyn-accent); font-weight: 400; }
.page-hero .lede { max-width: 620px; font-size: 18px; opacity: 0.78; }

.page-body { padding: 56px 0 84px; min-height: auto; align-items: flex-start; }

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.contact-card {
  background: rgba(20,31,43,0.4);
  border: 1px solid rgba(107,156,200,0.15);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover { border-color: rgba(107,156,200,0.4); transform: translateY(-3px); }
.contact-card .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dyn-accent);
  opacity: 0.85;
}
.contact-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
}
.contact-card p, .contact-card a {
  font-size: 15px; line-height: 1.6;
  opacity: 0.85;
  word-break: break-word;
}
.contact-card a:hover { color: var(--dyn-accent); opacity: 1; }

/* Offices grid */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}
.office-tile {
  padding: 24px 20px;
  border: 1px solid rgba(107,156,200,0.12);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.office-tile:hover { border-color: rgba(107,156,200,0.35); background: rgba(20,31,43,0.3); }
.office-tile .city {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 4px;
}
.office-tile .label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.55;
}

/* Form */
.form-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(20,31,43,0.45);
  border: 1px solid rgba(107,156,200,0.18);
  padding: 56px 48px;
  border-radius: 6px;
  backdrop-filter: blur(14px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.form-field .req { color: #ff8a8a; opacity: 0.9; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dyn-text);
  background: rgba(9,15,22,0.5);
  border: 1px solid rgba(107,156,200,0.2);
  padding: 14px 16px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: none;
  width: 100%;
}
@media (hover: none) {
  .form-field input, .form-field select, .form-field textarea { cursor: text; }
}
.form-field textarea { min-height: 140px; resize: vertical; font-family: var(--sans); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--dyn-accent);
  background: rgba(9,15,22,0.8);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236B9CC8' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-field select option { background: #0F1923; color: #F0F4F8; }
.form-note {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.5; margin-top: 24px;
}
.form-submit { display: flex; justify-content: flex-end; margin-top: 32px; }

/* About blocks */
.about-section { padding: 40px 0; }
.about-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.about-row:last-child { margin-bottom: 0; }
.about-row h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.about-row h2 em { font-style: italic; color: var(--dyn-accent); font-weight: 400; }
.about-row .eyebrow { margin-bottom: 16px; }
.about-row p { font-size: 17px; line-height: 1.7; opacity: 0.8; margin-bottom: 16px; }

/* Thanks */
.thanks-wrap { text-align: center; padding: 220px 0 180px; }
.thanks-wrap h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  margin-bottom: 20px;
}
.thanks-wrap h1 em { font-style: italic; color: var(--dyn-accent); }
.thanks-wrap p { max-width: 560px; margin: 0 auto 40px; opacity: 0.78; font-size: 17px; }

/* Policy pages */
.policy-wrap { max-width: 820px; margin: 0 auto; }
.policy-wrap h2 {
  font-family: var(--serif); font-weight: 400; font-size: 28px;
  margin: 40px 0 12px;
}
.policy-wrap p, .policy-wrap li {
  font-size: 15px; line-height: 1.75; opacity: 0.82; margin-bottom: 12px;
}
.policy-wrap ul { padding-left: 20px; margin-bottom: 16px; }

/* ===== FORM ERRORS ===== */
.form-errors {
  background: rgba(255,69,96,0.12);
  border: 1px solid rgba(255,138,138,0.5);
  border-radius: 4px;
  padding: 18px 22px;
  margin-bottom: 28px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.form-errors p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb3b3;
  margin-bottom: 8px;
}
.form-errors ul { padding-left: 18px; list-style: disc; }
.form-errors li {
  font-family: var(--sans);
  font-size: 14px;
  color: #ffd0d0;
  letter-spacing: 0;
  text-transform: none;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(255,138,138,0.7);
  background: rgba(255,69,96,0.06);
}

/* ===== EXPANDED FOOTER ===== */
.footer-main {
  position: relative;
  z-index: 2;
  padding: 80px 0 0;
  border-top: 1px solid rgba(107,156,200,0.18);
}
.footer-cols {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dyn-accent);
  opacity: 0.85;
  margin-bottom: 20px;
}
.footer-logo-plate {
  display: inline-block;
  margin-bottom: 22px;
}
.footer-col .footer-logo { height: 50px; width: auto; display: block; }
.footer-col p,
.footer-col a {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.7;
  display: block;
  margin-bottom: 8px;
}
.footer-col a:hover { opacity: 1; color: var(--dyn-accent); }
.footer-col .footer-blurb { max-width: 320px; opacity: 0.6; }
.footer-col .footer-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; margin: 16px 0 6px; }

/* ===== SERVICE / GENERIC CONTENT SECTIONS ===== */
.section-head { max-width: 820px; margin-bottom: 44px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 5.4vw, 64px);
  line-height: 1.06;
  margin-bottom: 18px;
}
.section-head h2 em { font-style: italic; color: var(--dyn-accent); }
.section-head p { opacity: 0.75; max-width: 600px; font-size: 17px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-item {
  border: 1px solid rgba(107,156,200,0.15);
  border-radius: 4px;
  padding: 32px 28px;
  background: rgba(20,31,43,0.35);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-item:hover { border-color: rgba(107,156,200,0.35); transform: translateY(-3px); }
.feature-item .f-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dyn-accent);
  opacity: 0.7;
  display: block;
  margin-bottom: 14px;
}
.feature-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.feature-item p { font-size: 14px; line-height: 1.65; opacity: 0.72; }

/* Steps (how it works) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step { position: relative; padding-top: 56px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 48px;
  color: var(--dyn-accent);
  opacity: 0.4;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 10px;
}
.step p { font-size: 14px; line-height: 1.65; opacity: 0.72; }

/* Split content row (image + text) */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }
.split-media {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(107,156,200,0.18);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(40,80,140,0.4), rgba(9,15,22,0.6));
}
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-text-block h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 4.6vw, 52px);
  line-height: 1.08;
  margin-bottom: 18px;
}
.split-text-block h2 em { font-style: italic; color: var(--dyn-accent); }
.split-text-block p { font-size: 16px; line-height: 1.7; opacity: 0.8; margin-bottom: 14px; }

/* Inline list */
.tick-list { margin: 20px 0; }
.tick-list li {
  font-size: 15px; line-height: 1.6; opacity: 0.82;
  padding-left: 28px; position: relative; margin-bottom: 12px;
}
.tick-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--dyn-accent); font-family: var(--mono);
}

/* Pricing model band */
.pricing-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(143,184,221,0.16);
  border-bottom: 1px solid rgba(143,184,221,0.16);
  padding: 48px 0;
}
.pricing-band .price-item .p-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.6; display: block; margin-bottom: 10px;
}
.pricing-band .price-item h3 {
  font-family: var(--serif); font-weight: 300; font-size: 30px; margin-bottom: 8px;
}
.pricing-band .price-item p { font-size: 14px; opacity: 0.72; }

/* Locations list */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.loc-card {
  border: 1px solid rgba(107,156,200,0.15);
  border-radius: 4px;
  padding: 32px 30px;
  background: rgba(20,31,43,0.35);
  transition: border-color 0.3s ease;
}
.loc-card:hover { border-color: rgba(107,156,200,0.35); }
.loc-card .loc-state {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dyn-accent); opacity: 0.8;
}
.loc-card h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 8px 0 12px; }
.loc-card p, .loc-card a { font-size: 14px; line-height: 1.6; opacity: 0.78; }
.loc-card a:hover { color: var(--dyn-accent); opacity: 1; }

/* ===== CTA GLOW (subtle) ===== */
.btn-glow {
  box-shadow: 0 0 0 1px rgba(107,156,200,0.5), 0 0 26px rgba(107,156,200,0.38);
  animation: ctaPulse 3.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(107,156,200,0.45), 0 0 22px rgba(107,156,200,0.30); }
  50%      { box-shadow: 0 0 0 1px rgba(143,184,221,0.8), 0 0 36px rgba(143,184,221,0.55); }
}
@media (prefers-reduced-motion: reduce) { .btn-glow { animation: none; } }
/* Glow on the nav enquiry pill too */
.nav-links a.nav-cta {
  box-shadow: 0 0 18px rgba(107,156,200,0.28);
}
.nav-links a.nav-cta:hover { box-shadow: 0 0 24px rgba(143,184,221,0.5); }

/* ===== RESERVE NOW (filled pill, "coming soon" on hover) ===== */
.nav-links a.nav-reserve {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--deep);
  opacity: 1;
  box-shadow: 0 0 18px rgba(107,156,200,0.34);
}
.nav-links a.nav-reserve:hover {
  background: #eaf4ff;
  border-color: #eaf4ff;
  color: var(--deep);
  box-shadow: 0 0 26px rgba(143,184,221,0.6);
}
/* label swap: show "Reserve now", swap to "Coming soon" on hover/focus */
.swap .lbl-b { display: none; }
.swap:hover .lbl-a,
.swap:focus-visible .lbl-a { display: none; }
.swap:hover .lbl-b,
.swap:focus-visible .lbl-b { display: inline; }

/* ===== ENQUIRY SECTION ===== */
.enquiry { scroll-margin-top: 88px; }
.enquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.enquiry-pitch h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(27px, 4.8vw, 60px);
  line-height: 1.06;
  margin-bottom: 20px;
}
.enquiry-pitch h2 em { font-style: italic; color: var(--dyn-accent); }
.enquiry-pitch p { font-size: 16px; line-height: 1.7; opacity: 0.82; margin-bottom: 28px; max-width: 440px; }
.enquiry-contacts { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.enquiry-contacts a, .enquiry-contacts span { display: block; }
.enquiry-contacts .ec-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.55; margin-bottom: 4px;
}
.enquiry-contacts .ec-value { font-family: var(--serif); font-size: 22px; }
.enquiry-contacts a:hover .ec-value { color: var(--dyn-accent); }
.enquiry .form-wrap { margin: 0; max-width: none; }

/* ===== HOMEPAGE — EDITORIAL SYSTEM ===== */
/* one consistent vertical rhythm + top-aligned content across the whole page */
.home section { align-items: flex-start; }
.home .page-body,
.home .cards,
.home .stats { padding: clamp(76px, 9vw, 122px) 0; min-height: auto; }
.home .page-body { padding-top: clamp(76px, 9vw, 122px); }

/* unified section heading block (used by why / services / fleet / locations) */
.home .section-head,
.home .cards-head { max-width: 760px; margin-bottom: clamp(44px, 5vw, 64px); }
.home .section-head h2,
.home .cards-head h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(29px, 5.2vw, 68px);
  line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 18px;
}
.home .section-head p,
.home .cards-head p { opacity: 0.72; max-width: 560px; font-size: 17px; line-height: 1.7; }

/* hero refinements + city meta strip */
.hero h1 { font-size: clamp(33px, 8.6vw, 116px); }
/* keep each hero word intact — the per-character split spans would otherwise
   wrap mid-word on narrow screens */
.hero h1 .split-text { white-space: nowrap; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 22px;
  border-top: 1px solid rgba(143,184,221,0.14);
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; opacity: 0.55;
}
.hero-meta .dot { opacity: 0.4; }

/* editorial two-column: heading left, body right (the About band) */
.editorial-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.editorial-head h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(31px, 5.6vw, 78px);
  line-height: 1.04; letter-spacing: -0.02em;
}
.editorial-head h2 em { font-style: italic; color: var(--dyn-accent); }
.editorial-head .eyebrow { margin-bottom: 26px; }
.editorial-body p { font-size: 17px; line-height: 1.82; opacity: 0.82; margin-bottom: 18px; }
.editorial-body p:last-of-type { margin-bottom: 22px; }

/* inline text link with travelling arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dyn-accent);
}
.link-arrow .arrow { transition: transform 0.35s ease; }
.link-arrow:hover .arrow { transform: translateX(6px); }

/* editorial index list (the six services) */
.index-list { border-top: 1px solid rgba(143,184,221,0.18); }
.index-row {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.9fr) 1.5fr 18px;
  gap: 28px;
  align-items: baseline;
  padding: clamp(24px, 2.6vw, 34px) 6px;
  border-bottom: 1px solid rgba(143,184,221,0.12);
  transition: padding-left 0.35s cubic-bezier(.22,1,.36,1), background 0.35s ease;
}
.index-row:hover { background: rgba(20,31,43,0.45); padding-left: 20px; }
.index-row .ix-num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; opacity: 0.5;
}
.index-row h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1;
}
.index-row .ix-desc { font-size: 14.5px; line-height: 1.65; opacity: 0.72; }
.index-row .ix-arrow {
  font-family: var(--mono); color: var(--dyn-accent);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  justify-self: end;
}
.index-row:hover .ix-arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 860px) {
  .editorial-row { grid-template-columns: 1fr; gap: 26px; }
  .index-row { grid-template-columns: 40px 1fr; gap: 6px 18px; padding: 22px 4px; }
  .index-row .ix-desc { grid-column: 2; }
  .index-row .ix-arrow { display: none; }
}

/* anchor offset for all jump targets */
section[id] { scroll-margin-top: 84px; }

/* ===== OUTLINE MOTION GRAPHICS (decorative, fill a .split-media) ===== */
.split-media { position: relative; }
/* hide a media slot that has no animation/photo, collapse its row to one column */
.split-media.is-empty { display: none; }
.split-row.single { grid-template-columns: 1fr; }
.split-row.single.reverse { direction: ltr; }
/* when a media slot collapses, keep the remaining text at a readable measure
   (not stretched across the full content width) so it stays aligned with the
   other sections' headings */
.split-row.single .split-text-block { max-width: 760px; }

/* Justified body prose + safe hyphenation (per client preference) — applied to
   flowing paragraphs only, never to headings, labels or short card text */
.lede,
.editorial-body p,
.split-text-block p,
.section-head p,
.article-body p,
.policy-wrap p,
.policy-wrap li { text-align: justify; }
p, li { hyphens: auto; -webkit-hyphens: auto; }

.ec-anim { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ec-anim .s { fill: none; stroke: #8FB8DD; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.ec-anim .s-soft   { stroke: rgba(143,184,221,0.28); }
.ec-anim .s-dim    { stroke: rgba(143,184,221,0.5); }
.ec-anim .s-bright { stroke: #eaf4ff; }
.ec-anim .fl       { fill: rgba(107,156,200,0.07); stroke: none; }
.ec-anim .dot      { fill: #9fc4e4; }
.ec-anim .glow     { filter: drop-shadow(0 0 4px rgba(143,184,221,0.55)); }

/* 1 — chauffeur opening a door */
.ec-door .door { transform-box: fill-box; transform-origin: right center; animation: ecDoor 6s ease-in-out infinite; }
@keyframes ecDoor {
  0%, 22%   { transform: rotate(0deg); }
  48%, 64%  { transform: rotate(-23deg); }
  90%, 100% { transform: rotate(0deg); }
}

/* 2 — city skyline + dropping location pin */
.ec-city .pin  { transform-box: fill-box; transform-origin: center bottom; animation: ecPinDrop 4.8s ease-in-out infinite; }
.ec-city .ring { transform-box: fill-box; transform-origin: center; animation: ecPinRing 4.8s ease-out infinite; }
@keyframes ecPinDrop {
  0%   { transform: translateY(-160px); opacity: 0; }
  10%  { opacity: 1; }
  34%  { transform: translateY(0); }
  42%  { transform: translateY(-13px); }
  50%  { transform: translateY(0); }
  92%, 100% { transform: translateY(0); opacity: 1; }
}
@keyframes ecPinRing {
  0%, 34% { transform: scale(0.2); opacity: 0; }
  40%     { opacity: 0.55; }
  64%, 100% { transform: scale(2.1); opacity: 0; }
}

/* 3 — flight taking off over a skyline */
.ec-flight .plane { animation: ecPlane 6s ease-in infinite; }
@keyframes ecPlane {
  0%   { transform: translate(-30px, 36px) rotate(-16deg); opacity: 0; }
  12%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translate(285px, -188px) rotate(-30deg); opacity: 0; }
}

/* 4 — night highway, flowing lane + receding tail-lights */
.ec-road .lane  { stroke-dasharray: 4 22; animation: ecLane 1.4s linear infinite; }
.ec-road .tail  { transform-box: fill-box; transform-origin: center; animation: ecTail 3.2s ease-in infinite; }
@keyframes ecLane { to { stroke-dashoffset: -52; } }
@keyframes ecTail {
  0%   { transform: translate(0,0) scale(0.3); opacity: 0; }
  18%  { opacity: 0.9; }
  100% { transform: translate(0,150px) scale(1.5); opacity: 0; }
}

/* 5 — abstract converging routes / network */
.ec-net .pulse { animation: ecNet 3s linear infinite; }
.ec-net .pulse.d1 { animation-delay: 0.5s; }
.ec-net .pulse.d2 { animation-delay: 1s; }
.ec-net .pulse.d3 { animation-delay: 1.5s; }
.ec-net .pulse.d4 { animation-delay: 2s; }
@keyframes ecNet { 0% { stroke-dashoffset: 100; } 70%, 100% { stroke-dashoffset: 0; } }
.ec-net .core { transform-box: fill-box; transform-origin: center; animation: ecCore 3s ease-out infinite; }
@keyframes ecCore { 0%, 60% { transform: scale(0.5); opacity: 0; } 75% { opacity: 0.6; } 100% { transform: scale(2.4); opacity: 0; } }

/* 6 — single car gliding along a top-down road */
.ec-glide .car  { transform-box: fill-box; animation: ecGlide 7s linear infinite; }
.ec-glide .mark { stroke-dasharray: 18 22; animation: ecMark 2.4s linear infinite; }
@keyframes ecGlide { from { transform: translateX(-80px); } to { transform: translateX(470px); } }
@keyframes ecMark { to { stroke-dashoffset: -40; } }

@media (prefers-reduced-motion: reduce) {
  .ec-anim .door, .ec-anim .pin, .ec-anim .ring, .ec-anim .plane,
  .ec-anim .lane, .ec-anim .tail, .ec-anim .pulse, .ec-anim .core,
  .ec-anim .car, .ec-anim .mark { animation: none; }
  .ec-flight .plane { transform: translate(140px, -70px) rotate(-24deg); opacity: 1; }
  .ec-net .pulse { stroke-dashoffset: 0; }
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.blog-card {
  border: 1px solid rgba(107,156,200,0.15);
  border-radius: 6px;
  padding: 30px 30px;
  background: rgba(20,31,43,0.35);
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: block;
}
.blog-card:hover { border-color: rgba(107,156,200,0.4); transform: translateY(-3px); }
.blog-card .b-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }
.blog-card h3 { font-family: var(--serif); font-weight: 400; font-size: 23px; line-height: 1.2; margin: 10px 0; }
.blog-card p { font-size: 14px; line-height: 1.6; opacity: 0.75; }
.article-body { max-width: 760px; }
.article-body p { font-size: 17px; line-height: 1.8; opacity: 0.85; margin-bottom: 20px; }
.article-body h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(26px,3vw,34px); margin: 40px 0 14px; }
.article-body ul { margin: 0 0 22px 22px; }
.article-body li { font-size: 16px; line-height: 1.7; opacity: 0.85; margin-bottom: 8px; list-style: disc; }
.article-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; margin-bottom: 28px; }
.related-reading { margin-top: 46px; padding-top: 26px; border-top: 1px solid rgba(143,184,221,0.18); }
.related-reading .rr-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dyn-accent); opacity: 0.85; display: block; margin-bottom: 14px; }
.related-reading ul { display: grid; gap: 10px; }
.related-reading li { font-size: 16px; line-height: 1.5; padding-left: 22px; position: relative; }
.related-reading li::before { content: '\2192'; position: absolute; left: 0; color: var(--dyn-accent); font-family: var(--mono); }
.related-reading a { opacity: 0.88; } .related-reading a:hover { color: var(--dyn-accent); opacity: 1; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    padding: 100px 24px 40px;
    overflow-y: auto;
    background: rgba(9,15,22,0.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
    z-index: 8999;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links > a, .nav-drop-toggle { font-size: 15px; opacity: 0.92; }
  .nav-links a.nav-cta { padding: 13px 28px; margin-top: 6px; }
  .nav-toggle { display: flex; }

  /* Dropdown becomes an inline expanded list on mobile */
  .nav-item.has-dropdown { flex-direction: column; align-items: center; gap: 10px; }
  .nav-drop-toggle .caret { display: none; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    margin: 0; padding: 0; min-width: 0;
    background: transparent; border: 0; box-shadow: none;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .dropdown a { font-size: 13px; padding: 5px 10px; opacity: 0.7; }
  .dropdown .dropdown-sep, .dropdown a.dropdown-head { display: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid, .feature-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .split-row, .split-row.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .pricing-band { grid-template-columns: 1fr; gap: 28px; }
  .loc-grid { grid-template-columns: 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  body { cursor: auto; }
  .magnetic { cursor: pointer; }
  .tilt-card { cursor: pointer; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .about-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 80px; }
}
@media (max-width: 620px) {
  .container, .hero-inner, .nav-inner { padding: 0 22px; }
  .footer-cols { padding: 0 22px 40px; }
  .footer { padding: 28px 22px 36px; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 0; }
  section { padding: 64px 0; min-height: auto; }
  .hero { min-height: auto; }
  .chapter { padding: 76px 0; }
  .footer { flex-direction: column; align-items: flex-start; }
  .contact-grid, .offices-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .page-hero { padding: 140px 0 40px; }
  .feature-grid, .feature-grid.cols-3 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 56px 22px 0; }
}
