/* ============================================
   VELOX MARKETING — DESIGN SYSTEM
   Palette:  --black #0a0a0a | --lime #c8ff00 | --white #f5f5f0 | --grey #8a8a85 | --line #232320
   Type:     Bebas Neue (display) / DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --black: #0a0a0a;
  --black-soft: #111110;
  --lime: #c8ff00;
  --white: #f5f5f0;
  --grey: #8a8a85;
  --grey-dim: #58584f;
  --line: #232320;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --container: 1180px;
  --gutter: clamp(24px, 5vw, 64px);

  --radius: 2px;
}

/* ---------- Motion ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(24px) scale(1.08); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

.hero-glow {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,0,0.14), transparent 70%);
  filter: blur(20px);
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero { position: relative; overflow: hidden; }
.hero-inner, .hero .container { position: relative; z-index: 1; }

/* Per-page hero background variants */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: 34px 34px;
  opacity: 0.5;
}
/* Home: fine dot grid */
.hero-home::before {
  background-image: radial-gradient(circle, #1c1c18 1px, transparent 1px);
}
/* About: soft diagonal lines */
.hero-about::before {
  background-image: repeating-linear-gradient(135deg, #151511 0px, #151511 1px, transparent 1px, transparent 34px);
}
.hero-about .hero-glow { background: radial-gradient(circle, rgba(200,255,0,0.10), transparent 70%); top: auto; bottom: -160px; left: -100px; right: auto; }
/* Services: crosshatch grid */
.hero-services::before {
  background-image: linear-gradient(#161611 1px, transparent 1px), linear-gradient(90deg, #161611 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-services .hero-glow { background: radial-gradient(circle, rgba(200,255,0,0.16), transparent 70%); right: 10%; top: -180px; width: 500px; height: 500px; }
/* FAQs: soft vertical fade, no dots */
.hero-faqs::before { background-image: none; opacity: 1; background: linear-gradient(180deg, rgba(200,255,0,0.05), transparent 60%); }
.hero-faqs .hero-glow { display: none; }
/* Portfolio: diagonal dot cluster upper-left */
.hero-portfolio::before {
  background-image: radial-gradient(circle, #1c1c18 1px, transparent 1px);
  background-position: 0 0;
}
.hero-portfolio .hero-glow { left: -80px; right: auto; top: 40px; background: radial-gradient(circle, rgba(200,255,0,0.12), transparent 70%); }
/* Contact: warm minimal, single soft glow centered */
.hero-contact::before { background-image: none; opacity: 1; }
.hero-contact .hero-glow { left: 50%; right: auto; top: -180px; transform: translateX(-50%); width: 520px; height: 520px; }

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  background: var(--black-soft);
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 22s linear infinite;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--grey-dim);
}
.marquee-track span.dot { color: var(--lime); margin: 0 18px; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Hover lift on interactive tiles */
.value-item, .service-card, .portfolio-card, .card {
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.value-item:hover, .service-card:hover { background: #17170f; transform: translateY(-4px); }
.portfolio-card:hover { transform: translateY(-4px); border-color: var(--grey-dim); }

.btn { transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease; }
.btn:hover { transform: translateY(-2px); }

/* ---------- Ticker ---------- */
.ticker-wrap {
  background: var(--lime);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: marqueeScroll 26s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--black);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.ticker-dot { color: rgba(0,0,0,0.35); }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- Icon wrap ---------- */
.icon-wrap {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: border-color 0.2s ease;
}
.icon-wrap svg { width: 19px; height: 19px; stroke: var(--lime); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.testi-card {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 26px;
  position: relative;
}
.testi-quote-icon {
  position: absolute;
  top: 24px; right: 22px;
  width: 26px; height: 26px;
  opacity: 0.5;
}
.testi-quote-icon svg { width: 100%; height: 100%; fill: var(--lime); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; position: relative; }
.testi-stars .star { width: 9px; height: 9px; background: var(--lime); border-radius: 1px; }
.testi-text {
  font-size: 0.92rem; color: var(--white); line-height: 1.7;
  font-style: italic; margin-bottom: 20px; position: relative; z-index: 1;
}
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Mission strip ---------- */
.mission-strip {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 8vw, 80px) var(--gutter);
  text-align: center;
}
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 20px;
  text-transform: uppercase;
}

/* ---------- CTA strip (lime, full-bleed) ---------- */
.cta-strip {
  background: var(--lime);
  padding: clamp(40px, 6vw, 64px) var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.cta-strip-sub { font-size: 0.9rem; color: rgba(0,0,0,0.6); }
.btn-dark {
  display: inline-block; background: var(--black); color: var(--white);
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 15px 32px;
  border-radius: 2px; white-space: nowrap; transition: background 0.2s ease, transform 0.2s ease;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

/* ---------- Service detail sections (services page) ---------- */
.service-section {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 80px) 0;
}
.service-section:nth-child(even) { background: var(--black-soft); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.service-cat { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime); margin-bottom: 14px; }
.service-detail-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.service-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-item {
  background: var(--black-soft); border: 1px solid var(--line);
  border-radius: 3px; padding: 18px 20px;
  transition: border-color 0.2s ease;
}
.service-section:nth-child(even) .service-item { background: var(--black); }
.service-item:hover { border-color: var(--grey-dim); }
.service-item-title { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.service-item-desc { font-size: 0.8rem; color: var(--grey); line-height: 1.6; }
.service-tag { display: inline-block; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime); margin-top: 8px; }
@media (max-width: 760px) {
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-items { grid-template-columns: 1fr; }
}

/* ---------- Contact detail icons ---------- */
.contact-detail { display: flex; gap: 16px; align-items: center; }
.contact-detail .icon-wrap { flex-shrink: 0; margin-bottom: 0; width: 38px; height: 38px; }
.contact-detail .icon-wrap svg { width: 17px; height: 17px; }
.contact-detail-label { font-size: 0.78rem; color: var(--grey); margin-bottom: 4px; line-height: 1.3; }
.contact-detail a, .contact-detail .val { line-height: 1.3; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.02em; }

p { margin: 0; color: var(--grey); max-width: 60ch; }
p.lede { font-size: 1.2rem; color: var(--white); max-width: 46ch; }

.text-lime { color: var(--lime); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(64px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--line);
}
.section:last-of-type { border-bottom: none; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: var(--lime);
  color: var(--black);
}
.btn-primary:hover { background: #b3e600; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--white); }

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--white);
}
.logo span { color: var(--lime); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--grey);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--lime);
}

.nav-cta { display: flex; align-items: center; gap: 24px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.72rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px; height: 24px;
  position: relative;
  z-index: 200;
}
.nav-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links { 
    position: fixed;
    inset: 0;
    top: 64px;
    background: var(--black);
    flex-direction: column;
    padding: 40px var(--gutter);
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 150;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--white);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 900px; }
.hero h1 { margin-bottom: 28px; }
.hero .lede { margin-bottom: 0; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: clamp(56px, 8vw, 96px);
}
.stat {
  padding: 32px 24px 0;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--lime);
  display: block;
}
.stat .label {
  font-size: 0.88rem;
  color: var(--grey);
  margin-top: 6px;
  display: block;
}
@media (max-width: 760px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { padding-left: 24px !important; margin-top: 24px; }
  .stat:nth-child(odd) { border-left: none; }
}

/* ---------- Cards ---------- */
.card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-soft);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.value-item {
  background: var(--black);
  padding: 32px;
}
.value-item h4 { color: var(--lime); margin-bottom: 12px; }
.value-item p { font-size: 0.95rem; }
@media (max-width: 760px) {
  .value-list { grid-template-columns: 1fr; }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.service-card {
  background: var(--black);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card .index {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--grey-dim);
}
.service-card h3 { margin-bottom: 4px; }
.service-card ul { margin-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.service-card li {
  font-size: 0.92rem;
  color: var(--grey);
  padding-left: 18px;
  position: relative;
}
.service-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--lime);
}
@media (max-width: 760px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process-list { margin-top: 56px; }
.process-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-row .step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lime);
}
.process-row h4 { margin-bottom: 8px; color: var(--white); }
.process-row p { font-size: 0.95rem; }
@media (max-width: 600px) {
  .process-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- FAQ Accordion ---------- */
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 1.15rem;
  font-weight: 500;
  font-family: var(--font-body);
}
.faq-question .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-question .icon::before, .faq-question .icon::after {
  content: '';
  position: absolute;
  background: var(--lime);
  transition: transform 0.25s ease;
}
.faq-question .icon::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-question .icon::after { top: 0; left: 50%; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-item[data-open="true"] .icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item[data-open="true"] .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 26px; }
.faq-answer p { font-size: 0.98rem; }

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.portfolio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-soft);
}
.portfolio-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--black-soft), var(--black));
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-card .thumb span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--line);
}
.portfolio-card .info { padding: 28px; }
.portfolio-card .tag {
  font-size: 0.78rem;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.portfolio-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.portfolio-card p { font-size: 0.92rem; }
@media (max-width: 760px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey);
}
.field input, .field select, .field textarea {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--lime);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a85' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-submit { margin-top: 8px; }
.form-note { font-size: 0.85rem; margin-top: 16px; }
.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { color: var(--lime); }
.form-status.error { color: #ff6b5e; }

.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail h4 { color: var(--grey); font-size: 0.82rem; margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.contact-detail a, .contact-detail .val { font-size: 1.1rem; color: var(--white); }
.contact-detail a:hover { color: var(--lime); }

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(56px, 8vw, 88px) 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; }
.footer-social { display: flex; gap: 14px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.footer-social a:hover { border-color: var(--lime); background: rgba(200,255,0,0.08); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.98rem; color: var(--grey); }
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.section-head { max-width: 640px; margin-bottom: 8px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
