﻿:root {
  --green: #0aac4b;
  --green-dark: #087a38;
  --green-soft: #e7f6ec;
  --charcoal: #171a18;
  --ink: #252b28;
  --muted: #6f7572;
  --line: #dce3df;
  --soft: #f4f6f4;
  --white: #ffffff;
  --sage: #dfe9e2;
  --lemon: #f4c84f;
  --shadow: 0 22px 60px rgba(23, 26, 24, 0.14);
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(10, 172, 75, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--charcoal);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  max-width: calc(100vw - 40px);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 227, 223, 0.86);
}

.notice {
  display: flex;
  justify-content: center;
  max-width: 100vw;
  padding: 8px 18px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.notice span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  max-width: calc(100vw - 40px);
  min-height: 78px;
  margin-inline: auto;
}

.brand img {
  width: 240px;
  height: auto;
}

.nav-panel {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-panel a {
  position: relative;
  padding: 8px 0;
}

.nav-panel a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-panel a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link,
.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--charcoal);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero {
  position: relative;
  height: calc(100vh + 112px);
  min-height: 920px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 8vh, 112px) 0;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 26, 24, 0.82) 0%, rgba(23, 26, 24, 0.46) 47%, rgba(23, 26, 24, 0.28) 100%),
    linear-gradient(0deg, rgba(23, 26, 24, 0.32), rgba(23, 26, 24, 0.12));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  width: min(720px, calc(100vw - 40px));
  max-width: 100%;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-line {
  display: block;
  max-width: 100%;
  white-space: normal;
}

