/* ============================================================
   Southshore Solutions — stylesheet
   Neutral / blue color scheme
   ============================================================ */

:root {
  /* Blues */
  --blue-900: #0f2c47;
  --blue-800: #143a5c;
  --blue-700: #1b4f80;
  --blue-600: #2167a3;
  --blue-500: #2f80c7;
  --blue-300: #8fc0e6;
  --blue-100: #e3eef7;
  --blue-50:  #f1f6fb;

  /* Neutrals */
  --ink:      #16212c;
  --slate:    #4a5763;
  --muted:    #6c7884;
  --line:     #e2e8ee;
  --surface:  #ffffff;
  --surface-2:#f6f9fc;
  --bg:       #ffffff;

  --accent:   var(--blue-700);
  --accent-strong: var(--blue-800);

  --radius:   14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(16, 38, 60, 0.06), 0 1px 3px rgba(16, 38, 60, 0.05);
  --shadow:    0 6px 20px rgba(16, 38, 60, 0.08);
  --shadow-lg: 0 18px 50px rgba(16, 38, 60, 0.14);

  --maxw: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; color: var(--ink); margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue-600);
  margin: 0 0 .65rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--blue-300); }
.btn-ghost:hover { background: var(--blue-50); }
.btn-light { background: #fff; color: var(--blue-800); }
.btn-light:hover { background: var(--blue-50); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--blue-600), var(--blue-800));
  color: #fff;
}
.brand-accent { color: var(--blue-600); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu a {
  color: var(--slate);
  font-weight: 500;
  font-size: .96rem;
}
.nav-menu a:hover { color: var(--accent); text-decoration: none; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: .55rem 1.05rem;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--accent-strong); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 480px at 78% -10%, var(--blue-100), transparent 60%),
    linear-gradient(180deg, var(--surface-2), #fff);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 210px;
  gap: 3.25rem;
  align-items: center;
}
.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.hero-copy .lede {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 42ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.6rem 0 1.4rem;
}
.hero-points {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: .6rem 2rem;
  color: var(--slate);
  font-size: .95rem;
}
.hero-points li { position: relative; padding-left: 1.45rem; }
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px var(--blue-100);
}

.hero-media { display: grid; place-items: center; }
.hero-media img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg); }

.hero-panel { display: grid; place-items: center; }
.panel-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
}
.panel-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: .7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
  color: var(--slate);
}
.panel-row:first-child { padding-top: 0; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-green { background: #34a853; box-shadow: 0 0 0 4px rgba(52,168,83,.15); }
.dot-blue  { background: var(--blue-500); box-shadow: 0 0 0 4px var(--blue-100); }
.dot-amber { background: #e8a32c; box-shadow: 0 0 0 4px rgba(232,163,44,.16); }
.panel-status { font-size: .82rem; font-weight: 600; color: var(--muted); }
.panel-bar {
  height: 8px;
  background: var(--blue-100);
  border-radius: 99px;
  margin: 1.1rem 0 .8rem;
  overflow: hidden;
}
.panel-bar span {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
}
.panel-foot { margin: 0; font-size: .85rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto 2.6rem; text-align: center; }
.section-sub { color: var(--slate); font-size: 1.08rem; margin: 0; }

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--slate); font-size: .97rem; }
.card-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.card-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .92rem;
  color: var(--slate);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .35em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231b4f80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.why-copy { position: sticky; top: 92px; }
.why-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.why-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.why-list h3 { margin-bottom: .35rem; }
.why-list p { margin: 0; color: var(--slate); font-size: .94rem; }

/* ---------- Process steps ---------- */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: .9rem;
}
.step h3 { margin-bottom: .35rem; }
.step p { margin: 0; color: var(--slate); font-size: .94rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-details {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.contact-details li {
  display: grid;
  gap: .15rem;
}
.contact-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--blue-600);
}
.contact-details a { font-weight: 600; }
.placeholder { color: var(--muted); font-style: italic; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.req { color: #c0392b; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: .72rem .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 3px var(--blue-100);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input.invalid,
.field textarea.invalid {
  border-color: #d6584b;
  box-shadow: 0 0 0 3px rgba(214, 88, 75, .14);
}

/* Honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status {
  margin: .9rem 0 0;
  font-size: .92rem;
  font-weight: 600;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { color: #1e7e46; }
.form-status.error { color: #c0392b; }
.form-fineprint { margin: .8rem 0 0; font-size: .82rem; color: var(--muted); }

/* ---------- Card link ---------- */
.card-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 600;
  font-size: .93rem;
}
.card-link:hover { text-decoration: none; color: var(--accent-strong); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--blue-900); color: #cdd9e4; }
.trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .8rem 1.8rem;
  padding: 1.1rem 0;
  text-align: center;
}
.trust-label { font-size: .85rem; color: #9fb0c2; font-weight: 600; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.4rem;
  list-style: none;
  margin: 0; padding: 0;
}
.trust-badges li {
  position: relative;
  font-size: .9rem;
  font-weight: 600;
  color: #eaf2f9;
  padding-left: 1.3rem;
}
.trust-badges li::before {
  content: "";
  position: absolute; left: 0; top: .35em;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238fc0e6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 360px at 50% -30%, var(--blue-100), transparent 60%),
    linear-gradient(180deg, var(--surface-2), #fff);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.lede.center { max-width: 56ch; margin-left: auto; margin-right: auto; color: var(--slate); font-size: 1.12rem; }
.page-hero-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem 1.2rem; margin-top: 1.5rem;
}
.page-hero-links a {
  font-weight: 600; font-size: .95rem;
  padding: .45rem 1rem; border: 1px solid var(--blue-300);
  border-radius: 99px; color: var(--accent);
}
.page-hero-links a:hover { background: var(--blue-50); text-decoration: none; }

