/* ==========================================================================
   ImpressiveBite — design system
   Single stylesheet, no build step, no external dependencies.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */

:root {
  /* Brand */
  --teal-950: #032b27;
  --teal-900: #06443e;
  --teal-800: #085c53;
  --teal-700: #0a7a6d;
  --teal-600: #0f9c8a;
  --teal-500: #14b8a6;
  --teal-200: #9fe7dc;
  --teal-100: #d6f5f0;
  --teal-50:  #eefaf8;

  /* Neutrals */
  --ink:      #0a1f1c;
  --slate-700:#3c4f4c;
  --slate-500:#5c7773; /* AA on both white (4.84:1) and --sand (4.57:1) */
  --slate-300:#c3d1ce;
  --slate-200:#dde6e4;
  --slate-100:#eef3f2;
  --sand:     #f6f9f8;
  --white:    #ffffff;

  /* Accents */
  --amber:    #d98324;
  --amber-50: #fdf3e6;
  --rose:     #b4413c;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Space + shape */
  --wrap: 1180px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(10, 31, 28, .06), 0 1px 3px rgba(10, 31, 28, .05);
  --shadow:    0 4px 12px rgba(10, 31, 28, .07), 0 2px 4px rgba(10, 31, 28, .04);
  --shadow-lg: 0 18px 40px rgba(10, 31, 28, .12), 0 4px 12px rgba(10, 31, 28, .06);
  --header-h: 72px;
}

/* --- Reset ---------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

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

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

h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.02rem; }

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

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

img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }
strong { color: var(--ink); font-weight: 650; }
small { font-size: .84rem; }

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

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}
.wrap--narrow { max-width: 780px; }

.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--sand { background: var(--sand); }
.section--teal {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-800) 60%, var(--teal-700));
  color: var(--teal-100);
}
.section--teal h2, .section--teal h3 { color: var(--white); }

.section-head { max-width: 680px; margin-bottom: 42px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--slate-500); margin-bottom: 0; }
/* teal-100 not teal-200 here: teal-200 is only 3.72:1 on the lightest stop of
   the teal gradient, which fails AA for body-size text. */
.section--teal .section-head p { color: var(--teal-100); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 12px;
}
.section--teal .eyebrow { color: var(--teal-100); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.lede { font-size: 1.15rem; color: var(--slate-500); }
.center { text-align: center; }
.stack > * + * { margin-top: 14px; }

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .96rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--teal-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-800); color: #fff; box-shadow: var(--shadow); }

.btn--ghost {
  background: transparent;
  color: var(--teal-800);
  border-color: var(--slate-300);
}
.btn--ghost:hover { background: var(--teal-50); border-color: var(--teal-200); color: var(--teal-900); }

.btn--light { background: #fff; color: var(--teal-900); }
.btn--light:hover { background: var(--teal-50); color: var(--teal-900); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--wide { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--slate-200);
  box-shadow: 0 1px 12px rgba(10, 31, 28, .05);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 750;
  font-size: 1.12rem;
  letter-spacing: -.025em;
  margin-right: auto;
  white-space: nowrap;
}
.brand:hover { color: var(--teal-800); }
.brand svg { width: 32px; height: 32px; flex: none; }
.brand span em { font-style: normal; color: var(--teal-700); }

.nav { display: flex; align-items: center; gap: 4px; }
/* :not(.btn) keeps these off the CTA — `.nav a` would otherwise outrank
   `.btn--primary` and paint the button label slate instead of white. */
.nav a:not(.btn) {
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 550;
  color: var(--slate-700);
  text-decoration: none;
}
.nav a:not(.btn):hover { background: var(--slate-100); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--teal-800); background: var(--teal-50); }

/* The nav carries its own CTA for the mobile menu; on desktop the standalone
   .header-cta is the one that shows, so hide the duplicate. */
.nav > .btn { display: none; }
.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 22px 22px;
    background: #fff;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a:not(.btn) { padding: 13px 12px; font-size: 1.02rem; }
  .nav > .btn { display: inline-flex; margin-top: 10px; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 78% -10%, rgba(20, 184, 166, .17), transparent 62%),
    radial-gradient(700px 420px at 6% 100%, rgba(10, 122, 109, .10), transparent 60%),
    var(--sand);
  padding: clamp(52px, 7vw, 92px) 0 clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--slate-200);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--teal-700); }
.hero__lede { font-size: clamp(1.05rem, .98rem + .4vw, 1.22rem); max-width: 56ch; margin-bottom: 28px; }

.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px 6px 10px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal-900);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 15px; height: 15px; color: var(--teal-600); flex: none; }

.hero__note { margin-top: 22px; font-size: .9rem; color: var(--slate-500); }

/* Hero visual: stylized syringe + viscosity swatches */
.hero__visual {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero__visual h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--slate-500); margin-bottom: 18px; }

.visc-scale { display: grid; gap: 10px; margin-bottom: 22px; }
.visc {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
}
.visc__name { font-weight: 650; color: var(--teal-900); font-size: .93rem; }
.visc__meta { font-size: .78rem; color: var(--slate-500); font-family: var(--font-mono); }
.visc__bar { grid-column: 1 / -1; height: 6px; border-radius: 999px; background: var(--slate-200); overflow: hidden; }
.visc__bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--teal-500), var(--teal-700)); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--slate-200);
}
.hero-stats div { text-align: center; }
.hero-stats b { display: block; font-size: 1.22rem; color: var(--teal-800); letter-spacing: -.02em; }
.hero-stats span { font-size: .74rem; color: var(--slate-500); line-height: 1.35; display: block; }

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