h2 {
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-cta,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(10, 172, 75, 0.24);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.button-outline {
  color: var(--charcoal);
  border-color: var(--line);
  background: var(--white);
}

.demo-card,
.wide-form,
.contact-card {
  border-radius: var(--radius);
}

.demo-card {
  display: grid;
  gap: 10px;
  justify-self: end;
  width: 100%;
  padding: 30px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.demo-card label,
.demo-card input,
.demo-card select,
.demo-card textarea,
.demo-card .checkbox,
.demo-card .form-submit,
.demo-card .form-message {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.form-heading h2,
.form-heading h3 {
  margin-bottom: 8px;
}

label {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-strip {
  padding: 24px 0;
  color: var(--white);
  background: var(--charcoal);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-grid div {
  min-height: 92px;
  padding: 18px;
  background: var(--charcoal);
}

.trust-grid span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-grid strong {
  color: var(--white);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 700px;
}

.section-heading.centred {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p,
.cookidoo-copy p,
.about-copy p,
.journal-heading p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.three-card-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.image-card,
.journal-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card div,
.journal-card div {
  padding: 24px;
}

.image-card p,
.journal-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 140px;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mode {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 18px 10px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mode svg {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: var(--green-dark);
  stroke-width: 1.8;
}

.mode span {
  font-size: 0.9rem;
  font-weight: 800;
}

.mode.accessory {
  background: var(--green-soft);
}

.catalog-benefits-section {
  background: var(--white);
}

.catalog-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.benefit-mini-card,
.mode-detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.catalog-benefits-section .benefit-mini-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
}

.benefit-mini-card svg,
.mode-detail-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green-dark);
  stroke-width: 1.7;
}

.benefit-mini-card h3,
.mode-detail-card h3 {
  margin-bottom: 10px;
}

.benefit-mini-card p,
.mode-detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mode-detail-section {
  background: var(--white);
}

.mode-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mode-detail-card.accessory-note {
  background: var(--green-soft);
}

.cookidoo {
  background: var(--charcoal);
}

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

.cookidoo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
}

.cookidoo .cookidoo-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.feature-list svg {
  color: var(--green);
}

.cookidoo .feature-list span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.product-composition {
  position: relative;
  min-height: 520px;
}

.product-composition .food-shot {
  width: 78%;
  height: 430px;
  margin-left: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-composition .device {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.34));
}

.box-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.box-image-wrap {
  display: grid;
  place-items: center;
  min-height: 520px;
  background: linear-gradient(180deg, var(--soft), var(--sage));
  border-radius: var(--radius);
}

.box-image-wrap img {
  width: 82%;
  filter: drop-shadow(0 22px 34px rgba(23, 26, 24, 0.18));
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.included-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.included-grid svg {
  color: var(--green);
}

.demo-steps {
  background: var(--soft);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.step-card {
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.demo-panel {
  padding: 36px;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.wide-form {
  padding: 34px;
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.span-2 {
  grid-column: span 2;
}

.about-section {
  background: var(--white);
}

.about-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.journal-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 40px;
}

.journal-heading h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.journal-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.journal-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 48px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  color: var(--green-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--green);
}

.review-placeholders {
  display: grid;
  gap: 16px;
}

.review-placeholders article,
.review-placeholders a {
  display: block;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-placeholders svg {
  color: var(--green);
}

.review-placeholders p {
  margin: 12px 0 16px;
  color: var(--charcoal);
  font-size: 1.12rem;
  font-weight: 700;
}

.review-placeholders span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-section {
  color: var(--white);
  background: var(--charcoal);
}

.contact-section h2 {
  color: var(--white);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  padding: 28px;
  color: var(--charcoal);
  background: var(--white);
}

.contact-card h3 {
  margin-bottom: 4px;
}

.contact-card p {
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--green-dark);
  font-weight: 900;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0f1210;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.7fr;
  gap: 42px;
}

.site-footer img {
  width: 250px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.inline-social a:hover {
  transform: translateY(-2px);
  background: rgba(10, 172, 75, 0.24);
  border-color: rgba(10, 172, 75, 0.56);
}

.footer-social svg,
.inline-social svg {
  display: block;
  width: 23px;
  height: 23px;
}

.footer-social .social-youtube svg,
.inline-social .social-youtube svg {
  width: 25px;
  height: 25px;
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .nav-panel,
  .nav-actions {
    display: none;
  }

  .nav-panel.is-open {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 0 18px;
  }

  .nav-panel.is-open a {
    padding: 12px;
    background: var(--soft);
    border-radius: var(--radius);
  }

  .hero-grid,
  .split-layout,
  .cookidoo-grid,
  .box-grid,
  .about-grid,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

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

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

  .catalog-benefits-grid,
  .mode-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-composition {
    min-height: 460px;
  }

  .contact-grid {
    gap: 28px;
  }
}

@media (max-width: 780px) {
  .container,
  .navbar {
    width: min(var(--max), calc(100% - 28px));
    max-width: calc(100vw - 28px);
  }

  .section {
    padding: 68px 0;
  }

  .brand img {
    width: 190px;
  }

  .nav-panel.is-open {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 56px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy,
  .demo-card {
    width: min(100%, calc(100vw - 28px));
  }

  h1 {
    font-size: clamp(2.28rem, 10.4vw, 3rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .demo-card,
  .wide-form,
  .demo-panel {
    padding: 22px;
  }

  .trust-grid,
  .three-card-grid,
  .journal-grid,
  .step-grid,
  .form-grid,
  .journal-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .mode-grid,
  .included-grid,
  .feature-list,
  .catalog-benefits-grid,
  .mode-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-composition {
    min-height: auto;
  }

  .product-composition .food-shot {
    width: 100%;
    height: 320px;
  }

  .product-composition .device {
    position: relative;
    width: 72%;
    margin-top: -70px;
  }

  .box-image-wrap {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .notice span,
  .navbar,
  .container,
  .hero-copy,
  .demo-card {
    max-width: min(362px, calc(100vw - 28px));
  }

  .notice {
    justify-content: flex-start;
  }

  .notice span {
    text-align: center;
  }

  .navbar,
  .container {
    margin-left: 14px;
    margin-right: 14px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.48rem);
  }

  .form-heading h2 {
    font-size: 2.18rem;
    line-height: 1.08;
  }

  .mode-grid,
  .included-grid,
  .feature-list,
  .catalog-benefits-grid,
  .mode-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .phone-link span {
    display: none;
  }
}

.journal-hero {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 26, 24, 0.92), rgba(23, 26, 24, 0.72)),
    url("../img/photo_2026-04-27_19-06-03-2.jpg") center / cover;
}

.journal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 64px;
  align-items: end;
}

.journal-hero h1,
.recipe-hero h1 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.journal-hero p,
.recipe-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.journal-hero-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.journal-hero-card span,
.post-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-hero-card h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

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

.archive-toolbar,
.journal-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.category-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-post img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.featured-post > div {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 62px);
}

.featured-post h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--charcoal);
  background: var(--soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  display: grid;
  overflow: hidden;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card div {
  padding: 24px;
}

.post-card p,
.featured-post p {
  color: var(--muted);
}

.journal-cta {
  color: var(--white);
  background: var(--charcoal);
}

.journal-cta h2 {
  color: var(--white);
}

.journal-cta-grid {
  margin-bottom: 0;
}

.journal-cta-grid .button {
  justify-self: end;
}

.recipe-hero {
  padding: 86px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 26, 24, 0.92), rgba(23, 26, 24, 0.48)),
    var(--charcoal);
}

.tomato-hero {
  background:
    linear-gradient(90deg, rgba(23, 26, 24, 0.92), rgba(23, 26, 24, 0.54)),
    var(--charcoal);
}

.recipe-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 62px;
  align-items: center;
}

.recipe-hero img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--white);
  font-weight: 900;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.recipe-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 800;
}

