/* Da Scrub Squad — site styles
   Palette is lifted from the logo: royal blue, sky blue, ink black. */

:root {
  --blue: #0d50a1;
  --blue-dark: #0a3f80;
  --blue-deep: #0b2a57;
  --sky: #73a5e0;
  --sky-tint: #e4eefa;
  --ice: #f1f5fa;
  --line: #d9e2ee;
  --ink: #191919;
  --text: #2a313c;
  --muted: #5d6675;
  --white: #ffffff;
  --success: #1f7a3d;
  --error: #b3261e;

  --font-display: "Kanit", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;

  --container: 1160px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(11, 42, 87, 0.10);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--ink); line-height: 1.1; text-wrap: balance; }
p { margin: 0; }

:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 200; }
.skip-link:focus { left: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 1.0625rem; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--blue-deep); }
.btn-light:hover { background: var(--sky-tint); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(11,42,87,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { height: 56px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: .01em; line-height: 1; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .72rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

.main-nav ul { display: flex; gap: 32px; }
.main-nav a { color: var(--text); font-weight: 600; font-size: 1rem; padding: 6px 0; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.main-nav a:hover { text-decoration: none; color: var(--blue); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 1.0625rem; font-variant-numeric: tabular-nums; }
.phone-link svg { width: 18px; height: 18px; color: var(--blue); }
.phone-link:hover { text-decoration: none; color: var(--blue); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer; align-items: center; justify-content: center; padding: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: background .18s ease; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease, top .2s ease; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
  background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(11,42,87,.12);
  padding: 8px 24px 24px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul li { border-bottom: 1px solid var(--line); }
.mobile-menu ul a { display: block; padding: 16px 0; font-weight: 600; font-size: 1.125rem; color: var(--ink); }
.mobile-menu .btn { margin-top: 20px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--ice) 100%); }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center; padding: 72px 0 80px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 700; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--blue); border-radius: 2px; }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.25rem); font-weight: 700; letter-spacing: -.01em; margin: 18px 0 20px; }
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-lede { font-size: 1.25rem; color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.promise { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.promise li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.promise svg { width: 22px; height: 22px; flex: none; color: var(--blue); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo {
  position: relative; width: min(100%, 480px); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero-arc { position: absolute; inset: -22px; width: calc(100% + 44px); height: calc(100% + 44px); pointer-events: none; }
.hero-arc path { fill: none; stroke-width: 6; stroke-linecap: round; }
.hero-visual { padding: 22px; }
.hero-card {
  position: absolute; right: 0; bottom: 8px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
}
.hero-card-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--sky-tint); color: var(--blue); display: grid; place-items: center; }
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); line-height: 1.15; }
.hero-card span { font-size: .9rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-ice { background: var(--ice); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; margin: 14px 0 14px; letter-spacing: -.005em; }
.section-head p { color: var(--muted); font-size: 1.125rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 14px; transition: transform .2s ease, box-shadow .2s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--sky-tint); color: var(--blue); display: grid; place-items: center; }
.service-icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.3rem; font-weight: 600; }
.service p { color: var(--muted); font-size: 1rem; }
.services-note { margin-top: 28px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.services-note a { font-weight: 600; }

/* About */
.about-inner { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 56px; align-items: center; }
.about-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; margin: 14px 0 20px; }
.about-copy p { color: var(--text); margin-bottom: 16px; max-width: 36em; }
.about-copy blockquote { margin: 28px 0 0; padding: 18px 22px; border-left: 4px solid var(--blue); background: var(--ice); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--blue-deep); line-height: 1.35; }
.about-copy blockquote cite { display: block; margin-top: 8px; font-family: var(--font-body); font-style: normal; font-size: .9rem; color: var(--muted); font-weight: 600; }
.about-copy .btn { margin-top: 28px; }

.collage { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.collage figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--sky-tint); position: relative; }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage .tall { grid-row: span 2; min-height: 0; }
.collage .wide { aspect-ratio: 4 / 3; }
.collage .pano { grid-column: span 2; aspect-ratio: 2.1 / 1; }
.collage .pano img { object-position: 50% 80%; }
.collage figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(25,25,25,.78); color: #fff; font-size: .8rem; font-weight: 600; padding: 6px 10px; border-radius: 6px; }
.collage-badge {
  display: flex; align-items: center; gap: 14px; background: var(--blue); color: #fff; border-radius: var(--radius); padding: 20px 22px;
}
.collage-badge strong { display: block; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.2; }
.collage-badge span { font-size: .95rem; opacity: .9; }
.collage-badge svg { width: 30px; height: 30px; flex: none; }

