:root {
  --color-bg: #f6f2e8;
  --color-surface: #fffdf8;
  --color-surface-strong: #f1ebdc;
  --color-text: #0f223a;
  --color-text-soft: #4d5d73;
  --color-border: rgba(15, 34, 58, 0.12);
  --color-border-strong: rgba(15, 34, 58, 0.22);
  --color-accent: #193556;
  --color-accent-soft: #d8e3f3;
  --color-success: #1f6a4d;
  --color-error: #8c2d2d;
  --shadow-soft: 0 20px 60px rgba(16, 32, 53, 0.08);
  --radius-card: 28px;
  --radius-small: 16px;
  --container-width: 1180px;
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(216, 227, 243, 0.65), transparent 32%),
    linear-gradient(180deg, #faf7f0 0%, var(--color-bg) 100%);
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #ffffff;
  color: var(--color-text);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(25, 53, 86, 0.3);
  outline-offset: 3px;
}

input.field-error,
select.field-error,
textarea.field-error {
  border-color: rgba(140, 45, 45, 0.7);
  box-shadow: 0 0 0 3px rgba(140, 45, 45, 0.12);
}

textarea {
  resize: vertical;
  min-height: 8rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.38);
}

.card-surface {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin: 0;
}

.lead,
.supporting-text {
  color: var(--color-text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 242, 232, 0.82);
  border-bottom: 1px solid rgba(15, 34, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  min-width: 0;
}

.product-info-panel {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.product-info-panel-header {
  display: grid;
  gap: 0.35rem;
}

.product-info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.product-info-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.55);
}

.product-info-item h4 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.placeholder {
  display: inline-block;
  max-width: 100%;
  color: #888888;
  font-style: italic;
  letter-spacing: 0.03em;
  border: 1px dashed rgba(15, 34, 58, 0.22);
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
  background: rgba(15, 34, 58, 0.03);
}

.placeholder-media {
  margin-top: 0.9rem;
}

.placeholder-list {
  margin: 0;
  padding-left: 1.2rem;
}

.placeholder-list li + li {
  margin-top: 0.5rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(3.55rem, 5.8vw, 4.7rem);
  flex-shrink: 0;
}

.brand-text {
  line-height: 1;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-accent);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  box-shadow: var(--shadow-soft);
}

.nav-toggle-bar {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-grid,
.split-layout,
.contact-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-copy,
.copy-block {
  align-self: center;
  min-width: 0;
}

.hero-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.hero-copy .lead {
  max-width: 34rem;
}

.hero-copy h1 {
  max-width: 16ch;
}

.hero-title-main,
.hero-title-subline {
  display: block;
}

.hero-title-main {
  font-size: clamp(3.1rem, 8vw, 5.1rem);
  line-height: 0.92;
}

.hero-title-subline {
  max-width: none;
  font-size: clamp(1.55rem, 4.4vw, 2.35rem);
  line-height: 0.98;
  white-space: nowrap;
}

.hero-title-subline + .hero-title-subline {
  margin-top: 0.12em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.8rem;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--color-accent);
  color: #f8f4ed;
}

.button-primary:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.button-secondary {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.button-small {
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.button-wide {
  width: 100%;
  justify-content: center;
}

.hero-visual,
.media-frame {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

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

.media-frame-compact {
  width: min(100%, 30rem);
  justify-self: center;
}

.hero-visual {
  order: -1;
}

.section-intro {
  margin-bottom: 2rem;
  max-width: 46rem;
}

.feature-grid,
.size-grid,
.form-grid,
.faq-list,
.footer-links {
  display: grid;
  gap: 1rem;
}

.size-grid {
  gap: 1.25rem;
}

.feature-card,
.size-card,
.contact-form,
.purchase-panel,
.faq-item {
  padding: 1.25rem;
}

.feature-card img {
  width: 4rem;
  margin-bottom: 1rem;
}

.feature-card p,
.copy-block p,
.size-copy {
  color: var(--color-text-soft);
}

.benefit-list-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
  margin-top: 1.4rem;
}

.benefit-inline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.benefit-inline-item img {
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  object-fit: contain;
}

.benefit-inline-item span {
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-text);
}

@media (max-width: 719px) {
  .hero-copy h1 {
    max-width: min(100%, 10.5ch);
    margin-bottom: 0.8rem;
  }

  .hero-title-main {
    font-size: clamp(2.45rem, 10.6vw, 3.2rem);
    line-height: 0.94;
  }

  .hero-title-subline {
    font-size: clamp(1.06rem, 4.55vw, 1.34rem);
    line-height: 1.02;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .feature-card {
    padding: 0.95rem;
  }

  .feature-card img {
    width: 2.75rem;
    margin-bottom: 0.65rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .feature-card p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .benefit-list-inline {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    margin-top: 1.1rem;
  }

  .benefit-inline-item {
    gap: 0.7rem;
    padding: 0.72rem 0.85rem;
    border-radius: 18px;
  }

  .benefit-inline-item img {
    width: 1.95rem;
    height: 1.95rem;
  }

  .benefit-inline-item span {
    font-size: 0.92rem;
  }

  .media-frame-compact {
    width: min(86vw, 22rem);
    margin-inline: auto;
  }
}

.size-card {
  display: grid;
  grid-template-columns: minmax(6.6rem, 7.5rem) minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.size-card-media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-small);
  background: var(--color-surface-strong);
  overflow: hidden;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-card-media img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-small) - 0.2rem);
  object-fit: cover;
  object-position: center;
}

