:root {
  --font-display: "IBM Plex Sans Arabic", sans-serif;
  --font-body: "IBM Plex Sans Arabic", sans-serif;
  --ink: #121815;
  --ink-2: #24302b;
  --moss: #3f6046;
  --leaf: #7a9d54;
  --mint: #dce8ca;
  --cream: #f5f0e6;
  --paper: #fffaf1;
  --copper: #b76f3f;
  --melon: #e4a064;
  --rose: #d85d4b;
  --white: #ffffff;
  --muted: #647169;
  --line: rgba(18, 24, 21, 0.12);
  --line-strong: rgba(18, 24, 21, 0.2);
  --shadow: 0 24px 70px rgba(18, 24, 21, 0.13);
  --shadow-soft: 0 14px 34px rgba(18, 24, 21, 0.1);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(122, 157, 84, 0.14) 0 1px, transparent 1px 120px),
    linear-gradient(90deg, rgba(183, 111, 63, 0.12), transparent 38%, rgba(220, 232, 202, 0.55)),
    var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--copper);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ece4d7;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--moss), var(--copper));
  border: 3px solid #ece4d7;
  border-radius: 999px;
}

.material-symbols-outlined {
  font-size: 1.15em;
  line-height: 1;
  vertical-align: middle;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-main {
  min-height: 60vh;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-muted {
  background: rgba(255, 250, 241, 0.62);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 14px;
  border: 1px solid rgba(183, 111, 63, 0.26);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.section-title,
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.25;
  letter-spacing: 0;
}

.section-title {
  max-width: 780px;
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 54px);
}

.lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.muted {
  color: var(--muted);
}

.w-full {
  width: 100%;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.span-2 {
  grid-column: span 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--moss), #1e3929 58%, var(--ink));
  box-shadow: 0 16px 34px rgba(63, 96, 70, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--melon), #f1c27f);
  box-shadow: 0 14px 30px rgba(183, 111, 63, 0.24);
}

.btn-outline,
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.72);
  border-color: rgba(18, 24, 21, 0.14);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: rgba(183, 111, 63, 0.5);
  box-shadow: var(--shadow-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  color: var(--moss);
  font-weight: 800;
}

.text-link .material-symbols-outlined {
  transition: transform 0.2s ease;
}

.text-link:hover .material-symbols-outlined {
  transform: translateX(-4px);
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid rgba(122, 157, 84, 0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card,
.card-pad {
  background: rgba(255, 250, 241, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-pad {
  padding: 24px;
}

.card-hover {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e6ddce;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4000;
  isolation: isolate;
  --header-logo-height: 54px;
  --header-logo-width: auto;
  --header-logo-padding: 0px;
  --header-logo-margin: 0px;
  --header-logo-radius: 0px;
  padding: 14px 0;
  background: rgba(245, 240, 230, 0.72);
  border-bottom: 1px solid rgba(18, 24, 21, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.22s ease, box-shadow 0.22s ease, padding 0.22s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 14px 38px rgba(18, 24, 21, 0.1);
}

.header-command {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header .brand-logo {
  width: var(--header-logo-width);
  max-width: min(70vw, 420px);
  height: var(--header-logo-height);
  object-position: right center;
  border-radius: var(--header-logo-radius);
}

.site-header .brand {
  padding: var(--header-logo-padding);
  margin: var(--header-logo-margin);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: linear-gradient(135deg, var(--moss), var(--ink));
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 28px;
  box-shadow: inset 0 -10px 24px rgba(0, 0, 0, 0.16), 0 14px 26px rgba(63, 96, 70, 0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  background: var(--melon);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.3;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 20px;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.brand-copy--mobile {
  display: none;
}

.nav-dock {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(18, 24, 21, 0.1);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.nav-dock a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  color: var(--ink-2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dock a.is-active,
.nav-dock a:hover {
  color: var(--white);
  background: var(--ink);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.74);
}

.header-contact > .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--copper);
  border-radius: 50%;
}

.header-contact span:last-child {
  display: grid;
  line-height: 1.3;
}

.header-contact small {
  color: var(--muted);
  font-size: 11px;
}

.header-contact strong {
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 4990;
  background: rgba(7, 11, 10, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(430px, 100vw);
  padding: 18px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(228, 160, 100, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf1, #f8f3e9);
  border-inline-start: 1px solid rgba(18, 24, 21, 0.12);
  box-shadow: -30px 0 90px rgba(7, 11, 10, 0.32);
  transform: translateX(110%);
  visibility: hidden;
  transition: transform 0.28s ease, visibility 0.28s ease;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__head,
.mobile-nav__brand,
.mobile-nav__foot span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav__head {
  justify-content: space-between;
  padding: 16px 16px 18px;
  background: #fffaf1;
  border: 1px solid rgba(18, 24, 21, 0.08);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 14px 30px rgba(18, 24, 21, 0.06);
}

.mobile-nav__head button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(18, 24, 21, 0.18);
}

.mobile-nav__brand img {
  width: auto;
  max-width: min(70vw, 220px);
  height: min(var(--header-logo-height, 52px), 96px);
  max-height: min(var(--header-logo-height, 52px), 96px);
  object-fit: contain;
  object-position: right center;
  flex-shrink: 0;
}

.mobile-nav__brand {
  min-width: 0;
}

.mobile-nav__brand .brand-mark {
  width: min(var(--header-logo-height, 54px), 96px);
  height: min(var(--header-logo-height, 54px), 96px);
}

.mobile-nav__links {
  display: grid;
  gap: 12px;
  padding: 0;
}

.mobile-nav__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 24, 21, 0.08);
  border-radius: 24px;
  background: #fffaf1;
  box-shadow: 0 12px 24px rgba(18, 24, 21, 0.06);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-nav__links a .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(228, 160, 100, 0.22);
  border-radius: 16px;
  font-size: 22px;
  transition: inherit;
}

.mobile-nav__links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(18, 24, 21, 0.09);
}

.mobile-nav__links a.is-active,
.mobile-nav__links a:hover,
.mobile-nav__cta {
  color: var(--white);
  background: linear-gradient(135deg, #0f1714, #17221d) !important;
}

.mobile-nav__links a.is-active .material-symbols-outlined,
.mobile-nav__links a:hover .material-symbols-outlined,
.mobile-nav__cta .material-symbols-outlined {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav__foot {
  display: grid;
  gap: 12px;
  margin-top: auto;
  color: var(--ink-2);
  font-size: 13px;
}

.mobile-nav__foot span {
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 24, 21, 0.08);
  border-radius: 20px;
  background: #fffaf1;
}

.mobile-nav__foot .material-symbols-outlined {
  color: var(--copper);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  background:
    linear-gradient(120deg, rgba(255, 250, 241, 0.86), rgba(220, 232, 202, 0.44) 48%, rgba(228, 160, 100, 0.22)),
    linear-gradient(0deg, transparent 0 82%, rgba(18, 24, 21, 0.04) 82% 100%);
  border-bottom: 1px solid var(--line);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--moss) 0 80px, var(--copper) 80px 120px, var(--leaf) 120px 180px);
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 54px;
}

.home-hero__content h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(44px, 7vw, 88px);
}

.home-hero__content h1 span {
  display: inline;
  color: var(--moss);
  background: linear-gradient(transparent 58%, rgba(228, 160, 100, 0.45) 58% 88%, transparent 88%);
}

.home-hero__content p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(18px, 2.3vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.hero-metrics dt {
  margin: 0;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.home-hero__media {
  position: relative;
  min-height: 560px;
}

.hero-product-shot {
  position: absolute;
  inset: 0 0 42px 58px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 21, 0.16);
  border-radius: 42px 42px 42px 120px;
  background: linear-gradient(135deg, #e8ddc9, #fffaf1);
  box-shadow: var(--shadow);
}

.hero-product-shot::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px 30px 30px 100px;
  pointer-events: none;
}

.hero-product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-quality-card,
.hero-featured-product {
  position: absolute;
  z-index: 2;
  padding: 18px;
  background: rgba(18, 24, 21, 0.92);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-quality-card {
  inset: auto 0 0 auto;
  width: min(270px, 70%);
}

.hero-quality-card .material-symbols-outlined {
  color: var(--melon);
  font-size: 30px;
}

.hero-quality-card strong,
.hero-featured-product strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 22px;
}

.hero-quality-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.hero-featured-product {
  inset: 64px auto auto 0;
  width: 230px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
}

.hero-featured-product span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
}

.home-hero--split-card {
  padding: 76px 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.94) 0 46%, rgba(220, 232, 202, 0.56) 46% 100%),
    var(--cream);
}

.home-hero--split-card::before {
  inset: 26px;
  height: auto;
  border: 1px solid rgba(14, 61, 43, 0.12);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.home-hero--split-card .home-hero__grid {
  z-index: 1;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
}

.home-hero--split-card .home-hero__content {
  padding: 38px;
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(14, 61, 43, 0.12);
  border-radius: 34px;
  box-shadow: 0 22px 70px rgba(18, 24, 21, 0.1);
}

.home-hero--split-card .hero-product-shot {
  inset: 18px 18px 88px 18px;
  border-radius: 34px;
}

.home-hero--split-card .hero-quality-card {
  inset: auto 24px 0 auto;
}

.home-hero--split-card .hero-featured-product {
  inset: 58px auto auto 0;
}

.home-hero--editorial {
  padding: 88px 0 78px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(228, 160, 100, 0.18), transparent 34%),
    linear-gradient(180deg, #fffaf1 0%, rgba(220, 232, 202, 0.46) 100%);
}

.home-hero--editorial::before {
  inset: auto 0 0;
  height: 120px;
  background: repeating-linear-gradient(90deg, rgba(14, 61, 43, 0.08) 0 16px, transparent 16px 32px);
}

.home-hero--editorial .home-hero__grid {
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 42px;
}

.home-hero--editorial .home-hero__content {
  display: grid;
  justify-items: center;
}

.home-hero--editorial .home-hero__content h1,
.home-hero--editorial .home-hero__content p {
  margin-inline: auto;
}

.home-hero--editorial .hero-actions {
  justify-content: center;
}

.home-hero--editorial .hero-metrics {
  max-width: 860px;
}

.home-hero--editorial .home-hero__media {
  width: min(920px, 100%);
  min-height: 430px;
  margin: 0 auto;
}

.home-hero--editorial .hero-product-shot {
  inset: 0 110px 48px;
  border-radius: 44px;
}

.home-hero--editorial .hero-quality-card {
  inset: auto auto 0 62px;
}

.home-hero--editorial .hero-featured-product {
  inset: 44px 42px auto auto;
}

.home-hero--showcase {
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(228, 160, 100, 0.34), transparent 32%),
    linear-gradient(135deg, #121815 0%, #173b2a 58%, #0d2118 100%);
}

.home-hero--showcase::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.home-hero--showcase .home-hero__grid {
  z-index: 1;
}

.home-hero--showcase .home-hero__content h1,
.home-hero--showcase .home-hero__content p {
  color: var(--white);
}

.home-hero--showcase .home-hero__content h1 span {
  color: var(--melon);
  background: linear-gradient(transparent 58%, rgba(255, 250, 241, 0.18) 58% 88%, transparent 88%);
}

.home-hero--showcase .eyebrow,
.home-hero--showcase .hero-metrics dd {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero--showcase .hero-metrics div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-hero--showcase .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.home-hero--showcase .hero-product-shot {
  inset: 0 24px 58px 24px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 120px 42px 42px 42px;
  background: linear-gradient(135deg, #fffaf1, #dce8ca);
}

.home-hero--showcase .hero-featured-product {
  inset: 52px auto auto 0;
}

.home-hero--showcase .hero-quality-card {
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
}

.home-hero--showcase .hero-quality-card p {
  color: var(--muted);
}

.home-hero--metric-wall {
  background:
    linear-gradient(90deg, rgba(18, 24, 21, 0.06), transparent 34%),
    linear-gradient(135deg, #fffaf1, rgba(220, 232, 202, 0.56));
}

.home-hero--metric-wall .home-hero__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
}

.home-hero--metric-wall .hero-metrics {
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 520px;
}

.home-hero--metric-wall .hero-metrics div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--ink);
  border-color: rgba(18, 24, 21, 0.18);
  border-radius: 18px;
}

.home-hero--metric-wall .hero-metrics dt {
  color: var(--melon);
  font-size: 46px;
}

.home-hero--metric-wall .hero-metrics dd {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  text-align: left;
}

.home-hero--metric-wall .hero-product-shot {
  inset: 38px 0 0 76px;
  border-radius: 28px;
}

.home-hero--metric-wall .hero-quality-card {
  inset: 0 auto auto 0;
}

.home-hero--metric-wall .hero-featured-product {
  inset: auto 0 44px auto;
}

.home-hero--density-compact {
  padding: 58px 0 48px;
}

.home-hero--density-spacious {
  padding: 118px 0 104px;
}

.home-hero--tone-cream {
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(245, 240, 230, 0.86)),
    var(--cream);
}

.home-hero--tone-clean {
  background: var(--paper);
}

.home-hero--tone-garden {
  background:
    radial-gradient(circle at 22% 18%, rgba(228, 160, 100, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(220, 232, 202, 0.74), rgba(255, 250, 241, 0.92));
}

.home-hero--tone-dark {
  color: var(--white);
  background: linear-gradient(135deg, #121815, #173b2a 62%, #0d2118);
}

.home-hero--tone-dark .home-hero__content h1,
.home-hero--tone-dark .home-hero__content p {
  color: var(--white);
}

.home-hero--tone-dark .home-hero__content h1 span {
  color: var(--melon);
  background: linear-gradient(transparent 58%, rgba(255, 250, 241, 0.18) 58% 88%, transparent 88%);
}

.home-hero--tone-dark .eyebrow,
.home-hero--tone-dark .hero-metrics dd {
  color: rgba(255, 255, 255, 0.76);
}

.home-hero--align-center .home-hero__content {
  text-align: center;
}

.home-hero--align-center .home-hero__content h1,
.home-hero--align-center .home-hero__content p,
.home-hero--align-center .hero-metrics {
  margin-inline: auto;
}

.home-hero--align-center .hero-actions {
  justify-content: center;
}

.home-hero--align-end .home-hero__content {
  text-align: left;
}

.home-hero--align-end .home-hero__content h1,
.home-hero--align-end .home-hero__content p,
.home-hero--align-end .hero-metrics {
  margin-right: auto;
}

.home-hero--align-end .hero-actions {
  justify-content: flex-end;
}

.home-hero--media-start .home-hero__media {
  order: -1;
}

.home-hero--no-media .home-hero__grid {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.home-hero--no-media .home-hero__content {
  max-width: 900px;
}

.home-hero--image-rounded .hero-product-shot,
.home-hero--image-rounded .hero-product-shot::after {
  border-radius: 34px;
}

.home-hero--image-soft-square .hero-product-shot,
.home-hero--image-soft-square .hero-product-shot::after {
  border-radius: 18px;
}

.home-hero--image-circle .hero-product-shot {
  inset: 38px 70px 84px;
  border-radius: 999px;
}

.home-hero--image-circle .hero-product-shot::after {
  border-radius: 999px;
}

.home-hero--metrics-inline .hero-metrics {
  display: flex;
  flex-wrap: wrap;
}

.home-hero--metrics-inline .hero-metrics div {
  min-width: 170px;
  flex: 1 1 170px;
}

.home-hero--metrics-solid .hero-metrics div {
  background: var(--ink);
  border-color: rgba(18, 24, 21, 0.2);
}

.home-hero--metrics-solid .hero-metrics dd {
  color: rgba(255, 255, 255, 0.74);
}

.home-hero--metrics-minimal .hero-metrics {
  gap: 24px;
}

.home-hero--metrics-minimal .hero-metrics div {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home-hero--buttons-stacked .hero-actions {
  flex-direction: column;
  align-items: flex-start;
}

.home-hero--align-center.home-hero--buttons-stacked .hero-actions {
  align-items: center;
}

.home-hero--align-end.home-hero--buttons-stacked .hero-actions {
  align-items: flex-end;
}

.home-hero--buttons-minimal .hero-actions .btn {
  min-height: auto;
  padding-inline: 0;
  color: var(--moss);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.home-hero--tone-dark.home-hero--buttons-minimal .hero-actions .btn,
.home-hero--showcase.home-hero--buttons-minimal .hero-actions .btn {
  color: var(--white);
}

.home-hero--cards-light .hero-quality-card,
.home-hero--cards-light .hero-featured-product {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.95);
  border-color: rgba(18, 24, 21, 0.12);
}

.home-hero--cards-light .hero-quality-card p {
  color: var(--muted);
}

.home-hero--cards-glass .hero-quality-card,
.home-hero--cards-glass .hero-featured-product {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.52);
}

.home-hero--cards-glass .hero-quality-card p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .home-hero--split-card .home-hero__grid,
  .home-hero--editorial .home-hero__grid,
  .home-hero--metric-wall .home-hero__grid,
  .home-hero--no-media .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero--split-card .home-hero__content {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .home-hero--mobile-hide-badge .eyebrow {
    display: none;
  }

  .home-hero--mobile-hide-title .home-hero__content h1 {
    display: none;
  }

  .home-hero--mobile-hide-lead .home-hero__content > p {
    display: none;
  }

  .home-hero--mobile-hide-actions .hero-actions {
    display: none;
  }

  .home-hero--mobile-hide-primary-button .hero-action--primary {
    display: none;
  }

  .home-hero--mobile-hide-secondary-button .hero-action--secondary {
    display: none;
  }

  .home-hero--mobile-hide-image .home-hero__media {
    display: none;
  }

  .home-hero--mobile-hide-metrics .hero-metrics {
    display: none;
  }

  .home-hero--mobile-hide-quality-card .hero-quality-card {
    display: none;
  }

  .home-hero--mobile-hide-featured-product .hero-featured-product {
    display: none;
  }

  .home-hero--split-card::before,
  .home-hero--showcase::before {
    inset: 0;
  }

  .home-hero--editorial .home-hero__media,
  .home-hero--metric-wall .home-hero__media {
    width: 100%;
    min-height: auto;
  }

  .home-hero--split-card .hero-product-shot,
  .home-hero--editorial .hero-product-shot,
  .home-hero--showcase .hero-product-shot,
  .home-hero--metric-wall .hero-product-shot,
  .home-hero--image-circle .hero-product-shot {
    inset: auto;
    height: 360px;
    border-radius: 30px;
  }

  .home-hero--split-card .hero-quality-card,
  .home-hero--split-card .hero-featured-product,
  .home-hero--editorial .hero-quality-card,
  .home-hero--editorial .hero-featured-product,
  .home-hero--showcase .hero-quality-card,
  .home-hero--showcase .hero-featured-product,
  .home-hero--metric-wall .hero-quality-card,
  .home-hero--metric-wall .hero-featured-product {
    inset: auto;
  }

  .home-hero--metric-wall .hero-metrics dd {
    text-align: right;
  }
}

.proof-band {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: var(--proof-section-padding, 18px) 0;
  background: var(--proof-band-bg, var(--ink));
  color: var(--white);
}

.proof-band__grid {
  display: grid;
  grid-template-columns: repeat(var(--proof-card-count, 4), minmax(0, 1fr));
  gap: var(--proof-gap, 1px);
  background: var(--proof-grid-bg, rgba(255, 255, 255, 0.12));
  border: 1px solid var(--proof-border-color, rgba(255, 255, 255, 0.12));
  border-radius: var(--proof-radius, 24px);
  overflow: hidden;
}

.proof-item {
  display: grid;
  gap: 6px;
  padding: var(--proof-item-padding, 20px);
  background: var(--proof-item-bg, #151d19);
  text-align: right;
}

.proof-item .material-symbols-outlined {
  color: var(--proof-icon-color, var(--melon));
  font-size: var(--proof-icon-size, 30px);
}

.proof-item strong {
  color: var(--proof-title-color, var(--white));
  font-family: var(--font-display);
  font-size: var(--proof-title-size, 20px);
}

.proof-item small {
  color: var(--proof-text-color, rgba(255, 255, 255, 0.68));
  font-size: var(--proof-text-size, 14px);
  line-height: 1.75;
}

.proof-band--layout-cards .proof-band__grid,
.proof-band--layout-pills .proof-band__grid,
.proof-band--layout-minimal .proof-band__grid {
  background: transparent;
  border: 0;
  overflow: visible;
}

.proof-band--layout-cards .proof-item,
.proof-band--layout-pills .proof-item {
  border: 1px solid var(--proof-border-color, rgba(255, 255, 255, 0.12));
  border-radius: var(--proof-radius, 24px);
}

.proof-band--layout-pills .proof-item {
  border-radius: 999px;
  align-content: center;
  min-height: 156px;
}

.proof-band--layout-minimal .proof-item {
  background: transparent;
  border-inline-start: 1px solid var(--proof-border-color, rgba(255, 255, 255, 0.12));
}

.proof-band--layout-minimal .proof-item:last-child {
  border-inline-start: 0;
}

.proof-band--align-center .proof-item {
  justify-items: center;
  text-align: center;
}

.proof-band--align-left .proof-item {
  justify-items: end;
  text-align: left;
}

.proof-band--icon-side .proof-item {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.proof-band--icon-side .proof-item .material-symbols-outlined {
  grid-row: span 2;
}

.proof-band--icon-side.proof-band--align-center .proof-item,
.proof-band--icon-side.proof-band--align-left .proof-item {
  justify-items: stretch;
}

.product-stage {
  padding-block: var(--product-stage-padding, 96px);
  color: var(--product-stage-title, var(--ink));
  background: var(--product-stage-bg, var(--paper));
  overflow: hidden;
}

.product-stage .section-head {
  align-items: end;
}

.product-stage .section-kicker {
  color: var(--product-stage-accent, var(--copper));
}

.product-stage .section-title,
.product-stage .product-line-card h3,
.product-stage .product-line-card h3 a {
  color: var(--product-stage-title, var(--ink));
}

.product-stage--align-center .section-head {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.product-stage--align-center .section-title {
  margin-inline: auto;
}

.product-stage--align-center .product-spotlight__body,
.product-stage--align-center .product-line-card,
.product-stage--align-center .product-catalog-card {
  text-align: center;
}

.product-stage--align-left .section-head,
.product-stage--align-left .product-spotlight__body,
.product-stage--align-left .product-line-card,
.product-stage--align-left .product-catalog-card {
  direction: ltr;
  text-align: left;
}

.product-stage__grid,
.story-lab__grid,
.distribution-cta__grid,
.inner-hero__grid,
.product-detail-hero__grid,
.product-specs__grid,
.article-hero__grid,
.article-layout,
.contact-studio__grid,
.company-narrative__grid,
.operating-model__grid,
.catalog-layout {
  display: grid;
  gap: 28px;
}

.product-stage__grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  gap: var(--product-stage-gap, 28px);
}

.product-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  background: var(--product-stage-spotlight, var(--ink));
  border-radius: var(--product-stage-radius, var(--radius-lg));
  box-shadow: var(--shadow);
}

.product-spotlight__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.product-spotlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-spotlight__image .tag {
  position: absolute;
  top: 18px;
  right: 18px;
}

.product-spotlight__body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(122, 157, 84, 0.18), transparent),
    var(--product-stage-spotlight, var(--ink));
}

.product-spotlight__body h3 {
  font-size: clamp(30px, 4vw, 52px);
}

.product-spotlight__body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.product-stack {
  display: grid;
  gap: calc(var(--product-stage-gap, 28px) * 0.64);
}

.product-line-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  min-height: 154px;
  padding: 14px;
  background: var(--product-stage-surface, var(--cream));
  border: 1px solid var(--product-stage-border, var(--line));
  border-radius: calc(var(--product-stage-radius, 30px) - 4px);
}

.product-line-card img {
  width: 128px;
  height: 126px;
  object-fit: cover;
  border-radius: 20px;
}

.product-line-card h3 {
  margin-top: 10px;
  font-size: 24px;
}

.product-line-card p {
  margin: 8px 0 0;
  color: var(--product-stage-text, var(--muted));
  font-size: 14px;
}

.product-catalog-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--moss), var(--product-stage-spotlight, var(--ink)));
  border-radius: calc(var(--product-stage-radius, 30px) - 4px);
}