/* Before & after */
.results-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
.results-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; margin: 14px 0 16px; }
.results-copy > p { color: var(--muted); font-size: 1.125rem; max-width: 32em; }
.results-list { display: grid; gap: 10px; margin: 24px 0 30px; }
.results-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.results-list svg { width: 22px; height: 22px; flex: none; color: var(--blue); }
.compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.compare figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; background: var(--sky-tint); box-shadow: var(--shadow); }
.compare img { width: 100%; height: 100%; object-fit: cover; }
.tag { position: absolute; top: 14px; left: 14px; font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 6px; color: #fff; }
.tag-before { background: rgba(25,25,25,.85); }
.tag-after { background: var(--blue); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px 32px; }
.step-num { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--sky); }
.step h3 { font-size: 1.35rem; font-weight: 600; margin: 14px 0 10px; }
.step p { color: var(--muted); }
.steps-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Areas */
.areas-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: start; }
.areas-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; margin: 14px 0 18px; }
.areas-copy p { color: var(--muted); font-size: 1.125rem; margin-bottom: 26px; max-width: 30em; }
.areas-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.areas-groups h3 { font-size: 1.05rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-body); padding-bottom: 10px; border-bottom: 2px solid var(--sky-tint); margin-bottom: 12px; }
.areas-groups li { padding: 5px 0; color: var(--text); }

/* Instagram band */
.insta { position: relative; background: var(--blue-deep); color: #fff; overflow: hidden; }
.insta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; opacity: .28; }
.insta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,42,87,.92) 0%, rgba(11,42,87,.7) 60%, rgba(11,42,87,.55) 100%); }
.insta-inner { position: relative; z-index: 1; }
.insta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; padding: 64px 0; }
.insta h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; margin-bottom: 12px; }
.insta p { color: rgba(255,255,255,.8); font-size: 1.125rem; max-width: 34em; }
.insta .handle { color: #fff; font-weight: 700; }
.insta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 56px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 700; margin: 14px 0 16px; }
.contact-copy > p { color: var(--muted); font-size: 1.125rem; margin-bottom: 30px; max-width: 30em; }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: flex; gap: 16px; align-items: center; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); transition: border-color .18s ease, box-shadow .18s ease; }
.contact-item:hover { text-decoration: none; border-color: var(--sky); box-shadow: var(--shadow); }
.contact-item-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--sky-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item strong { display: block; font-size: 1.05rem; }
.contact-item span { color: var(--muted); font-size: .95rem; }

.quote-form { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 36px; box-shadow: var(--shadow); }
.quote-form h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 6px; }
.quote-form > p { color: var(--muted); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .95rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--sky-tint); }
.field textarea { min-height: 120px; resize: vertical; }
.form-footer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
.form-footer small { color: var(--muted); }
.form-status { margin-top: 16px; padding: 12px 14px; border-radius: var(--radius-sm); font-weight: 600; display: none; }
.form-status.ok { display: block; background: #e6f4ea; color: var(--success); }
.form-status.err { display: block; background: #fdecea; color: var(--error); }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand img { height: 88px; width: auto; background: #fff; padding: 10px; border-radius: 16px; }
.footer-brand p { margin-top: 16px; max-width: 30em; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul li { padding: 5px 0; }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; color: #fff; transition: background .18s ease; }
.footer-social a:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .9rem; color: rgba(255,255,255,.6); }

/* Mobile call bar */
.call-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff; border-top: 1px solid var(--line); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; box-shadow: 0 -8px 24px rgba(11,42,87,.10); }
.call-bar .btn { flex: 1; padding: 13px 10px; font-size: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .results-inner { gap: 40px; }
  .hero-inner { gap: 40px; }
  .main-nav ul { gap: 22px; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .main-nav, .header-actions .btn, .header-actions .phone-label { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { gap: 12px; }
  .brand img { height: 50px; }
  .brand-name { display: none; }
  .phone-link { width: 44px; height: 44px; justify-content: center; border: 1.5px solid var(--line); border-radius: var(--radius-sm); }
  .phone-link svg { width: 20px; height: 20px; }

  .hero-inner { grid-template-columns: 1fr; padding: 44px 0 56px; gap: 36px; }
  .hero-visual { order: -1; padding: 16px 16px 40px; }
  .hero-photo { width: min(100%, 360px); }
  .hero-arc { inset: -16px; width: calc(100% + 32px); height: calc(100% + 32px); }
  .hero-card { right: auto; left: 50%; transform: translateX(-50%); bottom: 0; white-space: nowrap; }
  .hero h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
  .hero-lede { font-size: 1.125rem; }
  .promise { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }

  .section { padding: 64px 0; }
  .about-inner, .areas-inner, .contact-inner, .results-inner { grid-template-columns: 1fr; gap: 40px; }
  .results-inner .compare { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .areas-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insta-inner { grid-template-columns: 1fr; padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .call-bar { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 26px 20px; }
  .hero-actions .btn { width: 100%; }
  .steps-cta .btn { width: 100%; }
  .collage { gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collage .pano { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .collage figcaption { font-size: .72rem; padding: 4px 8px; left: 8px; bottom: 8px; }
  .compare { gap: 10px; }
  .compare figure { border-radius: 10px; }
  .footer-bottom { flex-direction: column; }
}
