/* ============================================================
   Lamonte Australia — Premium Kidswear & Private Label
   Modern Coastal Organic Premium theme
   Mobile-first: base styles target small screens; layout scales
   up via min-width breakpoints (681px, 901px, 1081px).
   ============================================================ */

:root {
  --ivory: #FAF7F0;
  --white: #FFFFFF;
  --sand: #E8DCC8;
  --sand-soft: #EFE7D8;
  --charcoal: #2F2F2F;
  --ink-70: #57534B;
  --ink-50: #6B6760;      /* darkened from #77736B for AA on ivory */
  --ink-35: #857F73;      /* darkened from #A39E93 for AA small text */
  --green: #6F8F72;       /* decorative use only (bars, dots) */
  --green-ink: #47624B;   /* AA text/CTA green on ivory & white */
  --green-deep: #37503C;  /* hover state */
  --ocean: #3F7F8C;       /* decorative / large text only */
  --ocean-ink: #2A5E6A;   /* AA ocean for small text */
  --ocean-deep: #2E5F6B;  /* AA background under ivory text */
  --ocean-soft: #BFDDE2;
  --ocean-tint: #D8E8EB;
  --terracotta: #C9825A;  /* decorative use only */
  --terracotta-ink: #96552F; /* AA terracotta for small text */
  --tan: #8A7A5E;
  --tan-ink: #6E6149;     /* AA tan for small text */
  --line: rgba(47, 47, 47, 0.1);
  --line-soft: rgba(47, 47, 47, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --wrap: 1220px;
  --pad-x: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--ivory);
  font-family: var(--sans);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ocean-ink);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

.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;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; }

ul.plain, ol.plain { list-style: none; margin: 0; padding: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-ink);
}
.eyebrow--ocean { color: var(--ocean-ink); }
.eyebrow--tan { color: var(--tan-ink); }

/* ---------- Buttons ---------- */
.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.btn--green { background: var(--green-ink); color: var(--white); }
.btn--green:hover { background: var(--green-deep); }
.btn--green-on-dark { background: var(--green); color: #1E2A20; font-weight: 700; }
.btn--green-on-dark:hover { background: #83A386; }
.btn--dark { background: var(--charcoal); color: var(--ivory); }
.btn--dark:hover { background: var(--ink-70); }
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(47, 47, 47, 0.45);
}
.btn--outline:hover { border-color: var(--charcoal); }
.btn--outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(250, 247, 240, 0.65);
}
.btn--outline-light:hover { border-color: var(--ivory); }
.btn--sm { min-height: 44px; padding: 0 22px; font-size: 14px; }
.btn--md { min-height: 54px; padding: 0 30px; font-size: 15px; }
.btn--lg { min-height: 54px; padding: 0 32px; font-size: 15px; }

/* ============================================================
   HEADER (mobile first: brand + toggle; nav collapses)
   ============================================================ */
.site-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 10px var(--pad-x);
  border-bottom: 1px solid rgba(47, 47, 47, 0.09);
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; margin-right: auto; }
.brand__logo { width: 32px; height: 32px; }
.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.05;
  white-space: nowrap;
}
.brand__sub {
  display: none;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-50);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.nav {
  display: none;
  flex-basis: 100%;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 12px;
}
.nav.is-open { display: flex; }
.nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-70);
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.18s ease;
}
.nav a:hover { color: var(--charcoal); }

.header-cta { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 44px var(--pad-x) 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.hero__eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(32px, 3.4vw + 20px, 54px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--ocean-ink); }
.hero__lead {
  font-size: clamp(16px, 0.4vw + 15px, 18px);
  line-height: 1.7;
  color: var(--ink-70);
  max-width: 520px;
  margin: 22px 0 30px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__ctas .btn { width: 100%; }
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ocean-ink);
  text-decoration: none;
}
.wa-link:hover { text-decoration: underline; }
.wa-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-ink);
  box-shadow: 0 0 0 4px rgba(111, 143, 114, 0.18);
  flex-shrink: 0;
}
.hero__media { position: relative; order: -1; }
.hero__img {
  width: 100%;
  height: clamp(300px, 46vw, 520px);
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.hero__quote {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 18px 44px rgba(47, 47, 47, 0.12);
}
.hero__quote span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--charcoal);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--sand);
}
.trust__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  list-style: none;
}
.trust__item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-70);
}
.trust__dot {
  display: none;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--terracotta-ink);
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { max-width: var(--wrap); margin: 0 auto; padding: 56px var(--pad-x); }
.band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.band--white { background: var(--white); }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head--sm { max-width: 560px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(28px, 1.6vw + 22px, 42px); line-height: 1.16; margin-bottom: 16px; }
.section-head h2:last-child { margin-bottom: 0; }
.section-head p { font-size: 17px; line-height: 1.7; color: var(--ink-70); margin: 0; }