.recipe-body {
  background: var(--soft);
}

.recipe-body-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.ingredient-panel {
  position: sticky;
  top: 140px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(23, 26, 24, 0.08);
}

.ingredient-panel h2 {
  font-size: 2rem;
}

.ingredient-panel ul {
  display: grid;
  gap: 12px;
  padding-left: 1.1rem;
  margin: 0;
}

.method-content {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.method-content h2 {
  max-width: 820px;
}

.method-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
  padding-left: 1.2rem;
  font-size: 1.08rem;
}

.method-list li::marker {
  color: var(--green);
  font-weight: 900;
}

.ewa-note {
  padding: 24px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
}

.ewa-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.next-recipes {
  background: var(--white);
}

.recipe-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 28px;
  align-items: stretch;
}

.recipe-demo-card {
  display: grid;
  align-content: center;
  padding: 34px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
}

.recipe-demo-card h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.recipe-demo-card p {
  color: rgba(255, 255, 255, 0.74);
}

.compact-footer .footer-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr;
}

@media (max-width: 1100px) {
  .journal-hero-grid,
  .archive-toolbar,
  .journal-cta-grid,
  .featured-post,
  .recipe-hero-grid,
  .recipe-body-grid,
  .recipe-nav {
    grid-template-columns: 1fr;
  }

  .category-pills {
    justify-content: flex-start;
  }

  .journal-cta-grid .button {
    justify-self: start;
  }

  .ingredient-panel {
    position: static;
  }
}

@media (max-width: 780px) {
  .journal-hero,
  .recipe-hero {
    padding: 64px 0;
  }

  .journal-hero h1,
  .recipe-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .post-grid,
  .compact-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-post img {
    min-height: 300px;
  }
}

.page-hero {
  padding: 96px 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(10, 172, 75, 0.13), transparent 34%),
    linear-gradient(135deg, var(--soft), var(--white) 52%, var(--green-soft));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: 64px;
  align-items: center;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero .back-link {
  color: var(--green-dark);
}

.page-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.17rem;
}