.size-card-body {
  min-width: 0;
  display: grid;
  gap: 0.85rem;
}

.size-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-panel-header,
.panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.size-card h3 {
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  line-height: 1.05;
}

.size-card-header .button {
  flex-shrink: 0;
}

.size-card-details {
  display: grid;
  gap: 0.35rem;
}

.size-card-price {
  font-weight: 600;
  color: var(--color-text);
}

.size-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: auto;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.quantity-control button {
  border: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--color-surface-strong);
  color: var(--color-accent);
}

.quantity-control input {
  width: 3rem;
  padding: 0.35rem 0.25rem;
  text-align: center;
  border: 0;
  background: transparent;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.75rem;
}

.cart-row,
.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-row {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.empty-state {
  color: var(--color-text-soft);
}

.cart-summary {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}

.cart-summary dd {
  margin: 0;
}

.cart-country-row {
  align-items: center;
}

.cart-country-select {
  width: auto;
  min-width: 11rem;
  padding: 0.65rem 2.2rem 0.65rem 0.85rem;
  border-radius: 999px;
  background: #ffffff;
}

.shipping-note {
  margin: -0.15rem 0 0.35rem;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cart-discount-row {
  color: var(--color-accent);
}

.cart-discount-row dt {
  color: var(--color-accent);
}

.cart-discount-row dt,
.cart-discount-row dd {
  font-weight: 600;
}

.cart-summary dt {
  color: var(--color-text-soft);
}

.cart-meta {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.95rem;
  margin-bottom: 1.15rem;
  color: var(--color-text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.cart-meta-line {
  margin: 0;
}

.purchase-panel {
  max-width: 48rem;
  margin: 2rem auto 0;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.purchase-panel::after {
  content: "BALD VERFUEGBAR";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 170%;
  display: block;
  text-align: center;
  font-size: clamp(2.1rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.42rem;
  text-transform: uppercase;
  color: rgba(25, 53, 86, 0.16);
  transform: translate(-50%, -50%) rotate(-18deg);
  transform-origin: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cart-total {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  font-weight: 700;
}

.checkout-drawer {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--color-border);
}

.checkout-heading {
  margin-bottom: 1rem;
}

.fieldset {
  margin: 1.5rem 0;
  border: 0;
  padding: 0;
}

.fieldset legend {
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.coupon-field {
  display: grid;
  gap: 0.6rem;
}

.coupon-label {
  display: inline-block;
  font-weight: 600;
}

.coupon-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.coupon-inline input {
  flex: 1 1 12rem;
  min-width: 0;
}

.coupon-inline .button {
  flex: 0 0 auto;
}

.coupon-remove {
  background: transparent;
  border: 1px solid var(--color-border);
}

.checkbox-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--color-text-soft);
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-row.has-error {
  color: var(--color-error);
}

.checkbox-row input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.consent-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.checkout-notice {
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(25, 53, 86, 0.05);
  color: var(--color-text-soft);
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.checkbox-link {
  font-weight: 600;
}

.full-width {
  grid-column: 1 / -1;
}

.status-panel,
.form-feedback {
  border-radius: 18px;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
}

.status-panel {
  background: rgba(25, 53, 86, 0.08);
  color: var(--color-accent);
}

.status-panel.success,
.form-feedback.success {
  background: rgba(31, 106, 77, 0.12);
  color: var(--color-success);
}

.status-panel.error,
.form-feedback.error {
  background: rgba(140, 45, 45, 0.1);
  color: var(--color-error);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-launch {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
}

.video-launch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-launch span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(15, 34, 58, 0.78);
  color: #ffffff;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
}

.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  font-weight: 600;
}

.faq-trigger::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item.is-open .faq-trigger::after {
  content: '-';
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  color: var(--color-text-soft);
}

.faq-item.is-open .faq-content {
  max-height: 24rem;
  margin-top: 0.8rem;
}

.site-footer {
  padding: 1.75rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  color: var(--color-text-soft);
  text-align: center;
}

.footer-meta {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  justify-content: center;
}

.footer-links button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-accent);
  text-align: center;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 27, 0.56);
}

.modal-dialog {
  position: relative;
  width: min(calc(100% - 1.5rem), 42rem);
  margin: 8vh auto 0;
  max-height: 84vh;
  overflow-y: auto;
  padding: 1.4rem 1.4rem 1.6rem;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.modal-dialog-compact {
  width: min(calc(100% - 1.5rem), 28rem);
}

.modal-confirm {
  margin-top: 1.1rem;
}

.modal-image {
  display: block;
  width: 100%;
  max-width: 28rem;
  height: auto;
  margin: 1rem auto 1.1rem;
  border-radius: 22px;
}

.modal-info-block {
  margin-top: 1.4rem;
}

.modal-info-title {
  display: block;
  margin-bottom: 0.75rem;
}

.modal-info-block p {
  margin: 0 0 0.75rem;
}

.modal-info-list {
  margin-top: 0.25rem;
}

.fit-step {
  display: grid;
  gap: 1rem;
}

.fit-step-media {
  width: min(100%, 28rem);
  margin: 1rem auto 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
}

.fit-step-media .modal-image {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.fit-step-copy {
  min-height: calc(5 * 1.5em);
  display: flex;
  align-items: center;
}

.fit-step-copy p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.5;
}

.fit-step-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.85rem;
}

.fit-step-nav button:first-child {
  justify-self: start;
}

.fit-step-nav button:last-child {
  justify-self: end;
}

.fit-step-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.fit-step-counter {
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-surface-strong);
  color: var(--color-accent);
  transform: rotate(45deg);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.body-lock {
  overflow: hidden;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 12;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: transparent;
    z-index: 10;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: min(18rem, calc(100vw - 2rem));
    padding: 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: 1.1rem;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow-soft);
    grid-auto-flow: row;
    gap: 0.85rem;
    z-index: 11;
  }

  .site-nav a {
    display: block;
  }

  .site-header.is-nav-open .nav-backdrop {
    display: block;
  }

  .site-header.is-nav-open .site-nav {
    display: grid;
  }
}

@media (min-width: 720px) {
  .purchase-panel {
    margin-top: 2.5rem;
  }

  .size-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
  }

  .size-card {
    grid-template-columns: minmax(6.75rem, 7.5rem) minmax(0, 1fr);
  }

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

  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: initial;
  }

  .footer-links {
    grid-auto-flow: column;
    gap: 1.2rem;
    justify-content: center;
  }

  .footer-meta-left {
    justify-self: start;
  }

  .footer-meta-right {
    justify-self: end;
  }
}

@media (min-width: 960px) {
  .section {
    padding: 6rem 0;
  }

  .hero.section {
    padding-top: 4.6rem;
  }

  .purchase-panel {
    margin-top: 3rem;
    padding: 1.75rem;
  }

  .hero-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: clamp(2rem, 3vw, 3rem);
    min-height: calc(100vh - 8.2rem);
    align-items: center;
  }

  .hero-copy {
    max-width: 41rem;
  }

  .hero-copy h1 {
    max-width: 13.2ch;
    margin-bottom: 0.8rem;
  }

  .hero-title-main {
    font-size: clamp(3.35rem, 5.2vw, 4.75rem);
    line-height: 0.9;
  }

  .hero-title-subline {
    font-size: clamp(1.7rem, 2.15vw, 2.25rem);
    line-height: 0.98;
  }

  .hero-copy .lead {
    max-width: 37rem;
  }

  .hero-actions {
    margin: 1.35rem 0 1.2rem;
  }

  .hero-visual {
    order: 0;
    width: min(100%, 30rem);
    justify-self: end;
    aspect-ratio: 1.02 / 1;
  }

  .split-layout-reverse .copy-block {
    order: 1;
  }

  .split-layout-reverse .media-frame {
    order: 2;
  }

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