.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal-200); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate-500); font-size: .96rem; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-700);
  margin-bottom: 16px;
}
.icon-badge svg { width: 23px; height: 23px; }

/* --- Product cards -------------------------------------------------------- */

.product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal-200); }

.product__top {
  padding: 22px 24px 18px;
  background: linear-gradient(150deg, var(--teal-50), #fff);
  border-bottom: 1px solid var(--slate-200);
}
.product__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.product__tag--wash { color: #7a4b06; background: #fdeccb; }
.product__tag--bite { color: #5a2f8f; background: #ece3fb; }
.product h3 { font-size: 1.16rem; margin-bottom: 4px; }
.product__sub { font-size: .88rem; color: var(--slate-500); margin: 0; }

.product__body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.product__body p { font-size: .94rem; color: var(--slate-500); }

.spec-list { list-style: none; padding: 0; margin: 0 0 18px; font-size: .88rem; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--slate-200);
  margin: 0;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list dt, .spec-list .k { color: var(--slate-500); }
.spec-list .v { font-weight: 650; color: var(--ink); font-family: var(--font-mono); font-size: .84rem; text-align: right; }

.product__foot { margin-top: auto; padding-top: 4px; }

/* --- Feature list --------------------------------------------------------- */

.checks { list-style: none; padding: 0; margin: 0; }
.checks li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  font-size: .98rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a7a6d' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.section--teal .checks li::before { background-color: rgba(255,255,255,.16); }
.section--teal .checks li { color: var(--teal-100); }

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

.steps { counter-reset: step; display: grid; gap: 20px; }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal-700);
  color: #fff;
  font-weight: 750;
  font-size: 1.05rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 4px; }
.step p { font-size: .95rem; color: var(--slate-500); margin: 0; }

/* --- Tables --------------------------------------------------------------- */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 660px; }
thead th {
  background: var(--teal-900);
  color: #fff;
  text-align: left;
  font-weight: 650;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 16px;
  white-space: nowrap;
}
tbody td, tbody th {
  padding: 13px 16px;
  border-top: 1px solid var(--slate-200);
  vertical-align: top;
  text-align: left;
}
tbody th { font-weight: 650; color: var(--ink); white-space: nowrap; }
tbody tr:nth-child(even) { background: var(--sand); }
td.num { font-family: var(--font-mono); font-size: .86rem; white-space: nowrap; }

.table-note { font-size: .86rem; color: var(--slate-500); margin-top: 12px; }

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

.callout {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: var(--amber-50);
  border: 1px solid #f2ddba;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  font-size: .95rem;
}
.callout svg { width: 22px; height: 22px; color: var(--amber); flex: none; margin-top: 2px; }
.callout--info { background: var(--teal-50); border-color: var(--teal-100); border-left-color: var(--teal-600); }
.callout--info svg { color: var(--teal-700); }
.callout p { margin-bottom: .5em; }

/* --- Banner CTA ----------------------------------------------------------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px);
  color: var(--teal-100);
  text-align: center;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { max-width: 58ch; margin: 0 auto 26px; position: relative; }
.cta-banner .btn-row { position: relative; }

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

.faq { border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq details { border-bottom: 1px solid var(--slate-200); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 650;
  color: var(--ink);
  list-style: none;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a7a6d' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--sand); }
.faq .faq__body { padding: 0 22px 20px; font-size: .96rem; color: var(--slate-500); }

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

.form-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .88rem;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 6px;
}
.field .req { color: var(--rose); }
.field .hint { display: block; font-weight: 400; color: var(--slate-500); font-size: .82rem; margin-top: 3px; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 118px; resize: vertical; }
select {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2366807c' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") right 12px center / 16px no-repeat;
  padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .18);
}
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(180, 65, 60, .13);
}
.error-msg { display: none; color: var(--rose); font-size: .82rem; margin-top: 5px; font-weight: 600; }
.error-msg.is-visible { display: block; }

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

.choices { display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.choice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .9rem;
  transition: border-color .15s ease, background-color .15s ease;
}
.choice:hover { border-color: var(--teal-200); background: var(--teal-50); }
.choice input { margin: 3px 0 0; accent-color: var(--teal-700); flex: none; }
.choice:has(input:checked) { border-color: var(--teal-600); background: var(--teal-50); }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--teal-50); border: 1px solid var(--teal-200); color: var(--teal-900); }
.form-status--err { background: #fdeceb; border: 1px solid #f3c9c6; color: #8c2f2b; }

.form-legal { font-size: .82rem; color: var(--slate-500); margin-top: 14px; }

/* --- Contact side panel --------------------------------------------------- */

.contact-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 36px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-block { margin-bottom: 26px; }
.info-block h3 { font-size: 1rem; margin-bottom: 6px; }
.info-block p, .info-block a { font-size: .95rem; }
.info-block p { color: var(--slate-500); margin-bottom: .3em; }

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

.site-footer {
  background: var(--teal-950);
  color: #9fb8b4;
  padding: 56px 0 28px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .brand:hover { color: var(--teal-200); }
.site-footer p { color: #9fb8b4; font-size: .9rem; max-width: 38ch; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #9fb8b4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .84rem;
  color: #77918d;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* --- Reveal animation ----------------------------------------------------- */

/* Only hide content for the animation if JavaScript is actually running — the
   inline snippet in <head> sets .js. Without it every .reveal stays visible,
   so blocked or failed JS never leaves the page with empty sections. */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

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

/* --- Print ---------------------------------------------------------------- */

@media print {
  .site-header, .site-footer, .cta-banner, .nav-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .card, .product, .table-scroll { break-inside: avoid; box-shadow: none; }
}
