/* ==========================================================================
   Spark Support Services — site styles
   Palette pulled from the logo: teal, aqua, lime, gold spark.
   ========================================================================== */

:root {
  --teal-900: #06323c;
  --teal-800: #0a4c5b;
  --teal-700: #0e6b7d;
  --teal-600: #128298;
  --teal-500: #16a2b5;
  --aqua-400: #2bc4cf;
  --aqua-200: #a6e8ee;
  --aqua-50:  #eefafb;
  --lime-600: #5fa72e;
  --lime-500: #7cc244;
  --lime-100: #e6f5d8;
  --gold-500: #f5c13d;
  --gold-100: #fdf0cf;

  --ink:      #0a2e38;
  --body:     #41606a;
  --muted:    #6b8590;
  --line:     #dbe8eb;
  --surface:  #ffffff;
  --canvas:   #f5fafb;
  --canvas-2: #eaf5f7;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(6, 50, 60, .06), 0 2px 8px rgba(6, 50, 60, .05);
  --shadow:    0 4px 12px rgba(6, 50, 60, .07), 0 12px 32px rgba(6, 50, 60, .07);
  --shadow-lg: 0 8px 24px rgba(6, 50, 60, .09), 0 24px 56px rgba(6, 50, 60, .10);

  --wrap: 1160px;
  --gutter: clamp(20px, 5vw, 48px);

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-800); }

img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--teal-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout helpers ---------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--canvas { background: var(--canvas); }
.section--aqua { background: var(--aqua-50); }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head p { font-size: 1.08rem; color: var(--muted); margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lime-500), var(--aqua-400));
}
.section-head--center .eyebrow::before { display: none; }

.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--body); }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500) 60%, var(--aqua-400));
  color: #fff;
  box-shadow: 0 6px 18px rgba(18, 130, 152, .28);
}
.btn--primary:hover { color: #fff; box-shadow: 0 10px 26px rgba(18, 130, 152, .36); }

.btn--lime {
  background: var(--lime-500);
  color: #06323c;
  box-shadow: 0 6px 18px rgba(124, 194, 68, .32);
}
.btn--lime:hover { color: #06323c; background: var(--lime-600); }

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }

.btn--outline {
  background: #fff;
  border-color: var(--line);
  color: var(--teal-800);
}
.btn--outline:hover { border-color: var(--teal-500); color: var(--teal-700); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}
/* The logo is a wide lockup — at header size the wordmark inside it is
   unreadable, so we crop to just the icon and pair it with live text.
   Crop measured from the source file: the icon occupies roughly
   x 72–430, y 125–548 of the 1200×842 image (the wordmark starts at y 590). */
.brand-mark {
  display: block;
  width: 41px;
  height: 48px;
  flex-shrink: 0;
  background-image: url("../img/lct-logo.jpg");
  background-repeat: no-repeat;
  background-size: 136px auto;
  background-position: -8px -14px;
}
.brand img { height: 52px; width: auto; }

.brand-name {
  display: block;
  font-weight: 800;
  color: var(--ink);
  font-size: .95rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.brand-tag {
  display: none;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
}

@media (min-width: 480px) {
  .brand-name { font-size: 1.05rem; }
  .brand-tag { display: block; }
}

.nav { display: none; }

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  padding: 8px 2px;
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lime-500), var(--aqua-400));
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--teal-700); }

.header-cta { display: none; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--teal-800);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.lang-switch:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
  background: var(--aqua-50);
}
.lang-switch svg { color: var(--lime-600); flex-shrink: 0; }

/* Hidden on narrow screens — it appears in the mobile menu instead */
.header-bar .lang-switch { display: none; }
@media (min-width: 1040px) {
  .header-bar .lang-switch { display: inline-flex; }
}
.mobile-nav .lang-switch {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  padding: 14px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.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); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 12px var(--gutter) 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.mobile-nav .btn { margin-top: 18px; width: 100%; }