.product-catalog-card .material-symbols-outlined {
  font-size: 32px;
  color: var(--product-stage-accent, var(--melon));
}

.product-catalog-card strong {
  font-family: var(--font-display);
  font-size: 24px;
}

.product-catalog-card small {
  color: rgba(255, 255, 255, 0.72);
}

.product-stage--tone-cream {
  background:
    linear-gradient(135deg, rgba(228, 160, 100, 0.12), transparent 46%),
    var(--product-stage-bg, var(--cream));
}

.product-stage--tone-clean {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 240, 230, 0.44)),
    var(--product-stage-bg, var(--white));
}

.product-stage--tone-garden {
  background:
    radial-gradient(circle at 12% 20%, rgba(122, 157, 84, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(220, 232, 202, 0.82), rgba(255, 250, 241, 0.74)),
    var(--product-stage-bg, var(--mint));
}

.product-stage--tone-dark {
  background:
    radial-gradient(circle at 18% 18%, rgba(228, 160, 100, 0.16), transparent 32%),
    linear-gradient(135deg, #18221d, var(--product-stage-spotlight, var(--ink)));
}

.product-stage--tone-dark .section-title,
.product-stage--tone-dark .section-head,
.product-stage--tone-dark .product-stage__grid > .product-spotlight {
  color: var(--white);
}

.product-stage--tone-dark .btn-outline,
.product-stage--tone-dark .btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.product-stage--image-soft .product-spotlight,
.product-stage--image-soft .product-line-card,
.product-stage--image-soft .product-catalog-card {
  border-radius: 18px;
}

.product-stage--image-soft .product-line-card img {
  border-radius: 14px;
}

.product-stage--image-square .product-spotlight,
.product-stage--image-square .product-line-card,
.product-stage--image-square .product-line-card img,
.product-stage--image-square .product-catalog-card {
  border-radius: 0;
}

.product-stage--image-arch .product-spotlight__image {
  border-start-end-radius: calc(var(--product-stage-radius, 30px) * 2.4);
}

.product-stage--image-arch .product-line-card img {
  border-start-end-radius: 44px;
}

.product-stage--gallery .product-stage__grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.product-stage--gallery .product-spotlight {
  grid-template-columns: 1fr;
  min-height: 0;
  color: var(--product-stage-title, var(--ink));
  background: var(--product-stage-surface, var(--cream));
  border: 1px solid var(--product-stage-border, var(--line));
}

.product-stage--gallery .product-spotlight__image {
  height: var(--product-stage-image-height, 360px);
  min-height: 0;
}

.product-stage--gallery .product-spotlight__body {
  justify-content: start;
  padding: 28px;
  background: var(--product-stage-surface, var(--cream));
}

.product-stage--gallery .product-spotlight__body p {
  color: var(--product-stage-text, var(--muted));
}

.product-stage--gallery .product-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.product-stage--gallery .product-line-card {
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 12px;
}

.product-stage--gallery .product-line-card img {
  width: 100%;
  height: clamp(160px, calc(var(--product-stage-image-height, 360px) * 0.52), 280px);
}

.product-stage--gallery .product-catalog-card {
  grid-column: span 2;
  align-content: end;
  min-height: 190px;
}

.product-stage--catalog .product-stage__grid {
  grid-template-columns: 1fr;
}

.product-stage--catalog .product-spotlight {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  min-height: var(--product-stage-image-height, 360px);
}

.product-stage--catalog .product-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-stage--catalog .product-line-card {
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 16px;
}

.product-stage--catalog .product-line-card img {
  width: 100%;
  height: clamp(150px, calc(var(--product-stage-image-height, 360px) * 0.48), 240px);
}

.product-stage--catalog .product-catalog-card {
  min-height: 100%;
}

.product-stage--compact .section-head {
  margin-bottom: 24px;
}

.product-stage--compact .product-stage__grid {
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
}

.product-stage--compact .product-spotlight {
  grid-template-columns: 1fr;
  min-height: 0;
}

.product-stage--compact .product-spotlight__image {
  height: clamp(220px, var(--product-stage-image-height, 360px), 360px);
  min-height: 0;
}

.product-stage--compact .product-spotlight__body {
  padding: 24px;
}

.product-stage--compact .product-spotlight__body h3 {
  font-size: clamp(24px, 3vw, 38px);
}

.product-stage--compact .product-stack {
  gap: 10px;
}

.product-stage--compact .product-line-card {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  min-height: 110px;
  padding: 10px;
  border-radius: 18px;
}

.product-stage--compact .product-line-card img {
  width: 96px;
  height: 92px;
  border-radius: 14px;
}

.product-stage--compact .product-line-card h3 {
  margin-top: 4px;
  font-size: 19px;
}

.product-stage--compact .product-line-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-stage--compact .product-catalog-card {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 18px;
}

.product-stage--compact .product-catalog-card small {
  grid-column: 2;
}

@media (max-width: 980px) {
  .product-stage--gallery .product-stage__grid,
  .product-stage--catalog .product-stage__grid,
  .product-stage--compact .product-stage__grid,
  .product-stage--catalog .product-spotlight,
  .product-stage--compact .product-spotlight {
    grid-template-columns: 1fr;
  }

  .product-stage--gallery .product-stack,
  .product-stage--catalog .product-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-stage {
    padding-block: min(var(--product-stage-padding, 68px), 96px);
  }

  .product-stage--align-right .section-head {
    align-items: flex-start;
    text-align: right;
  }

  .product-stage--align-right .section-head .btn {
    align-self: flex-start;
  }

  .product-stage--align-center .section-head {
    align-items: center;
    text-align: center;
  }

  .product-stage--align-center .section-head .btn {
    align-self: center;
  }

  .product-stage--align-left .section-head {
    align-items: flex-end;
    text-align: left;
  }

  .product-stage--align-left .section-head .btn {
    align-self: flex-end;
  }

  .product-stage--gallery .product-stack,
  .product-stage--catalog .product-stack,
  .product-stage--compact .product-stack,
  .product-stage--compact .product-line-card,
  .product-stage--compact .product-catalog-card {
    grid-template-columns: 1fr;
  }

  .product-stage--gallery .product-catalog-card {
    grid-column: auto;
  }

  .product-stage--compact .product-line-card img {
    width: 100%;
    height: 210px;
  }

  .product-stage--compact .product-catalog-card small {
    grid-column: auto;
  }
}

.story-lab {
  padding-block: var(--story-padding, 96px);
  color: var(--story-title, var(--ink));
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(220, 232, 202, 0.5), rgba(255, 250, 241, 0.6)),
    var(--story-bg, var(--paper));
}

.story-lab .section-kicker {
  color: var(--story-accent, var(--leaf));
}

.story-lab .section-title {
  color: var(--story-title, var(--ink));
}

.story-lab__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: var(--story-gap, 28px);
}

.story-lab__grid > :only-child {
  grid-column: 1 / -1;
}

.story-lab--media-start .story-lab__media {
  order: -1;
}

.story-lab--align-center .story-lab__copy {
  text-align: center;
}

.story-lab--align-center .section-title {
  margin-inline: auto;
}

.story-lab--align-center .story-checklist {
  justify-items: center;
}

.story-lab--align-left .story-lab__copy,
.story-lab--align-left .story-checklist {
  direction: ltr;
  text-align: left;
}

.story-lab__copy .rich-text {
  margin: 18px 0;
  color: var(--story-text, var(--muted));
}

.story-checklist {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.story-checklist span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--story-check-text, var(--ink-2));
  font-weight: 800;
}

.story-checklist .material-symbols-outlined {
  color: var(--story-accent, var(--leaf));
}

.list-clean .material-symbols-outlined {
  color: var(--leaf);
}

.story-lab--checks-cards .story-checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-lab--checks-cards .story-checklist span,
.story-lab--checks-pills .story-checklist span {
  padding: 14px 16px;
  background: var(--story-check-bg, var(--white));
  border: 1px solid var(--story-border, var(--line));
  border-radius: calc(var(--story-radius, 34px) * 0.55);
  box-shadow: var(--shadow-soft);
}

.story-lab--checks-pills .story-checklist {
  display: flex;
  flex-wrap: wrap;
}

.story-lab--checks-pills .story-checklist span {
  border-radius: 999px;
  box-shadow: none;
}

.story-lab--checks-timeline .story-checklist {
  position: relative;
  gap: 14px;
  padding-inline-start: 22px;
}

.story-lab--checks-timeline .story-checklist::before {
  position: absolute;
  inset-block: 8px;
  inset-inline-start: 6px;
  width: 2px;
  content: "";
  background: var(--story-accent, var(--leaf));
  opacity: 0.45;
}

.story-lab--checks-timeline .story-checklist span {
  position: relative;
  padding: 12px 14px;
  background: var(--story-check-bg, var(--white));
  border: 1px solid var(--story-border, var(--line));
  border-radius: 18px;
}

.story-lab__media {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 18px;
  min-height: calc(var(--story-image-height, 520px) + 10px);
}

.story-lab__media figure {
  margin: 0;
  overflow: hidden;
  background: var(--story-surface, var(--cream));
  border: 1px solid var(--story-border, var(--line));
  border-radius: var(--story-radius, 34px);
  box-shadow: var(--shadow-soft);
}

.story-lab__media figure:first-child {
  height: calc(var(--story-image-height, 520px) * 0.73);
}

.story-lab__media figure:nth-child(2) {
  height: var(--story-image-height, 520px);
}

.story-lab__media figure:only-of-type {
  grid-column: 1 / -1;
  height: var(--story-image-height, 520px);
}

.story-lab__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-lab__stamp {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: var(--story-stamp-color, var(--white));
  background: var(--story-stamp-bg, rgba(18, 24, 21, 0.92));
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: var(--story-stamp-size, 16px);
}

.story-lab__stamp .material-symbols-outlined {
  color: var(--story-accent, var(--melon));
}

.story-lab--tone-paper {
  background: var(--story-bg, var(--paper));
}

.story-lab--tone-cream {
  background:
    radial-gradient(circle at 16% 22%, rgba(228, 160, 100, 0.14), transparent 30%),
    var(--story-bg, var(--cream));
}

.story-lab--tone-clean {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 240, 230, 0.34)),
    var(--story-bg, var(--white));
}

