: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;
  scroll-padding-top: 108px;
}

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: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  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;
  justify-self: start;
  width: 84px;
  min-width: 0;
}

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

.brand-mark {
  display: grid;
  width: 82px;
  height: 76px;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark__img {
  display: block;
  width: 84px;
  height: 82px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.06);
}

.brand-text {
  display: none;
}

.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;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 22px);
  min-width: 0;
  color: var(--muted);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  white-space: nowrap;
}

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

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

.mobile-dock {
  display: none;
}

.footer-social-icons {
  display: none;
}

.lang-switch {
  position: relative;
  display: inline-block;
}

.lang-switch__current {
  display: inline-flex;
  min-width: 54px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(238, 227, 210, 0.92));
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 8px 18px rgba(62, 44, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.lang-switch__current::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 62px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: 0 18px 46px rgba(36, 29, 22, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.lang-switch.open .lang-switch__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switch__btn {
  min-width: 48px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 12px;
  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);
}

.view-switch {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.view-switch[aria-pressed="true"] {
  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,
.lang-switch__current:focus-visible,
.view-switch: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(94%, 760px);
  aspect-ratio: 0.9;
}

.hero-logo {
  position: relative;
  z-index: 3;
  width: clamp(250px, 34vw, 520px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 42px rgba(66, 47, 22, 0.12));
  transform: none;
}

.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-system-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 1px;
  max-width: 1120px;
  margin: 0 0 14px;
  overflow: hidden;
  border: 1px solid rgba(36, 29, 22, 0.09);
  background: rgba(42, 31, 21, 0.1);
}

.channel-system-board article {
  min-height: 164px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(247, 238, 225, 0.82));
}

.channel-system-board__close {
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 165, 109, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(48, 38, 29, 0.98), rgba(86, 65, 43, 0.94)) !important;
  color: #fff8ed;
}

.channel-system-board span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.channel-system-board__close span {
  color: rgba(255, 240, 213, 0.82);
}

.channel-system-board strong {
  display: block;
  max-width: 12ch;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 650;
  line-height: 0.98;
}

.channel-system-board p {
  max-width: 300px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.channel-system-board__close p {
  color: rgba(255, 248, 237, 0.74);
}

.channel-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(36, 29, 22, 0.08);
  background: rgba(42, 31, 21, 0.08);
}

.channel-flow div {
  min-height: 148px;
  padding: 22px;
  background: rgba(255, 252, 247, 0.86);
}

.channel-flow span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.channel-flow strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 650;
  line-height: 1;
}

.channel-flow p {
  max-width: 260px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.heritage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 92% 12%, rgba(201, 165, 109, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.38);
}

.heritage-copy {
  max-width: 640px;
}

.heritage-copy p:not(.eyebrow),
.heritage-points p,
.look-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.heritage-points {
  display: grid;
  gap: 12px;
}

.heritage-points article {
  display: grid;
  grid-template-columns: 48px 0.36fr 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(36, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.heritage-points span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.heritage-points strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
}

.heritage-points p {
  margin: 0;
}

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

.channel-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  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__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.channel-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(180, 135, 68, 0.32);
  border-radius: 50%;
  background: rgba(253, 247, 238, 0.82);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.channel-icon svg {
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.channel-icon--youtube svg path {
  fill: currentColor;
  stroke-width: 0;
}

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

.channel-card__head span:not(.channel-icon) {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 11px;
  border: 1px solid rgba(143, 106, 57, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.channel-points {
  display: grid;
  gap: 8px;
  margin: auto 0 20px;
  padding: 0;
  list-style: none;
}

.channel-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(43, 34, 26, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.channel-points li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
  content: "";
}

.channel-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(36, 29, 22, 0.12);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.channel-action.primary-link {
  border-color: var(--ink);
  background: var(--ink);
  color: #fffaf1;
}

.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);
  scroll-margin-top: 108px;
}

.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);
}

.wishlist-shelf {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(36, 29, 22, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(244, 235, 222, 0.86)),
    rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.wishlist-shelf__head {
  max-width: 720px;
}

.wishlist-shelf__head h3 {
  margin: 6px 0 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
}

.wishlist-shelf__head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.wishlist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wishlist-tags span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(36, 29, 22, 0.09);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.shop-look {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(244, 235, 222, 0.58));
}

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

.look-card {
  display: grid;
  min-height: 560px;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  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);
}

.look-card img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.look-card div {
  padding: 22px;
}

.look-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.look-card h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
}

.look-card p {
  margin-bottom: 0;
}

.agent-system {
  background:
    linear-gradient(180deg, rgba(245, 235, 222, 0.72), rgba(255, 255, 255, 0.52));
}

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

.agent-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(36, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.agent-grid strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 650;
}

.agent-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.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;
}

