/* Adept Life Sciences — Landing page styles
   Brand palette extracted from logo:
     teal-700  #0F5A5E   deep
     teal-600  #126E72
     teal-500  #1E8A8C   primary
     teal-400  #2EB0A8
     teal-300  #5EC9C0
     teal-100  #DCEFED
     teal-50   #F1F8F7
*/

:root {
  --teal-700: #0F3A3E;   /* forest, used as dark surface */
  --teal-600: #126E72;
  --teal-500: #1E8A8C;   /* primary action */
  --teal-400: #2EB0A8;
  --teal-300: #5EC9C0;
  --teal-100: #DCEFED;
  --teal-50:  #EEF4F1;

  --ink-900: #14201D;
  --ink-800: #1F2A26;
  --ink-700: #2D3934;
  --ink-500: #5A5A5A;
  --ink-400: #7C7C7C;
  --ink-300: #A8A8A8;
  --line-200: #DDD7CC;
  --line-100: #E9E3D6;
  --bg: #FAF8F5;          /* cream paper */
  --bg-tint: #F3EFE3;     /* warm tint */
  --white: #FFFFFF;
  --gold: #C9A962;        /* premium accent */

  --radius-sm: 4px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(11,22,32,.04), 0 1px 3px rgba(11,22,32,.06);
  --shadow-md: 0 4px 16px rgba(11,22,32,.06), 0 2px 6px rgba(11,22,32,.04);
  --shadow-lg: 0 24px 60px rgba(11,22,32,.10), 0 8px 24px rgba(11,22,32,.06);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-700); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.06; }
h3, h4 {
  font-family: var(--font-sans);
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 0.5em;
}
h3 { font-size: 1.18rem; }
h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-700); }
p { margin: 0 0 1em; }

.accent { color: var(--teal-500); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-600);
  margin-bottom: 18px;
}
.eyebrow .dot { display: none; }
.eyebrow-light { color: rgba(255,255,255,.7); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-xl { padding: 18px 36px; font-size: 1.1rem; }

.btn-primary {
  background: var(--teal-500);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(30,138,140,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover {
  background: var(--teal-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(30,138,140,.36), inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--line-200);
}
.btn-ghost:hover {
  border-color: var(--teal-400);
  color: var(--teal-700);
  background: var(--teal-50);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 252, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 24px;
  min-height: 84px;
}
.logo img { height: 76px; width: auto; }
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.header-nav a:hover { color: var(--teal-600); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-800);
  font-weight: 600;
  font-size: 0.92rem;
}
.phone-link svg { color: var(--teal-500); }
.phone-link:hover { color: var(--teal-700); }

@media (max-width: 880px) {
  .header-nav { display: none; }
  .phone-link span { display: none; }
}
@media (max-width: 480px) {
  .logo img { height: 60px; }
  .btn-sm { padding: 8px 14px; font-size: 0.85rem; }
}

/* ---------- Hero (full-bleed overlay) ---------- */
.hero {
  position: relative;
  min-height: 720px;
  height: 86vh;
  max-height: 880px;
  overflow: hidden;
  background: var(--teal-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(15,58,62,0.40), rgba(15,58,62,0.85) 75%),
    linear-gradient(180deg, rgba(20,32,29,0.55) 0%, rgba(20,32,29,0.55) 60%, rgba(20,32,29,0.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px 56px;
  text-align: center;
  max-width: 920px;
}
.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 22px;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--white);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 auto 24px;
  max-width: 18ch;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.25);
}
.hero h1 .accent { color: inherit; font-style: normal; }
.hero .lede {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,.94);
  max-width: 56ch;
  margin: 0 auto 36px;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 56px;
}
.hero .btn-primary {
  background: var(--gold);
  color: var(--teal-700);
  box-shadow: 0 8px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.25);
}
.hero .btn-primary:hover {
  background: #D6B772;
  color: var(--teal-700);
}
.hero .btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.34);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
  color: var(--white);
}
.hero-credentials {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px 32px;
  background: linear-gradient(180deg, transparent, rgba(20,32,29,0.85));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px 36px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
}
.hero-credentials span { display: inline-flex; align-items: center; gap: 8px; }
.hero-credentials .sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

