/* =========================================================
   Vaz Lopes Group — site styles
   Plain CSS, no build tools. Edit values in :root to retheme.
   ========================================================= */

/* Inter, self-hosted (variable font, weights 100-900).
   Served from /fonts so no visitor data goes to Google. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #0e1f33;
  --navy: #14365c;
  --navy-2: #1b4a7a;
  --accent: #c8a45c;
  --accent-dark: #a9863f;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-soft-2: #eef2f7;
  --line: #dce3ec;
  --text: #1f2933;
  --muted: #5b6b7d;
  --white: #ffffff;

  --maxw: 1140px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(14, 31, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 31, 51, 0.14);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(16px, 1vw, 17px);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy-2);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3.3rem);
}

h2 {
  font-size: clamp(1.35rem, 3.5vw, 2.3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.section {
  padding: clamp(40px, 12vw, 88px) 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--ink {
  background: var(--ink);
  color: #cdd8e6;
}

.section--ink h2,
.section--ink h3 {
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.btn--outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

/* Text-based boxed logo */
.logo-box {
  border: 2px solid var(--ink);
  padding: 7px 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-box .l1 {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  color: var(--ink);
}

.logo-box .l2 {
  font-weight: 600;
  letter-spacing: 0.42em;
  font-size: 0.62rem;
  color: var(--accent-dark);
  margin-top: 4px;
  padding-left: 0.42em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(
      1200px 600px at 85% -10%,
      rgba(200, 164, 92, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--ink) 0%, var(--navy) 60%, var(--navy-2) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 500px at 80% 0%, #000, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 15vw, 110px) 0 clamp(60px, 15vw, 120px);
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 54px;
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  outline: 1px solid rgba(200, 164, 92, 0.45);
  outline-offset: -1px;
}
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-media {
    display: none;
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero .lead {
  color: #c7d4e3;
  font-size: 1.25rem;
  margin-bottom: 34px;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-tag::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent);
}

/* ---------- Grids / cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-soft-2);
  color: var(--navy);
  margin-bottom: 18px;
}

.card .icon svg {
  width: 24px;
  height: 24px;
}

/* Icon chips for method steps (light) and problem cards (dark) */
.step-icon,
.p-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step-icon {
  background: rgba(20, 54, 92, 0.08);
  color: var(--navy);
}
.p-icon {
  background: rgba(200, 164, 92, 0.16);
  color: var(--accent);
}
.step-icon svg,
.p-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

/* Service blocks */
.service-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.service-block .num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  text-transform: uppercase;
}

.service-block ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.service-block li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.service-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.18);
  box-shadow: inset 0 0 0 2px var(--accent);
}