/* ---------- Who we help ---------- */
.chips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.chip-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--ivory);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.product-card__body { padding: 26px 24px 30px; }
.product-card__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.tag--green { color: var(--green-ink); }
.tag--ocean { color: var(--ocean-ink); }
.tag--terracotta { color: var(--terracotta-ink); }
.product-card h3 { font-weight: 600; font-size: 24px; margin-bottom: 10px; }
.product-card p { font-size: 15px; line-height: 1.65; color: var(--ink-70); margin: 0; }

/* ============================================================
   PRIVATE LABEL PROCESS
   ============================================================ */
.section-head--proc { max-width: 620px; margin-bottom: 40px; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: step;
}
.step {
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--green-ink);
  margin-bottom: 12px;
}
.step p { font-size: 14px; line-height: 1.6; color: var(--charcoal); font-weight: 600; margin: 0; }

/* ============================================================
   FEATURE BANDS (organic / uniform / resort)
   ============================================================ */
.feature {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.feature__img {
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  object-fit: cover;
  border-radius: 24px;
  display: block;
  order: -1;
}
.feature .eyebrow { display: block; margin-bottom: 16px; }
.feature h2 { font-size: clamp(28px, 1.4vw + 22px, 40px); line-height: 1.18; margin-bottom: 18px; }
.feature h2 em { color: var(--green-ink); font-style: italic; }
.feature__lead { font-size: 16px; line-height: 1.7; color: var(--ink-70); margin: 0 0 26px; }

.band--sand { background: var(--sand-soft); border-color: rgba(47, 47, 47, 0.07); }

.pills { display: flex; gap: 10px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-ink);
  border: 1px solid rgba(71, 98, 75, 0.55);
  border-radius: 100px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
}

/* Uniform checklist */
.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.check {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.check__mark { color: var(--ocean-ink); font-weight: 700; }
.check span:last-child { font-size: 14px; font-weight: 500; }

/* Resort (ocean bg) — darkened for AA ivory text */
.resort { background: var(--ocean-deep); color: var(--ivory); }
.resort .eyebrow { color: var(--ocean-soft); }
.resort .feature__lead { color: var(--ocean-tint); }
.resort .pill {
  color: var(--ivory);
  border-color: rgba(250, 247, 240, 0.55);
  background: transparent;
}

/* ============================================================
   EXPORT / QC
   ============================================================ */
.qc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.qc-title { font-size: clamp(28px, 1.4vw + 22px, 40px); line-height: 1.18; margin: 16px 0 18px; }
.qc-note {
  border: 1px solid rgba(71, 98, 75, 0.45);
  border-radius: 16px;
  background: rgba(111, 143, 114, 0.08);
  padding: 22px 24px;
}
.qc-note h3 {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--green-ink);
}
.qc-note p { font-size: 14px; line-height: 1.65; color: var(--ink-70); margin: 0; }
.qc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.qc-item {
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   SAMPLE-FIRST BAND
   ============================================================ */
.sample-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x) 56px; }
.sample {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--sand);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.sample__text { max-width: 620px; }
.sample .eyebrow { display: block; color: var(--tan-ink); margin-bottom: 12px; }
.sample h3 { font-size: clamp(24px, 1vw + 20px, 32px); line-height: 1.2; margin-bottom: 12px; }
.sample p { font-size: 15px; line-height: 1.65; color: var(--ink-70); margin: 0; }

