/* ============================================================
   Sungrace Uniforms — Design System
   Navy ink + Sungrace red accent, light surfaces.
   Fonts: Lexend (display) / Source Sans 3 (body)
   ============================================================ */

:root {
  /* Color tokens */
  --ink: #0e1f4d;
  --ink-soft: #2e4270;
  --ink-muted: #566494;
  --accent: #6d28d9;          /* violet-700 — 7:1 on white */
  --accent-dark: #5b21b6;
  --accent-2: #2563eb;        /* blue-600 */
  --accent-3: #a855f7;        /* purple-400 — gradient tail only */
  --grad: linear-gradient(100deg, #2563eb 0%, #7c3aed 55%, #a855f7 100%);
  --accent-tint: #f0effe;     /* blue-violet wash */
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-navy: #12265c;
  --border: #e2e8f0;
  --white: #ffffff;

  /* Type scale */
  --font-display: 'Lexend', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* Spacing / layout */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 6px 30px rgba(14, 31, 77, 0.08);
  --shadow-lg: 0 16px 50px rgba(14, 31, 77, 0.14);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Visible keyboard focus (skill rule: never rely on removed/default-only outlines) */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; border-radius: 999px; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 0 0 10px 10px;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

.accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--accent); /* fallback */
  -webkit-text-fill-color: transparent;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--bg-navy); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: #cbd5e1; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
}
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head p { margin-top: 16px; font-size: 1.125rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--grad);
  background-size: 160% 100%;
  background-position: 0% 0%;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.32);
  transition: transform var(--transition), box-shadow var(--transition), background-position var(--transition);
}
.btn-primary:hover { background-position: 100% 0%; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(109, 40, 217, 0.4); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #1a3372; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--border); color: var(--ink); background: var(--white); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar {
  background: var(--bg-navy);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { color: #c4b5fd; }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--accent);
  -webkit-text-fill-color: transparent;
}
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 12px 2px; /* ≥44px total hit area (touch-target rule) */
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a.nav-cta {
  margin-left: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--accent) !important; /* beats .main-nav a in stale-recalc edge cases */
  border: 1.5px solid var(--accent);
  border-radius: 999px;
}
.main-nav a.nav-cta::after { display: none; }
.main-nav a.nav-cta:hover {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-1px);
}
/* ---------- Products dropdown ---------- */
.nav-dd { position: relative; }
.nav-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 12px 2px;
  transition: color var(--transition);
}
.nav-dd-btn:hover, .nav-dd.dd-current .nav-dd-btn { color: var(--ink); }
.nav-dd-btn svg { transition: transform var(--transition); }
.nav-dd:hover .nav-dd-btn svg, .nav-dd.open .nav-dd-btn svg { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2px 14px;
  z-index: 120;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu, .nav-dd.open .nav-dd-menu { display: grid; }
.nav-dd-menu a {
  padding: 9px 12px !important;
  border-radius: 8px;
  font-size: 0.92rem;
}
.nav-dd-menu a::after { display: none !important; }
.nav-dd-menu a:hover { background: var(--accent-tint); color: var(--accent) !important; }
.nav-dd-menu a[aria-current="page"] { color: var(--accent) !important; }
.nav-dd-menu a:last-child { grid-column: 1 / -1; border-top: 1px solid var(--border); border-radius: 0 0 8px 8px; margin-top: 6px; padding-top: 12px !important; font-weight: 600; color: var(--accent) !important; }
@media (max-width: 860px) {
  .nav-dd { width: 100%; text-align: center; }
  .nav-dd-btn { font-size: 1.15rem; width: 100%; justify-content: center; }
  .nav-dd-menu {
    position: static;
    min-width: 0;
    grid-template-columns: 1fr;
    border: 0;
    box-shadow: none;
    background: var(--bg-alt);
  }
  .nav-dd-menu a { font-size: 1rem !important; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 110px);
  background:
    radial-gradient(ellipse 900px 500px at 88% -10%, var(--accent-tint), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(124, 58, 237, 0); }
}
.hero p.lede {
  margin-top: 24px;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat .num em { font-style: normal; color: var(--accent); font-size: 0.7em; }
.stat .label { font-size: 0.92rem; color: var(--ink-muted); margin-top: 2px; }

/* ---------- Image placeholders (swap with real photos) ---------- */
.ph {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, #e8edf5 0%, #dde5f0 45%, #eef2f8 100%);
  border: 1px dashed #b8c4d6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ink-muted);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(14,31,77,0.025) 22px 44px);
}
.ph-label {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 18px;
  background: rgba(255,255,255,0.85);
  border-radius: 8px;
  max-width: 82%;
}
.ph-hero { aspect-ratio: 4 / 4.6; box-shadow: var(--shadow-lg); }
.ph-card { aspect-ratio: 16 / 10; border-radius: var(--radius) var(--radius) 0 0; border-bottom: none; }
.ph-wide { aspect-ratio: 16 / 7; }
.ph-square { aspect-ratio: 1; }

.hero-visual { position: relative; }
.hero-float {
  position: absolute;
  bottom: 26px;
  left: -34px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
}
.hero-float .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.hero-float .ico svg { width: 22px; height: 22px; }
.hero-float strong { display: block; color: var(--ink); font-size: 1rem; }
.hero-float span { font-size: 0.8rem; color: var(--ink-muted); }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* ---------- Cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 0.98rem; flex: 1; }
.card-link {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Feature tiles */
.tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tile .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-tint);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.tile .ico svg { width: 26px; height: 26px; }
.tile h3 { font-size: 1.15rem; margin-bottom: 10px; }
.tile p { font-size: 0.95rem; }

/* ---------- Process timeline ---------- */
.process { counter-reset: step; }
.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  padding-bottom: 44px;
}
.process-item:last-child { padding-bottom: 0; }
.process-item::before {
  content: "";
  position: absolute;
  left: 41px;
  top: 84px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}
