* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

body {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  color: #2c2c2c;
  line-height: 1.6;
  background-color: #ffffff;
}

:root {
  --space-3xs: 4px;
  --space-2xs: 6px;
  --space-xs: 10px;
  --space-sm: 14px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 120px;
  --section-pad-block: clamp(72px, 12vh, 120px);
  --section-pad-block-tight: clamp(56px, 10vh, 104px);
  --section-pad-block-loose: clamp(96px, 14vh, 140px);
  --section-pad-inline: clamp(24px, 6vw, 96px);
  --section-pad-inline-narrow: clamp(20px, 5vw, 72px);
  --section-pad-inline-wide: clamp(24px, 8vw, 124px);
}

.maintenance-body {
  min-height: 100vh;
  background-color: #f6f5f6;
}

.maintenance-body > main {
  min-height: 100vh;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.section-shell {
  width: 100%;
  padding-block: var(--section-pad-block);
  padding-inline: var(--section-pad-inline);
  background-color: #ffffff;
}

.section-shell--tight {
  padding-block: var(--section-pad-block-tight);
}

.section-shell--loose {
  padding-block: var(--section-pad-block-loose);
}

.section-shell--narrow {
  padding-inline: var(--section-pad-inline-narrow);
}

.section-shell--wide {
  padding-inline: var(--section-pad-inline-wide);
}

.section-shell--dark {
  background-color: #313031;
  color: #f5f0ea;
}

.section-inner {
  width: 100%;
  max-width: var(--section-inner-max, 1160px);
  margin: 0 auto;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.stack--tight {
  gap: var(--space-md);
}

.stack--loose {
  gap: var(--space-xl);
}

.eyebrow {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: none;
  font-weight: 400;
  color: currentColor;
  margin: 0 0 var(--space-2xs, 6px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.button--primary {
  background-color: #1f1f1f;
  color: #ffffff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background-color: #3b3b3b;
}

.button--secondary {
  background-color: transparent;
  color: #1f1f1f;
  border-color: #1f1f1f;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background-color: #1f1f1f;
  color: #ffffff;
}

.button--tertiary {
  background-color: transparent;
  color: #5b5854;
  border-color: #d6d1cc;
}

.button--tertiary:hover,
.button--tertiary:focus-visible {
  background-color: rgba(90, 88, 84, 0.12);
  border-color: #5b5854;
  color: #3a3733;
}

@media (max-width: 900px) {
  .button {
    padding: 12px 28px;
  }
}

/* Hero Section */
.hero-page {
  --hero-background-color: #f6f5f6;
  background-color: var(--hero-background-color);
  color: #2c2c2c;
}

.hero.hero-coming-soon {
  min-height: 98vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: clamp(24px, 5vw, 48px);
  padding-inline: clamp(32px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-coming-soon__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
  max-width: 840px;
  width: 100%;
  min-height: 100%;
}

.hero-coming-soon__logo {
  width: min(360px, 80vw);
  height: auto;
  display: block;
}

.hero-coming-soon__figure {
  margin: 0;
  width: 100%;
}

.hero-coming-soon__illustration {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: darken;
}

.hero-coming-soon__message {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.3;
  color: #2d2d2d;
  margin: 0;
}

.hero__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #1f1f1f;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero__menu-toggle:hover,
.hero__menu-toggle:focus-visible {
  background-color: rgba(31, 31, 31, 0.08);
}

.hero__menu-toggle:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 2px #1f1f1f;
}

.hero__menu-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  transition: background-color 0.3s ease;
}

.hero__menu-icon::before,
.hero__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.hero__menu-icon::before {
  top: -6px;
}

.hero__menu-icon::after {
  top: 6px;
}

.hero__menu-toggle.is-active .hero__menu-icon {
  background-color: transparent;
}

.hero__menu-toggle.is-active .hero__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.hero__menu-toggle.is-active .hero__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 98vh;
  padding: clamp(32px, 6vh, 64px) clamp(20px, 4vw, 64px);
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.4),
      transparent 55%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.4),
      transparent 50%
    );
  background-color: #f6f5f6;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  row-gap: 72px;
  align-items: center;
  width: 100%;
  min-height: 100%;
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.hero__logo img {
  display: block;
  height: 28px;
}

.hero__nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  text-transform: lowercase;
  color: #5e5e5e;
}

