/* Grana Farm - site styles */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--leading-body);
  color: var(--text-body);
  background: var(--cream-050);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-display);
  color: var(--text-heading);
  margin: 0;
}

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

img { max-width: 100%; }

::selection { background: var(--amber-200); color: var(--green-900); }

.container { max-width: 1180px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

.btn-sm { height: 34px; padding: 0 16px; font-size: 13.5px; }
.btn-md { height: 42px; padding: 0 22px; font-size: 14.5px; }
.btn-lg { height: 50px; padding: 0 28px; font-size: 15.5px; }

.btn-primary { background: var(--green-600); color: #fff; }
.btn-primary:hover { background: var(--green-700); color: #fff; }
.btn-primary:active { background: var(--green-800); }

.btn-accent { background: var(--amber-400); color: var(--green-900); }
.btn-accent:hover { background: var(--amber-500); color: var(--green-900); }
.btn-accent:active { background: var(--amber-600); }

.btn-secondary { background: transparent; border-color: var(--green-600); color: var(--green-700); }
.btn-secondary:hover { background: var(--green-050); color: var(--green-800); }
.btn-secondary:active { background: var(--green-100); }

.btn-inverse { background: transparent; border-color: rgba(251, 249, 243, 0.55); color: var(--cream-050); }
.btn-inverse:hover { background: rgba(251, 249, 243, 0.12); color: var(--cream-050); }

/* ── Badges ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-solid { background: var(--green-700); color: var(--cream-050); }
.badge-green { background: var(--green-100); color: var(--green-800); }
.badge-amber { background: var(--amber-400); color: var(--green-900); }

/* ── Eyebrow labels ──────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow .line { width: 24px; height: 2px; background: var(--amber-500); flex-shrink: 0; }
.eyebrow.left .line { width: 28px; }

/* ── Announcement bar ────────────────────────── */
.topbar {
  background: var(--green-900);
  color: var(--green-200);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 32px;
  text-align: center;
}
.topbar .dot { display: inline-flex; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-400); flex-shrink: 0; }
.topbar a { color: var(--amber-300); font-weight: 600; white-space: nowrap; }
.topbar a:hover { color: var(--amber-200); }

/* ── Header ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 249, 243, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header .logo img { height: 42px; display: block; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a { color: var(--stone-700); }
.site-nav a:hover { color: var(--green-800); }
.site-nav a.active {
  color: var(--green-800);
  font-weight: 600;
  border-bottom: 2px solid var(--amber-400);
  padding-bottom: 2px;
}
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--green-800);
}

/* ── Hero ────────────────────────────────────── */
.hero { background: var(--surface-dark); padding: 96px 32px 150px; }
.hero .inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero .eyebrow { color: var(--amber-300); margin-bottom: 24px; }
.hero .eyebrow .line { background: var(--amber-400); }
.hero h1 {
  font-size: 60px;
  line-height: 1.06;
  color: var(--cream-050);
  margin: 0 0 26px;
  text-wrap: balance;
}
.hero h1 em { color: var(--amber-300); font-style: italic; }
.hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--green-200);
  max-width: 480px;
  margin: 0 0 34px;
}
.hero .actions { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.hero .checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  border-top: 1px solid rgba(251, 249, 243, 0.14);
  padding-top: 24px;
}
.hero .checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--green-100);
}
.hero-media { position: relative; min-width: 0; }
.hero-media .frame {
  position: relative;
  height: 540px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.hero-media .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .float-card {
  position: absolute;
  left: -28px;
  bottom: 36px;
  background: var(--cream-050);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(20, 41, 15, 0.28);
}
.float-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber-100);
  flex-shrink: 0;
}
.float-card .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-600);
}
.float-card .value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--green-900);
}

