:root {
  --ink: #17111f;          /* deep aubergine-black */
  --ink-soft: #241a30;
  --magenta: #bc27e5;      /* their brand colour */
  --magenta-dark: #9c1fc4;
  --gold: #f5b301;         /* Google-star gold */
  --text: #1e1826;
  --muted: #6b6376;
  --bg: #ffffff;
  --bg-alt: #f8f5fb;       /* faint violet-tinted grey */
  --line: #e9e3f0;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Archivo", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { line-height: 1.1; }

h2 {
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  letter-spacing: -0.01em;
}

/* Scroll reveals */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Header */
.site-header { background: var(--ink); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 16px 24px; }

.logo {
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 21px;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-right: auto;
  white-space: nowrap;
}
.logo span { color: var(--magenta); }

.nav { display: flex; gap: 28px; }
.nav a { color: #cfc6dc; text-decoration: none; font-size: 14px; font-weight: 600; }
.nav a:hover { color: #fff; }

.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-call, .btn-primary { background: var(--magenta); color: #fff; box-shadow: 0 4px 18px rgba(188, 39, 229, 0.35); }
.btn-call:hover, .btn-primary:hover { background: var(--magenta-dark); }

.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--ink) 30%, var(--ink-soft) 100%);
  color: #fff;
  padding: 110px 0 130px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 45%;
  background: url("https://img1.wsimg.com/isteam/ip/f7deea72-2073-4946-bf66-f033300aa0fc/IMG_0044.jpeg/:/rs=w:1200") center/cover no-repeat;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%);
}

.hero-inner { position: relative; }

.hero-copy { max-width: 560px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--magenta); }

.hero-sub { font-size: 18px; color: #cfc6dc; margin-bottom: 34px; max-width: 460px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating Google review card — the signature */
.review-float {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 16px 22px;
  margin-top: 44px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}

.g-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #ea4335 0 90deg, #fbbc05 90deg 180deg, #34a853 180deg 270deg, #4285f4 270deg 360deg);
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.review-float-score { font-family: "Archivo Black", sans-serif; font-size: 22px; line-height: 1.2; }
.review-float-stars { color: var(--gold); font-size: 17px; letter-spacing: 1px; }
.review-float-label { font-size: 13px; color: var(--muted); }

/* Trust strip */
.trust-strip { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trust-inner {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* Sections */
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 12px auto 48px; }

.services { padding: 110px 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(35, 20, 50, 0.10); }

.service-icon { font-size: 30px; margin-bottom: 14px; }
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 16px; color: var(--muted); }

.services-also { text-align: center; margin-top: 32px; font-size: 15px; color: var(--muted); font-weight: 600; }

/* Stat band — signature echo */
.stat-band { background: var(--ink); color: #fff; padding: 72px 0; }
.stat-inner { display: flex; justify-content: center; gap: clamp(40px, 9vw, 120px); flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(52px, 8vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-star { color: var(--gold); }
.stat-label { display: block; margin-top: 8px; font-size: 14px; color: #b9aecb; font-weight: 600; }

/* About */
.about { background: var(--bg-alt); padding: 110px 0; }
.about-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 800px) { .about-inner { grid-template-columns: 1fr; } }

.about-text h2 { text-align: left; margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

.founders { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.founder-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 20px 8px 8px;
  font-size: 14px;
  font-weight: 700;
}

.founder-photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

.about-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}
.about-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-card-body { padding: 26px; }
.about-card h3 { font-size: 15px; margin-bottom: 6px; color: var(--ink); }
.about-card p { font-size: 16px; color: var(--muted); margin-bottom: 20px; }
.about-card p:last-child { margin-bottom: 0; }

/* Reviews */
.reviews { padding: 110px 0; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; font-size: 15px; }
.review-card p { font-size: 16px; margin-bottom: 16px; }
.reviewer { font-size: 13px; color: var(--muted); font-weight: 700; }

.reviews-link { text-align: center; margin-top: 34px; }
.reviews-link a { color: var(--magenta-dark); font-weight: 700; text-decoration: none; font-size: 15px; }
.reviews-link a:hover { text-decoration: underline; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 84px 0; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: #b9aecb; margin-bottom: 30px; }
.cta-band .hero-actions { justify-content: center; }

/* Contact */
.contact { padding: 110px 0; background: var(--bg-alt); }
.contact-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; }
@media (max-width: 800px) { .contact-inner { grid-template-columns: 1fr; } }

.contact h2 { text-align: left; margin-bottom: 10px; }
.contact > .wrap > div > p { color: var(--muted); margin-bottom: 24px; }

.btn-email { display: inline-flex; align-items: center; gap: 8px; }

.contact-alt { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 14px; }

.contact-details { background: #fff; border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); align-self: start; }
.contact-details h3 { margin-bottom: 16px; font-size: 16px; }
.contact-details p { margin-bottom: 12px; font-size: 16px; }
.contact-details a { color: var(--ink); font-weight: 600; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.socials { display: flex; gap: 14px; margin-top: 20px; }
.socials a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; transition: transform 0.15s ease; }
.socials a:hover { transform: translateY(-2px); }
.socials svg { width: 30px; height: 30px; }

/* Footer */
.site-footer { background: var(--ink); color: #b9aecb; text-align: center; padding: 26px 0; font-size: 13px; }

/* Mobile sticky call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--magenta);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  padding: 15px;
  text-decoration: none;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.2);
}

/* Focus visibility */
a:focus-visible, button:focus-visible { outline: 3px solid var(--magenta); outline-offset: 2px; }

/* Mobile */
@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 18px 24px;
    gap: 18px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .btn-call { display: none; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 52px; }

  .hero { padding: 70px 0 80px; }
  .hero-photo { inset: auto 0 0 0; height: 34%; opacity: 0.55; -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%); mask-image: linear-gradient(180deg, transparent 0%, #000 55%); }
  .review-float { margin-top: 32px; padding: 13px 18px; }
}

/* Lucide icons */
.ico { display: inline-block; vertical-align: -0.15em; }
.ico-logo { width: 26px; height: 26px; color: var(--magenta); vertical-align: -0.2em; }
.ico-btn { width: 16px; height: 16px; vertical-align: -0.18em; }
.ico-trust { width: 16px; height: 16px; color: var(--magenta); vertical-align: -0.22em; margin-right: 4px; }
.ico-contact { width: 16px; height: 16px; color: var(--magenta); vertical-align: -0.22em; margin-right: 6px; }
.ico-bar { width: 18px; height: 18px; vertical-align: -0.22em; margin-right: 6px; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(188, 39, 229, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0;
}
.service-icon svg { width: 26px; height: 26px; color: var(--magenta-dark); }

/* Our work gallery */
.work { padding: 0 0 110px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 540px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-tile {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-alt), #f1eaf7);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-tile svg { width: 30px; height: 30px; color: var(--magenta); opacity: 0.25; }
.work-photo {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
}

/* Faint electricity watermarks — break up the white */
.services, .reviews { position: relative; overflow: hidden; }
.services::before, .reviews::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bc27e5' stroke-width='1' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.reviews::before { top: -80px; right: -110px; transform: rotate(14deg); }
.services::before { bottom: -100px; left: -120px; transform: rotate(-12deg); }
.services .wrap, .reviews .wrap { position: relative; }
@media (max-width: 760px) {
  .services::before, .reviews::before { width: 300px; height: 300px; opacity: 0.04; }
}