.hero__nav a {
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hero__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background-color: #1f1f1f;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero__nav a:hover,
.hero__nav a:focus-visible {
  color: #1f1f1f;
}

.hero__nav a:hover::after,
.hero__nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero__header-cta {
  padding: 12px 28px;
  border: 1px solid #1f1f1f;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero__header-cta:hover,
.hero__header-cta:focus-visible {
  background-color: #1f1f1f;
  color: #ffffff;
}

.hero__content {
  --hero-heading-size: 48px;
  max-width: 840px;
  width: 100%;
  margin: auto;
  text-align: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 50vh;
  align-items: center;
  justify-content: center;
}

.hero__mobile-visual {
  display: none;
  width: 100%;
  height: auto;
  mix-blend-mode: darken;
}

.hero__kicker {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 24px;
}

.hero__content h1 {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: var(--hero-heading-size);
  line-height: 1.1;
  margin-bottom: 32px;
  color: #1f1f1f;
  font-weight: 400;
}

.hero__rotator {
  display: flex;
  justify-content: center;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: var(--hero-heading-size);
  line-height: 1.1;
  font-weight: 400;
  color: #bf9348;
  margin: -24px auto 32px;
  letter-spacing: 0.01em;
  text-align: center;
}

.hero__rotator-word {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: opacity, transform;
}

.hero__rotator-word.is-fading {
  opacity: 0;
  transform: translate3d(0, 0.3em, 0);
}

.hero__description {
  font-size: 16px;
  line-height: 1.8;
  color: #6b6660;
  margin: 0 auto 40px;
  max-width: 600px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero__actions .button {
  flex: 1 1 220px;
  max-width: 240px;
  min-width: 0;
  text-align: center;
}

.hero__trusted {
  margin-top: 40px;
  text-align: center;
  color: #000000;
  width: 100%;
}

.hero__trusted-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero__trusted-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  isolation: isolate;
  background-color: var(--hero-background-color, #f6f5f6);
  border-radius: 8px;
  padding: 0;
}

.hero__trusted-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  background-color: var(--hero-background-color, #f6f5f6);
  border-radius: 6px;
  padding: 0;
}

.hero__trusted-item img {
  max-width: 170px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  mix-blend-mode: darken;
}

.hero__tree {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mix-blend-mode: darken;
}

.hero__tree--right,
.hero__tree--left {
  top: 50%;
  transform: translateY(-50%);
  max-width: 30vw;
  width: 30vw;
  height: auto;
}

.hero__tree--right {
  right: 0;
}

.hero__tree--left {
  left: 0;
}

@media (max-width: 1359px) {
  .hero {
    --tree-width: clamp(340px, 34vw, 560px);
    --content-gap: 30px;
  }

  .hero__tree--right {
    display: none;
  }

  .hero__tree--left {
    max-width: var(--tree-width);
    width: auto;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: clamp(48px, 7vh, 80px);
    align-items: center;
    padding: 0;
  }

  .hero__content {
    grid-column: 1;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
    margin-left: 30vw;
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    width: auto;
    padding: 0 var(--content-gap);
  }

  .hero__kicker {
    margin-bottom: 20px;
  }

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

  .hero__trusted,
  .hero__trusted-logos {
    margin-top: auto;
    text-align: left;
    justify-content: flex-start;
  }

  .hero__header {
    grid-column: 1 / -1;
  }

  .hero__trusted {
    grid-column: 1;
    margin-top: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__trusted-logos {
    justify-content: center;
  }

  .hero__content .hero__description {
    margin: 0 0 40px;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
    padding: 40px 24px 80px;
    background: var(--hero-background-color, #f6f5f6);
  }

  .hero__header {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  .hero__nav {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 20px;
    padding: 24px;
    background-color: var(--hero-background-color, #f6f5f6);
    border-radius: 16px;
    border: 1px solid rgba(31, 31, 31, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 5;
  }

  .hero__nav.is-open {
    display: flex;
  }

  .hero__nav a {
    font-size: 16px;
    width: 100%;
    text-align: right;
  }

  .hero__header-cta {
    display: none;
  }

  .hero__menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    row-gap: 56px;
    align-items: center;
  }

  .hero__tree--left {
    max-width: max(32vw, 280px);
  }

  .hero__tree--right {
    max-width: max(32vw, 280px);
  }

  .hero__content {
    grid-column: 1;
    margin: 0 auto;
    width: 100%;
    max-width: 680px;
    align-items: center;
    text-align: center;
  }

  .hero__header,
  .hero__trusted {
    margin-top: auto;
    grid-column: 1;
  }

  .hero__trusted {
    text-align: center;
    margin-top: auto;
  }

  .hero__trusted-logos {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 32px 20px 64px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    row-gap: 48px;
  }

  .hero__content {
    --hero-heading-size: 40px;
  }

  .hero__description {
    font-size: 16px;
    max-width: 600px;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero__trusted-label {
    letter-spacing: 0.06em;
  }

  .hero__tree--left,
  .hero__tree--right {
    opacity: 0.35;
    max-width: max(40vw, 220px);
    display: block;
  }

  .hero__tree--left {
    left: 0;
  }

  .hero__tree--right {
    right: 0;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 24px 0 48px;
  }

  .hero__tree {
    display: none;
  }

  .hero__mobile-visual {
    display: block;
    margin: 0 -16px 20px;
    max-width: none;
    align-self: center;
    width: calc(100% + 32px);
  }

  .hero__inner {
    row-gap: 28px;
  }

  .hero__header {
    padding: 0 16px;
  }

  .hero__content {
    min-height: auto;
    padding: 0 16px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    background-color: var(--hero-background-color, #f6f5f6);
    --hero-heading-size: 36px;
    gap: var(--space-md, 20px);
  }

  .hero__trusted-label {
    font-weight: 600;
    margin-bottom: 60px;
  }

  .hero__actions {
    justify-content: center;
    width: 100%;
    gap: 12px;
    max-width: none;
    margin: 0 auto;
  }

  .hero__content h1 {
    margin-bottom: 8px;
    line-height: 1.28;
  }

  .hero__rotator {
    margin: -22px auto 18px;
  }

  .hero__description {
    margin: 0 0 30px;
  }

  .hero__actions .button {
    flex: 1 1 0;
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    text-align: center;
  }

  .hero__trusted {
    margin-top: 24px;
    padding: 50px 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }

  .hero__trusted-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 36px;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .hero__trusted-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
  }

  .hero__trusted-item img {
    width: 100%;
    max-width: 140px;
  }
}

/* Comparison Section */
.comparison {
  background-color: #f6f5f6;
  color: #2c2c2c;
}

.comparison__inner {
  width: 100%;
}

.comparison__eyebrow {
  letter-spacing: 0.26em;
  color: #988f87;
  text-align: center;
}

.comparison__heading {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto clamp(56px, 9vh, 88px);
  text-align: center;
}

.comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.comparison-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 32px 80px rgba(46, 40, 37, 0.08);
  overflow: hidden;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
}

.comparison-card__eyebrow {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #1f1f1f;
  margin-top: 14px;
  margin-bottom: 8px;
}

.comparison-card__title {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  color: #2c2c2c;
  margin-top: 32px;
  margin-bottom: clamp(8px, 2.6vh, 18px);
  max-width: 460px;
}

.comparison-card--matrix .comparison-card__title {
  max-width: none;
}

.comparison-card__art {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  max-width: 42%;
  height: auto;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (min-width: 901px) {
  .comparison-card__art {
    max-height: 70px;
    width: auto;
  }
}

.comparison-card__list {
  list-style: none;
  margin: clamp(24px, 5vh, 36px) 0 0;
  padding: 0;
  counter-reset: comparison-rows;
  border-top: 1px solid #e8e2db;
  flex-grow: 1;
}

.comparison-card__list-item {
  counter-increment: comparison-rows;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #e8e2db;
  font-size: 16px;
  line-height: 1.7;
  color: #6f6962;
}

.comparison-card__list-item:last-child {
  border-bottom: none;
}

.comparison-card__list-item::before {
  content: attr(data-step);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b5aea6;
}

.comparison-card > *:not(.comparison-card__art) {
  position: relative;
  z-index: 1;
}

.comparison-card__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: clamp(24px, 5vh, 36px);
  font-size: 16px;
  flex-grow: 1;
}

.comparison-card__table thead th {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9c948b;
  padding: 0 18px 20px 0;
  text-align: left;
}

.comparison-card__table thead th:nth-child(2),
.comparison-card__table thead th:nth-child(3) {
  text-align: center;
}

.comparison-card__table thead th:nth-child(3) {
  white-space: nowrap;
}

.comparison-card__table tbody {
  border-top: 1px solid #e8e2db;
}

.comparison-card__table tbody th {
  text-align: left;
  font-weight: 500;
  color: #443e38;
  padding: 20px 18px 20px 0;
}

.comparison-card__table tbody td {
  text-align: center;
  padding: 20px 18px 20px 0;
}

.comparison-card__table tbody tr + tr {
  border-top: 1px solid #e8e2db;
}

.comparison-card__cell-label {
  display: none;
}

.comparison-card__indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 600;
  border: none;
}

.comparison-card__indicator--positive {
  color: #1f1f1f;
}

.comparison-card__indicator--negative {
  color: #1f1f1f;
  font-size: 18px;
  border-color: transparent;
}

.comparison-card--matrix {
  padding-bottom: 30px;
}

.comparison-card--matrix table {
  min-width: 100%;
}

.comparison-card--matrix td,
.comparison-card--matrix th {
  position: relative;
}

@media (max-width: 1080px) {
  .comparison__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .comparison-card {
    padding: 30px;
  }

  .comparison-card__title {
    max-width: 520px;
  }

  .comparison-card__art {
    width: clamp(120px, 40vw, 200px);
  }
}

@media (max-width: 720px) {
  .comparison__heading {
    font-size: clamp(30px, 8vw, 40px);
  }

  .comparison-card {
    border-radius: 14px;
    padding: 28px;
  }

  .comparison-card__art {
    opacity: 1;
  }

  .comparison-card__list-item {
    grid-template-columns: 36px 1fr;
    font-size: 15px;
  }

  .comparison-card__table {
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .comparison__eyebrow {
    letter-spacing: 0.2em;
    font-size: 12px;
  }

  .comparison-card__eyebrow {
    letter-spacing: 0.14em;
    font-size: 13px;
  }

  .comparison-card__title {
    font-size: clamp(24px, 8vw, 32px);
  }

  .comparison-card__table {
    font-size: 14px;
  }

  .comparison-card__table thead {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .comparison-card__row {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #e8e2db;
  }

  .comparison-card__row:last-child {
    border-bottom: none;
  }

  .comparison-card__row-heading {
    display: block;
    padding: 0 0 12px;
    font-size: 15px;
  }

  .comparison-card__table tbody td {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .comparison-card__table tbody td + td {
    border-top: 1px solid #f0ece6;
  }

  .comparison-card__cell-label {
    display: block;
    flex: 1 1 auto;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9c948b;
  }

  .comparison-card__indicator {
    width: 24px;
    height: 24px;
    font-size: 14px;
    margin-left: auto;
  }
}

/* Text + Image Section */
.text-image {
  background-color: #ffffff;
  color: #2c2c2c;
}

.text-image--soft {
  background-color: #f6f5f6;
}

.text-image__inner {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
}

.text-image__content {
  flex: 1 1 50%;
}

.text-image__kicker {
  color: #5a5248;
  margin: 0;
  font-size: 16px;
  letter-spacing: normal;
}

.text-image__heading {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.text-image__body {
  font-size: 16px;
  line-height: 1.8;
  color: #6b6660;
  margin: 0;
}

.text-image__main {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.text-image__body ul,
.text-image__body ol {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  margin-left: 0;
  padding-left: 1rem;
  list-style-position: inside;
}

.text-image__body li + li {
  margin-top: 0.6em;
}

.text-image__actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  flex-wrap: wrap;
}

.text-image__secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  color: #1f1f1f;
  text-decoration: none;
}

.text-image__secondary-label {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-color: currentColor;
}

.text-image__secondary-arrow {
  margin-left: 2px;
}

.text-image__secondary-link:hover,
.text-image__secondary-link:focus-visible {
  color: #000000;
}

.text-image__visual {
  flex: 1 1 50%;
}

.text-image__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  mix-blend-mode: darken;
}

.text-image--dark {
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.04),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    #313031;
  color: #f5f0ea;
}

.text-image--dark .text-image__kicker {
  color: #f5f0ea;
}

.text-image--dark .text-image__heading {
  color: #f7f3ee;
}

.text-image--dark .text-image__body {
  color: #ded8d2;
}

.text-image--dark .text-image__secondary-link {
  color: #f5f0ea;
}

.text-image--dark .text-image__secondary-arrow {
  color: #f5f0ea;
}

.text-image--dark .text-image__secondary-link:hover,
.text-image--dark .text-image__secondary-link:focus-visible {
  color: #ffffff;
}

.text-image--dark .button--primary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.text-image--dark .button--primary:hover,
.text-image--dark .button--primary:focus-visible {
  background: #ffffff;
  color: #313031;
  border-color: #ffffff;
}

.text-image--dark .text-image__visual img {
  filter: invert(1) brightness(1.05) contrast(0.95);
  opacity: 0.85;
  mix-blend-mode: lighten;
}

.text-image--reverse .text-image__inner {
  flex-direction: row-reverse;
}

@media (max-width: 1100px) {
  .text-image__inner {
    gap: 2vw;
  }
}

@media (max-width: 900px) {
  .text-image {
    padding: clamp(56px, 10vh, 88px) clamp(20px, 6vw, 64px);
    padding-top: clamp(28px, 6vh, 56px);
  }

  .text-image__inner {
    flex-direction: column;
    text-align: left;
    gap: clamp(32px, 6vh, 64px);
  }

  .text-image__visual {
    order: -1;
    width: 100%;
  }

  .text-image__content,
  .text-image--reverse .text-image__content {
    order: 0;
    text-align: left;
  }

  .text-image__heading {
    font-size: 32px;
  }

  .text-image__body {
    margin-left: 0;
    margin-right: 0;
  }

  .text-image__actions--single {
    width: 100%;
  }

  .text-image__actions--single .button--primary {
    flex: 1 1 auto;
    width: 100%;
  }

  .text-image__actions {
    justify-content: center;
    gap: 12px;
  }

  .text-image__actions .button {
    padding: 12px 28px;
  }

  .text-image--reverse .text-image__inner {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .text-image__heading {
    font-size: 32px;
  }

  .text-image__secondary-link {
    font-size: 15px;
  }
}

/* Cards Dark Section */
.cards-dark-page {
  background-color: #313031;
  color: #f5f0ea;
}

.capabilities {
  --section-inner-max: 1180px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vh, 24px);
  align-items: center;
}

.capabilities__eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #ffffff;
}

.capabilities__title {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4.6vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: #f7f3ee;
  margin: 0;
  margin-bottom: clamp(28px, 5vh, 44px);
}

.capabilities__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(28px, 5vh, 44px);
}

.capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: clamp(32px, 4vw, 40px);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  text-align: left;
}

.capability-card__title {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 28px);
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 18px;
}

.capability-card__description {
  font-size: 16px;
  line-height: 1.75;
  color: #5a524b;
  margin-bottom: 28px;
}

.capability-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #1f1f1f;
  text-decoration: none;
  z-index: 1;
  margin-top: auto;
}

.capability-card__link-text {
  display: inline-block;
  padding-bottom: 6px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.capability-card__arrow {
  font-size: 18px;
  display: inline-flex;
  text-decoration: none;
}

.capability-card__artwork {
  margin: 24px calc(-1 * clamp(32px, 4vw, 40px))
    calc(-1 * clamp(32px, 4vw, 40px));
  width: calc(100% + 2 * clamp(32px, 4vw, 40px));
  height: clamp(140px, 13vw, 220px);
  overflow: hidden;
}

.capability-card__artwork img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  mix-blend-mode: darken;
}

.capabilities__footnote {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin: 0 auto;
  margin-bottom: clamp(28px, 5vh, 44px);
}

.capabilities__cta {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.capabilities__cta .button--primary {
  padding-inline: 40px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.capabilities__cta .button--primary:hover,
.capabilities__cta .button--primary:focus-visible {
  background: #ffffff;
  color: #313031;
  border-color: #ffffff;
}

@media (max-width: 1359px) {
  .capabilities__grid {
    gap: clamp(14px, 1.8vw, 22px);
  }
}

@media (max-width: 1200px) {
  .capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cards-dark-page {
    background-color: #2a2627;
  }

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

  .capability-card {
    padding: 32px 28px;
  }

  .capability-card__artwork {
    margin: 32px -28px -32px;
    width: calc(100% + 56px);
  }
}

@media (max-width: 540px) {
  .capabilities__title {
    font-size: 32px;
  }

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

  .capability-card__title {
    font-size: 22px;
  }

  .capability-card__description {
    font-size: 15px;
  }

  .capability-card__link {
    font-size: 15px;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-color: #313031;
  color: #f5f0ea;
}

.testimonials {
  --testimonials-side: clamp(24px, 5vw, 96px);
  --testimonials-max: 1340px;
  --section-inner-max: var(--testimonials-max);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 6vh, 56px);
}

.testimonials__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 72px);
  padding-inline: var(--testimonials-side);
  width: min(var(--testimonials-max), 100%);
  margin-inline: auto;
}

.testimonials__intro {
  max-width: 620px;
}

.testimonials__eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #ffffff;
}

.testimonials__title {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  line-height: 1.18;
  color: #f7f3ee;
}

.testimonials__controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.testimonials__control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.testimonials__control:hover,
.testimonials__control:focus-visible {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.testimonials__control:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.testimonials__control[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonials__carousel {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding-inline: 0;
}

.testimonials__static {
  width: min(var(--testimonials-max), 100%);
  margin-inline: auto;
  padding-inline: var(--testimonials-side);
}

.testimonials__static-list {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  grid-template-columns: 1fr;
  justify-items: stretch;
}

@media (min-width: 720px) {
  .testimonials__static--count-2 .testimonials__static-list,
  .testimonials__static--count-3 .testimonials__static-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .testimonials__static--count-3 .testimonials__static-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonials__static-list .testimonial-card {
  width: 100%;
  max-width: none;
  margin: 0;
}

.testimonials__carousel .splide__track {
  overflow: hidden;
}

.testimonials__carousel .splide__list {
  align-items: stretch;
}

.testimonials__carousel .splide__slide {
  display: flex;
  justify-content: center;
  height: auto;
}

.testimonials__carousel .splide__slide > * {
  max-width: 100%;
  flex: 0 0 auto;
}

.testimonial-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  row-gap: clamp(18px, 3vh, 26px);
  padding: clamp(30px, 3.2vw, 44px);
  padding-top: 0;
  border-radius: 24px;
  background: #f4f2ef;
  color: #2c2c2c;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  width: clamp(340px, 30vw, 440px);
  margin-inline: auto;
}

.testimonials__carousel .testimonial-card {
  width: clamp(374px, 33vw, 484px);
}

@media (min-width: 900px) {
  .testimonial-card {
    row-gap: clamp(12px, 2vh, 20px);
  }

  .testimonials__carousel .testimonial-card {
    width: 420px;
  }
}

.testimonial-card__header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
}

.testimonial-card__ornament {
  width: 116px;
  height: 80px;
  background-image: url("/images/deco_testimonial.jpg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  opacity: 1;
  mix-blend-mode: darken;
  display: block;
}

.testimonial-card__quote {
  font-size: 20px;
  line-height: 1.8;
  color: #4d4641;
  margin: 0;
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: end;
  margin-top: clamp(20px, 3vh, 28px);
}

.testimonial-card__name {
  font-size: 16px;
  font-weight: 500;
  color: #2c2c2c;
}

.testimonial-card__role {
  font-size: 15px;
  color: #6d6660;
}

@media (max-width: 1160px) {
  .testimonials__carousel {
    padding-inline: 0;
  }
}

@media (max-width: 900px) {
  .testimonials-section {
    background-color: #2a2627;
  }

  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testimonials__controls {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .testimonials__carousel {
    padding-inline: 0;
  }

  .testimonials__carousel .splide__track {
    overflow: hidden;
  }

  .testimonial-card {
    width: clamp(280px, 80vw, 340px);
    padding: clamp(24px, 8vw, 34px);
  }

  .testimonial-card__header {
    margin-bottom: 18px;
  }

  .testimonials__carousel .testimonial-card {
    width: clamp(308px, 88vw, 374px);
  }

  .testimonial-card__quote {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .testimonials__controls {
    width: 100%;
    justify-content: flex-start;
  }

  .testimonials__control {
    width: 44px;
    height: 44px;
  }
}

/* Trunk Flow Section */
.trunk-flow-section {
  background: #f6f5f6;
  color: #2c2c2c;
}

.trunk-flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 8vh, 56px);
  text-align: center;
  align-items: center;
}

.trunk-flow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 2.5vh, 16px);
}

.trunk-flow__eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #6f6b65;
}

