/* =========================================================
   Wildcolour Digital — Global Stylesheet
   Palette: Wildcolour charcoal, chartreuse, lemon yellow and magenta
   ========================================================= */

:root {
  --bg-0: #000;
  --bg-1: #101012;
  --bg-2: #19191c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #f5f4f5;
  --text-muted: #b0afb6;
  --text-dim: #939198;

  --lime: #d1fe17;
  --lime-soft: #d1fe17;
  --magenta: #d44d94;
  --magenta-soft: #eea4ca;
  --yellow: #ece641;

  --gradient: linear-gradient(110deg, #d44d94 0%, #edb36d 48%, #d1fe17 100%);
  --gradient-soft: linear-gradient(135deg, rgba(209, 254, 23, 0.18), rgba(212, 77, 148, 0.18));
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px rgba(212, 77, 148, 0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ticker-height: 48px;

  --font-display: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { min-height: 100%; }
body { min-height: 100vh; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  padding-bottom: var(--ticker-height);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--lime); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--text-muted); }

::selection { background: var(--magenta); color: #fff; }

/* -------- Page backdrop: animated aurora orbs -------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #17111888 0%, transparent 60%), var(--bg-0);
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite alternate;
}
.aurora::before {
  background: radial-gradient(circle, #d1fe17 0%, transparent 60%);
  top: -180px; left: -140px;
}
.aurora::after {
  background: radial-gradient(circle, #d44d94 0%, transparent 60%);
  bottom: -200px; right: -160px;
  animation-duration: 28s;
  animation-delay: -6s;
}
.aurora .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(120px, 80px) scale(1.15); }
  100% { transform: translate(-80px, 60px) scale(0.95); }
}

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(44px, 6vw, 84px) 0; position: relative; }
.section-sm { padding: clamp(29px, 3.6vw, 48px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #050603;
  padding: 6px 14px;
  border: 1px solid #d1fe17;
  border-radius: var(--radius-pill);
  background: #d1fe17;
  box-shadow: 0 0 20px rgba(209, 254, 23, 0.12);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #050603;
  box-shadow: none;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: shift 6s ease infinite;
}
@keyframes shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-title {
  max-width: 780px;
  margin-bottom: 48px;
}
.section-title p { margin-top: 16px; font-size: 1.05rem; }

/* -------- Header / Navigation -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 9, 0.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(8, 8, 9, 0.9); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--gradient);
  box-shadow: 0 0 20px rgba(212, 77, 148, 0.6);
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: var(--bg-0);
}
.logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, #fff 45deg, transparent 90deg);
  animation: spin 4s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

/* Dropdown (services) */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 560px;
  background: rgba(16, 16, 18, 0.96);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.2s var(--ease);
  color: var(--text);
}
.dropdown a:hover { background: var(--surface-strong); color: var(--text); }
.dropdown a strong { font-size: 0.95rem; font-weight: 600; }
.dropdown a span { font-size: 0.82rem; color: var(--text-dim); margin-top: 2px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 42px; height: 42px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* -------- Buttons (with moving gradient halo) -------- */
.btn {
  --btn-pad-y: 14px;
  --btn-pad-x: 26px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  isolation: isolate;
  overflow: hidden;
  color: var(--text);
  background: var(--bg-1);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — moving conic gradient border that travels around the button */
.btn-primary {
  padding: calc(var(--btn-pad-y) + 1px) calc(var(--btn-pad-x) + 1px);
  background: var(--bg-1);
  color: #fff;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(from 0deg, #d1fe17, #d44d94, #ece641, #d1fe17);
  animation: spin 4s linear infinite;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, #171814 0%, #202219 100%);
}
.btn-primary:hover { box-shadow: 0 10px 40px rgba(212, 77, 148, 0.45); }

/* Solid gradient — moving background gradient */
.btn-gradient {
  background: var(--gradient);
  background-size: 200% 200%;
  color: #10110a;
  font-weight: 600;
  border: none;
  animation: btn-shift 5s ease infinite;
}
.btn-gradient:hover { box-shadow: 0 10px 40px rgba(209, 254, 23, 0.45); }
@keyframes btn-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 20px rgba(209, 254, 23, 0.2);
}

.btn-arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  gap: 32px;
  max-width: 920px;
}
.hero h1 { font-weight: 600; }
.hero .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 640px;
  color: var(--text-muted);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* -------- Service cards grid -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 77, 148, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 22px;
}
.service-card .icon svg { width: 22px; height: 22px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; flex: 1; }
.service-card .card-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lime);
}
.service-card .card-link:hover { color: var(--lime-soft); }