.process-item:last-child::before { display: none; }
.process-num {
  counter-increment: step;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  box-shadow: var(--shadow);
}
.process-num::before { content: "0" counter(step); }
.process-item h3 { margin-bottom: 8px; }
.process-item .tat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-tint);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

/* ---------- Quote / testimonial ---------- */
.quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-tint);
  position: absolute;
  top: 18px;
  left: 28px;
}
.quote blockquote {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--ink);
  line-height: 1.6;
  position: relative;
}
.quote figcaption {
  margin-top: 26px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote figcaption span { display: block; font-weight: 400; font-size: 0.9rem; color: var(--ink-muted); }
.quote .avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(140deg, #e8edf5, #dde5f0);
  border: 1px dashed #b8c4d6;
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  overflow: hidden;
}
.quote .avatar svg { width: 26px; height: 26px; }
.quote .avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.02rem;
}
.checklist svg {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse 700px 400px at 15% 0%, rgba(37,99,235,0.4), transparent 55%),
    radial-gradient(ellipse 700px 400px at 90% 100%, rgba(168,85,247,0.3), transparent 55%),
    var(--bg-navy);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 80px);
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); max-width: 700px; margin: 0 auto 18px; }
.cta-banner p { color: #cbd5e1; max-width: 560px; margin: 0 auto 34px; font-size: 1.1rem; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 800px 420px at 85% -20%, var(--accent-tint), transparent 60%),
    var(--bg-alt);
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: #cbd5e1; }
.page-hero p.lede { margin-top: 20px; font-size: 1.15rem; max-width: 680px; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 5vw, 64px); }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info-card .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-card .ico svg { width: 22px; height: 22px; }
.contact-info-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 0.98rem; color: var(--ink-soft); }
.contact-info-card a:hover { color: var(--accent); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

/* ---------- Blog article typography ---------- */
.article h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin: 38px 0 14px; }
.article p { margin-bottom: 18px; font-size: 1.08rem; }
.article ul.checklist { margin: 0 0 20px; }
.article a { color: var(--accent); font-weight: 600; }
.article a:hover { text-decoration: underline; }

/* ---------- WhatsApp float + social row + form banners + map ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.09); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55); }

.social-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #8b9bc7;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-row a:hover { background: var(--grad); color: #fff; transform: translateY(-2px); }

.form-banner { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 600; }
.form-banner.ok { background: #e7f9ef; color: #166534; }
.form-banner.err { background: #fde8e8; color: #b91c1c; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 8px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--accent); font-weight: 600; }
.map-link:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-navy); color: #94a3b8; padding: clamp(50px, 7vw, 80px) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.site-footer .logo { color: var(--white); margin-bottom: 14px; display: inline-block; }
.site-footer .logo small { color: #8b9bc7; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 0.95rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 12px; font-size: 0.95rem; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #24397a;
  padding: 22px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Real photos ---------- */
.photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .photo { border-radius: var(--radius) var(--radius) 0 0; box-shadow: none; aspect-ratio: 16/10; }

/* ---------- Apple-style: hero 3D parallax ---------- */
.hero-visual { perspective: 1200px; }
.hero-3d {
  transform-style: preserve-3d;
  transform: rotateY(-7deg) rotateX(2.5deg);
  will-change: transform;
  transition: transform 0.15s linear;
}
.hero-3d .photo { aspect-ratio: 4/4.6; }
.hero-copy { will-change: transform, opacity; }

/* ---------- Apple-style: pinned 3D showcase ---------- */
.showcase { position: relative; height: 380vh; background: var(--bg-navy); }
.showcase-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vh, 36px);
  padding: 24px;
}
.showcase-head { text-align: center; max-width: 680px; }
.showcase-head h2 { color: var(--white); }
.showcase-head .kicker { justify-content: center; margin-bottom: 12px; }
.showcase-stage {
  position: relative;
  width: min(860px, 92vw);
  height: min(46vh, 430px);
  perspective: 1400px;
  transform-style: preserve-3d;
}
.sc-item {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(560px, 78vw);
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  will-change: transform, opacity;
  transform-style: preserve-3d;
}
.sc-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sc-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,38,92,0.55), transparent 45%);
}
.sc-label {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.sc-label small { display: block; font-weight: 400; font-size: 0.82rem; color: #cbd5e1; }
.showcase-caption {
  min-height: 3.4em;
  width: min(560px, 88vw);
  text-align: center;
  color: #cbd5e1;
  font-size: 1.05rem;
  position: relative;
}
.showcase-caption p {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.showcase-caption p.on { opacity: 1; }
.showcase-dots { display: flex; gap: 10px; }
.showcase-dots span {
  width: 34px; height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  position: relative;
}
.showcase-dots span i {
  position: absolute;
  inset: 0;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- Apple-style: statement text scroll-fill ---------- */
.statement { position: relative; height: 220vh; }
.statement-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1000px;
}
.statement-text .w { color: #cbd5e1; transition: color 0.18s linear; }
.statement-text .w.lit { color: var(--ink); }
.statement-text .w.grad-target.lit {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Apple-style: 3D tilt cards ---------- */
@media (hover: hover) {
  .tilt {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.25s ease, box-shadow var(--transition);
  }
  .tilt:hover { transition: transform 0.06s linear, box-shadow var(--transition); }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .hero-float { left: 12px; }
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 100; position: relative; }
  .topbar .hours { display: none; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 60px 1fr; gap: 18px; }
  .process-num { width: 60px; height: 60px; font-size: 1.15rem; }
  .process-item::before { left: 29px; top: 62px; }
  .trust-strip .container { justify-content: flex-start; }
}