.story-lab--tone-garden {
  background:
    radial-gradient(circle at 82% 20%, rgba(122, 157, 84, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(220, 232, 202, 0.5), rgba(255, 250, 241, 0.6)),
    var(--story-bg, var(--paper));
}

.story-lab--tone-dark,
.story-lab--immersive {
  background:
    radial-gradient(circle at 18% 18%, rgba(228, 160, 100, 0.18), transparent 34%),
    linear-gradient(135deg, #18221d, var(--story-stamp-bg, var(--ink)));
}

.story-lab--tone-dark .section-title,
.story-lab--tone-dark .story-lab__copy,
.story-lab--immersive .section-title,
.story-lab--immersive .story-lab__copy {
  color: var(--white);
}

.story-lab--tone-dark .story-lab__copy .rich-text,
.story-lab--immersive .story-lab__copy .rich-text {
  color: rgba(255, 255, 255, 0.74);
}

.story-lab--tone-dark .btn-outline,
.story-lab--tone-dark .btn-ghost,
.story-lab--immersive .btn-outline,
.story-lab--immersive .btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.story-lab--split-card .story-lab__copy {
  padding: clamp(24px, 4vw, 42px);
  background: var(--story-surface, var(--cream));
  border: 1px solid var(--story-border, var(--line));
  border-radius: var(--story-radius, 34px);
  box-shadow: var(--shadow-soft);
}

.story-lab--split-card .story-lab__media {
  min-height: var(--story-image-height, 520px);
}

.story-lab--editorial .story-lab__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: start;
}

.story-lab--editorial .story-lab__copy {
  padding-top: 22px;
}

.story-lab--editorial .story-lab__media {
  grid-template-columns: 1fr;
  min-height: 0;
}

.story-lab--editorial .story-lab__media figure:first-child,
.story-lab--editorial .story-lab__media figure:nth-child(2) {
  height: calc(var(--story-image-height, 520px) * 0.58);
}

.story-lab--timeline .story-lab__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
}

.story-lab--timeline .story-lab__copy {
  padding: clamp(24px, 4vw, 42px);
  background: var(--story-surface, var(--cream));
  border-inline-start: 6px solid var(--story-accent, var(--leaf));
  border-radius: var(--story-radius, 34px);
}

.story-lab--timeline .story-lab__media {
  grid-template-columns: 1fr;
  min-height: 0;
}

.story-lab--timeline .story-lab__media figure:first-child,
.story-lab--timeline .story-lab__media figure:nth-child(2) {
  height: calc(var(--story-image-height, 520px) * 0.54);
}

.story-lab--immersive .story-lab__grid {
  padding: clamp(20px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--story-radius, 34px) + 10px);
}

.story-lab--immersive .story-lab__media figure {
  border-color: rgba(255, 255, 255, 0.16);
}

.story-lab--image-soft .story-lab__media figure,
.story-lab--image-soft .story-lab__copy {
  border-radius: 20px;
}

.story-lab--image-square .story-lab__media figure,
.story-lab--image-square .story-lab__copy,
.story-lab--image-square .story-lab__grid {
  border-radius: 0;
}

.story-lab--image-arch .story-lab__media figure {
  border-start-end-radius: calc(var(--story-radius, 34px) * 2.2);
  border-start-start-radius: calc(var(--story-radius, 34px) * 2.2);
}

@media (max-width: 980px) {
  .story-lab--editorial .story-lab__grid,
  .story-lab--timeline .story-lab__grid,
  .story-lab--immersive .story-lab__grid {
    grid-template-columns: 1fr;
  }

  .story-lab--media-start .story-lab__media {
    order: 0;
  }
}

@media (max-width: 720px) {
  .story-lab {
    padding-block: min(var(--story-padding, 68px), 96px);
  }

  .story-lab--checks-cards .story-checklist,
  .story-lab--checks-pills .story-checklist {
    grid-template-columns: 1fr;
  }

  .story-lab--checks-pills .story-checklist {
    display: grid;
  }

  .story-lab--split-card .story-lab__copy,
  .story-lab--timeline .story-lab__copy,
  .story-lab--immersive .story-lab__grid {
    padding: 22px;
  }
}

.process-section {
  padding-block: var(--process-padding, 96px);
  color: var(--process-title, var(--white));
  background: var(--process-bg, var(--ink));
  overflow: hidden;
}

.process-section .section-kicker {
  color: var(--process-accent, var(--melon));
}

.process-section .section-title,
.process-section .lead,
.process-section .rich-text,
.process-section p {
  color: var(--process-text, rgba(255, 255, 255, 0.76));
}

.process-section .section-title {
  color: var(--process-title, var(--white));
}

.process-section--align-center .section-head {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.process-section--align-center .section-title,
.process-section--align-center .lead {
  margin-inline: auto;
}

.process-section--align-center .process-card {
  text-align: center;
}

.process-section--align-center .process-card > .material-symbols-outlined {
  margin-inline: auto;
}

.process-section--align-left .section-head,
.process-section--align-left .process-card {
  direction: ltr;
  text-align: left;
}

.process-lane {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--process-card-count, 3), minmax(0, 1fr));
  gap: var(--process-gap, 18px);
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: var(--process-card-min-height, 330px);
  padding: var(--process-card-padding, 28px);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--process-border, rgba(255, 255, 255, 0.12));
  border-radius: var(--process-radius, 30px);
  box-shadow: var(--shadow-soft);
}

.process-card__number {
  position: absolute;
  inset: auto auto 8px 16px;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 104px;
  line-height: 1;
}

.process-card > .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: var(--process-icon-size, 58px);
  height: var(--process-icon-size, 58px);
  color: var(--ink);
  background: var(--process-accent, var(--melon));
  border-radius: calc(var(--process-radius, 30px) * 0.6);
  font-size: calc(var(--process-icon-size, 58px) * 0.58);
}

.process-card h3 {
  margin-top: 28px;
  color: var(--process-card-title, var(--white));
  font-size: var(--process-title-size, 28px);
}

.process-card p {
  position: relative;
  z-index: 1;
  color: var(--process-card-text, rgba(255, 255, 255, 0.76));
  font-size: var(--process-text-size, 16px);
}

.process-section--tone-paper {
  background: var(--process-bg, var(--paper));
}

.process-section--tone-cream {
  background:
    radial-gradient(circle at 14% 18%, rgba(228, 160, 100, 0.15), transparent 30%),
    var(--process-bg, var(--cream));
}

.process-section--tone-clean {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 240, 230, 0.32)),
    var(--process-bg, var(--white));
}

.process-section--tone-garden {
  background:
    radial-gradient(circle at 82% 22%, rgba(122, 157, 84, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(220, 232, 202, 0.78), rgba(255, 250, 241, 0.7)),
    var(--process-bg, var(--mint));
}

.process-section--tone-paper,
.process-section--tone-cream,
.process-section--tone-clean,
.process-section--tone-garden {
  color: var(--process-title, var(--ink));
}

.process-section--tone-paper .section-title,
.process-section--tone-cream .section-title,
.process-section--tone-clean .section-title,
.process-section--tone-garden .section-title {
  color: var(--process-title, var(--ink));
}

.process-section--card-solid .process-card {
  background: var(--process-card-bg, var(--process-surface, var(--white)));
}

.process-section--card-outline .process-card {
  background: transparent;
  border-width: 2px;
  box-shadow: none;
}

.process-section--card-accent .process-card {
  background: var(--process-card-bg, rgba(255, 255, 255, 0.08));
  border-color: var(--process-accent, var(--melon));
}

.process-section--card-accent .process-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: var(--process-accent, var(--melon));
}

.process-section--icon-circle .process-card > .material-symbols-outlined {
  border-radius: 999px;
}

.process-section--icon-square .process-card > .material-symbols-outlined {
  border-radius: 0;
}

.process-section--number-badge .process-card__number,
.process-section--number-corner .process-card__number {
  inset: 18px auto auto 18px;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--process-title, var(--ink));
  background: var(--process-accent, var(--melon));
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
}

.process-section--number-corner .process-card__number {
  inset: 0 auto auto 0;
  border-radius: 0 0 18px 0;
}

.process-section--number-hidden .process-card__number {
  display: none;
}

.process-section--timeline .process-lane {
  align-items: stretch;
}

.process-section--timeline .process-lane::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--process-accent, var(--melon));
  opacity: 0.35;
}

.process-section--timeline .process-card {
  min-height: calc(var(--process-card-min-height, 330px) * 0.84);
}

.process-section--cards .process-lane {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.process-section--cards .process-card {
  background: var(--process-card-bg, var(--process-surface, var(--white)));
}

.process-section--steps .process-lane {
  align-items: start;
}

.process-section--steps .process-card:nth-child(even) {
  margin-top: 34px;
}

.process-section--steps .process-card {
  min-height: calc(var(--process-card-min-height, 330px) * 0.9);
}

.process-section--compact .section-head {
  margin-bottom: 24px;
}

.process-section--compact .process-lane {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-section--compact .process-card {
  min-height: auto;
  padding: calc(var(--process-card-padding, 28px) * 0.72);
}

.process-section--compact .process-card h3 {
  margin-top: 16px;
  font-size: clamp(18px, var(--process-title-size, 28px), 24px);
}

.process-section--compact .process-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 980px) {
  .process-lane,
  .process-section--timeline .process-lane,
  .process-section--steps .process-lane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .process-section {
    padding-block: min(var(--process-padding, 68px), 96px);
  }

  .process-lane,
  .process-section--timeline .process-lane,
  .process-section--steps .process-lane,
  .process-section--cards .process-lane,
  .process-section--compact .process-lane {
    grid-template-columns: 1fr;
  }

  .process-section--timeline .process-lane::before {
    inset: 0 auto 0 26px;
    width: 2px;
    height: auto;
  }

  .process-section--steps .process-card:nth-child(even) {
    margin-top: 0;
  }
}

.process-section--timeline .section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.process-section--timeline .process-lane {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
  gap: 0;
  padding-block: 18px;
}

.process-section--timeline .process-lane::before {
  top: 0;
  right: 50%;
  bottom: 0;
  left: auto;
  width: 3px;
  height: auto;
  background: linear-gradient(180deg, transparent, var(--process-accent, var(--melon)), transparent);
  opacity: 1;
}

.process-section--timeline .process-card {
  width: min(46%, 480px);
  min-height: auto;
  margin-block: 0 24px;
  background: var(--process-card-bg, rgba(255, 255, 255, 0.08));
  border: 1px solid var(--process-border, rgba(255, 255, 255, 0.14));
  box-shadow: var(--shadow-soft);
}

.process-section--timeline .process-card:nth-child(odd) {
  justify-self: start;
}

.process-section--timeline .process-card:nth-child(even) {
  justify-self: end;
}

.process-section--timeline .process-card::after {
  position: absolute;
  top: 30px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--process-accent, var(--melon));
  border: 4px solid var(--process-bg, var(--ink));
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(228, 160, 100, 0.18);
}

.process-section--timeline .process-card:nth-child(odd)::after {
  inset-inline-start: calc(100% + 31px);
}

.process-section--timeline .process-card:nth-child(even)::after {
  inset-inline-end: calc(100% + 31px);
}

.process-section--timeline .process-card__number {
  position: static;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding-inline-end: calc(var(--process-icon-size, 58px) + 18px);
  direction: ltr;
  text-align: left;
  color: var(--process-accent, var(--melon));
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.process-section--timeline .process-card > .material-symbols-outlined {
  position: absolute;
  inset-block-start: 24px;
  inset-inline-end: 24px;
  z-index: 2;
}

.process-section--cards .process-lane {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
}

.process-section--cards .process-card {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 44%),
    var(--process-card-bg, var(--process-surface, var(--white)));
}

.process-section--cards .process-card:first-child {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 520px;
}

.process-section--cards .process-card:nth-child(2) {
  grid-column: span 3;
}

.process-section--cards .process-card:nth-child(3n + 4) {
  grid-column: span 4;
}

.process-section--cards .process-card__number {
  inset: auto 18px 10px auto;
  font-size: clamp(78px, 10vw, 148px);
  opacity: 0.12;
}

.process-section--cards .process-card:first-child .process-card__number {
  font-size: clamp(120px, 16vw, 220px);
}

.process-section--cards .process-card > .material-symbols-outlined {
  width: calc(var(--process-icon-size, 58px) * 1.25);
  height: calc(var(--process-icon-size, 58px) * 1.25);
}

.process-section--steps .section-head {
  max-width: 760px;
}

.process-section--steps .process-lane {
  display: grid;
  grid-template-columns: repeat(var(--process-card-count, 3), minmax(0, 1fr));
  align-items: end;
  gap: 0;
  padding-block: 42px 18px;
}

.process-section--steps .process-card {
  display: grid;
  align-content: start;
  min-height: calc(var(--process-card-min-height, 330px) * 0.82);
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%, 28px 50%);
}

.process-section--steps .process-card:nth-child(odd) {
  transform: translateY(34px);
}

.process-section--steps .process-card:nth-child(3n) {
  transform: translateY(-18px);
}

.process-section--steps .process-card:nth-child(even) {
  margin-top: 0;
}

.process-section--steps .process-card__number {
  inset: 18px 22px auto auto;
  color: var(--process-accent, var(--melon));
  font-size: clamp(34px, 5vw, 62px);
  opacity: 1;
}

.process-section--steps .process-card > .material-symbols-outlined {
  margin-top: 44px;
  background: var(--process-title, var(--white));
  color: var(--process-bg, var(--ink));
}

.process-section--compact .process-lane {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
  gap: 12px;
}

.process-section--compact .process-card {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: auto;
  padding: 16px 20px;
  background: var(--process-card-bg, rgba(255, 255, 255, 0.08));
  border-radius: 18px;
}

.process-section--compact .process-card__number {
  position: static;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--process-title, var(--white));
  background: transparent;
  border: 1px solid var(--process-border, rgba(255, 255, 255, 0.18));
  border-radius: 14px;
  font-size: 18px;
  opacity: 1;
}

.process-section--compact .process-card > .material-symbols-outlined {
  width: 54px;
  height: 54px;
}

.process-section--compact .process-card h3 {
  margin: 0;
}

.process-section--compact .process-card p {
  grid-column: 3;
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .process-section--timeline .process-lane::before {
    inset-inline-start: 26px;
    inset-inline-end: auto;
  }

  .process-section--timeline .process-card,
  .process-section--timeline .process-card:nth-child(odd),
  .process-section--timeline .process-card:nth-child(even) {
    justify-self: stretch;
    width: auto;
    margin-inline-start: 58px;
  }

  .process-section--timeline .process-card::after,
  .process-section--timeline .process-card:nth-child(odd)::after,
  .process-section--timeline .process-card:nth-child(even)::after {
    inset-inline-start: -42px;
    inset-inline-end: auto;
  }

  .process-section--cards .process-lane,
  .process-section--steps .process-lane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--process-gap, 18px);
  }

  .process-section--cards .process-card,
  .process-section--cards .process-card:first-child,
  .process-section--cards .process-card:nth-child(2),
  .process-section--cards .process-card:nth-child(3n + 4) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 260px;
  }

  .process-section--steps .process-card {
    clip-path: none;
    border-radius: var(--process-radius, 30px);
    transform: none;
  }
}

@media (max-width: 720px) {
  .process-section--cards .process-lane,
  .process-section--steps .process-lane {
    grid-template-columns: 1fr;
  }

  .process-section--compact .process-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .process-section--compact .process-card p {
    grid-column: 1 / -1;
  }
}

.distribution-cta {
  position: relative;
  overflow: hidden;
  padding-block: var(--distribution-padding, 96px);
  background: var(--distribution-bg, var(--paper));
}

.distribution-cta__grid {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: var(--distribution-gap, 28px);
  padding: var(--distribution-block-padding, 40px);
  overflow: hidden;
  color: var(--distribution-text, var(--ink-muted));
  border-radius: var(--distribution-radius, 36px);
}

.distribution-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.distribution-cta--panel-start .distribution-cta__panel {
  order: -1;
}

.distribution-cta--align-center .distribution-cta__copy,
.distribution-cta--align-center .distribution-cta__panel {
  justify-self: center;
  text-align: center;
}

.distribution-cta--align-left .distribution-cta__copy,
.distribution-cta--align-left .distribution-cta__panel {
  direction: ltr;
  text-align: left;
}

.distribution-cta .section-kicker {
  color: var(--distribution-accent, var(--melon));
}

.distribution-cta .section-title {
  color: var(--distribution-title, var(--ink));
  font-size: var(--distribution-title-size, 46px);
}

.distribution-cta .lead,
.distribution-cta .rich-text {
  color: var(--distribution-text, var(--ink-muted));
  font-size: var(--distribution-text-size, 18px);
}

.distribution-cta__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.distribution-cta__stats {
  display: grid;
  gap: 14px;
}

.distribution-cta__stat {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 16px;
  border-radius: var(--distribution-stat-radius, 18px);
}

.distribution-cta__stat .material-symbols-outlined {
  color: var(--distribution-accent, var(--melon));
  font-size: 26px;
}

.distribution-cta__stat strong {
  color: var(--distribution-stat-value, var(--melon));
  font-family: var(--font-display);
  font-size: var(--distribution-stat-value-size, 38px);
  line-height: 1;
}

.distribution-cta__stat small {
  color: var(--distribution-stat-label, var(--ink-muted));
  font-size: 14px;
  line-height: 1.6;
}

.distribution-cta--tone-dark .btn-outline,
.distribution-cta--tone-dark .btn-ghost,
.distribution-cta--dispatch .btn-outline,
.distribution-cta--dispatch .btn-ghost,
.distribution-cta--classic .btn-outline,
.distribution-cta--classic .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.distribution-cta--stats-cards .distribution-cta__stats {
  grid-template-columns: repeat(var(--distribution-stat-count, 2), minmax(120px, 1fr));
}

.distribution-cta--stats-inline .distribution-cta__stats {
  grid-template-columns: repeat(var(--distribution-stat-count, 2), minmax(120px, 1fr));
  align-items: stretch;
}

.distribution-cta--stats-badges .distribution-cta__stats {
  grid-template-columns: repeat(var(--distribution-stat-count, 2), minmax(110px, 1fr));
}

.distribution-cta--stats-badges .distribution-cta__stat {
  place-items: center;
  min-height: 150px;
  text-align: center;
  border-radius: 999px;
}

.distribution-cta--classic {
  background: var(--paper);
}

