/* ============================================================
   Cook the Books — main stylesheet
   ITCSS layered · BEM naming · component-based methodology
   color: brand-accents · typography: Montserrat + Inter
   units: viewport-units (vw/vh primarily) + theme-system
   ============================================================ */
:root {
  --brand-primary: #4a7c2a;
  --brand-primary-d: #3a601f;
  --brand-primary-l: #6b9f47;
  --brand-accent: #e85a4f;
  --brand-accent-d: #c64239;
  --brand-soft: #f3f7ee;
  --surface-base: #ffffff;
  --surface-soft: #fafaf7;
  --surface-cream: #f3f7ee;
  --surface-warm: #fdf6f1;
  --text-strong: #1f2a17;
  --text-base: #3c4a35;
  --text-soft: #6e7868;
  --text-on-brand: #ffffff;
  --border-soft: #e5ead9;
  --border-strong: #c8d3b6;
  --font-head:
    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gap-3xs: 0.4vh;
  --gap-2xs: 0.8vh;
  --gap-xs: 1.6vh;
  --gap-sm: 2.4vh;
  --gap-md: 4vh;
  --gap-lg: 6vh;
  --gap-xl: 9vh;
  --gap-2xl: 13vh;
  --shell-w: 1180px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-card: 0 6px 24px rgba(31, 42, 23, 0.08);
  --shadow-elev: 0 18px 48px rgba(31, 42, 23, 0.14);
}
[data-theme="dark"] {
  --surface-base: #1a1f15;
  --surface-soft: #232a1d;
  --surface-cream: #2a3325;
  --text-strong: #f0f3ec;
  --text-base: #d3dcc8;
  --text-soft: #98a48a;
  --border-soft: #2e3a26;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-base);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  color: var(--text-strong);
}
::selection {
  background: var(--brand-primary);
  color: #fff;
}

.skip-link {
  position: absolute;
  top: -100vh;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
}
.skip-link:focus {
  top: 0;
}
.shell {
  width: 100%;
  max-width: var(--shell-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--gap-xl) 0;
  background: var(--surface-base);
}
.section--cream {
  background: var(--surface-cream);
}
.section--warm {
  background: var(--surface-warm);
}
.section--brand {
  background: var(--brand-primary);
  color: var(--text-on-brand);
}
.section--brand h1,
.section--brand h2,
.section--brand h3 {
  color: var(--text-on-brand);
}

.section__head {
  max-width: 720px;
  margin: 0 auto var(--gap-md);
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-primary-d);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--gap-xs);
}
.section--brand .section__eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.section__title {
  margin-bottom: var(--gap-xs);
}
.section__lead {
  color: var(--text-soft);
  font-size: 1.0625rem;
}
.section--brand .section__lead {
  color: rgba(255, 255, 255, 0.92);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}
.site-header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.site-header__nav-item {
}
.site-header__nav-link {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 500;
  color: var(--text-base);
  border-radius: 10px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.site-header__nav-link:hover {
  color: var(--brand-primary-d);
  background: var(--brand-soft);
}
.site-header__nav-link[aria-current="page"] {
  color: var(--brand-primary-d);
  font-weight: 700;
}

.site-header__cta {
  display: inline-flex;
  margin-left: 12px;
}

.site-header__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: var(--text-strong);
}
@media (min-width: 768px) {
  .site-header__close {
    display: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: 2px solid transparent;
  text-align: center;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.btn--primary:hover {
  background: var(--brand-primary-d);
  border-color: var(--brand-primary-d);
  color: #fff;
}
.btn--accent {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
}
.btn--accent:hover {
  background: var(--brand-accent-d);
  border-color: var(--brand-accent-d);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--surface-cream);
}
.btn--light {
  background: #fff;
  color: var(--brand-primary-d);
  border-color: #fff;
}
.btn--light:hover {
  background: var(--brand-soft);
  color: var(--brand-primary-d);
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn--lg {
  padding: 16px 30px;
  font-size: 1rem;
}
.hero-unit {
  position: relative;
  padding: var(--gap-xl) 0 var(--gap-2xl);
  background:
    radial-gradient(
      ellipse at 78% 18%,
      rgba(232, 90, 79, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, var(--surface-cream) 0%, var(--surface-base) 100%);
  overflow: hidden;
}
.hero-unit__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-lg);
  align-items: center;
}
.hero-unit__copy {
}
.hero-unit__eyebrow {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-primary-d);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--gap-sm);
}
.hero-unit__title {
  margin-bottom: var(--gap-sm);
  color: var(--text-strong);
}
.hero-unit__title-mark {
  color: var(--brand-primary);
}
.hero-unit__lead {
  font-size: 1.1875rem;
  color: var(--text-base);
  margin-bottom: var(--gap-md);
  max-width: 560px;
  line-height: 1.6;
}
.hero-unit__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--gap-md);
}
.hero-unit__bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  max-width: 560px;
}
.hero-unit__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-base);
}
.hero-unit__bullet-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-primary-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex: 0 0 auto;
}