.trunk-flow__title {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4.6vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: #1f1f1f;
  margin: 0;
}

.trunk-flow__diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-inline: clamp(16px, 4vw, 48px);
}

.trunk-flow__column {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 6vh, 40px);
  padding: 0;
  margin: 0;
}

.trunk-flow__step {
  --connector-height: 136px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 26px);
  min-height: var(--connector-height);
}

.trunk-flow__step--left {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.trunk-flow__step--right {
  justify-content: flex-end;
}

.trunk-flow__step--top {
  --connector-height: 152px;
}

.trunk-flow__step--middle {
  --connector-height: 120px;
}

.trunk-flow__step--bottom {
  --connector-height: 152px;
}

.trunk-flow__connector {
  position: relative;
  display: block;
  flex: 1 1 clamp(200px, 24vw, 360px);
  height: var(--connector-height);
  opacity: 0.5;
}

.trunk-flow__connector svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trunk-flow__connector path {
  fill: none;
  stroke: #cfcac4;
  stroke-width: 2;
  stroke-linecap: round;
}

.trunk-flow__bubble {
  flex: 0 0 clamp(62px, 8vw, 76px);
  height: clamp(62px, 8vw, 76px);
  width: clamp(62px, 8vw, 76px);
  border-radius: 50%;
  border: 1px solid rgba(31, 31, 31, 0.14);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.trunk-flow__mobile-grid {
  display: none;
  width: 100%;
}

.trunk-flow__mobile-column,
.trunk-flow__mobile-step,
.trunk-flow__mobile-connector,
.trunk-flow__mobile-connector--down {
  display: none;
}

.trunk-flow__step--left .trunk-flow__connector svg {
  transform-origin: center;
}

.trunk-flow__step--right .trunk-flow__connector svg {
  transform: scaleX(-1);
  transform-origin: center;
}

.trunk-flow__icon {
  display: inline-flex;
  width: clamp(22px, 3vw, 28px);
  height: clamp(22px, 3vw, 28px);
  color: #5b554f;
}

.trunk-flow__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trunk-flow__core {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trunk-flow__core-image {
  width: clamp(260px, 44vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.trunk-flow__core-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: darken;
}

.trunk-flow__body {
  max-width: 680px;
  margin: 0 auto;
  color: #494239;
  font-size: 16px;
  line-height: 1.8;
}

.trunk-flow__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.trunk-flow__actions .button {
  flex: 1 1 200px;
  max-width: 220px;
  min-width: 0;
}

@media (max-width: 900px) {
  .trunk-flow__actions {
    gap: 12px;
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .trunk-flow__diagram {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "core core core"
      "grid grid grid";
    gap: clamp(28px, 8vw, 44px) clamp(20px, 6vw, 32px);
    justify-items: center;
  }

  .trunk-flow__core {
    grid-area: core;
  }

  .trunk-flow__mobile-grid {
    grid-area: grid;
  }

  .trunk-flow__column {
    display: none;
  }

  .trunk-flow__connector {
    display: none;
  }

  .trunk-flow__mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 6vw, 32px);
    padding: 0 clamp(12px, 4vw, 24px);
  }

  .trunk-flow__mobile-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 5vw, 26px);
    position: relative;
  }

  .trunk-flow__mobile-column::before {
    content: "";
    position: absolute;
    top: clamp(-38px, -8vw, -28px);
    bottom: clamp(20px, 6vw, 32px);
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(207, 202, 196, 0.85), transparent);
    transform: translateX(-50%);
  }

  .trunk-flow__mobile-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 4vw, 18px);
    position: relative;
  }

  .trunk-flow__mobile-connector {
    display: block;
    width: 2px;
    height: clamp(18px, 4vw, 26px);
    background: linear-gradient(180deg, rgba(207, 202, 196, 0.7), transparent);
  }

  .trunk-flow__mobile-connector--down {
    height: clamp(28px, 7vw, 36px);
  }

  .trunk-flow__mobile-step:first-child .trunk-flow__mobile-connector {
    display: none;
  }

  .trunk-flow__mobile-step:last-child .trunk-flow__mobile-connector--down {
    display: none;
  }

  .trunk-flow__column--left,
  .trunk-flow__column--right {
    display: none;
  }
}