/* -------- Stats band -------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* -------- Process / steps -------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--lime);
  display: block;
  margin-bottom: 14px;
}
.step h4 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* -------- Feature list (service detail pages) -------- */
.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.feature-list li .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10110a;
  font-weight: 700;
  font-size: 0.75rem;
}
.feature-list li span.txt {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.feature-list li strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

/* -------- Two-column content (service pages) -------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.reverse { grid-template-columns: 1fr 1.1fr; }
.two-col .prose p { margin-bottom: 16px; font-size: 1.02rem; }
.two-col .prose h3 { margin: 28px 0 12px; }

/* -------- FAQ -------- */
.faq {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: border-color 0.25s var(--ease);
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--lime);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 14px;
  font-size: 0.97rem;
}

/* -------- Testimonials -------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 12px; right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--magenta);
  opacity: 0.4;
}
.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10110a;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.testimonial .who .name { font-weight: 600; font-size: 0.92rem; }
.testimonial .who .role { font-size: 0.82rem; color: var(--text-dim); }

/* -------- CTA banner -------- */
.cta-banner {
  position: relative;
  padding: clamp(48px, 6vw, 80px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #141315 0%, #22151c 100%);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(209, 254, 23, 0.28), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 77, 148, 0.32), transparent 45%);
  z-index: -1;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { max-width: 560px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-banner .hero-ctas { justify-content: center; }

/* -------- Form -------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row.grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row.grid-2 > * { grid-column: auto; }
.form-row label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text);
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(209, 254, 23, 0.14);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row 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' fill='none'><path d='M1 1l5 5 5-5' stroke='%239ba1b3' stroke-width='1.5' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  display: none;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(209, 254, 23, 0.08);
  border: 1px solid rgba(209, 254, 23, 0.3);
  color: var(--lime-soft);
  margin-bottom: 18px;
}
.form-success.visible { display: block; }

.contact-info h3 { margin-bottom: 20px; }
.contact-info .info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-item .lbl {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-info .info-item .val { font-size: 1.05rem; color: var(--text); }
.contact-info .info-item a { color: var(--lime); }

/* -------- Footer -------- */
.site-footer {
  margin-top: 80px;
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(212, 77, 148, 0.04));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 300px;
}
.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  font-size: 0.93rem;
  color: var(--text-muted);
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
}
.footer-bottom .socials a:hover {
  color: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 16px rgba(209, 254, 23, 0.25);
}
.footer-bottom .socials svg { width: 16px; height: 16px; }

/* -------- Scroll reveal: content remains visible without JavaScript -------- */
.reveal { opacity: 1; transform: none; }
.reveal.pending { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* -------- Page hero (inner pages) -------- */
.page-hero {
  padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 3.6vw, 36px);
  position: relative;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-hero .breadcrumb a:hover { color: var(--lime); }
.page-hero h1 { max-width: 820px; }
.page-hero .lede { margin-top: 18px; max-width: 680px; font-size: 1.1rem; }

/* -------- Responsive -------- */
@media (max-width: 960px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 9, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 32px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li { border-bottom: 1px solid var(--border); }
  .nav-links > li:last-child { border-bottom: none; padding-top: 16px; }
  .nav-links a { padding: 14px 0; display: block; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    grid-template-columns: 1fr;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0 0 8px 12px;
    min-width: 0;
  }
  .dropdown a { padding: 8px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row.grid-2 { grid-template-columns: 1fr; }
}

/* -------- Wildcolour identity and photographic assets -------- */
:root { color-scheme: dark; --container: 1320px; }
::selection { background: var(--lime); color: #111208; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 5px; }
html { scroll-padding-top: 120px; }
.container { padding-inline: clamp(22px, 4vw, 56px); }
.aurora::before { opacity: .2; background: radial-gradient(circle, var(--magenta), transparent 62%); }
.aurora::after { opacity: .15; background: radial-gradient(circle, var(--lime), transparent 62%); }
.aurora .grid-overlay { opacity: .25; }
.gradient-text { animation: none; background-size: 100% 100%; }
.site-header, .site-header.scrolled { border-bottom: 0; background: #000; }
.nav { padding-block: 15px; gap: 32px; }
.logo { flex-shrink: 0; width: 234px; }
.logo img { width: 100%; height: auto; mix-blend-mode: screen; }
.logo-mark { display: none; }
.nav-links {
  gap: 27px; padding: 10px 12px 10px 28px; border-radius: 15px;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13), 0 10px 30px #0002;
}
.nav-links > li > a { white-space: nowrap; }
.nav-links .btn { --btn-pad-x: 21px; --btn-pad-y: 11px; font-size: .86rem; }
.nav-links .btn-primary { color: #f6f7ed; }
.dropdown { left: auto; right: -210px; transform: translateY(8px); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { transform: translateY(0); }
.dropdown::before { content: ''; position: absolute; height: 15px; top: -15px; inset-inline: 0; }
.dropdown a { white-space: normal; }
.dropdown a span { color: var(--text-muted); }

/* Tinted glass buttons keep the lettering on a calm, dark surface. */
.btn { border-radius: 12px; min-height: 48px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.btn-primary, .btn-gradient {
  border: 1px solid rgba(209,254,23,.72); color: #f6f7ed; font-weight: 500;
  background: linear-gradient(155deg, rgba(224,239,114,.2), rgba(74,82,26,.25) 42%, rgba(18,20,12,.82));
  box-shadow: inset 0 1px 1px #d1fe178c, inset 0 -1px 1px #d1fe1744, 0 0 18px #d1fe1716;
  animation: none;
}
.btn-primary::before, .btn-primary::after { content: none; }
.btn-primary:hover, .btn-gradient:hover {
  color: #fff; border-color: #d1fe17;
  box-shadow: inset 0 1px 2px #d1fe179c, 0 0 24px #d1fe1728, 0 10px 24px #0004;
}
.btn-ghost {
  background: linear-gradient(155deg, #ffffff14, #ffffff03);
  border-color: #ffffff3b; box-shadow: inset 0 1px 0 #ffffff21;
}
.btn-ghost:hover { color: #fff; border-color: #d44d9499; box-shadow: 0 0 24px #d44d941c; }
.eyebrow { color: #050603; background: #d1fe17; border-color: #d1fe17; }
.eyebrow .dot { flex: 0 0 6px; background: #050603; box-shadow: none; }

/* The artwork is a separate layer so text never covers the face. */
.hero-brand { padding: clamp(52px, 6vw, 86px) 0 80px; isolation: auto; }
.hero-brand::before {
  content: ''; pointer-events: none; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 92% 65%, #d44d9410, transparent 44%), radial-gradient(ellipse at 50% 84%, #d1fe1708, transparent 38%);
}
.hero-layout { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 8px; }
.hero-brand .hero-inner { position: relative; z-index: 1; max-width: 650px; gap: 26px; }
.hero-brand .eyebrow { justify-self: start; font-size: .65rem; letter-spacing: .12em; max-width: 100%; }
.hero-brand h1 { font-size: clamp(2.7rem, 4.15vw, 3.85rem); letter-spacing: -.04em; line-height: 1.12; }
.hero-brand .lede { font-size: 1.06rem; line-height: 1.8; max-width: 555px; }
.hero-art { position: relative; width: 122%; margin-left: -7%; pointer-events: none; }
.hero-art img { width: 100%; height: auto; mix-blend-mode: screen; }

.services-grid { gap: 28px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.service-card {
  padding: 30px; border-radius: 18px; border-color: #ffffff26; isolation: isolate;
  background: radial-gradient(ellipse at 95% 100%, #d44d9411, transparent 58%), linear-gradient(150deg, #ffffff0a, #ffffff02);
  box-shadow: inset 0 1px 0 #ffffff0b; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.service-card:nth-child(even) { background: radial-gradient(ellipse at 95% 100%, #d1fe170d, transparent 58%), linear-gradient(150deg, #ffffff0a, #ffffff02); }
.service-card, .service-card:nth-child(even) { background-color: #121214; }
.service-card:hover { border-color: #d44d9470; box-shadow: inset 0 1px 0 #ffffff12, 0 16px 40px #0003; }
.service-card:nth-child(even):hover { border-color: #d1fe1770; }
.service-card h3 { font-size: 1.32rem; line-height: 1.35; }
.service-card .card-link { padding-top: 20px; border-top: 1px solid var(--border); }
.service-art {
  width: 126px; height: 126px; flex-shrink: 0; margin: 0 0 20px -9px;
  background-image: url('../assets/brand/wildcolour-service-icons.webp');
  background-size: 200% 500%; background-repeat: no-repeat;
  mix-blend-mode: screen; pointer-events: none; clip-path: inset(4% 3% 6% 3%);
}
.service-art--web-app-development { background-position: 0 0; }
.service-art--ecommerce-woocommerce { background-position: 100% 0; }
.service-art--seo { background-position: 0 25%; }
.service-art--google-ads { background-position: 100% 25%; }
.service-art--wordpress-plugins { background-position: 100% 50%; }
.service-art--performance { background-position: 0 75%; }
.service-art--website-maintenance { background-position: 100% 75%; }
.service-art--hosting { background-position: 0 100%; }
.service-art--email-domains { background-position: 100% 100%; }
.service-hero .container { position: relative; padding-right: 340px; }
.service-hero-art { position: absolute; width: 230px; height: 230px; right: 55px; top: 60px; margin: 0; }
.service-hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
.service-hero .lede { max-width: 690px; }
.stats, .step, .testimonial, .form-card, .faq details { box-shadow: inset 0 1px 0 #ffffff08; border-color: #ffffff20; }
.feature-list li .check { background: var(--lime); }
.testimonial .avatar { background: linear-gradient(120deg, #edb36d, #d1fe17); }
.cta-banner { background: linear-gradient(150deg, #141315ee, #121411ee); }
.cta-banner::before { background: radial-gradient(ellipse at 0 70%, #d44d9430, transparent 55%), radial-gradient(ellipse at 100% 90%, #d1fe1724, transparent 55%); }
.site-footer { background: #000; }
.footer-brand .logo { width: 240.5px; }

@media (min-width: 1500px) { .hero-art { width: 128%; margin-left: -5%; } }
@media (max-width: 1100px) {
  .nav-links { gap: 19px; padding-left: 20px; }
  .logo { width: 201.5px; }
  .hero-brand h1 { font-size: 2.85rem; }
  .hero-brand .lede { font-size: 1rem; }
  .service-hero .container { padding-right: 275px; }
  .service-hero-art { width: 195px; height: 195px; right: 38px; }
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; width: 46px; height: 46px; }
  .nav { padding-block: 12px; }
  .nav-links {
    position: absolute; top: 100%; left: 16px; right: 16px; width: auto;
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(12,12,14,.98); border: 1px solid #ffffff26; border-radius: 15px;
    padding: 16px 22px 24px; max-height: calc(100dvh - 110px); overflow-y: auto;
    visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav-links.open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .nav-links > li { border-bottom: 1px solid var(--border); }
  .nav-links > li:last-child { border-bottom: 0; padding-top: 16px; }
  .nav-links a { padding: 13px 0; display: block; }
  .nav-links a.active::after { content: none; }
  .nav-links .btn { display: inline-flex; width: 100%; }
  .dropdown, .has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
    position: static; transform: none; min-width: 0; width: auto; opacity: 1;
    visibility: visible; pointer-events: auto; grid-template-columns: 1fr;
    background: transparent; box-shadow: none; border: 0; padding: 0 0 12px 12px;
  }
  .dropdown::before { content: none; }
  .dropdown a { padding: 9px 0; }
  .hero-brand { padding-top: 46px; }
  .hero-layout { grid-template-columns: 1fr; gap: 20px; }
  .hero-brand .hero-inner { max-width: 730px; }
  .hero-brand h1 { font-size: clamp(2.6rem, 6.3vw, 3.6rem); }
  .hero-art { width: min(90%, 670px); margin: 0 auto; }
  .service-hero .container { padding-right: 220px; }
  .service-hero-art { width: 160px; height: 160px; right: 30px; top: 80px; }
  .service-hero h1 { font-size: 2.7rem; }
}
@media (max-width: 600px) {
  .logo { width: 182px; }
  .hero-brand { padding: 36px 0 40px; }
  .hero-brand .hero-inner { gap: 23px; }
  .hero-brand h1 { font-size: clamp(2.3rem, 9.5vw, 3rem); }
  .hero-brand .eyebrow { font-size: .57rem; letter-spacing: .08em; padding: 6px 10px; line-height: 1.6; }
  .hero-brand .lede { font-size: 1rem; line-height: 1.75; }
  .hero-art { width: 100%; margin: 8px 0 0; }
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { --btn-pad-x: 19px; font-size: .86rem; }
  .hero-brand .hero-ctas .btn { flex: 1 0 auto; }
  .services-grid, .testimonial-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .service-card { padding: 28px; }
  .service-art { width: 120px; height: 120px; }
  .service-hero .container { padding-right: 22px; }
  .service-hero-art { position: static; float: right; width: 88px; height: 88px; margin: 0 0 12px 12px; }
  .service-hero h1 { font-size: 2.45rem; clear: both; }
  .page-hero .breadcrumb { flex-wrap: wrap; font-size: .78rem; }
  .feature-list[style] { grid-template-columns: minmax(0,1fr) !important; }
  .stats { padding: 26px; }
  .form-card { padding: 24px; }
  .contact-info .info-item .val { overflow-wrap: anywhere; }
  .section-title { margin-bottom: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal.pending { opacity: 1; transform: none; }
}