/* ============================================================
   WHY LAMONTE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.why-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ivory);
}
.why-card__bar {
  height: 3px;
  width: 44px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.bar--green { background: var(--green); }
.bar--ocean { background: var(--ocean); }
.bar--terracotta { background: var(--terracotta); }
.bar--tan { background: var(--tan); }
.why-card h4 { font-weight: 600; font-size: 20px; margin-bottom: 10px; }
.why-card p { font-size: 14px; line-height: 1.65; color: var(--ink-70); margin: 0; }

/* ============================================================
   LEAD MAGNET + FORM
   ============================================================ */
.quote {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 56px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.form-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: 30px 24px;
  box-shadow: 0 16px 44px rgba(47, 47, 47, 0.07);
}
.form-card .eyebrow { display: block; margin-bottom: 12px; }
.form-card h2 { font-size: clamp(26px, 1vw + 22px, 34px); line-height: 1.16; margin-bottom: 8px; }
.form-card__lead { font-size: 15px; line-height: 1.6; color: var(--ink-50); margin: 0 0 30px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; }
.field--full { margin-top: 16px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 7px;
}
.field input,
.field select {
  min-height: 48px;
  border: 1px solid rgba(47, 47, 47, 0.35);
  border-radius: 10px;
  background: var(--ivory);
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 16px; /* prevents iOS zoom-on-focus */
  color: var(--charcoal);
  width: 100%;
  transition: border-color 0.18s ease;
}
.field input::placeholder { color: var(--ink-35); }
.field select { color: var(--ink-70); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2357534B' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus { border-color: var(--green-ink); }
.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-70);
  cursor: pointer;
  min-height: 44px;
}
.consent input { width: 20px; height: 20px; accent-color: var(--green-ink); margin: 0; cursor: pointer; flex-shrink: 0; }
.form-card .btn { width: 100%; margin-top: 26px; }

/* Aside: download + WhatsApp */
.download-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--sand-soft);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.download-card .eyebrow { display: block; color: var(--tan-ink); margin-bottom: 14px; }
.download-card h3 { font-weight: 600; font-size: 24px; margin-bottom: 10px; line-height: 1.2; }
.download-card p { font-size: 14px; line-height: 1.65; color: var(--ink-70); margin: 0 0 22px; }
.download-list { display: flex; flex-direction: column; gap: 10px; }
.download-item {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(47, 47, 47, 0.12);
  border-radius: 12px;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.download-item:hover { border-color: var(--green-ink); transform: translateY(-1px); }
.download-item span { color: var(--green-ink); }
.consultant {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(42, 94, 106, 0.4);
  border-radius: 22px;
  background: rgba(63, 127, 140, 0.07);
  transition: background 0.18s ease;
}
.consultant:hover { background: rgba(63, 127, 140, 0.12); }
.consultant__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-ink);
  box-shadow: 0 0 0 5px rgba(111, 143, 114, 0.18);
  flex-shrink: 0;
}
.consultant__title {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--charcoal);
}
.consultant__meta { display: block; font-size: 13px; color: var(--ink-50); margin-top: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 880px; margin: 0 auto; padding: 56px var(--pad-x); }
.faq-wrap .eyebrow { display: block; margin-bottom: 16px; }
.faq-wrap h2 { font-size: clamp(28px, 1.4vw + 22px, 40px); line-height: 1.16; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; }
.faq { border-top: 1px solid var(--line); }
.faq:last-of-type { border-bottom: 1px solid var(--line); }
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  min-height: 56px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
}
.faq__q {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--charcoal);
}
.faq__icon { font-size: 20px; color: var(--green-ink); flex-shrink: 0; line-height: 1; }
.faq__panel[hidden] { display: none; }
.faq__panel p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-70);
  margin: 0;
  padding: 0 0 24px;
  max-width: 720px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--charcoal); color: var(--ivory); }