.distribution-cta--classic .distribution-cta__grid {
  background:
    linear-gradient(135deg, rgba(228, 160, 100, 0.18), transparent 45%),
    linear-gradient(135deg, var(--distribution-surface, var(--moss)), var(--distribution-bg, var(--ink)));
  box-shadow: var(--shadow);
}

.distribution-cta--classic .distribution-cta__panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--distribution-radius, 36px) - 8px);
}

.distribution-cta--classic .distribution-cta__stat {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.distribution-cta--classic .distribution-cta__stat .material-symbols-outlined {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.distribution-cta--dispatch {
  background:
    linear-gradient(90deg, rgba(228, 160, 100, 0.15), transparent 28%),
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.1), transparent 24%),
    var(--distribution-bg, #121815);
}

.distribution-cta--dispatch .distribution-cta__grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--distribution-border, #52665a), transparent 25%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%), var(--distribution-surface, #24302b);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.distribution-cta--dispatch .distribution-cta__copy {
  display: grid;
  align-content: center;
  padding: var(--distribution-block-padding, 40px);
  border-inline-end: 1px solid color-mix(in srgb, var(--distribution-border, #52665a), transparent 22%);
}

.distribution-cta--dispatch .distribution-cta__panel {
  align-content: space-between;
  padding: var(--distribution-block-padding, 40px);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 82px),
    rgba(0, 0, 0, 0.08);
}

.distribution-cta--dispatch .distribution-cta__stats {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px;
}

.distribution-cta--dispatch .distribution-cta__stat {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.distribution-cta--dispatch .distribution-cta__stat .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--distribution-bg, #121815);
  background: var(--distribution-accent, var(--melon));
  border-radius: 16px;
}

.distribution-cta--dispatch .distribution-cta__panel .btn {
  justify-self: start;
}

.distribution-cta--route-map {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--distribution-bg, #fffaf1), white 28%), var(--distribution-bg, #fffaf1));
}

.distribution-cta--route-map .distribution-cta__grid {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  overflow: visible;
  background: transparent;
}

.distribution-cta--route-map .distribution-cta__copy {
  padding: var(--distribution-block-padding, 40px);
  background: var(--distribution-panel, #ffffff);
  border: 1px solid var(--distribution-border, #ded8cc);
  border-radius: var(--distribution-radius, 36px);
  box-shadow: 0 20px 55px rgba(18, 24, 21, 0.08);
}

.distribution-cta--route-map .distribution-cta__panel {
  padding: clamp(18px, var(--distribution-block-padding, 40px), 60px) 0;
}

.distribution-cta--route-map .distribution-cta__stats {
  position: relative;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-inline-start: 46px;
}

.distribution-cta--route-map .distribution-cta__stats::before {
  content: "";
  position: absolute;
  inset-block: 30px;
  inset-inline-start: 21px;
  width: 3px;
  background: linear-gradient(var(--distribution-accent, var(--melon)), transparent);
  border-radius: 999px;
}

.distribution-cta--route-map .distribution-cta__stat {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  background: var(--distribution-panel, #ffffff);
  border: 1px solid var(--distribution-border, #ded8cc);
  box-shadow: 0 18px 42px rgba(18, 24, 21, 0.08);
}

.distribution-cta--route-map .distribution-cta__stat .material-symbols-outlined {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--distribution-panel, #ffffff);
  background: var(--distribution-accent, var(--melon));
  border-radius: 50%;
}

.distribution-cta--route-map .distribution-cta__panel .btn {
  margin-inline-start: 46px;
}

.distribution-cta--metric-wall {
  background: var(--distribution-bg, #ffffff);
}

.distribution-cta--metric-wall .distribution-cta__grid {
  grid-template-columns: 1fr;
  text-align: center;
  background: transparent;
}

.distribution-cta--metric-wall .distribution-cta__copy {
  justify-self: center;
}

.distribution-cta--metric-wall .distribution-cta__panel {
  gap: 28px;
  width: 100%;
}

.distribution-cta--metric-wall .distribution-cta__stats {
  grid-template-columns: repeat(var(--distribution-stat-count, 2), minmax(160px, 1fr));
  gap: 0;
  overflow: hidden;
  background: var(--distribution-surface, #f8fafc);
  border: 1px solid var(--distribution-border, #dfe5dc);
  border-radius: var(--distribution-radius, 36px);
}

.distribution-cta--metric-wall .distribution-cta__stat {
  min-height: 210px;
  place-items: center;
  padding: 28px 18px;
  text-align: center;
  border-radius: 0;
  border-inline-start: 1px solid var(--distribution-border, #dfe5dc);
}

.distribution-cta--metric-wall .distribution-cta__stat:first-child {
  border-inline-start: 0;
}

.distribution-cta--metric-wall .distribution-cta__stat strong {
  font-size: calc(var(--distribution-stat-value-size, 38px) + 18px);
}

.distribution-cta--metric-wall .distribution-cta__panel .btn {
  justify-self: center;
}

.distribution-cta--partner-letter {
  background:
    linear-gradient(90deg, transparent 0 58%, color-mix(in srgb, var(--distribution-surface, #3f6046), transparent 80%) 58% 100%),
    var(--distribution-bg, #fffaf1);
}

.distribution-cta--partner-letter .distribution-cta__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: stretch;
  overflow: visible;
  padding: 0;
}

.distribution-cta--partner-letter .distribution-cta__copy {
  display: grid;
  align-content: center;
  max-width: none;
  min-height: 460px;
  padding: var(--distribution-block-padding, 40px);
  background: var(--distribution-panel, #ffffff);
  border: 1px solid var(--distribution-border, #ded8cc);
  border-radius: var(--distribution-radius, 36px) 0 0 var(--distribution-radius, 36px);
  box-shadow: 0 24px 70px rgba(18, 24, 21, 0.09);
}

.distribution-cta--partner-letter .distribution-cta__copy::before {
  content: "";
  width: 76px;
  height: 5px;
  margin-bottom: 24px;
  background: var(--distribution-accent, var(--melon));
  border-radius: 999px;
}

.distribution-cta--partner-letter .distribution-cta__panel {
  align-content: stretch;
  padding: 28px;
  color: var(--white);
  background: var(--distribution-surface, var(--moss));
  border-radius: 0 var(--distribution-radius, 36px) var(--distribution-radius, 36px) 0;
  box-shadow: 0 24px 70px rgba(18, 24, 21, 0.12);
}

.distribution-cta--partner-letter .distribution-cta__stats {
  grid-template-columns: 1fr;
  align-content: center;
  height: 100%;
}

.distribution-cta--partner-letter .distribution-cta__stat {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.distribution-cta--partner-letter .distribution-cta__stat .material-symbols-outlined {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--distribution-surface, var(--moss));
  background: var(--distribution-accent, var(--melon));
  border-radius: 14px;
}

.distribution-cta--partner-letter .distribution-cta__panel .btn {
  align-self: end;
}

@media (max-width: 760px) {
  .distribution-cta {
    padding-block: calc(var(--distribution-padding, 96px) * 0.62);
  }

  .distribution-cta .section-title {
    font-size: min(var(--distribution-title-size, 46px), 34px);
  }

  .distribution-cta__grid,
  .distribution-cta--dispatch .distribution-cta__grid,
  .distribution-cta--route-map .distribution-cta__grid,
  .distribution-cta--partner-letter .distribution-cta__grid {
    grid-template-columns: 1fr;
  }

  .distribution-cta--panel-start .distribution-cta__panel {
    order: 0;
  }

  .distribution-cta--dispatch .distribution-cta__copy,
  .distribution-cta--dispatch .distribution-cta__panel {
    border-inline-end: 0;
  }

  .distribution-cta--dispatch .distribution-cta__stats,
  .distribution-cta--metric-wall .distribution-cta__stats,
  .distribution-cta--stats-cards .distribution-cta__stats,
  .distribution-cta--stats-inline .distribution-cta__stats,
  .distribution-cta--stats-badges .distribution-cta__stats {
    grid-template-columns: 1fr;
  }

  .distribution-cta--route-map .distribution-cta__stats {
    padding-inline-start: 34px;
  }

  .distribution-cta--route-map .distribution-cta__stats::before {
    inset-inline-start: 15px;
  }

  .distribution-cta--route-map .distribution-cta__panel .btn {
    margin-inline-start: 34px;
  }

  .distribution-cta--metric-wall .distribution-cta__stat {
    min-height: auto;
    border-inline-start: 0;
    border-block-start: 1px solid var(--distribution-border, #dfe5dc);
  }

  .distribution-cta--metric-wall .distribution-cta__stat:first-child {
    border-block-start: 0;
  }

  .distribution-cta--partner-letter .distribution-cta__copy,
  .distribution-cta--partner-letter .distribution-cta__panel {
    min-height: auto;
    border-radius: var(--distribution-radius, 36px);
  }
}

.journal-section,
.journal-index,
.related-section {
  background: rgba(255, 250, 241, 0.58);
}

.journal-section {
  padding-block: var(--journal-padding, 96px);
  color: var(--journal-text, var(--muted));
  background: var(--journal-bg, rgba(255, 250, 241, 0.58));
}

.journal-section__head {
  gap: 24px;
  margin-bottom: 30px;
}

.journal-section__title {
  max-width: 760px;
}

.journal-section .section-kicker,
.journal-card__read {
  color: var(--journal-accent, var(--melon));
}

.journal-section .section-title {
  color: var(--journal-title, var(--ink));
  font-size: var(--journal-title-size, 46px);
}

.journal-section--heading-center .journal-section__head {
  justify-content: center;
  text-align: center;
}

.journal-section--heading-center .journal-section__title,
.journal-section--heading-center .journal-section__head .btn {
  justify-self: center;
}

.journal-section--heading-stacked .journal-section__head {
  display: grid;
  justify-content: start;
}

.journal-section--align-center .journal-card {
  text-align: center;
}

.journal-section--align-center .journal-card__meta,
.journal-section--align-center .journal-card__read {
  justify-content: center;
}

.journal-section--align-left .journal-card {
  direction: ltr;
  text-align: left;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--journal-gap, 20px);
}

.journal-card {
  display: grid;
  overflow: hidden;
  color: var(--journal-text, var(--muted));
  background: var(--journal-card, var(--paper));
  border: 1px solid var(--journal-border, var(--line));
  border-radius: var(--journal-radius, 28px);
  box-shadow: var(--shadow-soft);
}

.journal-section--card-bordered .journal-card {
  box-shadow: none;
  border-width: 2px;
}

.journal-section--card-flat .journal-card {
  box-shadow: none;
}

.journal-section--card-elevated .journal-card {
  box-shadow: 0 24px 58px rgba(18, 24, 21, 0.12);
}

.journal-card__image {
  display: block;
  height: var(--journal-image-height, 220px);
  overflow: hidden;
}

.journal-section--image-square .journal-card__image {
  height: auto;
  aspect-ratio: 1;
}

.journal-section--image-portrait .journal-card__image {
  height: auto;
  aspect-ratio: 4 / 5;
}

.journal-section--image-cinema .journal-card__image {
  height: auto;
  aspect-ratio: 21 / 9;
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.journal-card:hover .journal-card__image img,
.catalog-card:hover .catalog-card__image img,
.journal-row:hover .journal-row__image img {
  transform: scale(1.05);
}

.journal-card__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.journal-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--journal-meta, var(--moss));
  font-size: 13px;
}

.journal-card__meta .tag {
  color: var(--journal-title, var(--ink));
  background: color-mix(in srgb, var(--journal-accent, var(--melon)), white 74%);
}

.journal-card h3 {
  color: var(--journal-title, var(--ink));
  font-size: var(--journal-card-title-size, 24px);
}

.journal-card h3 a {
  color: inherit;
}

.journal-card p {
  font-size: var(--journal-excerpt-size, 15px);
}

.journal-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-weight: 800;
}

.journal-card__read .material-symbols-outlined {
  font-size: 18px;
}

.journal-card p,
.journal-card time,
.journal-row p,
.blog-meta,
.article-aside,
.catalog-card p {
  color: var(--journal-text, var(--muted));
}

.journal-card__meta time {
  color: var(--journal-meta, var(--moss));
}

.journal-section--classic .journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-section--no-images .journal-card,
.journal-section--no-images .journal-card--featured,
.journal-section--no-images .journal-card:not(.journal-card--featured) {
  grid-template-columns: 1fr !important;
}

.journal-section--tone-ink .journal-card__meta .tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.journal-section--tone-ink .btn-outline,
.journal-section--tone-ink .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.journal-section--featured-split {
  background: linear-gradient(180deg, color-mix(in srgb, var(--journal-bg, #fffaf1), white 18%), var(--journal-bg, #fffaf1));
}

.journal-section--featured-split .journal-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: start;
}

.journal-section--featured-split .journal-card--featured {
  grid-row: span 3;
}

.journal-section--featured-split .journal-card--featured .journal-card__image {
  height: calc(var(--journal-image-height, 220px) + 120px);
}

.journal-section--featured-split .journal-card--featured .journal-card__body {
  padding: 28px;
}

.journal-section--featured-split .journal-card--featured h3 {
  font-size: calc(var(--journal-card-title-size, 24px) + 8px);
}

.journal-section--featured-split .journal-card:not(.journal-card--featured) {
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: stretch;
  min-height: 154px;
}

.journal-section--featured-split .journal-card:not(.journal-card--featured) .journal-card__image {
  height: 100%;
  min-height: 154px;
}

.journal-section--featured-split .journal-card:not(.journal-card--featured) .journal-card__body {
  padding: 18px 18px 20px;
  align-content: start;
}

.journal-section--newspaper {
  background: linear-gradient(180deg, rgba(18, 24, 21, 0.02), transparent 22%), var(--journal-bg, #ffffff);
}

.journal-section--newspaper .journal-section__head {
  padding-block-end: 18px;
  border-bottom: 1px solid var(--journal-border, var(--line));
}

.journal-section--newspaper .journal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.journal-section--newspaper .journal-card {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  min-height: 168px;
  border-inline-start: 3px solid color-mix(in srgb, var(--journal-accent, var(--melon)), white 18%);
  box-shadow: none;
}

.journal-section--newspaper .journal-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 284px;
}

.journal-section--newspaper .journal-card__image {
  height: 100%;
  min-height: 168px;
}

.journal-section--newspaper .journal-card__body {
  padding: 18px 20px;
  align-content: start;
}

.journal-section--newspaper .journal-card__meta {
  gap: 8px 10px;
}

.journal-section--newspaper .journal-card--featured h3 {
  font-size: calc(var(--journal-card-title-size, 24px) + 8px);
}

.journal-section--mosaic {
  background: linear-gradient(180deg, color-mix(in srgb, var(--journal-bg, #fffaf1), white 12%), var(--journal-bg, #fffaf1));
}

.journal-section--mosaic .journal-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.journal-section--mosaic .journal-card {
  grid-column: span 4;
  min-height: 100%;
  box-shadow: 0 14px 36px rgba(18, 24, 21, 0.08);
}

.journal-section--mosaic .journal-card:nth-child(1) {
  grid-column: span 8;
}

.journal-section--mosaic .journal-card:nth-child(2),
.journal-section--mosaic .journal-card:nth-child(3),
.journal-section--mosaic .journal-card:nth-child(4),
.journal-section--mosaic .journal-card:nth-child(5),
.journal-section--mosaic .journal-card:nth-child(6) {
  grid-column: span 4;
}

.journal-section--mosaic .journal-card:nth-child(1) .journal-card__image {
  min-height: 280px;
  height: 100%;
}

.journal-section--mosaic .journal-card:not(.journal-card--featured) .journal-card__image {
  height: 180px;
}

.journal-section--mosaic .journal-card--featured .journal-card__body {
  padding: 28px;
}

.journal-section--timeline {
  background: linear-gradient(180deg, rgba(18, 24, 21, 0.02), transparent 24%), var(--journal-bg, #fffaf1);
}

.journal-section--timeline .journal-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.journal-section--timeline .journal-card {
  position: relative;
  overflow: visible;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: stretch;
}

.journal-section--timeline .journal-card::before {
  content: "";
  position: absolute;
  inset-block: 0 -18px;
  inset-inline-start: 48px;
  width: 2px;
  background: linear-gradient(var(--journal-accent, var(--melon)), transparent);
}

.journal-section--timeline .journal-card::after {
  content: "";
  position: absolute;
  inset-inline-start: 39px;
  top: 24px;
  width: 18px;
  height: 18px;
  background: var(--journal-accent, var(--melon));
  border: 4px solid var(--journal-bg, #fffaf1);
  border-radius: 50%;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--journal-accent, var(--melon)), white 24%);
}

.journal-section--no-images .journal-card__body {
  min-height: 180px;
}

@media (max-width: 980px) {
  .journal-section--classic .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-section--featured-split .journal-grid,
  .journal-section--newspaper .journal-grid,
  .journal-section--mosaic .journal-grid,
  .journal-section--timeline .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-section--featured-split .journal-card--featured,
  .journal-section--newspaper .journal-card--featured,
  .journal-section--timeline .journal-card:nth-child(even) {
    grid-row: auto;
    transform: none;
  }

  .journal-section--featured-split .journal-card:not(.journal-card--featured),
  .journal-section--newspaper .journal-card,
  .journal-section--mosaic .journal-card {
    grid-template-columns: 1fr;
  }

  .journal-section--newspaper .journal-card--featured,
  .journal-section--mosaic .journal-card:nth-child(1),
  .journal-section--mosaic .journal-card:nth-child(2),
  .journal-section--mosaic .journal-card:nth-child(3),
  .journal-section--mosaic .journal-card:nth-child(4),
  .journal-section--mosaic .journal-card:nth-child(5),
  .journal-section--mosaic .journal-card:nth-child(6) {
    grid-column: 1 / -1;
  }

  .journal-section--timeline .journal-card {
    grid-template-columns: 1fr;
  }

  .journal-section--timeline .journal-card::before,
  .journal-section--timeline .journal-card::after {
    display: none;
  }

  .journal-section--timeline {
    background: var(--journal-bg, #fffaf1);
  }
}

@media (max-width: 760px) {
  .journal-section {
    padding-block: calc(var(--journal-padding, 96px) * 0.68);
  }

  .journal-section .section-title {
    font-size: min(var(--journal-title-size, 46px), 34px);
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-section--classic .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-section--featured-split .journal-card:not(.journal-card--featured),
  .journal-section--newspaper .journal-card,
  .journal-section--newspaper .journal-card--featured,
  .journal-section--mosaic .journal-card,
  .journal-section--timeline .journal-card {
    grid-template-columns: 1fr;
  }

  .journal-section--timeline .journal-card__body {
    padding: 20px;
  }
}

.builder-widget {
  position: relative;
  overflow: hidden;
  padding-block: var(--bw-padding, 72px);
  color: var(--bw-text, var(--muted));
  background: var(--bw-bg, transparent);
}

.builder-widget--align-center {
  text-align: center;
}

.builder-widget--align-center .builder-widget__kicker,
.builder-widget--align-center .btn,
.builder-widget--align-center .text-link {
  justify-self: center;
}

.builder-widget--align-left {
  direction: ltr;
  text-align: left;
}

.builder-widget__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--bw-accent, var(--melon));
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
}

.builder-widget__kicker .material-symbols-outlined {
  font-size: 19px;
}

.builder-widget h1,
.builder-widget h2,
.builder-widget h3,
.builder-widget h4 {
  color: var(--bw-title, var(--ink));
}

.builder-widget p {
  color: var(--bw-text, var(--muted));
}

.builder-widget--tone-ink .btn-outline,
.builder-widget--tone-ink .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.builder-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: var(--bw-gap, 32px);
}

.builder-hero__copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.builder-hero__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--bw-title-size, 52px);
  line-height: 1.08;
}

.builder-hero__copy h1 span {
  color: var(--bw-accent, var(--melon));
}

.builder-hero__copy p {
  max-width: 660px;
  margin: 0;
  font-size: var(--bw-text-size, 18px);
  line-height: 1.9;
}

.builder-hero__copy .btn {
  width: fit-content;
}

.builder-hero__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: var(--bw-media-height, 360px);
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 28px);
  background: var(--bw-surface, var(--paper));
  box-shadow: var(--shadow-soft);
}

.builder-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.builder-hero--centered .builder-hero__grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.builder-hero--centered .builder-hero__copy,
.builder-hero--centered .builder-hero__copy p,
.builder-hero--centered .builder-hero__copy .btn {
  justify-self: center;
}

.builder-hero--editorial .builder-hero__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  padding: clamp(22px, var(--bw-gap, 32px), 56px);
  background: var(--bw-surface, var(--paper));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 28px);
}

.builder-hero--editorial .builder-hero__media {
  box-shadow: none;
}

.builder-hero--media-card .builder-hero__grid {
  padding: clamp(22px, var(--bw-gap, 32px), 58px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bw-accent, var(--melon)), transparent 82%), transparent 45%),
    var(--bw-surface, var(--paper));
  border-radius: var(--bw-radius, 28px);
  box-shadow: var(--shadow-soft);
}

.builder-heading__inner {
  display: grid;
  gap: 10px;
}

.builder-heading h1,
.builder-heading h2,
.builder-heading h3,
.builder-heading h4 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--bw-title-size, 42px);
  line-height: 1.18;
}

.builder-heading--accent-line .builder-heading__inner::before {
  content: "";
  width: 86px;
  height: 4px;
  background: var(--bw-accent, var(--melon));
  border-radius: 999px;
}

.builder-heading--boxed .builder-heading__inner {
  padding: clamp(20px, var(--bw-gap, 28px), 48px);
  background: var(--bw-surface, var(--paper));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 24px);
}

.builder-heading--eyebrow h1,
.builder-heading--eyebrow h2,
.builder-heading--eyebrow h3,
.builder-heading--eyebrow h4 {
  padding-inline-start: 22px;
  border-inline-start: 5px solid var(--bw-accent, var(--melon));
}

.builder-copy-block__inner {
  max-width: 860px;
  color: var(--bw-text, var(--muted));
  font-size: var(--bw-text-size, 17px);
  line-height: 1.9;
}

.builder-copy-block--card .builder-copy-block__inner,
.builder-copy-block--quote .builder-copy-block__inner,
.builder-copy-block--lead .builder-copy-block__inner {
  padding: clamp(20px, var(--bw-gap, 28px), 46px);
  background: var(--bw-card, var(--paper));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 24px);
}

.builder-copy-block--quote .builder-copy-block__inner {
  border-inline-start: 6px solid var(--bw-accent, var(--melon));
  box-shadow: var(--shadow-soft);
}

.builder-copy-block--lead .builder-copy-block__inner {
  max-width: 980px;
  font-size: calc(var(--bw-text-size, 17px) + 3px);
}

.builder-list ul {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 2), minmax(0, 1fr));
  gap: var(--bw-gap, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.builder-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  color: var(--bw-title, var(--ink));
  background: var(--bw-card, var(--paper));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 18px);
}

.builder-list__mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--bw-accent, var(--melon));
  background: color-mix(in srgb, var(--bw-accent, var(--melon)), white 86%);
  border-radius: 12px;
}