@media (min-width: 900px) {
  .nav { display: flex; gap: 26px; align-items: center; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(124, 194, 68, .30), transparent 62%),
    radial-gradient(760px 460px at 8% 110%, rgba(43, 196, 207, .28), transparent 60%),
    linear-gradient(150deg, var(--teal-900), var(--teal-800) 46%, var(--teal-700));
  color: #eaf6f8;
  padding: clamp(56px, 9vw, 108px) 0 clamp(64px, 9vw, 112px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .06));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--lime-500), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { color: rgba(234, 246, 248, .88); font-size: clamp(1.05rem, 2vw, 1.22rem); max-width: 56ch; }

.hero .eyebrow {
  color: var(--aqua-200);
  background: rgba(255, 255, 255, .10);
  padding: 7px 16px 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
}
.hero .eyebrow::before { background: var(--gold-500); }

.hero-points {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hero-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(234, 246, 248, .92);
  font-size: 1rem;
}
.hero-points svg { flex-shrink: 0; margin-top: 3px; color: var(--lime-500); }

.hero-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-card img {
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 18px;
  margin-bottom: 24px;
}
.hero-card h2 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: .5em;
}
.hero-card p { font-size: .98rem; margin-bottom: 20px; }
.hero-card .btn { width: 100%; }

/* ---------- Trust strip ---------- */

.trust {
  background: var(--canvas-2);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--teal-800);
}
.trust-list svg { color: var(--lime-600); flex-shrink: 0; }

/* ---------- Cards ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--aqua-200);
}
.card h3 { margin-bottom: .5em; }
.card p { font-size: .99rem; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-600), var(--aqua-400));
}
.card-icon--lime { background: linear-gradient(135deg, var(--lime-600), var(--lime-500)); }
.card-icon--gold { background: linear-gradient(135deg, #e0a41f, var(--gold-500)); color: #06323c; }

.card-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.card-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--body);
}
.card-list svg { flex-shrink: 0; margin-top: 4px; color: var(--lime-600); }

/* ---------- Split feature ---------- */

.split {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split-media { order: 2; }
}

.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(140deg, var(--aqua-50), var(--lime-100));
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  place-items: center;
  min-height: 280px;
}
.split-media img { border-radius: var(--radius); }

/* ---------- Vignette ----------
   Stands in for photography: a concrete "what this actually looks like"
   card. Swap the whole block for a real photo when you have one. */
.vignette {
  background: linear-gradient(150deg, var(--aqua-50), var(--lime-100));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.vignette-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 24px;
}
.vignette-label svg { color: var(--lime-600); flex-shrink: 0; }

.vignette-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.vignette-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(18, 130, 152, .22);
  font-size: .98rem;
  color: var(--ink);
}
.vignette-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.vignette-list time {
  font-weight: 800;
  font-size: .86rem;
  color: var(--teal-600);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

.vignette-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 130, 152, .18);
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Portrait ----------
   Uses a background-image so a missing file degrades to the gradient
   instead of showing a broken-image icon. */
.portrait {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  background-color: var(--aqua-50);
  background-image: linear-gradient(140deg, var(--aqua-200), var(--lime-100));
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  position: relative;
}
.portrait::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-500), var(--lime-500) 70%);
  opacity: .9;
  z-index: -1;
}

.portrait--sm { max-width: 240px; aspect-ratio: 1 / 1; border-radius: 50%; }
.portrait--sm::after { display: none; }

.founder-strip {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
@media (min-width: 820px) {
  .founder-strip { grid-template-columns: 240px 1fr; }
}

.signature {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-700);
  margin-top: 22px;
}
.signature span {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted);
  letter-spacing: .02em;
}

/* ---------- Steps ---------- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.steps li {
  counter-increment: step;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-500);
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.steps h3 { font-size: 1.12rem; margin-bottom: .4em; }
.steps p { font-size: .96rem; margin: 0; }

/* ---------- Quote / testimonial ---------- */