/* ---------- Service detail blocks ---------- */
.svc-block {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.svc-block.reverse .svc-media { order: 2; }
.svc-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.svc-copy h2 { margin-top: .2rem; }
.svc-copy > p { color: var(--slate); font-size: 1.04rem; }
.svc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 1.4rem 0 1.6rem;
}
.svc-cols h3 { font-size: 1rem; margin-bottom: .6rem; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.ticks li {
  position: relative; padding-left: 1.7rem;
  font-size: .94rem; color: var(--slate);
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: .15em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231b4f80' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: #fff;
}
.cta-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.5rem;
  padding: clamp(2.4rem, 5vw, 3.4rem) 0;
}
.cta-inner h2 { color: #fff; margin-bottom: .3rem; }
.cta-inner p { margin: 0; color: #d4e2ef; }

/* ---------- About page ---------- */
.about-hero { padding-top: clamp(2.6rem, 5vw, 4rem); }
.about-intro {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.75rem;
  align-items: stretch;
}
.about-portrait { position: relative; align-self: stretch; max-width: 300px; }
.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about-portrait-card {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  display: grid;
  box-shadow: var(--shadow);
}
.about-portrait-card strong { font-size: 1.02rem; color: var(--ink); }
.about-portrait-card span { font-size: .85rem; color: var(--blue-600); font-weight: 600; }
.about-copy .lede { color: var(--slate); font-size: 1.15rem; }
.about-copy > p { color: var(--slate); }
.about-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

.narrow { max-width: 760px; }
.narrow > p { color: var(--slate); font-size: 1.05rem; }
.section-tight { padding: 2.4rem 0; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  text-align: center;
}
.stat { display: grid; gap: .25rem; }
.stat-num { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--blue-700); letter-spacing: -.02em; }
.stat-label { font-size: .9rem; color: var(--slate); }

/* ---------- Timeline ---------- */
.timeline {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: var(--line);
}
.timeline li { position: relative; padding: 0 0 1.6rem 2.2rem; }
.timeline li:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px var(--blue-100);
}
.tl-date { font-size: .82rem; font-weight: 700; color: var(--blue-600); text-transform: uppercase; letter-spacing: .06em; }
.tl-body h3 { margin: .2rem 0 .3rem; }
.tl-body p { margin: 0; color: var(--slate); font-size: .96rem; }

/* ---------- Chips ---------- */
.chips-group { margin-top: 1.6rem; }
.chips-group h3 { font-size: 1rem; margin-bottom: .7rem; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.chips li {
  font-size: .88rem; font-weight: 500;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: .4rem .85rem; border-radius: 99px;
}

/* ---------- Founder note ---------- */
.founder-note { text-align: center; }
.founder-note h2 { margin-bottom: .6rem; }
.founder-note > p { color: var(--slate); font-size: 1.1rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item details { width: 100%; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--blue-600);
  border-bottom: 2px solid var(--blue-600);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq-item details[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item details > p {
  margin: 0;
  padding: 0 1.3rem 1.15rem;
  color: var(--slate);
  font-size: .98rem;
}

.faq-cta {
  margin-top: 2.2rem;
  text-align: center;
  display: grid;
  gap: .9rem;
  justify-items: center;
}
.faq-cta p { margin: 0; font-weight: 600; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-900);
  color: #cdd9e4;
  padding: 3rem 0 1.6rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { max-width: 360px; }
.footer-brand .brand-text { color: #fff; font-weight: 800; font-size: 1.15rem; }
.footer-brand .brand-accent { color: var(--blue-300); }
.footer-brand p { margin: .6rem 0 0; color: #9fb0c2; font-size: .94rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem; align-items: center; }
.footer-nav a { color: #cdd9e4; font-size: .95rem; }
.footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-bottom { padding-top: 1.4rem; }
.footer-bottom p { margin: 0; font-size: .85rem; color: #8095a8; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; justify-items: center; text-align: center; }
  .hero-copy { order: 1; }
  .hero-photo { order: 2; max-width: 280px; }
  .hero-media { order: 3; max-width: 280px; }
  .hero-copy .lede { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-points { justify-content: center; }
  .cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-copy { position: static; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .svc-block { grid-template-columns: 1fr; gap: 1.8rem; }
  .svc-block.reverse .svc-media { order: -1; }
  .svc-media { max-width: 480px; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; justify-items: center; text-align: center; }
  .about-portrait { margin: 0 auto; max-width: 300px; align-self: center; }
  .about-portrait img { height: auto; aspect-ratio: 1 / 1; }
  .about-cta { justify-content: center; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .5rem 1.5rem 1.2rem;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: .8rem 0; }
  .nav-cta { text-align: center; margin-top: .5rem; }

  .cards { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { flex-direction: column; }

  .svc-cols { grid-template-columns: 1fr; gap: 1.2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