.builder-list__mark .material-symbols-outlined {
  font-size: 21px;
}

.builder-list__mark b {
  display: none;
}

.builder-list--steps .builder-list__mark .material-symbols-outlined {
  display: none;
}

.builder-list--steps .builder-list__mark b {
  display: block;
  font-family: var(--font-display);
}

.builder-list--compact ul {
  grid-template-columns: 1fr;
}

.builder-list--compact li {
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--bw-border, var(--line));
  border-radius: 0;
}

.builder-icons__grid,
.builder-product-listing__grid,
.builder-blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 3), minmax(0, 1fr));
  gap: var(--bw-gap, 22px);
}

.builder-icon-card,
.builder-product-card,
.builder-blog-card {
  display: grid;
  overflow: hidden;
  background: var(--bw-card, var(--paper));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 24px);
  box-shadow: var(--shadow-soft);
}

.builder-icon-card {
  gap: 10px;
  padding: 24px;
}

.builder-icon-card > .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--bw-accent, var(--melon));
  background: color-mix(in srgb, var(--bw-accent, var(--melon)), white 86%);
  border-radius: 18px;
  font-size: 30px;
}

.builder-icon-card h3,
.builder-icon-card p {
  margin: 0;
}

.builder-icons--strip .builder-icons__grid,
.builder-icons--minimal .builder-icons__grid {
  grid-template-columns: 1fr;
}

.builder-icons--strip .builder-icon-card {
  grid-template-columns: auto minmax(0, 0.35fr) minmax(0, 1fr);
  align-items: center;
}

.builder-icons--minimal .builder-icon-card {
  box-shadow: none;
  background: transparent;
  border-color: transparent;
  border-bottom-color: var(--bw-border, var(--line));
  border-radius: 0;
}

.builder-media-image__frame,
.builder-video__frame {
  overflow: hidden;
  margin: 0;
  background: var(--bw-card, var(--paper));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 24px);
  box-shadow: var(--shadow-soft);
}

.builder-media-image__frame img {
  display: block;
  width: 100%;
  max-height: var(--bw-media-height, 420px);
  object-fit: cover;
}

.builder-media-image__frame figcaption {
  padding: 12px 18px 16px;
  color: var(--bw-text, var(--muted));
  font-size: 14px;
}

.builder-media-image--full .container {
  max-width: none;
  padding-inline: 0;
}

.builder-media-image--full .builder-media-image__frame {
  border-radius: 0;
  border-inline: 0;
}

.builder-media-image--poster .builder-media-image__frame img {
  max-height: none;
  aspect-ratio: 4 / 5;
}

.builder-media-image--split-caption .builder-media-image__frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  align-items: stretch;
}

.builder-media-image--split-caption .builder-media-image__frame figcaption {
  display: grid;
  align-content: center;
  padding: 28px;
  font-size: var(--bw-text-size, 17px);
}

.builder-video__head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 22px;
}

.builder-video__head h2,
.builder-video__head p {
  margin: 0;
}

.builder-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.builder-video__frame video,
.builder-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.builder-video--compact .builder-video__frame {
  max-width: 760px;
}

.builder-gallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 3), minmax(0, 1fr));
  gap: var(--bw-gap, 16px);
}

.builder-gallery__item {
  overflow: hidden;
  margin: 0;
  min-height: 180px;
  border-radius: var(--bw-radius, 20px);
  background: var(--bw-card, var(--paper));
  box-shadow: var(--shadow-soft);
}

.builder-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.builder-gallery__item:hover img {
  transform: scale(1.04);
}

.builder-gallery--showcase .builder-gallery__grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
}

.builder-gallery--showcase .builder-gallery__item:first-child {
  grid-row: span 2;
  min-height: 420px;
}

.builder-gallery--strip .builder-gallery__grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  overflow-x: auto;
  padding-bottom: 8px;
}

.builder-contact,
.builder-cta {
  isolation: isolate;
}

.builder-contact__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: var(--bw-gap, 28px);
  align-items: start;
}

.builder-contact__head,
.builder-contact__form {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, var(--bw-gap, 28px), 44px);
  background: var(--bw-card, var(--paper));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 24px);
  box-shadow: var(--shadow-soft);
}

.builder-contact__head h2,
.builder-contact__head p {
  margin: 0;
}

.builder-contact__head {
  display: grid;
  gap: 12px;
}

.builder-contact__form {
  display: grid;
  gap: 16px;
}

.builder-contact__form label {
  display: grid;
  gap: 7px;
  color: var(--bw-title, var(--ink));
  font-weight: 700;
  font-size: 14px;
}

.builder-contact__form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.builder-contact__form .btn {
  width: fit-content;
}

.builder-contact__form .form-control:disabled,
.builder-contact__form .form-select:disabled,
.builder-contact__form .form-textarea:disabled,
.builder-contact__form .btn:disabled {
  opacity: 1;
  filter: none;
  cursor: default;
}

.builder-contact__form .form-control:disabled,
.builder-contact__form .form-select:disabled,
.builder-contact__form .form-textarea:disabled {
  -webkit-text-fill-color: currentColor;
}

.builder-contact--card {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--bw-accent, #e4a064) 16%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--bw-bg, #fffaf1) 82%, white 18%), var(--bw-bg, #fffaf1));
}