/* ── Stats band ──────────────────────────────── */
.stats { padding: 0 32px; }
.stats .inner {
  max-width: 1180px;
  margin: -72px auto 0;
  background: var(--cream-000);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 44px rgba(20, 41, 15, 0.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 5;
}
.stat { padding: 34px 24px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--border-subtle); }
.stat .num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: -0.02em;
}
.stat .num b { color: var(--amber-500); font-weight: inherit; }
.stat .cap {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--stone-600);
  margin-top: 6px;
}

/* ── Section scaffolding ─────────────────────── */
.section { padding: 110px 32px; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--green-600); margin-bottom: 18px; }
.section-head h2 { font-size: 42px; margin: 0 0 16px; }
.section-head p { font-size: 16.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--cream-000);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(20, 41, 15, 0.05);
}
.card.lift { transition: box-shadow 0.18s ease-out, transform 0.18s ease-out; }
.card.lift:hover { box-shadow: 0 12px 28px rgba(20, 41, 15, 0.12); transform: translateY(-4px); }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { overflow: hidden; }
.product-card .media { position: relative; height: 190px; }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card .media .badge { position: absolute; top: 12px; left: 12px; pointer-events: none; }
.product-card .body { padding: 20px 20px 22px; }
.product-card h3 { font-size: 20px; margin: 0 0 6px; }
.product-card .desc { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); margin: 0 0 18px; }
.product-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}
.price { font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: var(--green-800); }
.price small { font-size: 11px; color: var(--stone-500); font-weight: 400; }
.products-more { display: flex; justify-content: center; margin-top: 44px; }

/* Audiences / feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 32px 30px; display: flex; flex-direction: column; gap: 14px; }
.feature-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-100);
  flex-shrink: 0;
}
.feature-card .icon.amber { background: var(--amber-100); }
.feature-card h3 { font-size: 21px; margin: 6px 0 0; }
.feature-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 0; flex: 1; }
.feature-card .more {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.feature-card .more .arrow { font-family: var(--font-mono); }

.section-tint { background: var(--surface-tint); border-top: 1px solid var(--green-100); border-bottom: 1px solid var(--green-100); }
.section-warm { background: var(--surface-warm); border-top: 1px solid var(--amber-100); border-bottom: 1px solid var(--amber-100); }
.section-warm .section-head .eyebrow { color: var(--amber-700); }

/* About */
.about { padding: 120px 32px; }
.about .inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about .eyebrow { color: var(--green-600); margin-bottom: 20px; }
.about h2 { font-size: 42px; margin: 0 0 22px; text-wrap: balance; }
.about .lead { font-size: 16.5px; line-height: 1.65; color: var(--text-muted); margin: 0 0 30px; max-width: 470px; }
.about .checklist { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.about .checklist .item { display: flex; gap: 14px; align-items: flex-start; }
.about .checklist .tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-100);
  flex-shrink: 0;
  margin-top: 1px;
}
.about .checklist p { font-size: 15px; line-height: 1.55; margin: 0; }
.about .checklist strong { color: var(--green-900); }
.about-media { position: relative; min-width: 0; }
.about-media .frame {
  position: relative;
  height: 500px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(20, 41, 15, 0.14);
}
.about-media .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about-media .float-badge {
  position: absolute;
  right: -20px;
  top: 40px;
  background: var(--green-900);
  color: var(--cream-050);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: 0 12px 32px rgba(20, 41, 15, 0.3);
}
.float-badge .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--amber-300);
  letter-spacing: -0.02em;
}
.float-badge .cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-200);
  margin-top: 2px;
}

/* Process */
.process-card { padding: 32px 30px; }
.process-card .head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.process-card .step {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--amber-300);
  line-height: 1;
  letter-spacing: -0.02em;
}
.process-card h3 { font-size: 20px; margin: 0 0 8px; }
.process-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* Testimonials */
.testimonials { padding: 120px 32px 100px; }
.testimonial-card { padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.stars { display: inline-flex; gap: 3px; }
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}
.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.avatar.green { background: var(--green-700); color: var(--cream-050); }
.avatar.amber { background: var(--amber-500); color: var(--green-900); }
.avatar.leaf { background: var(--green-500); color: var(--cream-050); }
.who .name { font-weight: 600; font-size: 14.5px; color: var(--green-900); }
.who .role { font-size: 13px; color: var(--stone-600); }