@media (max-width: 760px) {
  .hero { min-height: 620px; height: auto; padding: 40px 0; }
  .hero-inner { padding: 60px 20px 96px; }
  .hero-credentials { position: static; padding: 18px 20px; gap: 10px 20px; font-size: 0.65rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg);
  border-top: 1px solid var(--line-100);
  border-bottom: 1px solid var(--line-100);
  padding: 24px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  align-items: center;
  color: var(--ink-500);
  font-size: 0.92rem;
}
.trust-item {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.trust-item strong {
  font-family: var(--font-display);
  color: var(--teal-600);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---------- Built for chip strip ---------- */
.built-for {
  background: var(--bg);
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--line-100);
}

/* ---------- About Adept ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.about-copy h2 { max-width: 22ch; margin-bottom: 24px; }
.about-copy p { color: var(--ink-700); font-size: 1.05rem; max-width: 60ch; }
.about-facts {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 32px;
}
.about-facts dl {
  display: grid;
  gap: 16px;
  margin: 0;
}
.about-facts dl > div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-100);
}
.about-facts dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.about-facts dt {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-facts dd {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink-900);
  font-size: 0.95rem;
}
.full-range {
  padding-top: 56px;
  border-top: 1px solid var(--line-200);
}
.full-range h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.95rem;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.018em;
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.range-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-200);
}
.range-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.range-grid li {
  font-size: 0.94rem;
  color: var(--ink-700);
  padding: 5px 0;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .range-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .range-grid { grid-template-columns: 1fr; }
}
.built-for-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.built-for-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-400);
  margin-right: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--white);
  color: var(--teal-700);
  border: 1px solid var(--line-200);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}
.section-tinted {
  background: var(--bg-tint);
}
.section-dark {
  background: var(--teal-700);
  color: rgba(255,255,255,.86);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.74); }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head-light h2 { color: var(--white); }
.section-sub {
  font-size: 1.08rem;
  color: var(--ink-500);
  margin-top: 12px;
}
.section-head-light .section-sub { color: rgba(255,255,255,.7); }

/* Variant B — left-aligned with section index */
.section-head-b {
  max-width: none;
  margin: 0 0 56px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 32px;
  align-items: baseline;
}
.section-head-b .section-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--teal-500);
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
  grid-row: span 2;
  padding-top: 8px;
  border-top: 1px solid var(--line-200);
}
.section-head-b h2 {
  max-width: 720px;
  margin: 0;
}
.section-head-b .section-sub {
  max-width: 640px;
  margin: 12px 0 0;
  grid-column: 2;
}
.section-head-b.section-head-light .section-index {
  color: var(--teal-300);
  border-top-color: rgba(255,255,255,.1);
}

/* Variant C — inline, no eyebrow, just headline + short lede */
.section-head-c {
  max-width: 760px;
  margin: 0 0 40px;
  text-align: left;
}
.section-head-c h2 { margin-bottom: 8px; }
.section-head-c .section-sub { margin-top: 6px; font-size: 1.02rem; }

@media (max-width: 720px) {
  .section-head-b {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .section-head-b .section-index {
    grid-row: auto;
    border-top: 0;
    padding-top: 0;
  }
  .section-head-b .section-sub { grid-column: 1; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
}

/* ---------- Capability grid ---------- */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.cap-card:hover {
  border-color: var(--teal-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cap-card:hover .cap-photo img {
  transform: scale(1.03);
}
.cap-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--line-100);
  position: relative;
}
.cap-photo--placeholder {
  display: grid;
  place-items: center;
}
.cap-photo--placeholder::after {
  content: "";
  width: 72px;
  height: 72px;
  background-image: url("/assets/flower-mark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.18;
}
.cap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.cap-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cap-card h3 {
  margin: 0;
  color: var(--ink-900);
}
.cap-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.96rem;
}

@media (max-width: 880px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .capability-grid { grid-template-columns: 1fr; }
}

/* ---------- Why Adept ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  opacity: 0;
  transition: opacity .2s ease;
}
.why-card:hover::before { opacity: 1; }
.why-num { display: none; }
.why-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.why-card p {
  margin: 0;
  color: var(--ink-500);
}
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px; }
}

/* ---------- Stat display ---------- */
.stat-display {
  background: var(--bg);
  padding: 96px 0;
  border-top: 1px solid var(--line-100);
  border-bottom: 1px solid var(--line-100);
}
.stat-display-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: end;
}
.stat-figure {
  font-family: var(--font-display);
  font-size: clamp(11rem, 26vw, 22rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: var(--ink-900);
  font-weight: 700;
  margin: 0;
  position: relative;
}
.stat-figure sup {
  font-size: 0.18em;
  font-weight: 500;
  vertical-align: top;
  color: var(--teal-500);
  margin-left: 0.1em;
  letter-spacing: 0;
  top: 0.4em;
  position: relative;
}
.stat-meta {
  border-top: 1px solid var(--line-200);
  padding-top: 18px;
  max-width: 420px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--teal-500);
  margin-bottom: 12px;
  display: block;
}
.stat-meta p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink-700);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .stat-display { padding: 64px 0; }
  .stat-display-inner { grid-template-columns: 1fr; gap: 18px; }
  .stat-figure { font-size: 11rem; }
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.svc-card h3 {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-100);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.svc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.45;
}
.svc-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--teal-500);
  border-radius: 50%;
}
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Capability matrix table ---------- */
.table-wrap {
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.cap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.cap-table thead {
  background: var(--teal-50);
}
.cap-table th, .cap-table td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-100);
}
.cap-table thead th {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-700);
}
.cap-table tbody th {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink-900);
}
.cap-table tbody td:first-of-type {
  font-family: var(--font-mono);
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--teal-700);
  letter-spacing: -0.01em;
}
.cap-table tbody tr:last-child th,
.cap-table tbody tr:last-child td { border-bottom: 0; }
.cap-table tbody tr:hover { background: var(--teal-50); }