.builder-contact--card .builder-contact__grid {
  grid-template-columns: minmax(250px, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
}

.builder-contact--card .builder-contact__head {
  padding-block-start: calc(var(--bw-gap, 28px) + 18px);
  background: linear-gradient(160deg, color-mix(in srgb, var(--bw-accent, #e4a064) 18%, var(--bw-surface, #ffffff) 82%), var(--bw-card, #fffaf1));
  box-shadow: 0 22px 46px rgba(18, 24, 21, 0.12);
  transform: translateY(18px);
}

.builder-contact--card .builder-contact__head::before {
  content: "";
  position: absolute;
  inset-block-start: 24px;
  inset-inline-start: 24px;
  width: 56px;
  height: 6px;
  border-radius: 999px;
  background: var(--bw-accent, var(--melon));
}

.builder-contact--card .builder-contact__head::after {
  content: "";
  position: absolute;
  inset-block-end: -22px;
  inset-inline-end: -18px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--bw-accent, #e4a064) 20%, white 80%), transparent 72%);
}

.builder-contact--card .builder-contact__form {
  background: color-mix(in srgb, var(--bw-surface, #ffffff) 86%, white 14%);
  box-shadow: 0 28px 60px rgba(18, 24, 21, 0.11);
}

.builder-contact--card .builder-contact__form .form-control,
.builder-contact--card .builder-contact__form .form-select,
.builder-contact--card .builder-contact__form .form-textarea {
  background: rgba(255, 255, 255, 0.88);
  border-color: color-mix(in srgb, var(--bw-border, #ded8cc) 82%, white 18%);
}

.builder-contact--split {
  background: linear-gradient(135deg, color-mix(in srgb, var(--bw-accent, #e4a064) 12%, var(--bw-bg, #fffaf1) 88%), var(--bw-bg, #fffaf1));
}

.builder-contact--split .builder-contact__grid {
  gap: 0;
  grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.06fr);
  border: 1px solid color-mix(in srgb, var(--bw-border, #ded8cc) 72%, white 28%);
  border-radius: calc(var(--bw-radius, 24px) + 12px);
  overflow: hidden;
  background: linear-gradient(140deg, color-mix(in srgb, var(--bw-title, #121815) 90%, var(--bw-accent, #e4a064) 10%), color-mix(in srgb, var(--bw-accent, #e4a064) 40%, var(--bw-title, #121815) 60%));
  box-shadow: 0 28px 64px rgba(18, 24, 21, 0.18);
  align-items: stretch;
}

.builder-contact--split .builder-contact__head,
.builder-contact--split .builder-contact__form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.builder-contact--split .builder-contact__head {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 100%;
  background: transparent;
  color: var(--white);
}

.builder-contact--split .builder-contact__head h2,
.builder-contact--split .builder-contact__head p {
  color: inherit;
}

.builder-contact--split .builder-contact__head p {
  color: rgba(255, 255, 255, 0.74);
}

.builder-contact--split .builder-contact__head .builder-widget__kicker {
  color: color-mix(in srgb, var(--bw-accent, #e4a064) 62%, white 38%);
}

.builder-contact--split .builder-contact__form {
  margin: clamp(14px, 2.2vw, 20px);
  background: rgba(255, 255, 255, 0.97);
  border-radius: calc(var(--bw-radius, 24px) + 2px);
  box-shadow: 0 20px 42px rgba(12, 16, 14, 0.16);
}

.builder-contact--split .builder-contact__form .form-control,
.builder-contact--split .builder-contact__form .form-select,
.builder-contact--split .builder-contact__form .form-textarea {
  background: #ffffff;
}

.builder-contact--minimal {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bw-bg, #fffaf1) 88%, white 12%));
}

.builder-contact--minimal::before {
  content: "";
  position: absolute;
  inset-block-start: -72px;
  inset-inline-start: 50%;
  width: 240px;
  height: 240px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--bw-accent, #e4a064) 18%, white 82%), transparent 72%);
  pointer-events: none;
}

.builder-contact--minimal .builder-contact__grid {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-inline: auto;
  gap: 18px;
}

.builder-contact--minimal .builder-contact__head {
  max-width: 640px;
  margin-inline: auto;
  padding: 0 0 10px;
  text-align: center;
  box-shadow: none;
  background: transparent;
  border-color: transparent;
}

.builder-contact--minimal .builder-contact__form {
  max-width: 720px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.builder-contact--minimal .builder-contact__form label {
  color: var(--bw-text, var(--muted));
  font-weight: 600;
}

.builder-contact--minimal .builder-contact__form .form-control,
.builder-contact--minimal .builder-contact__form .form-select,
.builder-contact--minimal .builder-contact__form .form-textarea {
  background: rgba(255, 255, 255, 0.68);
  border-color: color-mix(in srgb, var(--bw-border, #ded8cc) 82%, white 18%);
  border-radius: 22px;
  box-shadow: none;
}

.builder-contact--minimal .builder-contact__form .btn {
  justify-self: center;
  min-width: min(100%, 240px);
}

.builder-contact--panel {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bw-title, #121815) 8%, var(--bw-bg, #fffaf1) 92%), var(--bw-bg, #fffaf1));
}

.builder-contact--panel .builder-contact__grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid color-mix(in srgb, var(--bw-title, #121815) 84%, white 16%);
  border-radius: calc(var(--bw-radius, 24px) + 14px);
  background: linear-gradient(145deg, color-mix(in srgb, var(--bw-title, #121815) 94%, var(--bw-accent, #e4a064) 6%), color-mix(in srgb, var(--bw-accent, #e4a064) 24%, var(--bw-title, #121815) 76%));
  box-shadow: 0 28px 68px rgba(18, 24, 21, 0.22);
  align-items: stretch;
}

.builder-contact--panel .builder-contact__head,
.builder-contact--panel .builder-contact__form {
  min-height: 100%;
}

.builder-contact--panel .builder-contact__head {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: var(--white);
}

.builder-contact--panel .builder-contact__head h2,
.builder-contact--panel .builder-contact__head p {
  color: inherit;
}

.builder-contact--panel .builder-contact__head p {
  color: rgba(255, 255, 255, 0.74);
}

.builder-contact--panel .builder-contact__head .builder-widget__kicker {
  color: color-mix(in srgb, var(--bw-accent, #e4a064) 60%, white 40%);
}

.builder-contact--panel .builder-contact__form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.builder-contact--panel .builder-contact__form .form-control,
.builder-contact--panel .builder-contact__form .form-select,
.builder-contact--panel .builder-contact__form .form-textarea {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(18, 24, 21, 0.14);
}

.builder-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: var(--bw-gap, 28px);
  align-items: center;
}

.builder-cta__copy,
.builder-cta__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, var(--bw-gap, 28px), 42px);
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 28px);
}

.builder-cta__copy {
  display: grid;
  gap: 16px;
  background: color-mix(in srgb, var(--bw-surface, var(--paper)) 82%, transparent);
  box-shadow: var(--shadow-soft);
}

.builder-cta__copy h2,
.builder-cta__copy p {
  margin: 0;
}

.builder-cta__copy h2 {
  font-family: var(--font-display);
  font-size: var(--bw-title-size, 46px);
  line-height: 1.12;
  color: var(--bw-title, var(--ink));
}

.builder-cta__copy .rich-text,
.builder-cta__copy .rich-text p {
  color: var(--bw-text, var(--muted));
  font-size: var(--bw-text-size, 18px);
  line-height: 1.85;
}

.builder-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.builder-cta__panel {
  display: grid;
  align-content: center;
  background: var(--cta-panel, var(--bw-card, var(--paper)));
  box-shadow: var(--shadow-soft);
}

.builder-cta__points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.builder-cta__points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  color: var(--bw-title, var(--ink));
  background: var(--cta-point-bg, var(--white));
  border: 1px solid var(--cta-point-border, var(--bw-border, var(--line)));
  border-radius: calc(var(--bw-radius, 28px) - 10px);
}

.builder-cta__points .material-symbols-outlined {
  color: var(--bw-accent, var(--melon));
}

.builder-cta--classic {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--bw-accent, #e4a064) 18%, transparent), transparent 36%),
    linear-gradient(180deg, color-mix(in srgb, var(--bw-bg, #fffaf1) 86%, white 14%), var(--bw-bg, #fffaf1));
}

.builder-cta--classic .builder-cta__grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid color-mix(in srgb, var(--bw-border, #ded8cc) 72%, white 28%);
  border-radius: calc(var(--bw-radius, 28px) + 14px);
  background: linear-gradient(145deg, color-mix(in srgb, var(--bw-title, #121815) 92%, var(--bw-accent, #e4a064) 8%), color-mix(in srgb, var(--bw-accent, #e4a064) 34%, var(--bw-title, #121815) 66%));
  box-shadow: 0 28px 64px rgba(18, 24, 21, 0.18);
  align-items: stretch;
}

.builder-cta--classic .builder-cta__copy {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.builder-cta--classic .builder-cta__copy h2,
.builder-cta--classic .builder-cta__copy .rich-text,
.builder-cta--classic .builder-cta__copy .rich-text p {
  color: var(--white);
}

.builder-cta--classic .builder-widget__kicker {
  color: color-mix(in srgb, var(--bw-accent, #e4a064) 62%, white 38%);
}

.builder-cta--classic .builder-cta__copy .btn-outline,
.builder-cta--classic .builder-cta__copy .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.builder-cta--classic .builder-cta__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.92));
  border-color: transparent;
  box-shadow: none;
}

.builder-cta--split {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bw-bg, #fffaf1) 90%, white 10%));
}

.builder-cta--split .builder-cta__grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  align-items: stretch;
}

.builder-cta--split .builder-cta__copy {
  padding-inline-start: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.builder-cta--split .builder-cta__copy::after {
  content: "";
  position: absolute;
  inset-block: 10px;
  inset-inline-end: 0;
  width: 1px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bw-accent, #e4a064) 78%, transparent), transparent);
}

.builder-cta--split .builder-cta__panel {
  background: linear-gradient(180deg, var(--cta-panel, var(--bw-card, #fffaf1)), color-mix(in srgb, var(--cta-panel, #1b241f) 78%, black 22%));
  border-color: color-mix(in srgb, var(--bw-border, #ded8cc) 40%, white 60%);
  box-shadow: 0 22px 48px rgba(18, 24, 21, 0.18);
}

.builder-cta--split .builder-cta__panel .builder-cta__points li {
  color: color-mix(in srgb, var(--bw-title, #121815) 18%, white 82%);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.builder-cta--split .builder-cta__panel .builder-cta__points .material-symbols-outlined {
  color: color-mix(in srgb, var(--bw-accent, #e4a064) 66%, white 34%);
}

.builder-cta--minimal {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bw-bg, #fffaf1) 88%, white 12%));
}

.builder-cta--minimal .builder-cta__grid {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-inline: auto;
  gap: 18px;
}

.builder-cta--minimal .builder-cta__copy {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.builder-cta--minimal .builder-cta__copy::after {
  content: "";
  width: 84px;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bw-accent, #e4a064) 72%, transparent);
}

.builder-cta--minimal .builder-widget__kicker {
  justify-self: center;
}

.builder-cta--minimal .builder-cta__actions {
  justify-content: center;
}

.builder-cta--minimal .builder-cta__panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.builder-cta--minimal .builder-cta__points {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.builder-cta--minimal .builder-cta__points li {
  min-height: 100%;
  text-align: start;
  background: color-mix(in srgb, var(--bw-surface, #ffffff) 86%, transparent);
  border-color: color-mix(in srgb, var(--bw-border, #ded8cc) 80%, white 20%);
}

.builder-cta--band {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bw-bg, #fffaf1) 84%, white 16%), var(--bw-bg, #fffaf1));
}

.builder-cta--band .builder-cta__grid {
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(18px, 2.4vw, 24px) clamp(22px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--bw-border, #ded8cc) 82%, white 18%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bw-card, #fffaf1) 86%, white 14%);
  box-shadow: 0 18px 40px rgba(18, 24, 21, 0.1);
  align-items: center;
}

.builder-cta--band .builder-cta__copy,
.builder-cta--band .builder-cta__panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.builder-cta--band .builder-cta__copy {
  align-items: center;
  text-align: start;
}

.builder-cta--band .builder-cta__copy h2 {
  font-size: min(var(--bw-title-size, 46px), 40px);
}

.builder-cta--band .builder-cta__actions {
  justify-content: flex-start;
}

.builder-cta--band .builder-cta__panel {
  align-self: center;
}

.builder-cta--band .builder-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.builder-cta--band .builder-cta__points li {
  display: inline-flex;
  align-items: center;
  width: auto;
  white-space: nowrap;
  border-radius: 999px;
  padding: 12px 18px;
}

.builder-product-card__image,
.builder-blog-card__image {
  position: relative;
  display: block;
  height: var(--bw-media-height, 220px);
  overflow: hidden;
}

.builder-product-card__image img,
.builder-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.builder-product-card__image .tag {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
}

.builder-product-card__body,
.builder-blog-card__body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.builder-product-card h3,
.builder-blog-card h3,
.builder-product-card p,
.builder-blog-card p {
  margin: 0;
}

.builder-product-card h3 a,
.builder-blog-card h3 a {
  color: var(--bw-title, var(--ink));
}

.builder-product-listing--featured .builder-product-card--featured,
.builder-blog-listing--featured .builder-blog-card--featured {
  grid-column: span 2;
}

.builder-product-listing--compact .builder-product-listing__grid,
.builder-blog-listing--rows .builder-blog-listing__grid,
.builder-blog-listing--compact .builder-blog-listing__grid {
  grid-template-columns: 1fr;
}

.builder-product-listing--compact .builder-product-card,
.builder-blog-listing--rows .builder-blog-card,
.builder-blog-listing--compact .builder-blog-card {
  grid-template-columns: 220px minmax(0, 1fr);
}

.builder-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--bw-text, var(--muted));
  font-size: 13px;
}

.blog-archive .builder-blog-card__meta {
  color: var(--archive-meta, var(--bw-text, var(--muted)));
}

@media (max-width: 980px) {
  .builder-hero__grid,
  .builder-hero--editorial .builder-hero__grid,
  .builder-cta__grid,
  .builder-contact__grid,
  .builder-media-image--split-caption .builder-media-image__frame,
  .builder-product-listing--compact .builder-product-card,
  .builder-blog-listing--rows .builder-blog-card,
  .builder-blog-listing--compact .builder-blog-card {
    grid-template-columns: 1fr;
  }

  .builder-icons__grid,
  .builder-product-listing__grid,
  .builder-blog-listing__grid,
  .builder-gallery__grid,
  .builder-list ul,
  .builder-gallery--showcase .builder-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-product-listing--featured .builder-product-card--featured,
  .builder-blog-listing--featured .builder-blog-card--featured {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .builder-widget {
    padding-block: calc(var(--bw-padding, 72px) * 0.66);
  }

  .builder-hero__copy h1,
  .builder-heading h1,
  .builder-heading h2,
  .builder-heading h3,
  .builder-heading h4 {
    font-size: min(var(--bw-title-size, 42px), 34px);
  }

  .builder-icons__grid,
  .builder-product-listing__grid,
  .builder-blog-listing__grid,
  .builder-gallery__grid,
  .builder-list ul,
  .builder-gallery--showcase .builder-gallery__grid,
  .builder-contact__form .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ Extra multi-purpose blocks ============ */
.builder-stats__head,
.builder-testimonials__head,
.builder-faq__head,
.builder-team__head,
.builder-timeline__head,
.builder-pricing__head,
.builder-cards__head {
  margin-bottom: 2.25rem;
  max-width: 720px;
}
.builder-widget--align-center .builder-stats__head,
.builder-widget--align-center .builder-testimonials__head,
.builder-widget--align-center .builder-faq__head,
.builder-widget--align-center .builder-team__head,
.builder-widget--align-center .builder-timeline__head,
.builder-widget--align-center .builder-pricing__head,
.builder-widget--align-center .builder-cards__head {
  margin-inline: auto;
}
.builder-stats__head h2,
.builder-testimonials__head h2,
.builder-faq__head h2,
.builder-team__head h2,
.builder-timeline__head h2,
.builder-pricing__head h2,
.builder-cards__head h2,
.builder-buttons__head h2,
.builder-banner__copy h2 {
  margin: 0.35rem 0;
  font-size: var(--bw-title-size, 32px);
  color: var(--bw-title, inherit);
}
.builder-stats__head p,
.builder-faq__head p,
.builder-timeline__head p,
.builder-pricing__head p,
.builder-buttons__head p {
  margin: 0;
  color: var(--bw-text, var(--muted));
  font-size: var(--bw-text-size, 1rem);
}

/* Stats counter */
.builder-stats__grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 4), minmax(0, 1fr));
  gap: var(--bw-gap, 1.5rem);
}
.builder-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.75rem 1.25rem;
}
.builder-stat__icon {
  font-size: 2.2rem;
  color: var(--bw-accent, var(--color-primary));
}
.builder-stat__value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--bw-title, inherit);
  line-height: 1.1;
}
.builder-stat__label {
  color: var(--bw-text, var(--muted));
  font-size: var(--bw-text-size, 0.98rem);
}
.builder-stats--cards .builder-stat {
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--bw-radius, 18px);
}
.builder-stats--boxed .builder-stats__grid {
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--bw-radius, 18px);
  padding: 1.5rem;
}
.builder-stats--boxed .builder-stat + .builder-stat {
  border-inline-start: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
}
.builder-stats--inline .builder-stat {
  flex-direction: row;
  text-align: start;
  align-items: center;
  gap: 1rem;
}
.builder-stats--split .builder-stats__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 2.5rem;
  align-items: center;
}
.builder-stats--split .builder-stats__head {
  margin-bottom: 0;
}

/* Testimonials */
.builder-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 3), minmax(0, 1fr));
  gap: var(--bw-gap, 1.5rem);
}
.builder-testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 1.75rem;
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--bw-radius, 18px);
}
.builder-testimonial__mark {
  font-size: 2rem;
  color: var(--bw-accent, var(--color-primary));
  opacity: 0.55;
}
.builder-testimonial__quote {
  margin: 0;
  font-size: var(--bw-text-size, 1.05rem);
  line-height: 1.7;
  color: var(--bw-text, inherit);
}
.builder-testimonial__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
}
.builder-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: var(--bw-accent, var(--color-primary));
  color: #fff;
}
.builder-testimonial__meta {
  display: flex;
  flex-direction: column;
}
.builder-testimonial__meta strong {
  color: var(--bw-title, inherit);
}
.builder-testimonial__meta span {
  font-size: 0.85rem;
  color: var(--bw-text, var(--muted));
}
.builder-testimonials--quote .builder-testimonial {
  background: transparent;
  border: none;
  border-inline-start: 4px solid var(--bw-accent, var(--color-primary));
  border-radius: 0;
}
.builder-testimonials--minimal .builder-testimonial {
  background: transparent;
  border: none;
  padding: 0.75rem 0;
}
.builder-testimonials--bubble .builder-testimonial__quote {
  background: var(--bw-card, rgba(0, 0, 0, 0.04));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: 18px;
  padding: 1.25rem;
}
.builder-testimonials--bubble .builder-testimonial {
  background: transparent;
  border: none;
  padding: 0;
}

/* FAQ */
.builder-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.builder-faq__item {
  border-bottom: 1px solid var(--bw-border, rgba(0, 0, 0, 0.1));
}
.builder-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
  color: var(--bw-title, inherit);
}
.builder-faq__question::-webkit-details-marker {
  display: none;
}
.builder-faq__icon {
  color: var(--bw-accent, var(--color-primary));
  transition: transform 0.2s ease;
}
.builder-faq__item[open] .builder-faq__icon {
  transform: rotate(45deg);
}
.builder-faq__answer {
  padding: 0 0 1.1rem;
  color: var(--bw-text, var(--muted));
  line-height: 1.7;
}
.builder-faq__answer p {
  margin: 0;
}
.builder-faq--cards .builder-faq__item,
.builder-faq--bordered .builder-faq__item {
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.1));
  border-radius: var(--bw-radius, 14px);
  padding-inline: 1.25rem;
}
.builder-faq--cards .builder-faq__item {
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
}
.builder-faq--split .builder-faq__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 2.5rem;
  align-items: start;
}
.builder-faq--split .builder-faq__head {
  margin-bottom: 0;
}

/* Team */
.builder-team__grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 4), minmax(0, 1fr));
  gap: var(--bw-gap, 1.5rem);
}
.builder-team__member {
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--bw-radius, 18px);
  overflow: hidden;
  text-align: center;
}
.builder-team__photo {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: var(--bw-surface, rgba(0, 0, 0, 0.05));
  overflow: hidden;
}
.builder-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.builder-team__placeholder {
  font-size: 3rem;
  color: var(--bw-accent, var(--color-primary));
}
.builder-team__body {
  padding: 1.1rem;
}
.builder-team__body h3 {
  margin: 0 0 0.25rem;
  color: var(--bw-title, inherit);
}
.builder-team__role {
  display: block;
  color: var(--bw-text, var(--muted));
  font-size: 0.9rem;
}
.builder-team__icon {
  margin-top: 0.5rem;
  color: var(--bw-accent, var(--color-primary));
}
.builder-team--circle .builder-team__member {
  background: transparent;
  border: none;
}
.builder-team--circle .builder-team__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto;
}
.builder-team--minimal .builder-team__member {
  background: transparent;
  border: none;
}
.builder-team--overlay .builder-team__member {
  position: relative;
}
.builder-team--overlay .builder-team__photo {
  aspect-ratio: 3 / 4;
}
.builder-team--overlay .builder-team__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  color: #fff;
}
.builder-team--overlay .builder-team__body h3,
.builder-team--overlay .builder-team__role {
  color: #fff;
}

/* Timeline */
.builder-timeline__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.builder-timeline__track::before {
  content: "";
  position: absolute;
  inset-inline-start: 18px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--bw-border, rgba(0, 0, 0, 0.12));
}
.builder-timeline__item {
  position: relative;
  padding-inline-start: 56px;
  padding-bottom: 1.75rem;
}
.builder-timeline__marker {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bw-accent, var(--color-primary));
  color: #fff;
  font-size: 1.2rem;
}
.builder-timeline__date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bw-accent, var(--color-primary));
}
.builder-timeline__content h3 {
  margin: 0.2rem 0;
  color: var(--bw-title, inherit);
}
.builder-timeline__content p {
  margin: 0;
  color: var(--bw-text, var(--muted));
}
.builder-timeline--cards .builder-timeline__content {
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--bw-radius, 14px);
  padding: 1.1rem 1.25rem;
}
.builder-timeline--compact .builder-timeline__item {
  padding-bottom: 1rem;
}
.builder-timeline--alternate .builder-timeline__track::before {
  inset-inline-start: 50%;
}
.builder-timeline--alternate .builder-timeline__item {
  width: 50%;
  padding-inline-start: 0;
  padding-inline-end: 48px;
  text-align: end;
}
.builder-timeline--alternate .builder-timeline__item:nth-child(even) {
  margin-inline-start: 50%;
  padding-inline-end: 0;
  padding-inline-start: 48px;
  text-align: start;
}
.builder-timeline--alternate .builder-timeline__marker {
  inset-inline-start: auto;
  inset-inline-end: -19px;
}
.builder-timeline--alternate .builder-timeline__item:nth-child(even) .builder-timeline__marker {
  inset-inline-end: auto;
  inset-inline-start: -19px;
}

/* Logos */
.builder-logos__title {
  text-align: center;
  margin: 0 0 1.5rem;
  color: var(--bw-text, var(--muted));
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.builder-logos__grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 5), minmax(0, 1fr));
  gap: var(--bw-gap, 1.5rem);
  align-items: center;
}
.builder-logo {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  min-height: 70px;
}
.builder-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}
.builder-logo__text {
  font-weight: 700;
  color: var(--bw-text, var(--muted));
}
.builder-logos--boxed .builder-logo {
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--bw-radius, 14px);
}
.builder-logos--strip .builder-logos__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.builder-logos--strip .builder-logo {
  flex: 1 1 120px;
}
.builder-logos--mono .builder-logo img {
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.builder-logos--mono .builder-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Pricing */
.builder-pricing__grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 3), minmax(0, 1fr));
  gap: var(--bw-gap, 1.5rem);
  align-items: stretch;
}
.builder-price {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2rem 1.75rem;
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--bw-radius, 18px);
}
.builder-price--featured {
  border-color: var(--bw-accent, var(--color-primary));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}
.builder-price__badge {
  position: absolute;
  top: -12px;
  inset-inline-start: 1.75rem;
  background: var(--bw-accent, var(--color-primary));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}
.builder-price__head h3 {
  margin: 0 0 0.5rem;
  color: var(--bw-title, inherit);
}
.builder-price__amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.builder-price__amount strong {
  font-size: 2.2rem;
  color: var(--bw-title, inherit);
}
.builder-price__amount span {
  color: var(--bw-text, var(--muted));
  font-size: 0.9rem;
}
.builder-price__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.builder-price__features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bw-text, inherit);
}
.builder-price__features .material-symbols-outlined {
  color: var(--bw-accent, var(--color-primary));
  font-size: 1.2rem;
}
.builder-price__cta {
  margin-top: auto;
  justify-content: center;
}
.builder-pricing--compact .builder-price {
  padding: 1.5rem 1.25rem;
  gap: 0.75rem;
}
.builder-pricing--table .builder-pricing__grid {
  gap: 0;
}
.builder-pricing--table .builder-price {
  border-radius: 0;
  border-inline-start-width: 0;
}
.builder-pricing--table .builder-price:first-child {
  border-inline-start-width: 1px;
  border-start-start-radius: var(--bw-radius, 18px);
  border-end-start-radius: var(--bw-radius, 18px);
}
.builder-pricing--table .builder-price:last-child {
  border-start-end-radius: var(--bw-radius, 18px);
  border-end-end-radius: var(--bw-radius, 18px);
}

/* Content cards */
.builder-cards__grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 3), minmax(0, 1fr));
  gap: var(--bw-gap, 1.5rem);
}
.builder-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.75rem;
  background: var(--bw-card, rgba(0, 0, 0, 0.03));
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--bw-radius, 18px);
}
.builder-card__icon {
  font-size: 2.2rem;
  color: var(--bw-accent, var(--color-primary));
}
.builder-card__media {
  margin: -1.75rem -1.75rem 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--bw-radius, 18px) var(--bw-radius, 18px) 0 0;
}
.builder-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.builder-card__body h3 {
  margin: 0 0 0.4rem;
  color: var(--bw-title, inherit);
}
.builder-card__body p {
  margin: 0 0 0.6rem;
  color: var(--bw-text, var(--muted));
}
.builder-cards--horizontal .builder-card {
  flex-direction: row;
  align-items: center;
}
.builder-cards--horizontal .builder-card__media {
  margin: 0;
  width: 40%;
  flex-shrink: 0;
  border-radius: var(--bw-radius, 18px);
  aspect-ratio: 1 / 1;
}
.builder-cards--minimal .builder-card {
  background: transparent;
  border: none;
  padding: 0.75rem 0;
}
.builder-cards--overlay .builder-card {
  position: relative;
  padding: 0;
  min-height: 240px;
  justify-content: flex-end;
}
.builder-cards--overlay .builder-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: var(--bw-radius, 18px);
  aspect-ratio: auto;
}
.builder-cards--overlay .builder-card__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  border-radius: 0 0 var(--bw-radius, 18px) var(--bw-radius, 18px);
}
.builder-cards--overlay .builder-card__body h3 {
  color: #fff;
}