/* Closing CTA */
.cta { padding: 20px 32px 120px; }
.cta .panel {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--surface-dark);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 400px;
  box-shadow: 0 24px 60px rgba(20, 41, 15, 0.25);
}
.cta .content {
  padding: 72px 72px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta .eyebrow { color: var(--amber-300); margin-bottom: 20px; }
.cta .eyebrow .line { background: var(--amber-400); }
.cta h2 { font-size: 42px; color: var(--cream-050); margin: 0 0 18px; text-wrap: balance; }
.cta p { font-size: 16.5px; line-height: 1.6; color: var(--green-200); margin: 0 0 34px; max-width: 480px; }
.cta .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .media { position: relative; min-height: 380px; }
.cta .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

/* Footer */
.site-footer { background: var(--green-900); color: var(--green-200); padding: 72px 32px 0; }
.site-footer .cols {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer .brand img { height: 42px; display: block; filter: brightness(0) invert(1); margin-bottom: 22px; }
.site-footer .brand p { font-size: 14px; line-height: 1.65; color: var(--green-200); margin: 0; max-width: 300px; }
.site-footer .col-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--amber-300);
  font-weight: 600;
  margin-bottom: 20px;
}
.site-footer .links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.site-footer .links a { color: var(--green-100); }
.site-footer .links a:hover { color: var(--amber-300); }
.site-footer .contact { display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.site-footer .contact span { display: inline-flex; align-items: center; gap: 10px; color: var(--green-100); }
.site-footer .bottom { border-top: 1px solid rgba(251, 249, 243, 0.12); }
.site-footer .bottom .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--green-300);
  flex-wrap: wrap;
}
.site-footer .tagline { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; }

/* ── Subpages (contact, legal) ───────────────── */
.page-hero { background: var(--surface-dark); padding: 64px 32px 72px; }
.page-hero .inner { max-width: 1180px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--amber-300); margin-bottom: 16px; }
.page-hero .eyebrow .line { background: var(--amber-400); }
.page-hero h1 { font-size: 44px; color: var(--cream-050); margin: 0; text-wrap: balance; }
.page-hero p { font-size: 16.5px; line-height: 1.6; color: var(--green-200); margin: 14px 0 0; max-width: 640px; }

.page-body { padding: 64px 32px 96px; }
.page-body .inner { max-width: 860px; margin: 0 auto; }

.prose h2 { font-size: 26px; margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 15.5px; line-height: 1.7; color: var(--text-body); }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 14px; padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose a { font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .updated {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone-600);
  margin-bottom: 28px;
}
.prose .note {
  background: var(--amber-050);
  border: 1px solid var(--amber-100);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14.5px;
}

.id-card {
  background: var(--cream-000);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px 28px;
  margin: 18px 0 28px;
}
.id-card dl { margin: 0; display: grid; grid-template-columns: 220px 1fr; row-gap: 10px; column-gap: 16px; }
.id-card dt {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--stone-600);
  align-self: center;
}
.id-card dd { margin: 0; font-size: 15px; font-weight: 500; color: var(--green-900); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.contact-card {
  background: var(--cream-000);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 30px;
}
.contact-card h2 { font-size: 22px; margin: 0 0 18px; }
.contact-card .row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--border-subtle); }
.contact-card .row:first-of-type { border-top: none; }
.contact-card .row .icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; background: var(--green-100); flex-shrink: 0;
}
.contact-card .row .label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--stone-600);
}
.contact-card .row .value { font-size: 15px; font-weight: 500; color: var(--green-900); }
.contact-card .row .value a { color: inherit; }
.contact-card .row .value a:hover { color: var(--green-600); }