.quote {
  background: linear-gradient(140deg, var(--teal-800), var(--teal-700));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quote::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  right: -90px; top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 194, 68, .34), transparent 68%);
}
.quote blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: .95rem;
  color: var(--aqua-200);
  font-weight: 600;
}

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 24px;
  box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--aqua-200); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 36px 20px 0;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  font-size: 1.03rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--teal-500);
  border-bottom: 2.5px solid var(--teal-500);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq details > *:not(summary) { padding-bottom: 20px; font-size: .98rem; }

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: .93rem;
  margin-bottom: 7px;
}
.field .hint {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: .85rem;
  margin-top: -3px;
  margin-bottom: 8px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(22, 162, 181, .14);
}
textarea { min-height: 140px; resize: vertical; }

.field-row {
  display: grid;
  gap: 20px;
}
@media (min-width: 620px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.checks { display: grid; gap: 11px; }
.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .96rem;
  cursor: pointer;
}
.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--teal-600); flex-shrink: 0; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}
fieldset legend {
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
  padding: 0;
  margin-bottom: 6px;
}
.fieldset-note {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 18px;
}

.form-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 30px 0;
}

.form-note {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 16px;
}

/* ---------- Contact tiles ---------- */

.contact-tiles { display: grid; gap: 16px; }

.contact-tile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.contact-tile svg { color: var(--teal-500); flex-shrink: 0; margin-top: 3px; }
.contact-tile h3 { font-size: 1rem; margin-bottom: .2em; }
.contact-tile p { font-size: .95rem; margin: 0; }
.contact-tile a { font-weight: 600; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(700px 380px at 85% 0%, rgba(124, 194, 68, .26), transparent 62%),
    linear-gradient(135deg, var(--teal-800), var(--teal-600));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p {
  color: rgba(234, 246, 248, .9);
  max-width: 58ch;
  margin-inline: auto;
  font-size: 1.06rem;
}
.cta-band .btn-row { justify-content: center; margin-top: 28px; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background:
    radial-gradient(600px 320px at 82% -20%, rgba(124, 194, 68, .22), transparent 62%),
    linear-gradient(140deg, var(--teal-900), var(--teal-700));
  color: #fff;
  padding: clamp(48px, 7vw, 84px) 0;
}
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p {
  color: rgba(234, 246, 248, .88);
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  max-width: 62ch;
  margin-bottom: 0;
}
.page-hero .eyebrow { color: var(--aqua-200); }
.page-hero .eyebrow::before { background: var(--gold-500); }

.crumbs {
  font-size: .86rem;
  color: rgba(234, 246, 248, .68);
  margin-bottom: 18px;
}
.crumbs a { color: rgba(234, 246, 248, .84); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- Pill tags ---------- */

.pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; padding: 0; list-style: none; }
.pills li {
  background: var(--aqua-50);
  border: 1px solid var(--aqua-200);
  color: var(--teal-800);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: .88rem;
  font-weight: 600;
}

/* ---------- Callout ---------- */

.callout {
  border-left: 4px solid var(--lime-500);
  background: var(--lime-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin: 28px 0;
}
.callout h3 { font-size: 1.05rem; margin-bottom: .35em; }
.callout p { font-size: .96rem; margin: 0; }

.callout--gold { border-left-color: var(--gold-500); background: var(--gold-100); }
.callout--aqua { border-left-color: var(--aqua-400); background: var(--aqua-50); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--teal-900);
  color: rgba(234, 246, 248, .74);
  padding: clamp(48px, 6vw, 72px) 0 32px;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: 40px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer h3 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(234, 246, 248, .82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }

.footer-brand img {
  height: 62px;
  width: auto;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 18px;
}
.footer-brand p { max-width: 42ch; font-size: .93rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: .87rem;
  color: rgba(234, 246, 248, .58);
}

.acknowledgement {
  font-size: .87rem;
  color: rgba(234, 246, 248, .62);
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 26px;
  padding-top: 24px;
  max-width: 72ch;
}

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.narrow { max-width: 760px; margin-inline: auto; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot field for basic spam protection */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