.page-hero-image img {
  width: 100%;
  height: min(680px, 64vh);
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-hero-card,
.detail-card,
.feature-panel,
.support-card,
.map-card {
  border-radius: var(--radius);
}

.contact-hero-card {
  padding: 34px;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.contact-hero-card h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-hero-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.contact-line svg {
  color: var(--green);
}

.page-stat-strip {
  padding: 26px 0;
  color: var(--white);
  background: var(--charcoal);
}

.page-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.page-stat-grid div {
  padding: 22px;
  background: var(--charcoal);
}

.page-stat-grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-stat-grid strong {
  color: var(--white);
  font-size: 1.15rem;
}

.story-section,
.contact-template-section {
  background: var(--white);
}

.story-grid,
.split-feature-grid,
.contact-template-grid,
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.story-grid p,
.feature-panel p,
.contact-template-section p,
.map-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.story-grid img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.support-section,
.split-feature,
.map-section {
  background: var(--soft);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.support-card,
.feature-panel,
.detail-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.support-card svg,
.detail-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--green);
}

.support-card p,
.detail-card p {
  color: var(--muted);
}

.dark-panel {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.dark-panel h2 {
  color: var(--white);
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-template-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
}

.contact-page-form {
  box-shadow: var(--shadow);
}

.contact-page-form .form-heading {
  margin-bottom: 22px;
}

.contact-page-form .form-heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
}

.contact-info-stack {
  display: grid;
  gap: 18px;
}

.detail-card {
  display: grid;
  justify-items: start;
}

.inline-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.inline-social a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.map-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
}

.map-card {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 34px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(23, 26, 24, 0.82), rgba(10, 172, 75, 0.76)),
    url("../img/photo_2026-04-27_19-06-03-2.jpg") center / cover;
  font-size: 1.15rem;
  font-weight: 900;
}

.map-card svg {
  width: 46px;
  height: 46px;
}

.home-action-card {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-action-card h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.action-card-link {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.action-card-link:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: rgba(10, 172, 75, 0.42);
}

.action-card-link svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.action-card-link strong,
.action-card-link small {
  display: block;
}

.action-card-link strong {
  font-size: 1rem;
}

.action-card-link small {
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.35;
}

.home-demo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
}

.home-demo-cta h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.checkbox a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-hero {
  padding: 92px 0 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 26, 24, 0.94), rgba(23, 26, 24, 0.72)),
    url("../img/photo_2026-04-27_19-06-08.jpg") center / cover;
}

.policy-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
}

.policy-hero p {
  color: rgba(255, 255, 255, 0.78);
}

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

.policy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.policy-summary,
.policy-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.policy-summary {
  position: sticky;
  top: 128px;
  padding: 28px;
}

.policy-summary h2 {
  font-size: 1.4rem;
}

.policy-summary p,
.policy-content p {
  color: var(--muted);
}

.policy-content {
  padding: 42px;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.demo-promise {
  background: var(--white);
}

.demo-promise-grid,
.tm7-proof-grid,
.social-grid,
.feature-deep-grid,
.final-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promise-list article {
  min-height: 250px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.promise-list svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--green);
}

.promise-list p {
  color: var(--muted);
}

.problem-solution-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, var(--soft) 0 50%, var(--white) 50% 100%);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.problem-column h2 {
  max-width: 640px;
}

.problem-bubbles {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.problem-bubbles p {
  position: relative;
  max-width: 520px;
  margin: 0;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 26, 24, 0.08);
  font-size: 1.05rem;
  font-weight: 700;
}

.problem-bubbles p::before {
  position: absolute;
  bottom: 12px;
  left: -10px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: rotate(45deg);
}

.solution-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-device-card {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 54%, rgba(10, 172, 75, 0.18), transparent 38%),
    var(--soft);
  border-radius: var(--radius);
}

.solution-device-card img {
  width: min(100%, 360px);
  max-height: 360px;
  object-fit: contain;
}

.solution-photo-card {
  overflow: hidden;
  padding: 0;
}

.solution-photo-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.solution-copy h3 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.solution-copy p {
  color: var(--muted);
}

.solution-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
}

.solution-points span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 700;
}

.solution-points svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--green);
}

.tm7-proof,
.benefit-overview,
.cookidoo-story {
  background: var(--soft);
}

.cookidoo-story .cookidoo-copy .eyebrow {
  color: var(--green);
}

.cookidoo-story .cookidoo-copy h2 {
  color: var(--charcoal);
}

.cookidoo-story .cookidoo-copy p {
  color: var(--muted);
}