/* Buttons group */
.builder-buttons__head {
  margin-bottom: 1.5rem;
}
.builder-buttons__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.builder-buttons--centered .builder-buttons__group,
.builder-widget--align-center .builder-buttons__group {
  justify-content: center;
}
.builder-buttons--stacked .builder-buttons__group {
  flex-direction: column;
  align-items: flex-start;
}
.builder-buttons--pill .builder-buttons__group .btn {
  border-radius: 999px;
}

/* Banner */
.builder-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: var(--bw-radius, 18px);
  background: var(--bw-card, var(--color-primary));
}
.builder-banner__icon {
  font-size: 2.4rem;
  color: var(--bw-accent, currentColor);
  flex-shrink: 0;
}
.builder-banner__copy {
  flex: 1;
}
.builder-banner__copy h2 {
  margin: 0 0 0.25rem;
}
.builder-banner__copy p {
  margin: 0;
  color: var(--bw-text, inherit);
  opacity: 0.92;
}
.builder-banner__cta {
  flex-shrink: 0;
}
.builder-banner--gradient .builder-banner__inner {
  background: linear-gradient(120deg, var(--bw-accent, var(--color-primary)), var(--bw-card, var(--color-secondary, #333)));
}
.builder-banner--outline .builder-banner__inner {
  background: transparent;
  border: 1px solid var(--bw-border, rgba(0, 0, 0, 0.18));
}
.builder-banner--split .builder-banner__inner {
  justify-content: space-between;
}

@media (max-width: 980px) {
  .builder-stats__grid,
  .builder-team__grid,
  .builder-logos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-testimonials__grid,
  .builder-pricing__grid,
  .builder-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-stats--split .builder-stats__inner,
  .builder-faq--split .builder-faq__inner {
    grid-template-columns: 1fr;
  }

  .builder-pricing--table .builder-price {
    border-radius: var(--bw-radius, 18px);
    border-inline-start-width: 1px;
  }
  .builder-pricing--table .builder-pricing__grid {
    gap: var(--bw-gap, 1.5rem);
  }
}

@media (max-width: 680px) {
  .builder-stats__grid,
  .builder-team__grid,
  .builder-logos__grid,
  .builder-testimonials__grid,
  .builder-pricing__grid,
  .builder-cards__grid {
    grid-template-columns: 1fr;
  }

  .builder-stats--boxed .builder-stat + .builder-stat {
    border-inline-start: none;
    border-top: 1px solid var(--bw-border, rgba(0, 0, 0, 0.08));
  }

  .builder-cards--horizontal .builder-card {
    flex-direction: column;
    align-items: stretch;
  }
  .builder-cards--horizontal .builder-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .builder-timeline--alternate .builder-timeline__track::before {
    inset-inline-start: 18px;
  }
  .builder-timeline--alternate .builder-timeline__item,
  .builder-timeline--alternate .builder-timeline__item:nth-child(even) {
    width: 100%;
    margin-inline-start: 0;
    padding-inline-start: 56px;
    padding-inline-end: 0;
    text-align: start;
  }
  .builder-timeline--alternate .builder-timeline__marker,
  .builder-timeline--alternate .builder-timeline__item:nth-child(even) .builder-timeline__marker {
    inset-inline-start: 0;
    inset-inline-end: auto;
  }

  .builder-price--featured {
    transform: none;
  }

  .builder-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
  }
}

.inner-hero {
  padding: 86px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(220, 232, 202, 0.42)),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.inner-hero__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  align-items: center;
}

.inner-hero__copy h1,
.contact-studio__info h1,
.product-detail-hero__copy h1,
.article-hero__copy h1 {
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 76px);
}

.inner-hero__copy p,
.contact-studio__info p,
.product-detail-hero__copy .lead,
.article-hero__copy p {
  max-width: 720px;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 22px);
}

.inner-hero__image {
  height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px 36px 90px 36px;
  box-shadow: var(--shadow);
}

.inner-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-hero__stats,
.journal-hero__note {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--white);
  background: var(--ink);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.catalog-hero__stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.catalog-hero__stats strong {
  color: var(--melon);
  font-family: var(--font-display);
  font-size: 40px;
}

.catalog-hero {
  position: relative;
  padding: var(--bw-padding, 86px) 0 calc(var(--bw-padding, 86px) * 0.82);
  isolation: isolate;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bw-card, var(--paper)) 82%, transparent), color-mix(in srgb, var(--bw-surface, var(--mint)) 42%, transparent)),
    var(--bw-bg, var(--cream));
}

.catalog-hero::before,
.catalog-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.catalog-hero::before {
  z-index: -2;
  opacity: var(--catalog-hero-bg-opacity, 0);
  background-image: var(--catalog-hero-bg-image, none);
  background-position: var(--catalog-hero-bg-position, center center);
  background-size: var(--catalog-hero-bg-size, cover);
  background-repeat: no-repeat;
}

.catalog-hero::after {
  z-index: -1;
  opacity: var(--catalog-hero-overlay-opacity, 0);
  background: var(--catalog-hero-overlay, var(--ink));
}

.catalog-hero .inner-hero__copy h1 {
  max-width: 820px;
  color: var(--bw-title, var(--ink));
  font-size: clamp(38px, 5.2vw, var(--bw-title-size, 64px));
}

.catalog-hero .inner-hero__copy p {
  color: var(--bw-text, var(--ink-2));
  font-size: var(--bw-text-size, 21px);
}

.catalog-hero .eyebrow {
  color: var(--bw-accent, var(--copper));
}

.catalog-hero .catalog-hero__stats {
  gap: var(--catalog-stats-gap, 14px);
  color: var(--catalog-stats-text, var(--white));
  background: var(--catalog-stats-bg, var(--ink));
  border-radius: var(--catalog-stats-radius, 30px);
}

.catalog-hero .catalog-hero__stats strong {
  color: var(--catalog-stats-value, var(--bw-accent, var(--melon)));
}

.catalog-hero .catalog-hero__stats div {
  background: var(--catalog-stats-card, transparent);
  border-color: var(--catalog-stats-border, rgba(255, 255, 255, 0.12));
  border-radius: var(--catalog-stats-item-radius, 18px);
}

.catalog-hero--centered .inner-hero__grid,
.catalog-hero--minimal .inner-hero__grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.catalog-hero--centered .catalog-hero__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin-inline: auto;
}

.catalog-hero--minimal .catalog-hero__stats {
  display: none;
}

.catalog-hero--split .catalog-hero__stats {
  background: var(--bw-card, var(--paper));
  color: var(--bw-title, var(--ink));
}

.catalog-hero--tone-ink .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.journal-hero__note .material-symbols-outlined {
  color: var(--melon);
  font-size: 44px;
}

.journal-hero__note strong {
  font-family: var(--font-display);
  font-size: 28px;
}

.journal-hero__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-section {
  padding: var(--bw-padding, 96px) 0;
  background: var(--bw-bg, var(--paper));
}

.catalog-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.catalog-filter {
  position: sticky;
  top: 100px;
  display: grid;
  gap: var(--catalog-filter-gap, 8px);
  padding: var(--catalog-filter-padding, 22px);
  background: var(--catalog-filter-bg, var(--bw-surface, var(--cream)));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 28px);
  box-shadow: var(--shadow-soft);
}

.catalog-filter h2 {
  color: var(--bw-title, var(--ink));
  margin-top: 4px;
  font-size: 26px;
}

.catalog-filter nav {
  display: grid;
  gap: var(--catalog-filter-gap, 8px);
}

.catalog-filter a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: var(--catalog-filter-link-radius, 16px);
  background: var(--catalog-filter-link-bg, transparent);
  font-weight: 800;
}

.catalog-section--filter-dividers .catalog-filter a + a {
  border-top-color: var(--catalog-filter-divider, var(--line));
}

.catalog-filter a:hover,
.catalog-filter a.is-active {
  color: var(--catalog-filter-active-text, var(--white));
  background: var(--catalog-filter-active-bg, var(--bw-title, var(--ink)));
}

.catalog-filter small {
  color: inherit;
  opacity: 0.72;
}

.catalog-results {
  display: grid;
  gap: 24px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  background: color-mix(in srgb, var(--bw-surface, var(--cream)) 74%, transparent);
  border: 1px solid var(--bw-border, var(--line));
  border-radius: 24px;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(var(--bw-columns, 3), minmax(0, 1fr));
  gap: var(--bw-gap, 20px);
}

.catalog-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-card {
  overflow: hidden;
  background: var(--bw-card, var(--cream));
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 28px);
  box-shadow: var(--shadow-soft);
}

.catalog-card__image {
  position: relative;
  display: block;
  height: var(--bw-media-height, 260px);
  overflow: hidden;
  background: #e8ddce;
}

.catalog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.catalog-card__image .tag {
  position: absolute;
  top: 14px;
  right: 14px;
}

.catalog-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.catalog-card h2 {
  color: var(--bw-title, var(--ink));
  font-size: 25px;
}

.catalog-card p {
  margin: 0;
  color: var(--bw-text, var(--muted));
}

.catalog-section--topbar .catalog-layout,
.catalog-section--cards-only .catalog-layout,
.catalog-section--no-filter .catalog-layout {
  grid-template-columns: 1fr;
}

.catalog-section--topbar .catalog-filter {
  position: relative;
  top: auto;
}

.catalog-section--topbar .catalog-filter nav {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.catalog-section--topbar-align-right .catalog-filter nav {
  justify-items: stretch;
  text-align: right;
}

.catalog-section--topbar-align-center .catalog-filter {
  text-align: center;
}

.catalog-section--topbar-align-center .catalog-filter nav {
  justify-content: center;
}

.catalog-section--topbar-align-center .catalog-filter a {
  justify-content: center;
}

.catalog-section--topbar-align-left .catalog-filter {
  text-align: left;
}

.catalog-section--topbar-align-left .catalog-filter nav {
  direction: ltr;
}

.catalog-section--topbar-align-space-between .catalog-filter nav {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.catalog-section--cards-only .catalog-filter,
.catalog-section--no-filter .catalog-filter,
.catalog-section--no-search .search-form {
  display: none;
}

.catalog-section--compact .catalog-layout {
  grid-template-columns: 240px minmax(0, 1fr);
}

.catalog-section--compact .catalog-card__body {
  gap: 8px;
  padding: 16px;
}

.catalog-section--compact .catalog-card h2 {
  font-size: 20px;
}

.catalog-section--tone-ink {
  --bw-bg: #121815;
  --bw-surface: #24302b;
  --bw-card: #1b241f;
  --bw-title: #ffffff;
  --bw-text: #d5ddd7;
  --bw-border: #52665a;
}

.journal-list {
  display: grid;
  gap: 18px;
}

.journal-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  padding: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.journal-row__image {
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
}

.journal-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.journal-row__body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding-left: 12px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.journal-row h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.contact-studio {
  padding: 82px 0 96px;
  background:
    linear-gradient(135deg, rgba(18, 24, 21, 0.92), rgba(63, 96, 70, 0.88)),
    var(--ink);
  color: var(--white);
}

.contact-studio__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: start;
}

.contact-studio .eyebrow {
  color: var(--melon);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-studio__info p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-route-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-route {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.contact-route > .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--melon);
  border-radius: 16px;
}

.contact-route span:last-child {
  display: grid;
  min-width: 0;
}

.contact-route small {
  color: rgba(255, 255, 255, 0.68);
}

.contact-form {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.contact-form__head,
.contact-form__body {
  padding: 28px;
}

.contact-form__head {
  background: linear-gradient(135deg, rgba(220, 232, 202, 0.75), rgba(255, 250, 241, 0.8));
  border-bottom: 1px solid var(--line);
}

.contact-form__head h2 {
  margin-top: 8px;
  font-size: 34px;
}

.contact-form__head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.form-control,
.form-select,
.form-textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 24, 21, 0.16);
  border-radius: 16px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-control,
.form-select {
  min-height: 50px;
  padding: 0 15px;
}

.form-textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  background: var(--white);
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(183, 111, 63, 0.14);
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.company-narrative__grid {
  grid-template-columns: 260px minmax(0, 1fr);
}

.narrative-index {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 28px;
}

.narrative-index span {
  color: var(--melon);
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
}

.narrative-index strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.4;
}

.content {
  color: var(--ink-2);
}

.content .rich-text,
.rich-text {
  color: var(--ink-2);
}

.rich-text > *:first-child {
  margin-top: 0;
}

.rich-text > *:last-child {
  margin-bottom: 0;
}

.rich-text h2,
.rich-text h3 {
  margin-top: 1.5em;
}

.rich-text p {
  margin: 0 0 1em;
}

.rich-text ul,
.rich-text ol {
  padding-inline-start: 1.3em;
}

.rich-text--compact p {
  margin-bottom: 0.7em;
}

.operating-model {
  background: var(--paper);
}

.operating-model__grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.operating-model__image {
  height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.operating-model__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.operating-model__cards {
  display: grid;
  gap: 18px;
}

.value-panel,
.value-chip,
.fact-panel,
.nutrition-panel,
.content-card,
.article-body,
.article-aside__panel,
.system-message__panel,
.empty-state {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.value-panel {
  padding: 30px;
}

.value-panel .material-symbols-outlined {
  color: var(--copper);
  font-size: 38px;
}

.value-panel h2 {
  margin-top: 12px;
  font-size: 34px;
}

.value-panel p,
.value-chip p,
.fact-panel p,
.nutrition-panel p {
  color: var(--muted);
}

.values-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-chip {
  padding: 24px;
}

.value-chip span {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 36px;
}

.value-chip h3 {
  margin-top: 12px;
  font-size: 26px;
}

.product-detail-hero,
.article-hero {
  padding: var(--bw-padding, 82px) 0;
  background: var(--bw-bg, var(--paper));
  border-bottom: 1px solid var(--bw-border, var(--line));
}

.product-detail-hero__grid,
.article-hero__grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  align-items: center;
}

.product-detail-hero__image,
.article-hero__image {
  position: relative;
  height: var(--bw-media-height, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 40px);
  box-shadow: var(--shadow);
}

.product-detail-hero__copy h1 {
  color: var(--bw-title, var(--ink));
  font-size: clamp(38px, 5.8vw, var(--bw-title-size, 68px));
}

.product-detail-hero__copy .lead {
  color: var(--bw-text, var(--ink-2));
  font-size: var(--bw-text-size, 19px);
}

.product-detail-hero--media-left .product-detail-hero__image {
  order: 2;
}

.product-detail-hero--centered .product-detail-hero__grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.product-detail-hero--centered .hero-actions {
  justify-content: center;
}

.product-detail-hero--editorial .product-detail-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
}