@media (max-width: 720px) {
  .trunk-flow-section {
    padding: clamp(52px, 12vh, 96px) clamp(16px, 6vw, 48px);
  }

  .trunk-flow__diagram {
    gap: clamp(24px, 12vw, 32px);
  }

  .trunk-flow__core-image {
    width: clamp(260px, 80vw, 360px);
  }

  .trunk-flow__mobile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 10vw, 28px);
  }

  .trunk-flow__mobile-column::before {
    top: clamp(-32px, -10vw, -20px);
    bottom: clamp(14px, 9vw, 22px);
  }

  .trunk-flow__mobile-connector {
    height: clamp(16px, 6vw, 22px);
  }

  .trunk-flow__mobile-connector--down {
    height: clamp(22px, 10vw, 30px);
  }

  .trunk-flow__body {
    font-size: 16px;
  }

  .trunk-flow__actions {
    justify-content: center;
    gap: 12px;
  }
}

/* Contact Card Section */
.contact-card-section {
  background-color: #313031;
  display: flex;
  justify-content: center;
  color: #f5f0ea;
}

.contact-card-section__inner {
  --section-inner-max: 1180px;
  width: 100%;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  border-radius: 28px;
  background-color: #ffffff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.contact-card__artwork {
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 40px);
}

.contact-card__artwork img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  mix-blend-mode: darken;
}