/* Split / two-column content */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.stat {
  flex: 1 1 150px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.stat .k {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.stat .v {
  font-size: 0.9rem;
  color: var(--muted);
}

/* List with check marks */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--ink) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band p {
  color: #c7d4e3;
  max-width: 560px;
  margin: 0 auto 26px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info .item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info .item:last-child {
  border-bottom: 0;
}

.contact-info .item .ic {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft-2);
  color: var(--navy);
  display: grid;
  place-items: center;
}

.contact-info .item h4 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.contact-info .item p,
.contact-info .item a {
  margin: 0;
  color: var(--muted);
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(27, 74, 122, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form .btn {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 14px 0 0;
  text-align: center;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-success {
  display: none;
  background: rgba(36, 122, 84, 0.08);
  border: 1px solid rgba(36, 122, 84, 0.3);
  color: #1c6b48;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--ink) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 72px 0;
}

.page-hero .eyebrow {
  color: var(--accent);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: #c7d4e3;
  max-width: 640px;
  font-size: 1.15rem;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #aab9c9;
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top .logo-box {
  border-color: rgba(255, 255, 255, 0.7);
}

.footer-top .logo-box .l1 {
  color: var(--white);
}

.footer-brand p {
  margin-top: 16px;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #aab9c9;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #8295a8;
}

.footer-bottom p {
  margin: 0;
  color: #8295a8;
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 12px 0;
    width: 100%;
  }
  .nav-cta {
    margin: 8px 0 0;
  }
  .section {
    padding: 60px 0;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .cta-band,
  .service-block {
    padding: 34px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Audit-driven components (execution-gap rebuild)
   Added to implement the VLG conversion audit [WEB]/[SYSTEM] fixes.
   ========================================================= */

/* Skip link for keyboard / screen-reader users (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Announcement / positioning strip under the header */
.topbar {
  background: var(--ink);
  color: #cdd8e6;
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 9px;
  padding-bottom: 9px;
  text-align: center;
}
.topbar strong {
  color: var(--accent);
  font-weight: 700;
}

/* Hero proof line (logos/credibility under the hero CTA) */
.hero-proof {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-proof .label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93a6bd;
  margin-bottom: 14px;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
}
.logo-row .lname {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #aebfd2;
  font-size: 0.98rem;
  white-space: nowrap;
}

/* Trusted-by bar (light section variant) */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 30px 0;
}
.trustbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 38px;
}
.trustbar .label {
  width: 100%;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.trustbar .lname {
  font-weight: 700;
  color: #46627f;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

/* The "problem" framing block */
.problem {
  background: var(--ink);
  color: #c7d4e3;
}
.problem h2 {
  color: var(--white);
}
.problem .lead {
  color: #c7d4e3;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.problem-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.problem-card h3 {
  color: var(--white);
  font-size: 1.08rem;
}
.problem-card p {
  color: #aebfd2;
  margin: 0;
  font-size: 0.97rem;
}

/* Metric / results cards (founder track record) */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.metric .k {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.metric .v {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}
.metric .src {
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* Founder block */
.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.founder-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--ink) 100%);
  color: #cdd8e6;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.founder-card .founder-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 20px;
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.55);
}
.founder-card h3 {
  color: var(--white);
  margin-bottom: 4px;
}
.founder-card .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.founder-card .creds {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.founder-card .creds li {
  position: relative;
  padding-left: 26px;
  font-size: 0.97rem;
}
.founder-card .creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.2);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.founder-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}
.founder-card .card-link:hover {
  color: #e0c081;
}
.founder-card .card-link svg {
  width: 16px;
  height: 16px;
}

/* Booking block (single primary CTA target) */
.booking-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: center;
}
.booking-block h3 {
  margin-bottom: 8px;
}
.booking-block p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 22px;
}

.btn--lg {
  padding: 17px 34px;
  font-size: 1.05rem;
}

/* Small print / disclosure */
.disclosure {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 760px;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .founder {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }
  .nav {
    height: 68px;
  }
  .logo-box {
    padding: 6px 10px;
  }
  .logo-box .l1 {
    font-size: 0.85rem;
  }
  .logo-box .l2 {
    font-size: 0.55rem;
  }
  .section {
    padding: clamp(32px, 10vw, 40px) 0;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .hero-inner {
    gap: 30px;
  }
  .hero .lead {
    font-size: 1.1rem;
  }
  .hero-tag {
    font-size: 0.75rem;
  }
  .hero-actions {
    gap: 10px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .lead {
    font-size: 1.05rem;
  }
  .card {
    padding: 24px;
  }
  .service-block {
    padding: 24px;
  }
  .cta-band {
    padding: 32px 20px;
  }
  .cta-band h2 {
    font-size: 1.4rem;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .metric {
    padding: 20px 18px;
  }
  .metric .k {
    font-size: 1.6rem;
  }
  .metric .v {
    font-size: 0.85rem;
  }
  .problem-card {
    padding: 20px;
  }
  .problem-card h3 {
    font-size: 1rem;
  }
  .problem-card p {
    font-size: 0.9rem;
  }
  .founder {
    gap: 24px;
  }
  .founder-card {
    padding: 28px;
  }
  .founder-card .founder-photo {
    width: 88px;
    height: 88px;
  }
  .booking-block {
    padding: 24px;
  }
  .booking-block h3 {
    font-size: 1.15rem;
  }
  .page-hero {
    padding: 48px 0;
  }
  .page-hero h1 {
    font-size: 1.7rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
  .form {
    padding: 24px;
  }
  .field {
    margin-bottom: 16px;
  }
  .contact-grid {
    gap: 28px;
  }
  .site-footer {
    padding: 40px 0 20px;
  }
  .footer-top {
    gap: 24px;
  }
  .footer-col h4 {
    font-size: 0.9rem;
  }
  .footer-col a {
    font-size: 0.9rem;
  }
  .trustbar {
    padding: 20px 0;
  }
  .trustbar .label {
    font-size: 0.68rem;
  }
  .trustbar .lname {
    font-size: 0.92rem;
  }
  .logo-row {
    gap: 10px 20px;
  }
  .logo-row .lname {
    font-size: 0.9rem;
  }
  .eyebrow {
    font-size: 0.7rem;
  }
}