.wishlist-flow {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.wishlist-flow article {
  display: grid;
  grid-template-columns: 42px 0.34fr 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(36, 29, 22, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.wishlist-flow span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.wishlist-flow strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
}

.wishlist-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.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,
  .heritage {
    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,
  .channel-system-board,
  .channel-flow,
  .logo-studies-grid,
  .tone-grid,
  .channel-grid,
  .agent-grid,
  .look-grid {
    grid-template-columns: 1fr;
  }

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

  .channel-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .topbar {
    position: sticky;
    grid-template-columns: 60px minmax(0, 1fr);
    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;
    width: 60px;
  }

  .brand-text {
    display: none;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    overflow: visible;
  }

  .brand-mark__img {
    width: 56px;
    height: 52px;
    transform: none;
  }

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

  .view-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lang-switch {
    justify-self: end;
  }

  .lang-switch__current {
    min-width: 50px;
    min-height: 36px;
    font-size: 11px;
  }

  .lang-switch__menu {
    top: calc(100% + 6px);
    min-width: 56px;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0 14px 34px rgba(36, 29, 22, 0.12);
  }

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

  .mobile-dock {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(62px, 0.7fr) minmax(116px, 1fr) minmax(108px, 1.02fr);
    align-items: center;
    gap: 4px;
    min-height: 58px;
    padding: 8px 7px 8px 14px;
    border: 1px solid rgba(143, 106, 57, 0.16);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.94);
    box-shadow: 0 18px 42px rgba(36, 29, 22, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-dock a {
    color: var(--gold-dark);
  }

  .mobile-dock .mobile-dock__request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    border: 1px solid rgba(143, 106, 57, 0.38);
    border-radius: 999px;
    background: linear-gradient(180deg, #d8bb82 0%, var(--gold) 48%, #b68b4e 100%);
    font-family: var(--serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
    color: #111;
    box-shadow:
      0 10px 22px rgba(143, 106, 57, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }

  .mobile-dock__icons {
    display: grid;
    grid-template-columns: repeat(6, 17px);
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
  }

  .mobile-dock__icons a {
    display: grid;
    place-items: center;
    width: 17px;
    height: 34px;
    border-radius: 999px;
  }

  .mobile-dock .mobile-dock__telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(143, 106, 57, 0.38);
    background: linear-gradient(180deg, #d8bb82 0%, var(--gold) 48%, #b68b4e 100%);
    color: #111;
    font-family: var(--serif);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow:
      0 10px 22px rgba(143, 106, 57, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }

  .mobile-dock svg {
    width: 16px;
    height: 16px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-dock__icons a[aria-label="YouTube"] svg path:last-child {
    fill: currentColor;
    stroke-width: 0;
  }

  .footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding-block: 30px;
  }

  .footer .primary {
    display: none;
  }

  .footer-social-icons {
    display: grid;
    grid-template-columns: repeat(3, 34px);
    grid-auto-rows: 34px;
    gap: 8px;
    justify-content: end;
  }

  .footer-social-icons a {
    display: grid;
    place-items: center;
    border: 1px solid rgba(143, 106, 57, 0.2);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.62);
    color: var(--gold-dark);
  }

  .footer-social-icons svg {
    width: 17px;
    height: 17px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .footer-social-icons a[aria-label="YouTube"] svg path:last-child {
    fill: currentColor;
    stroke-width: 0;
  }

  .utility-icon {
    display: none;
  }

  .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: 18px 16px 14px;
  }

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

  .hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.52;
    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: 12px;
  }

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

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

  .hero-art::after {
    inset: 14% 10%;
    border-radius: 22px;
  }

  .hero-art__monogram {
    width: min(76%, 260px);
  }

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

  .hero-logo {
    width: clamp(156px, 48vw, 230px);
    height: auto;
  }

  .hero-art__horse {
    width: 84px;
    height: 96px;
    top: 18%;
    right: 20%;
  }

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

  .section {
    padding: 34px 16px;
    scroll-margin-top: 72px;
  }

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

  .logo-studies,
  .wishlist,
  #faq,
  .heritage,
  .shop-look {
    padding-top: 28px;
  }

  .channels {
    display: none;
  }

  .heritage-points article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wishlist-flow article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .look-card {
    min-height: 0;
  }

  .look-card img {
    min-height: 300px;
  }

  .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);
  }

  .channel-flow div,
  .channel-card {
    padding: 18px;
  }

  .channel-card__head {
    align-items: flex-start;
  }

  .channel-action {
    width: 100%;
  }

  .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;
  }
}

body.desktop-preview {
  overflow-x: auto;
  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%);
}

body.desktop-preview .brand span:last-child {
  display: flex;
}

body.desktop-preview .nav {
  display: flex;
}

body.desktop-preview .hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: calc(100svh - 74px);
}

body.desktop-preview .hero-art {
  display: grid;
  min-height: calc(100svh - 74px);
  border-top: 0;
  border-left: 1px solid rgba(36, 29, 22, 0.06);
}

body.desktop-preview .hero-copy {
  min-height: calc(100svh - 74px);
  justify-content: center;
}

body.desktop-preview .hero-actions .primary,
body.desktop-preview .hero-actions .secondary {
  width: auto;
}

body.desktop-preview .channel-grid,
body.desktop-preview .tone-grid,
body.desktop-preview .steps,
body.desktop-preview .faq-grid,
body.desktop-preview .logo-studies-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

body.desktop-preview .strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