/* ── Footer legal strip ──────────────────────── */
.footer-legal {
  border-top: 1px solid rgba(251, 249, 243, 0.12);
  padding: 24px 0;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
}
.footer-legal .links {
  flex-direction: row;
  align-items: center;
  gap: 8px 22px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-legal .links a { color: var(--green-100); white-space: nowrap; }
.footer-legal .links a:hover { color: var(--amber-300); }
.legal-badges { display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; }
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1B3C87;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff !important;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out);
}
.legal-badge:hover { background: #234CA5; color: #fff; }
.legal-badge svg { flex-shrink: 0; }
.legal-badge small { display: block; font-weight: 400; font-size: 10px; opacity: 0.85; letter-spacing: 0.02em; }

/* Footer bottom bar */
.site-footer .bottom .inner {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 22px 0 28px;
}
.footer-company-id {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: rgba(198, 227, 179, 0.72);
}
.site-footer .bottom .tagline { display: inline-block; margin-left: 10px; color: var(--amber-300); }

/* ── Cookie banner ───────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 100;
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream-000);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-banner p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--text-body); flex: 1; }
.cookie-banner .actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 680px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner .actions { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .id-card dl { grid-template-columns: 1fr; row-gap: 2px; }
  .id-card dd { margin-bottom: 10px; }
  .page-hero h1 { font-size: 32px; }
  .footer-legal { justify-content: center; text-align: center; }
}
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Reveal animation (applied by JS) ────────── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1100px) {
  .hero .inner { grid-template-columns: 1fr; gap: 56px; }
  .hero h1 { font-size: 48px; }
  .hero-media .frame { height: 440px; }
  .hero-media .float-card { left: 16px; }
  .about .inner { grid-template-columns: 1fr; gap: 56px; }
  .about-media .float-badge { right: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats .inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }
  .cta .panel { grid-template-columns: 1fr; }
  .cta .content { padding: 56px 40px; }
  .cta .media { min-height: 300px; }
  .cta .media img { position: absolute; }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream-050);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { display: block; width: 100%; padding: 12px 32px; }
  .site-nav a.active { border-bottom: none; border-left: 3px solid var(--amber-400); padding-left: 29px; }
  .nav-toggle { display: block; }
  .header-cta { margin-left: 0; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .topbar { flex-wrap: wrap; padding: 8px 14px; gap: 4px 10px; font-size: 11.5px; line-height: 1.5; }
  .site-header .inner { padding: 12px 16px; gap: 14px; }
  .header-cta { padding: 0 16px; font-size: 13.5px; }
  .hero { padding: 56px 16px 130px; }
  .hero h1 { font-size: 37px; }
  .hero .lead { font-size: 16.5px; }
  .hero .actions { flex-direction: column; }
  .hero .actions .btn { width: 100%; }
  .hero-media .frame { height: 340px; }
  .cta .actions { flex-direction: column; }
  .cta .actions .btn { width: 100%; }
  .products-more .btn { width: 100%; }
  .contact-card .btn { flex: 1 1 100%; }
  .about .btn { width: 100%; }
  .stats, .section, .cta { padding-left: 16px; padding-right: 16px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .section-head h2, .about h2, .cta h2 { font-size: 32px; }
  .product-grid { grid-template-columns: 1fr; }
  .stats .inner { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--border-subtle); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: none; }
  .about { padding: 80px 16px; }
  .about-media .frame { height: 360px; }
  .testimonials { padding: 80px 16px 70px; }
  .cta .content { padding: 44px 28px; }
  .site-footer { padding: 56px 16px 0; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 36px; }
  .site-footer .bottom .inner { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
  .footer-legal .links { justify-content: center; }
  .legal-badges { justify-content: center; width: 100%; }
  .legal-badge { flex: 1 1 auto; justify-content: center; }
  .page-hero { padding: 48px 16px 56px; }
  .page-body { padding: 48px 16px 72px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 33px; }
  .section-head h2, .about h2, .cta h2 { font-size: 29px; }
  .stat .num { font-size: 36px; }
}