@media (max-width: 640px) {
  .cap-table { font-size: 0.88rem; }
  .cap-table th, .cap-table td { padding: 12px 14px; }
}

/* ---------- Process list ---------- */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 40px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.process-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.process-list h3 {
  color: var(--white);
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.012em;
}
.process-list p {
  color: rgba(255,255,255,.7);
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 720px) {
  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .process-num { font-size: 0.78rem; }
}

/* ---------- Lab section ---------- */
.proof-photo {
  width: 100%;
  margin: 0 0 48px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 7;
  box-shadow: var(--shadow-md);
}
.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lab-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.lab-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.lab-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-500);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .lab-grid { grid-template-columns: 1fr 1fr; }
  .proof-photo { aspect-ratio: 16 / 9; margin-bottom: 28px; }
}
@media (max-width: 540px) {
  .lab-grid { grid-template-columns: 1fr; }
}

/* ---------- Proof / Lab (legacy, kept for safety) ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proof-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.proof-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.proof-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-700);
}
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-300);
  box-shadow: 0 0 0 4px var(--teal-50);
}
.proof-list strong { color: var(--ink-900); }
@media (max-width: 880px) {
  .proof-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Quote / Form ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.quote-copy h2 { margin-bottom: 16px; }
.quote-sub {
  font-size: 1.08rem;
  color: var(--ink-500);
  margin-bottom: 28px;
}
.quote-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.quote-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-800);
  font-weight: 500;
}
.quote-bullets svg {
  color: var(--white);
  background: var(--teal-500);
  border-radius: 50%;
  padding: 4px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.quote-contact {
  padding-top: 28px;
  border-top: 1px solid var(--line-200);
}
.quote-contact p { margin: 0 0 6px; color: var(--ink-500); font-size: 0.92rem; }
.big-link {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 6px;
  letter-spacing: -0.012em;
}
.big-link:hover { color: var(--teal-600); }
.hours { font-size: 0.85rem; margin-top: 12px; color: var(--ink-400); }

.quote-form-wrap {
  position: relative;
}
.quote-form-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.quote-form-card iframe {
  display: block;
  background: var(--white);
  border-radius: 4px;
}
.form-loader {
  position: absolute;
  inset: 12px;
  background: var(--white);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--ink-400);
  font-size: 0.95rem;
  z-index: 1;
  pointer-events: none;
  transition: opacity .3s ease;
}
.form-loader.hidden { opacity: 0; visibility: hidden; }

@media (max-width: 920px) {
  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.faq-head h2 { margin-bottom: 12px; }
.faq-head p { color: var(--ink-500); }
.faq-list {
  display: grid;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 0 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink-900);
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--teal-500);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--ink-500);
  font-size: 0.98rem;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--teal-700);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.final-cta h2 { color: var(--white); }
.final-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.final-cta .btn-primary {
  background: var(--gold);
  color: var(--teal-700);
  box-shadow: 0 8px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.25);
}
.final-cta .btn-primary:hover {
  background: #D6B772;
  color: var(--teal-700);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-700);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img {
  width: auto;
  height: 36px;
  margin-bottom: 18px;
}
.footer-brand p { max-width: 320px; font-size: 0.95rem; color: rgba(255,255,255,.6); }
.footer-col h4 { color: var(--white); font-size: 0.8rem; margin-bottom: 14px; }
.footer-col p { font-size: 0.92rem; margin-bottom: 12px; color: rgba(255,255,255,.65); }
.footer-col a { color: rgba(255,255,255,.85); }
.footer-col a:hover { color: var(--teal-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 0.85rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; }
}

/* ---------- Print-safe focus states ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}