.contact-card__content {
  padding: clamp(36px, 6vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 32px);
}

.contact-card__heading-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 1081px) {
  .contact-card__artwork {
    padding: clamp(36px, 6vw, 56px);
  }
}

.contact-card__eyebrow {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #6d6963;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
}

.contact-card__title {
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4.8vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: #2d2d2d;
  margin: 0;
}

.contact-card__form {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 32px);
}

.contact-card__fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 28px);
}

.contact-card__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
}

.contact-card__field--full {
  grid-column: 1 / -1;
}

.contact-card__label {
  font-size: 15px;
  color: #6d6963;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  text-transform: none;
}

.contact-card__input {
  appearance: none;
  border: none;
  border-bottom: 1px solid #d9d5d1;
  padding: 10px 4px 12px;
  font-size: 16px;
  font-family: inherit;
  color: #2d2d2d;
  background: transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
}

.contact-card__input::placeholder {
  color: #b0ada9;
}

.contact-card__input:focus-visible {
  outline: none;
  border-bottom-color: #938f8b;
  box-shadow: 0 2px 0 rgba(147, 143, 139, 0.4);
}

.contact-card__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-card__agreement-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card__agreement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #6d6963;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
}

.contact-card__checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #bab6b1;
  border-radius: 4px;
  appearance: none;
  display: inline-grid;
  place-items: center;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-card__checkbox:checked {
  background-color: #2d2d2d;
  border-color: #2d2d2d;
}