.final-cta__inner { max-width: 880px; margin: 0 auto; padding: 72px var(--pad-x); text-align: center; }
.final-cta .eyebrow { display: block; color: #A8BFAA; margin-bottom: 20px; }
.final-cta h2 { font-size: clamp(30px, 1.8vw + 24px, 46px); line-height: 1.16; margin-bottom: 18px; }
.final-cta p { font-size: 17px; line-height: 1.65; color: #CBC6BC; max-width: 620px; margin: 0 auto 38px; }
.final-cta__ctas { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ivory); }
.site-footer__inner { max-width: var(--wrap); margin: 0 auto; padding: 44px var(--pad-x) 24px; }
.seo-text {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-50);
  margin: 0 0 34px;
  max-width: 1000px;
}
.footer-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-brand img { width: 26px; height: 26px; }
.footer-brand__name { font-family: var(--serif); font-weight: 600; font-size: 17px; }
.footer-brand__sub { font-size: 12px; color: var(--ink-50); margin-left: 6px; }
.footer-copy { font-size: 12px; color: var(--ink-50); }

/* ============================================================
   RESPONSIVE — scale UP from mobile
   ============================================================ */

/* ---------- ≥ 681px : small tablet ---------- */
@media (min-width: 681px) {
  :root { --pad-x: 40px; }

  .brand__sub { display: block; }
  .header-cta { display: inline-flex; margin-left: auto; }
  .brand { margin-right: 0; }

  .hero { padding: 64px var(--pad-x) 56px; gap: 44px; }
  .hero__ctas .btn { width: auto; }

  .trust__inner { justify-content: space-between; }
  .trust__dot { display: block; }

  .section { padding: 72px var(--pad-x); }
  .feature { padding: 64px var(--pad-x); gap: 44px; }

  .chips-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .qc-list { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }

  .sample { flex-direction: row; justify-content: space-between; align-items: center; padding: 44px 44px; flex-wrap: wrap; }
  .sample-wrap { padding: 0 var(--pad-x) 72px; }

  .form-card { padding: 44px; }
  .quote { padding: 72px var(--pad-x); }
  .faq-wrap { padding: 72px var(--pad-x); }
  .final-cta__inner { padding: 88px var(--pad-x); }
  .final-cta__ctas { flex-direction: row; justify-content: center; flex-wrap: wrap; align-items: center; }

  .footer-bar { flex-direction: row; justify-content: space-between; align-items: center; }
  .site-footer__inner { padding: 52px var(--pad-x) 28px; }
}

/* ---------- ≥ 901px : desktop layout ---------- */
@media (min-width: 901px) {
  :root { --pad-x: 56px; }

  .site-header { min-height: 76px; padding: 12px 40px; flex-wrap: nowrap; }
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    flex-basis: auto;
    flex: 1;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    padding: 0;
  }
  .nav a { font-size: 14px; padding: 8px 2px; border-bottom: none; white-space: nowrap; }
  .header-cta { margin-left: 0; }

  .hero {
    padding: 96px var(--pad-x) 88px;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 68px;
  }
  .hero__media { order: 0; }
  .hero__quote { left: -24px; right: auto; bottom: 32px; max-width: 280px; }
  .hero__quote span { font-size: 17px; }

  .section { padding: 96px var(--pad-x); }
  .feature { padding: 88px var(--pad-x); gap: 68px; }
  .feature--media-left { grid-template-columns: 0.9fr 1.1fr; }
  .feature--media-right { grid-template-columns: 1.1fr 0.9fr; }
  .feature--media-left .feature__img,
  .feature--media-right .feature__img { order: 0; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card__body { padding: 30px 32px 34px; }
  .product-card h3 { font-size: 26px; }

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

  .qc-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; }

  .quote { padding: 96px var(--pad-x); grid-template-columns: 1.15fr 0.85fr; gap: 52px; }
  .faq-wrap { padding: 96px var(--pad-x); }
  .final-cta__inner { padding: 104px var(--pad-x); }
  .sample { padding: 52px 56px; }
  .sample-wrap { padding: 0 var(--pad-x) 88px; }
  .download-card { padding: 36px; }
  .consultant { padding: 24px 26px; }
}

/* ---------- ≥ 1081px : wide desktop ---------- */
@media (min-width: 1081px) {
  .chips-grid { grid-template-columns: repeat(5, 1fr); }
  .steps-grid { grid-template-columns: repeat(5, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}
