:root {
  --ink: #241d16;
  --muted: #766b5d;
  --paper: #f9f3ea;
  --soft: #f3eade;
  --line: rgba(36, 29, 22, 0.08);
  --gold: #c9a56d;
  --gold-dark: #8f6a39;
  --white: #fff;
  --shadow: 0 24px 80px rgba(24, 20, 12, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(200, 166, 106, 0.08), transparent 22%),
    linear-gradient(180deg, #fdf9f4 0%, #f6efe5 100%);
  color: var(--ink);
  font-family:
    "Spectral", Georgia, "Times New Roman", serif;
  font-feature-settings: "liga" 1, "kern" 1;
  overflow-x: hidden;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 240, 0.88);
  border-bottom: 1px solid rgba(36, 29, 22, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.48) inset;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(141, 106, 53, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.94), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 226, 209, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 22px rgba(68, 48, 24, 0.1);
}

.brand-mark::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(141, 106, 53, 0.16);
  border-radius: 50%;
  content: "";
}

.brand-mark::after {
  color: transparent;
  background: linear-gradient(180deg, #f8ead3 0%, #c59f66 36%, #8f6937 74%, #f5e7cb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  content: "VS";
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -0.14em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand-mark__three,
.brand-mark__seven {
  display: none;
}

.brand-mark__horse {
  position: absolute;
  top: 13px;
  right: 12px;
  display: block;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(143, 106, 57, 0.75);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 58% 42% 58% 42% / 44% 48% 52% 56%;
  transform: rotate(22deg);
  opacity: 0.88;
}

.brand-mark__horse::before {
  position: absolute;
  top: 1px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid rgba(143, 106, 57, 0.75);
  border-right: 1.5px solid rgba(143, 106, 57, 0.75);
  border-radius: 0 100% 0 0;
  transform: rotate(18deg);
  content: "";
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand strong {
  display: block;
  overflow: hidden;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lang-switch__btn {
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-switch__btn.active {
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(238, 227, 210, 0.92));
  color: var(--ink);
  box-shadow:
    0 8px 18px rgba(62, 44, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lang-switch__btn:focus-visible,
.utility-icon:focus-visible,
.primary:focus-visible,
.secondary:focus-visible,
.nav a:focus-visible {
  outline: 2px solid rgba(143, 106, 57, 0.45);
  outline-offset: 2px;
}

.utility-icon,
.primary,
.secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 650;
}

.utility-icon {
  position: relative;
  width: 46px;
  min-width: 46px;
  padding: 0;
  border-color: var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.utility-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-bag {
  gap: 5px;
  width: auto;
  min-width: 78px;
  padding: 0 14px;
}

.utility-bag span {
  font-size: 13px;
  font-weight: 700;
}

.primary {
  background: var(--ink);
  color: var(--white);
}

.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.full {
  width: 100%;
}

.hero {
  display: grid;
  min-height: calc(100svh - 74px);
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
  border-bottom: 1px solid rgba(36, 29, 22, 0.06);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.88), transparent 38%),
    linear-gradient(180deg, #fefcf8 0%, #f2ebe0 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 120px) clamp(26px, 6vw, 84px) clamp(46px, 8vw, 100px)
    clamp(22px, 4vw, 64px);
}

.hero-tagline {
  max-width: 26ch;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
}

.hero-note {
  max-width: 40ch;
  margin-bottom: 0;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid rgba(36, 29, 22, 0.06);
}

.hero-art::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 48%, rgba(255, 255, 255, 0.96), transparent 29%),
    linear-gradient(180deg, rgba(250, 245, 237, 0.96), rgba(239, 229, 216, 0.94));
  content: "";
}

.hero-art::after {
  position: absolute;
  inset: 12% 10%;
  border: 1px solid rgba(23, 20, 15, 0.04);
  border-radius: 30px;
  content: "";
}

.hero-art__monogram {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(90%, 820px);
  aspect-ratio: 1;
}

.hero-art__vs {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(248, 241, 231, 0.96);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(300px, 34vw, 500px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.18em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98),
    0 20px 42px rgba(76, 54, 28, 0.08);
  filter: drop-shadow(0 12px 26px rgba(66, 47, 22, 0.07));
  transform: translateX(-8px);
}

.hero-art__horse {
  position: absolute;
  top: 14%;
  right: 13%;
  width: clamp(166px, 21vw, 260px);
  height: clamp(188px, 24vw, 306px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 54% 42% 46% 58% / 46% 42% 58% 54%;
  box-shadow:
    inset 0 0 0 20px rgba(255, 255, 255, 0.24),
    0 28px 54px rgba(48, 33, 18, 0.07);
  clip-path: polygon(
    30% 0%,
    42% 4%,
    58% 11%,
    72% 20%,
    83% 32%,
    91% 45%,
    95% 60%,
    93% 73%,
    85% 85%,
    75% 96%,
    51% 100%,
    41% 95%,
    33% 86%,
    28% 75%,
    26% 63%,
    24% 50%,
    23% 38%,
    24% 26%
  );
  opacity: 0.15;
  transform: rotate(10deg);
}

.hero-art__horse::before {
  position: absolute;
  top: 0;
  right: 20%;
  width: 30%;
  height: 24%;
  border-top: 8px solid rgba(255, 255, 255, 0.56);
  border-right: 8px solid rgba(255, 255, 255, 0.56);
  border-radius: 0 18px 0 0;
  transform: rotate(18deg);
  content: "";
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(74px, 7.6vw, 124px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-copy p:not(.eyebrow),
.section-head p,
.split p,
.wishlist-copy p,
.footer p,
.category-card p,
.step p,
details p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(36, 29, 22, 0.06);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
}

.strip span {
  padding: 18px clamp(18px, 4vw, 46px);
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.logo-studies {
  background:
    radial-gradient(circle at top left, rgba(200, 166, 106, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2));
}

.channels {
  background:
    radial-gradient(circle at top right, rgba(200, 166, 106, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
}

.channel-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(36, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(63, 45, 24, 0.05);
}

.channel-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.channel-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.channel-card.highlight {
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 201, 132, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.88);
}

.logo-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.tone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.tone-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(36, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(63, 45, 24, 0.06);
}

.tone-card.active {
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 201, 132, 0.22), transparent 30%),
    rgba(255, 255, 255, 0.84);
}

.tone-card__index {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.tone-card h3 {
  margin-bottom: 0;
}

.tone-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tone-card strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.logo-study-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.logo-study-card.active {
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 201, 132, 0.32), transparent 32%),
    rgba(255, 255, 255, 0.8);
}

.logo-study-card p {
  margin-bottom: 0;
}

.logo-study-mark {
  position: relative;
  display: grid;
  width: 118px;
  height: 118px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(185, 145, 77, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.6), transparent 24%),
    linear-gradient(145deg, #fbf2dd 0%, #ead1a0 35%, #c79c54 72%, #7e5d2b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -10px 18px rgba(61, 42, 18, 0.18),
    0 16px 30px rgba(35, 25, 12, 0.12);
}

.logo-study-mark__num,
.logo-study-mark__seven,
.logo-study-mark__horse {
  position: absolute;
  color: #fff6df;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42),
    0 3px 10px rgba(47, 33, 15, 0.36);
}

.logo-study-mark__num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.logo-study-mark__num--left {
  transform: translateX(-12px);
}

.logo-study-mark__horse {
  top: 18px;
  right: 16px;
  font-size: 20px;
  opacity: 0.9;
  transform: rotate(10deg);
}

.logo-study-mark__seven {
  top: 16px;
  right: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(10deg);
}

.section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.muted {
  background: var(--soft);
}

.section-head {
  display: grid;
  max-width: 1120px;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  margin-bottom: 34px;
}

.section-head.compact {
  display: block;
  max-width: 780px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #f8f2e8;
  color: var(--white);
  isolation: isolate;
}

.category-card.large {
  grid-row: span 2;
  min-height: 740px;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgba(52, 39, 26, 0.58) 100%);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  object-fit: cover;
}

.category-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.category-card span {
  color: #f3d8a2;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.step {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(36, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.64);
}

.step strong {
  display: block;
  margin-bottom: 44px;
  color: var(--gold-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 36px;
  align-items: center;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(36, 29, 22, 0.08);
  box-shadow: 0 24px 60px rgba(45, 31, 15, 0.06);
}

.numbers div {
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(36, 29, 22, 0.08);
  text-align: center;
}

.numbers div:last-child {
  border-right: 0;
}

.numbers strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
}

.numbers span {
  color: var(--muted);
  font-size: 13px;
}

.wishlist {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 44px;
  align-items: start;
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(36, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 60px rgba(45, 31, 15, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(36, 29, 22, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

details {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #efe6db;
  color: var(--ink);
  border-top: 1px solid rgba(36, 29, 22, 0.08);
}

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

@media (prefers-reduced-motion: reduce) {
  .brand-mark,
  .hero-art__vs,
  .hero-art__horse {
    animation: none;
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .section-head,
  .split,
  .wishlist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 460px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .category-grid,
  .steps,
  .faq-grid,
  .logo-studies-grid,
  .tone-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card.large {
    min-height: 410px;
  }
}

@media (max-width: 620px) {
  .topbar {
    position: sticky;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(251, 247, 240, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(36, 29, 22, 0.06);
  }

  .brand {
    align-items: center;
    gap: 0;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .brand-mark::after {
    font-size: 19px;
  }

  .header-actions {
    display: flex;
    gap: 6px;
  }

  .lang-switch {
    padding: 3px;
  }

  .lang-switch__btn {
    min-width: 34px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .utility-icon {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .utility-icon svg {
    width: 15px;
    height: 15px;
  }

  .utility-bag {
    min-width: 66px;
    padding: 0 10px;
  }

  .utility-bag span {
    font-size: 11px;
  }

  .numbers {
    grid-template-columns: 1fr;
  }

  .strip {
    grid-template-columns: 1fr;
  }

  .strip span,
  .numbers div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .numbers div {
    border-bottom-color: var(--line);
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
    justify-content: flex-start;
    padding: 24px 16px 18px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.6;
    max-width: 28ch;
  }

  .hero-tagline {
    max-width: 22ch;
    font-size: 18px;
  }

  .hero-note {
    max-width: 30ch;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(40px, 11vw, 58px);
    line-height: 0.88;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-actions .primary,
  .hero-actions .secondary {
    width: 100%;
  }

  .hero-art {
    display: grid;
    min-height: 320px;
    margin: 0 10px 10px;
    border: 1px solid rgba(36, 29, 22, 0.07);
    border-radius: 24px;
  }

  .hero-art__monogram {
    width: min(86%, 360px);
  }

  .hero-art__vs {
    font-size: clamp(220px, 42vw, 320px);
  }

  .hero-art__horse {
    width: 112px;
    height: 128px;
    top: 18%;
    right: 18%;
  }

  .logo-study-mark {
    width: 92px;
    height: 92px;
  }

  .section {
    padding: 34px 16px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .logo-studies,
  #vip,
  .wishlist,
  #faq,
  .channels {
    padding-top: 28px;
  }

  .category-card,
  .category-card.large {
    min-height: 300px;
  }

  .step {
    min-height: 0;
    padding: 18px;
  }

  .request-form {
    padding: 18px;
  }

  .wishlist {
    gap: 20px;
  }

  .faq-grid {
    gap: 12px;
  }

}

@media (min-width: 621px) and (max-width: 900px) {
  .nav,
  .header-actions {
    display: none;
  }

  .topbar {
    position: static;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-inline: clamp(16px, 5vw, 24px);
    padding-top: clamp(20px, 5vw, 32px);
    padding-bottom: clamp(28px, 6vw, 44px);
  }

}

@media (min-width: 901px) {
  .topbar {
    gap: 28px;
    padding-inline: clamp(28px, 4vw, 56px);
  }

  .brand {
    gap: 16px;
  }

  .brand-mark {
    width: 80px;
    height: 80px;
  }

  .brand strong {
    font-size: 18px;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .hero-copy {
    padding: clamp(84px, 9vw, 132px) clamp(36px, 5vw, 72px) clamp(72px, 8vw, 104px)
      clamp(36px, 5vw, 80px);
  }

  .hero-copy .eyebrow {
    font-size: 13px;
  }

  .hero-tagline {
    max-width: 22ch;
    font-size: clamp(26px, 2.2vw, 34px);
  }

  .hero-note {
    max-width: 38ch;
    font-size: 18px;
  }

  h1 {
    font-size: clamp(96px, 9vw, 156px);
    max-width: 840px;
  }

  .hero-art {
    min-height: calc(100svh - 74px);
  }

  .hero-art__monogram {
    width: min(84%, 900px);
  }

  .hero-art__vs {
    font-size: clamp(360px, 34vw, 560px);
  }

  .hero-art__horse {
    width: clamp(200px, 18vw, 300px);
    height: clamp(228px, 21vw, 340px);
  }

  .hero-actions .primary,
  .hero-actions .secondary {
    min-width: 220px;
  }

  .strip span {
    padding-block: 22px;
  }

  .section {
    padding-block: clamp(72px, 8vw, 122px);
  }

  .section-head {
    gap: 42px;
  }

  .section-head h2 {
    font-size: clamp(42px, 5vw, 68px);
  }

  .category-card.large {
    min-height: 780px;
  }

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

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

  .category-grid {
    grid-template-columns: 1.18fr 0.82fr;
  }

  .wishlist {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  }

  .footer {
    padding-block: 40px;
  }
}