.contact-card__checkbox:checked::after {
  content: "✓";
  font-size: 12px;
  color: #ffffff;
  line-height: 1;
}

.contact-card__checkbox:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.18);
}

.contact-card__checkbox-label {
  line-height: 1.6;
  display: inline-block;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
}

.contact-card__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.contact-card__actions .button {
  padding-inline: 32px;
}

.contact-card__notification {
  margin-top: clamp(20px, 3vh, 28px);
  padding: 20px 24px;
  width: 100%;
  max-width: none;
  border-radius: 16px;
  background-color: #313031;
  color: #f8f4ef;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card__notification[hidden] {
  display: none;
}

.contact-card__notification-prefix {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.7);
}

.contact-card__notification-message {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: rgba(248, 244, 239, 0.88);
}

.contact-card__notification-message > * {
  margin: 0;
}

.contact-card__notification-message > * + * {
  margin-top: 12px;
}

.contact-card__notification--success,
.contact-card__notification--error {
  box-shadow: none;
}

@media (max-width: 1080px) {
  .contact-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card__artwork {
    max-height: 280px;
    margin-bottom: clamp(20px, 6vw, 32px);
  }
}

@media (max-width: 720px) {
  .contact-card__content {
    padding: clamp(28px, 6vw, 40px);
  }

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

  .contact-card__agreement {
    grid-template-columns: auto 1fr;
    gap: 10px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .contact-card-section {
    background-color: #2a2627;
  }

  .contact-card__actions {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .contact-card__actions .button {
    padding: 12px 28px;
  }
}

@media (max-width: 420px) {
  .contact-card {
    border-radius: 22px;
  }

  .contact-card__actions .button {
    width: 100%;
  }
}