.cookidoo-story .feature-list span {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--line);
}

.proof-image img,
.feature-deep-grid img,
.feature-photo {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-copy p,
.social-grid p,
.feature-deep-copy p,
.final-demo-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.proof-grid span {
  min-height: 84px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
}

.proof-grid strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.7rem;
  line-height: 1;
}

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

.social-proof-cards a {
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-proof-cards a:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 172, 75, 0.42);
}

.social-section {
  background: var(--white);
}

.social-image-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}

.social-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.social-image-grid img:nth-child(2) {
  grid-row: span 2;
}

.product-hero {
  position: relative;
  min-height: min(820px, calc(100vh - 112px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.product-hero-media,
.product-hero-overlay {
  position: absolute;
  inset: 0;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 26, 24, 0.86), rgba(23, 26, 24, 0.48) 55%, rgba(23, 26, 24, 0.22)),
    linear-gradient(0deg, rgba(23, 26, 24, 0.34), rgba(23, 26, 24, 0.12));
}

.product-hero-copy {
  position: relative;
  max-width: 820px;
  padding: 92px 0;
}

.product-hero-copy h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 5.8vw, 6.5rem);
}

.product-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.feature-deep-dive,
.engineering-section,
.final-demo-cta {
  background: var(--white);
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.clean-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.clean-list svg {
  color: var(--green);
}

.final-demo-cta {
  color: var(--white);
  background: var(--charcoal);
}

.final-demo-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.final-demo-grid h2 {
  color: var(--white);
}

.final-demo-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.menu-focus-section,
.questions-section {
  background: var(--soft);
}

.menu-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card > div {
  padding: 24px;
}

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

.mode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mode-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.demo-flow-section {
  background: var(--white);
}

.demo-flow-grid,
.questions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.demo-flow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.demo-flow-list article,
.question-list p {
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.demo-flow-list article {
  min-height: 220px;
}

.demo-flow-list span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.demo-flow-list p,
.question-list p {
  color: var(--muted);
}

.question-list {
  display: grid;
  gap: 12px;
}

@media (max-width: 1100px) {
  .page-hero-grid,
  .story-grid,
  .split-feature-grid,
  .contact-template-grid,
  .map-grid,
  .policy-layout,
  .home-demo-cta,
  .demo-promise-grid,
  .problem-solution-grid,
  .tm7-proof-grid,
  .social-grid,
  .feature-deep-grid,
  .final-demo-grid {
    grid-template-columns: 1fr;
  }

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

  .solution-column {
    grid-template-columns: 1fr;
  }

  .solution-device-card {
    min-height: 300px;
  }

  .page-hero-image img {
    height: auto;
    min-height: 0;
    max-height: 640px;
  }

  .support-grid,
  .page-stat-grid,
  .promise-list,
  .large-proof-grid,
  .menu-focus-grid,
  .catalog-benefits-grid,
  .mode-detail-grid,
  .demo-flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 780px) {
  .page-hero {
    padding: 64px 0;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .support-grid,
  .page-stat-grid,
  .promise-list,
  .large-proof-grid,
  .proof-grid,
  .menu-focus-grid,
  .catalog-benefits-grid,
  .mode-detail-grid,
  .demo-flow-grid,
  .questions-grid,
  .demo-flow-list {
    grid-template-columns: 1fr;
  }

  .story-grid img {
    min-height: 340px;
  }

  .proof-image img,
  .feature-deep-grid img,
  .feature-photo {
    min-height: 340px;
  }

  .social-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .social-image-grid img:nth-child(2) {
    grid-row: auto;
  }

  .contact-hero-card,
  .home-action-card,
  .support-card,
  .feature-panel,
  .detail-card,
  .map-card,
  .policy-summary,
  .policy-content,
  .home-demo-cta,
  .solution-column {
    padding: 24px;
  }

  .problem-bubbles p {
    max-width: 100%;
  }

  .solution-device-card {
    min-height: 240px;
  }

  .action-card-link {
    grid-template-columns: 40px 1fr;
  }

  .action-card-link svg {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
}