.hero-unit__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px 200px;
  gap: 12px;
}
.hero-unit__shot {
  border-radius: var(--r-md);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.hero-unit__shot--big {
  grid-row: 1 / span 2;
  grid-column: 1 / span 1;
  background-image: url("/public/media/hero-1.jpg");
}
.hero-unit__shot--mid {
  grid-row: 1 / span 1;
  grid-column: 2 / span 1;
  background-image: url("/public/media/hero-2.jpg");
}
.hero-unit__shot--mid2 {
  grid-row: 2 / span 1;
  grid-column: 2 / span 1;
  background-image: url("/public/media/hero-3.jpg");
}
.hero-unit__shot--wide {
  grid-row: 3 / span 1;
  grid-column: 1 / span 2;
  background-image: url("/public/media/hero-4.jpg");
}

@media (max-width: 960px) {
  .hero-unit__layout {
    grid-template-columns: 1fr;
  }
  .hero-unit__gallery {
    grid-template-rows: 180px 180px;
  }
  .hero-unit__shot--wide {
    grid-row: 2 / span 1;
  }
}
.feature-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-grid__card {
  background: var(--surface-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 28px 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.feature-grid__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--brand-primary-l);
}
.feature-grid__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-primary-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: var(--font-head);
}
.feature-grid__card-title {
  margin-bottom: 8px;
  color: var(--text-strong);
}
.feature-grid__card-text {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.company-overview__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.company-overview__copy h2 {
  margin-bottom: var(--gap-xs);
}
.company-overview__copy p {
  color: var(--text-base);
  margin-bottom: var(--gap-xs);
}
.company-overview__list {
  margin: var(--gap-xs) 0 var(--gap-md);
}
.company-overview__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-base);
}
.company-overview__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--brand-primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='%23000'/></svg>")
    center / 18px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='%23000'/></svg>")
    center / 18px no-repeat;
}
.company-overview__media {
  aspect-ratio: 4 / 3;
  background-image: url("/public/media/about.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-elev);
}
@media (max-width: 900px) {
  .company-overview__layout {
    grid-template-columns: 1fr;
  }
}
.compare-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.compare-block__col {
  background: var(--surface-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 26px 24px;
}
.compare-block__col--good {
  border-color: var(--brand-primary-l);
  background: var(--brand-soft);
}
.compare-block__col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--text-strong);
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
}
.compare-block__col-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.compare-block__col--good .compare-block__col-mark {
  background: var(--brand-primary);
  color: #fff;
}
.compare-block__col--bad .compare-block__col-mark {
  background: #f0d8d4;
  color: var(--brand-accent-d);
}
.compare-block__col-text {
  color: var(--text-base);
  font-size: 0.9375rem;
  line-height: 1.65;
}
@media (max-width: 700px) {
  .compare-block {
    grid-template-columns: 1fr;
  }
}
.recipe-preview__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.recipe-preview__card {
  background: var(--surface-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.recipe-preview__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.recipe-preview__card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.recipe-preview__card-body {
  padding: 20px 22px 24px;
}
.recipe-preview__card-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.recipe-preview__card-meta-tag {
  color: var(--brand-primary-d);
}
.recipe-preview__card-title {
  margin-bottom: 8px;
  font-size: 1.125rem;
  color: var(--text-strong);
}
.recipe-preview__card-text {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.team-roster__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.team-roster__card {
  background: var(--surface-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: center;
}
.team-roster__card-photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.team-roster__card-body {
  padding: 20px 22px 24px;
}
.team-roster__card-name {
  color: var(--text-strong);
  margin-bottom: 4px;
  font-size: 1.0625rem;
}
.team-roster__card-role {
  color: var(--brand-primary-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-roster__card-bio {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.faq-accordion__items {
  max-width: 820px;
  margin: 0 auto;
}
.faq-accordion__item {
  background: var(--surface-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion__item--open {
  border-color: var(--brand-primary-l);
  box-shadow: var(--shadow-card);
}
.faq-accordion__q {
  width: 100%;
  padding: 22px 28px 22px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-strong);
  position: relative;
  padding-right: 60px;
}
.faq-accordion__q::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-primary);
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-head);
  transition: transform 0.2s ease;
}
.faq-accordion__item--open .faq-accordion__q::after {
  content: "−";
}
.faq-accordion__a {
  display: none;
  padding: 0 28px 24px;
  color: var(--text-base);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq-accordion__item--open .faq-accordion__a {
  display: block;
}
.notice-band {
  background: var(--surface-warm);
  border-left: 4px solid var(--brand-accent);
  padding: 24px 28px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.notice-band__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.notice-band__text {
  color: var(--text-base);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.notice-band__text a {
  color: var(--brand-accent-d);
  font-weight: 600;
  text-decoration: underline;
}
.lead-capture {
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--gap-lg) var(--gap-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  align-items: center;
}
@media (max-width: 900px) {
  .lead-capture {
    grid-template-columns: 1fr;
    padding: var(--gap-md) var(--gap-sm);
  }
}
.lead-capture__copy h2 {
  color: #fff;
  margin-bottom: 12px;
}
.lead-capture__copy p {
  color: rgba(255, 255, 255, 0.92);
}
.lead-capture__list {
  margin-top: 18px;
}
.lead-capture__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
}
.lead-capture__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 800;
}
.lead-capture__form {
  background: #fff;
  color: var(--text-base);
  border-radius: var(--r-md);
  padding: 28px 26px;
}
.lead-capture__form-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-strong);
  margin-bottom: 18px;
}
.form__row {
  margin-bottom: 16px;
}
.form__label {
  display: block;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 6px;
  font-size: 0.875rem;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: var(--text-strong);
  font-family: inherit;
  font-size: 0.9375rem;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #fff;
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}
.form__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.form__check input {
  margin-top: 4px;
}
.form__check a {
  color: var(--brand-primary-d);
  font-weight: 600;
  text-decoration: underline;
}
.form__error {
  background: #fdf0ec;
  color: var(--brand-accent-d);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}
.form__success {
  background: var(--brand-soft);
  color: var(--brand-primary-d);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-weight: 600;
}
.page-hero {
  padding: var(--gap-lg) 0;
  background: linear-gradient(
    180deg,
    var(--surface-cream) 0%,
    var(--surface-base) 100%
  );
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero__title {
  margin-bottom: 12px;
}
.page-hero__lead {
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.0625rem;
}
.contact-module {
  display: block;
}
.contact-module > * + * {
  margin-top: var(--gap-lg);
}

.contact-module__info {
}
.contact-module__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-module__row-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-primary-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex: 0 0 auto;
}
.contact-module__row-label {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-module__row-value {
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-grid__card {
  background: var(--surface-base);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-grid__card:hover {
  box-shadow: var(--shadow-card);
}
.blog-grid__card-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.blog-grid__card-body {
  padding: 22px 24px 26px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.blog-grid__card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.blog-grid__card-meta-tag {
  color: var(--brand-primary-d);
}
.blog-grid__card-title {
  font-size: 1.125rem;
  color: var(--text-strong);
  margin-bottom: 10px;
}
.blog-grid__card-text {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1 0 auto;
  margin-bottom: 12px;
}
.blog-grid__card-more {
  color: var(--brand-primary-d);
  font-weight: 600;
  font-size: 0.9375rem;
}
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--gap-lg) 24px;
}
.article__back {
  color: var(--brand-primary-d);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 18px;
}
.article__meta {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.article__title {
  margin-bottom: 18px;
  line-height: 1.15;
}
.article__lead {
  font-size: 1.1875rem;
  color: var(--text-base);
  margin-bottom: var(--gap-md);
  line-height: 1.6;
}
.article__media {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  margin-bottom: var(--gap-md);
  box-shadow: var(--shadow-card);
}
.article__body p {
  margin-bottom: 18px;
  color: var(--text-base);
}
.article__body h2 {
  margin: var(--gap-md) 0 14px;
  font-size: 1.5rem;
}
.article__body h3 {
  margin: var(--gap-sm) 0 10px;
  font-size: 1.25rem;
}
.article__body ul {
  margin-bottom: 18px;
}
.article__body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-base);
}
.article__body ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 1.25rem;
}
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--gap-lg) 24px;
}
.legal__last-updated {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: var(--gap-md);
}
.legal h2 {
  margin: var(--gap-md) 0 14px;
  font-size: 1.5rem;
}
.legal h3 {
  margin: var(--gap-sm) 0 10px;
  font-size: 1.125rem;
}
.legal p {
  margin-bottom: 14px;
}
.legal ul {
  margin-bottom: 18px;
  padding-left: 0;
}
.legal ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.legal ul li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--brand-primary);
  font-weight: 800;
}
.site-footer {
  background: var(--text-strong);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--gap-lg) 0 var(--gap-md);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap-md);
  margin-bottom: var(--gap-md);
}
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.site-footer__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
}
.site-footer__about {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 14px;
}
.site-footer__contact {
  font-size: 0.875rem;
  line-height: 1.85;
}
.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__title {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.site-footer__list-item {
  margin-bottom: 10px;
  font-size: 0.875rem;
}
.site-footer__list-item a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__bottom p {
  margin-bottom: 8px;
}
.site-footer__mini-disclaimer {
  margin-top: 10px;
  line-height: 1.7;
  max-width: 880px;
}
.site-footer__company {
  font-size: 0.8125rem;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }
  .section {
    padding: var(--gap-lg) 0;
  }
  .hero-unit {
    padding: var(--gap-md) 0 var(--gap-lg);
  }
  .hero-unit__bullets {
    grid-template-columns: 1fr;
  }
  .hero-unit__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-unit__actions .btn {
    width: 100%;
  }
}

/* ===== BURGER MENU (MOBILE) ===== */
.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.site-header__toggle:hover {
  background: var(--brand-soft);
}
.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
  transform-origin: center;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767.98px) {
  .site-header__toggle {
    display: flex;
  }
  .site-header__cta {
    display: none;
  }

  .site-header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 1000px;
    z-index: 200;
    background: var(--surface-base, #fff);
    flex-direction: column;
    align-items: stretch;
    padding: 70px 20px 24px;
    overflow-y: auto;
    box-shadow: none;
  }
  .site-header__nav.mm-open {
    display: flex;
  }

  .site-header__close {
    position: absolute;
    top: 14px;
    right: 16px;
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-header__nav-link {
    padding: 14px 16px;
    font-size: 1.0625rem;
    border-radius: 10px;
  }

  [data-mm-overlay] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 190;
  }
  [data-mm-overlay].mm-visible {
    display: block;
  }
}