.product-detail-hero--editorial .product-detail-hero__image {
  height: min(var(--bw-media-height, 520px), 430px);
  border-radius: var(--bw-radius, 34px) var(--bw-radius, 34px) 90px var(--bw-radius, 34px);
}

.product-detail-hero__image img,
.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-hero__image .tag {
  position: absolute;
  top: 18px;
  right: 18px;
}

.product-specs__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: var(--bw-gap, 24px);
}

.nutrition-panel,
.fact-panel,
.article-body,
.article-aside__panel,
.content-card,
.empty-state {
  padding: 28px;
}

.nutrition-panel h2,
.fact-panel h2 {
  margin-top: 8px;
  font-size: 32px;
}

.product-facts {
  display: grid;
  gap: 18px;
}

.fact-panel > .material-symbols-outlined {
  color: var(--copper);
  font-size: 34px;
}

.list-clean {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: rgba(255, 255, 255, 0.52);
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: right;
  border-bottom: 1px solid var(--line);
}

.table th {
  color: var(--ink);
  background: rgba(220, 232, 202, 0.55);
  font-weight: 900;
}

.table tr:last-child td {
  border-bottom: 0;
}

.article-hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.article-body {
  padding: clamp(24px, 5vw, 48px);
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}

.content-card {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(26px, 5vw, 56px);
}

.system-message {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
}

.system-message__panel {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(30px, 6vw, 62px);
  text-align: center;
}

.system-message__code {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 86px;
  line-height: 1;
}

.system-message h1 {
  margin: 12px 0;
  font-size: clamp(34px, 5vw, 58px);
}

.system-message p {
  color: var(--muted);
}

.flash-wrap {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.flash {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.flash-success {
  color: #1c4d31;
  background: #dff0df;
}

.flash-error,
.flash-danger {
  color: #7c241d;
  background: #f4d8d3;
}

.flash-info {
  color: #244b56;
  background: #d9edf1;
}

.site-footer {
  --footer-text-align: start;
  --footer-block-align: start;
  --footer-inline-justify: flex-start;
  --footer-social-justify: flex-start;
  --footer-logo-height: 54px;
  --footer-logo-width: auto;
  --footer-logo-padding: 0px;
  --footer-logo-margin: 0px;
  --footer-logo-radius: 0px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer .brand-logo {
  width: var(--footer-logo-width);
  max-width: min(100%, 520px);
  height: var(--footer-logo-height);
  object-position: right center;
  border-radius: var(--footer-logo-radius);
}

.site-footer .footer-brand {
  padding: var(--footer-logo-padding);
  margin: var(--footer-logo-margin);
}

.site-footer--align-right {
  --footer-text-align: right;
  --footer-block-align: start;
  --footer-inline-justify: flex-start;
  --footer-social-justify: flex-start;
}

.site-footer--align-center {
  --footer-text-align: center;
  --footer-block-align: center;
  --footer-inline-justify: center;
  --footer-social-justify: center;
}

.site-footer--align-left {
  --footer-text-align: left;
  --footer-block-align: end;
  --footer-inline-justify: flex-end;
  --footer-social-justify: flex-end;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, 0.8fr) minmax(180px, 0.6fr) minmax(220px, 0.8fr);
  gap: 28px;
  padding: 64px 0;
}

.footer-brand .brand-copy strong,
.site-footer .brand {
  color: var(--white);
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.56);
}

.footer-description {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: var(--footer-social-justify);
}

.footer-social__link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--footer-social-bg, var(--melon));
  border-radius: 50%;
}

.footer-social__link svg {
  width: 20px;
  height: 20px;
}

.footer-social__icon-file {
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.footer-social__icon {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-signal {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.footer-signal .material-symbols-outlined {
  color: var(--melon);
  font-size: 36px;
}

.footer-signal strong {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.footer-signal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 22px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.site-footer__inner > * {
  justify-self: var(--footer-block-align);
  text-align: var(--footer-text-align);
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: var(--footer-inline-justify);
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--melon);
}

.footer-links .material-symbols-outlined,
.footer-contact .material-symbols-outlined {
  color: var(--melon);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  text-align: var(--footer-text-align);
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.site-footer--align-center .footer-bottom__inner {
  justify-content: center;
}

.site-footer--align-left .footer-bottom__inner {
  justify-content: flex-end;
}

.footer-bottom__inner p {
  margin: 0;
}

.footer-credit a {
  color: var(--melon);
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 75;
}

.floating-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #1f9d55;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(31, 157, 85, 0.35);
}

.floating-btn__icon {
  width: 28px;
  height: 28px;
}

.floating-btn__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  white-space: nowrap;
  padding: 8px 10px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-50%) translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.floating-btn:hover .floating-btn__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.reveal,
.reveal-up,
.reveal-scale,
.reveal-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale {
  transform: scale(0.96);
}

.reveal-fade {
  transform: none;
}

.revealed {
  opacity: 1;
  transform: none;
}

.admin-body,
.auth-page {
  min-height: 100vh;
  background: #f3efe5;
}

.admin-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-menu-toggle {
  display: none;
  position: fixed;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 60;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.admin-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(0, 0, 0, 0.5);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
}

.admin-profile {
  padding: 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.admin-nav,
.admin-subnav {
  display: grid;
  gap: 7px;
}

.admin-nav a,
.admin-logout button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 15px;
  text-align: right;
  font-weight: 800;
}

.admin-nav a:hover,
.admin-nav a.is-active,
.admin-logout button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.admin-subnav {
  margin: 4px 18px 8px 0;
}

.admin-subnav a {
  padding: 9px 12px;
  font-size: 13px;
}

.admin-logout {
  margin-top: 22px;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-topbar h1 {
  font-size: clamp(28px, 4vw, 42px);
}

.admin-card {
  margin-bottom: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.admin-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.admin-card__head h2 {
  font-size: 24px;
}

.admin-card__body {
  padding: 20px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-dashboard-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(220, 232, 202, 0.78), rgba(255, 250, 241, 0.9)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.admin-dashboard-hero h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 48px);
}

.admin-dashboard-hero p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-dashboard-hero__actions,
.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.admin-stat {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.admin-stat span,
.admin-stat small {
  color: var(--muted);
}

.admin-stat strong {
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}

.admin-control-grid,
.admin-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

.admin-card__head p {
  margin: 5px 0 0;
}

.admin-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
}

.admin-shortcuts a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
  background: rgba(245, 240, 230, 0.68);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.admin-shortcuts .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 13px;
}

.admin-shortcuts strong,
.admin-shortcuts small {
  grid-column: 2;
}

.admin-shortcuts small {
  color: var(--muted);
  line-height: 1.5;
}

.admin-quick-panel .admin-card__head {
  border-bottom: 0;
}

.admin-quick-actions {
  display: grid;
  padding: 0 20px 20px;
}

.admin-message-list {
  display: grid;
  gap: 10px;
}

.admin-message-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(245, 240, 230, 0.68);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.admin-message-item span {
  color: var(--muted);
}

.badge,
.badge-success,
.badge-warning,
.badge-danger,
.badge-muted {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.badge,
.badge-muted {
  color: var(--ink);
  background: var(--mint);
}

.badge-success {
  color: #1c4d31;
  background: #dff0df;
}

.badge-warning {
  color: #705319;
  background: #f5e5bd;
}

.badge-danger {
  color: #7c241d;
  background: #f4d8d3;
}

.settings-workspace {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.settings-rail {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.settings-rail__head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.settings-rail__head > .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--melon);
  border-radius: 14px;
}

.settings-rail__head div {
  display: grid;
  line-height: 1.35;
}

.settings-rail__head small {
  color: rgba(255, 255, 255, 0.58);
}

.settings-tabs {
  display: grid;
  gap: 8px;
}

.settings-tabs a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 800;
}

.settings-tabs a:hover,
.settings-tabs a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.settings-tabs a > .material-symbols-outlined {
  color: var(--melon);
}

.settings-tabs a span:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.35;
}

.settings-tabs small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.settings-panel {
  display: grid;
  gap: 18px;
}

.settings-panel__hero,
.settings-panel__footer,
.settings-group {
  background: var(--paper);
  border: 1px solid var(--bw-border, var(--line));
  border-radius: var(--bw-radius, 28px);
  box-shadow: var(--shadow-soft);
}

.product-specs {
  padding: var(--bw-padding, 96px) 0;
  background: var(--bw-bg, transparent);
}

.product-specs .nutrition-panel,
.product-specs .fact-panel {
  background: var(--bw-card, var(--paper));
}

.product-specs .nutrition-panel h2,
.product-specs .fact-panel h2 {
  color: var(--bw-title, var(--ink));
}

.product-specs .fact-panel > .material-symbols-outlined,
.product-specs .section-kicker {
  color: var(--bw-accent, var(--copper));
}

.product-specs--stacked .product-specs__grid {
  grid-template-columns: 1fr;
}

.product-specs--cards .product-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-related {
  padding: var(--bw-padding, 96px) 0;
  background: var(--bw-bg, var(--cream));
}

.product-related .catalog-grid {
  grid-template-columns: repeat(var(--bw-columns, 4), minmax(0, 1fr));
  gap: var(--bw-gap, 20px);
}

.product-related .catalog-card {
  background: var(--bw-card, var(--paper));
}

.settings-panel__hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(220, 232, 202, 0.75), rgba(255, 250, 241, 0.88)),
    var(--paper);
}

.settings-panel__hero h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 46px);
}

.settings-panel__hero p {
  margin: 8px 0 0;
  color: var(--muted);
}

.settings-groups {
  display: grid;
  gap: 18px;
}

.settings-group {
  overflow: hidden;
}

.settings-group__head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.settings-group__head > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--ink);
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 800;
}

.settings-group__head h3 {
  font-size: 26px;
}

.settings-group__head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.setting-control {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.setting-control.span-2 {
  grid-column: span 2;
}

.setting-control__label {
  display: grid;
  gap: 3px;
}

.setting-control label,
.setting-control--switch strong {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
}

.setting-control small,
.setting-control--switch small {
  color: var(--muted);
  font-size: 12px;
}

.setting-control--switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: rgba(245, 240, 230, 0.65);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.setting-control--switch span {
  display: grid;
}

.setting-control--switch input {
  appearance: none;
  position: relative;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
  background: #d3cabb;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.setting-control--switch input::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(18, 24, 21, 0.2);
  transition: transform 0.2s ease;
}

.setting-control--switch input:checked {
  background: var(--moss);
}

.setting-control--switch input:checked::after {
  transform: translateX(-24px);
}

.image-setting {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  background: rgba(245, 240, 230, 0.6);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.image-setting__preview {
  display: grid;
  place-items: center;
  min-height: 118px;
  overflow: hidden;
  color: var(--muted);
  background: var(--cream);
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  text-align: center;
}

.image-setting__preview .material-symbols-outlined {
  font-size: 34px;
}

.image-setting img,
.image-setting__preview img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  border-radius: 16px;
}

.image-setting__fields {
  display: grid;
  gap: 10px;
}

.color-control {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
}

.color-control__swatch {
  width: 58px;
  min-height: 50px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.menu-items-editor {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(245, 240, 230, 0.6);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.menu-items-editor__list {
  display: grid;
  gap: 10px;
}

.menu-item-row {
  display: grid;
  grid-template-columns: 48px minmax(130px, 0.7fr) minmax(0, 1fr) minmax(0, 1.25fr) 44px;
  gap: 10px;
  align-items: end;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.menu-item-row__icon,
.menu-item-row__remove {
  display: grid;
  place-items: center;
  height: 50px;
  border-radius: 15px;
}

.menu-item-row__icon {
  color: var(--moss);
  background: var(--cream);
  border: 1px dashed var(--line-strong);
}

.menu-item-row label {
  display: grid;
  gap: 6px;
}

.menu-item-row__label {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 900;
}

.menu-item-row__remove {
  color: #8a2d25;
  background: #fff4f0;
  border: 1px solid #f0c9bf;
  cursor: pointer;
}

.menu-items-editor__add {
  justify-self: start;
}

.settings-panel__footer {
  position: sticky;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(16px);
}

.rich-editor {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.rich-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  background: #f0eadf;
  border-bottom: 1px solid var(--line);
}

.rich-editor__toolbar button {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.rich-editor__surface {
  min-height: 220px;
  padding: 14px;
  outline: 0;
}

.auth-page {
  display: grid;
  place-items: center;
  padding: 28px;
}

.auth-card {
  width: min(440px, 100%);
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

@media (max-width: 1180px) {
  .header-contact {
    display: none;
  }

  .nav-dock a {
    padding-inline: 10px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 9px 0;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-nav,
  .header-actions > .btn,
  .header-actions > .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
  }

  .header-command {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .site-header .brand--command {
    justify-self: start;
    min-width: 0;
    max-width: calc(100vw - 90px);
    gap: 10px;
  }

  .site-header .brand--command .brand-logo,
  .site-header .brand--command .brand-mark {
    max-height: 60px;
  }

  .site-header .brand--command .brand-copy {
    gap: 2px;
    min-width: 0;
  }

  .site-header .brand--command .brand-copy:not(.brand-copy--mobile) {
    display: none;
  }

  .site-header .brand--command .brand-copy--mobile {
    display: grid;
    gap: 2px;
  }

  .site-header .brand--command .brand-copy strong {
    font-size: 18px;
    line-height: 1.08;
    white-space: normal;
  }

  .site-header .brand--command .brand-copy small {
    display: block;
    font-size: 11px;
    line-height: 1.15;
    white-space: normal;
  }

  .home-hero__grid,
  .product-stage__grid,
  .story-lab__grid,
  .distribution-cta__grid,
  .inner-hero__grid,
  .product-detail-hero__grid,
  .product-specs__grid,
  .article-hero__grid,
  .article-layout,
  .contact-studio__grid,
  .company-narrative__grid,
  .operating-model__grid,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 68px;
  }

  .home-hero__media {
    min-height: 460px;
  }

  .hero-product-shot {
    inset: 0 0 42px 24px;
  }

  .proof-band__grid,
  .process-lane,
  .journal-grid,
  .catalog-grid,
  .catalog-grid--compact,
  .values-strip__grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-filter,
  .narrative-index,
  .article-aside {
    position: relative;
    top: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-stat-grid,
  .admin-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-control-grid,
  .admin-data-grid {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-menu-toggle {
    display: inline-flex;
  }

  .admin-sidebar {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 50;
    width: min(82vw, 300px);
    height: 100vh;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(-105%);
    transition: transform 0.28s ease, visibility 0s linear 0.28s;
  }

  html[dir="rtl"] .admin-sidebar {
    inset-inline-start: auto;
    inset-inline-end: 0;
    transform: translateX(105%);
  }

  .admin-sidebar.is-open {
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.28s ease, visibility 0s;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  }

  .admin-sidebar-backdrop:not([hidden]) {
    display: block;
  }

  .admin-main {
    padding-top: 70px;
  }

  body.admin-no-scroll {
    overflow: hidden;
  }

  .settings-workspace {
    grid-template-columns: 1fr;
  }

  .settings-rail {
    position: relative;
    top: auto;
  }

  .settings-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head,
  .catalog-toolbar,
  .footer-bottom__inner,
  .admin-topbar,
  .admin-dashboard-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .site-header .brand--command .brand-copy strong {
    font-size: 16px;
  }

  .site-header .brand--command .brand-copy small {
    display: block;
    font-size: 10px;
  }

  .site-header .brand-mark {
    width: 48px;
    height: 48px;
  }

  .site-header .brand-logo {
    width: var(--header-logo-width);
    max-width: min(60vw, 220px);
    height: var(--header-logo-height);
    max-height: 48px;
  }

  .home-hero__content h1,
  .inner-hero__copy h1,
  .contact-studio__info h1,
  .product-detail-hero__copy h1,
  .article-hero__copy h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .hero-metrics,
  .proof-band__grid,
  .process-lane,
  .journal-grid,
  .catalog-grid,
  .catalog-grid--compact,
  .values-strip__grid,
  .admin-stat-grid,
  .admin-shortcuts,
  .settings-tabs,
  .settings-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .setting-control.span-2 {
    grid-column: auto;
  }

  .home-hero__media,
  .story-lab__media,
  .product-detail-hero__image,
  .article-hero__image,
  .inner-hero__image,
  .operating-model__image {
    min-height: auto;
    height: auto;
  }

  .hero-product-shot,
  .hero-quality-card,
  .hero-featured-product {
    position: relative;
    inset: auto;
    width: auto;
  }

  .home-hero__media {
    display: grid;
    gap: 14px;
  }

  .hero-product-shot {
    height: 360px;
    border-radius: 30px;
  }

  .product-spotlight,
  .product-line-card,
  .journal-row {
    grid-template-columns: 1fr;
  }

  .product-line-card img,
  .journal-row__image {
    width: 100%;
    height: 220px;
  }

  .product-spotlight__image {
    height: 300px;
  }

  .story-lab__media {
    grid-template-columns: 1fr;
  }

  .story-lab__media figure:first-child,
  .story-lab__media figure:nth-child(2) {
    height: 320px;
  }

  .story-lab__stamp {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
  }

  .search-form {
    display: grid;
  }

  .contact-form__head,
  .contact-form__body,
  .distribution-cta__grid,
  .settings-panel__hero,
  .settings-group__head,
  .settings-grid {
    padding: 22px;
  }

  .settings-panel__hero,
  .settings-panel__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .image-setting {
    grid-template-columns: 1fr;
  }

  .menu-item-row {
    grid-template-columns: 1fr;
  }

  .menu-item-row__icon,
  .menu-item-row__remove,
  .menu-items-editor__add {
    width: 100%;
  }

  .catalog-card__image,
  .journal-card__image {
    height: 230px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}