:root {
  --ink: #273142;
  --ink-strong: #141c28;
  --cream: #f4f0e7;
  --paper: #fffdf8;
  --gold: #dfad45;
  --gold-light: #f2cf7a;
  --sage: #8a9b8d;
  --line: rgba(39, 49, 66, 0.16);
  --muted: #667080;
  --radius: 24px;
  --shell: min(1180px, calc(100vw - 40px));
  --public-h1-size: clamp(2.85rem, 3.6vw, 3.35rem);
  --public-h2-size: clamp(2.25rem, 3vw, 2.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-modal-open {
  overflow: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.4vw, 6.1rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}

h3 {
  font-size: 2rem;
}

/* One shared display scale for headings across the public site. */
#main h1 {
  font-size: var(--public-h1-size);
}

#main h2 {
  font-size: var(--public-h2-size);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 176px;
  height: auto;
}

.main-nav {
  display: flex;
  margin-left: auto;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.94rem;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: grid;
  gap: 1px;
  color: var(--ink-strong);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.header-phone span {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: flex;
  min-width: 94px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 750;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary i,
.mobile-menu summary i::before,
.mobile-menu summary i::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 160ms ease;
}

.mobile-menu summary i {
  position: relative;
}

.mobile-menu summary i::before {
  position: absolute;
  top: -5px;
}

.mobile-menu summary i::after {
  position: absolute;
  top: 5px;
}

.mobile-menu[open] summary i {
  background: transparent;
}

.mobile-menu[open] summary i::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] summary i::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu__panel {
  position: absolute;
  z-index: 25;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  width: min(340px, calc(100vw - 28px));
  gap: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(20, 28, 40, .16);
}

.mobile-menu__panel > a:not(.button) {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.mobile-menu__panel > a[aria-current="page"] {
  color: #8b651e;
  font-weight: 750;
}

.mobile-menu__panel .mobile-menu__phone {
  margin-bottom: 14px;
  border-bottom: 0;
  font-weight: 750;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

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

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.9rem;
}

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

.button--accent {
  color: var(--ink-strong);
  background: var(--gold-light);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
}

.button--light {
  color: var(--ink-strong);
  background: var(--paper);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row--center {
  justify-content: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: #9c7429;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-light);
}

.hero {
  overflow: hidden;
  padding: 76px 0 86px;
  background:
    radial-gradient(circle at 78% 16%, rgba(223, 173, 69, 0.2), transparent 31%),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: 78px;
}

.hero h1 {
  max-width: 600px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.85rem, 3.6vw, 3.35rem);
  font-weight: 680;
  line-height: 1.01;
  letter-spacing: -.05em;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 32px;
  color: #4e5969;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}

.hero-note {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  margin: 0;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: min(480px, 92%);
  height: 540px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .72);
  border-radius: 36px 120px 36px 36px;
  background: #173f3b;
  box-shadow: 0 28px 70px rgba(20, 28, 40, .2);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 28, 40, .18), transparent 36%);
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.hero-photo-caption {
  position: absolute;
  z-index: 2;
  right: -2px;
  bottom: 14px;
  display: grid;
  width: 270px;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  color: var(--ink-strong);
  background: rgba(255, 253, 248, .93);
  box-shadow: 0 16px 40px rgba(20, 28, 40, .15);
  backdrop-filter: blur(12px);
}

.hero-photo-caption span {
  color: #8b651e;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.16;
}

.hero-sample-note {
  position: absolute;
  z-index: 3;
  bottom: 112px;
  left: -34px;
  display: grid;
  width: 244px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(20, 28, 40, .22);
}

.hero-sample-note > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-strong);
  background: var(--gold-light);
  font-weight: 800;
}

.hero-sample-note p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  line-height: 1.45;
}

.hero-sample-note strong {
  display: block;
  margin-bottom: 2px;
  color: white;
  font-size: .84rem;
}

.proof-strip {
  padding: 12px 0;
  color: white;
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.proof-grid span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(242, 207, 122, .42);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 800;
}

.proof-grid p {
  margin-bottom: 0;
  font-size: .82rem;
  line-height: 1.35;
}

.section {
  padding: 110px 0;
}

.section[id] {
  scroll-margin-top: 82px;
}

.supply-section {
  padding: 48px 0 54px;
}

.section--tint {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 460px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--supply h2 {
  max-width: 720px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.25rem, 3vw, 2.75rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading--supply h2 span {
  display: block;
}

.section-heading--supply {
  margin-bottom: 24px;
}

.section-heading--supply > p {
  font-size: .98rem;
}

.supply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 22px;
}

.supply-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.supply-card--stock {
  background:
    linear-gradient(to bottom right, transparent 62%, rgba(223, 173, 69, .13)),
    white;
}

.supply-card--dark {
  color: white;
  border-color: var(--ink);
  background:
    radial-gradient(circle at 86% 78%, rgba(223, 173, 69, .24), transparent 30%),
    var(--ink);
}

.supply-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
}

.supply-card__label {
  margin-bottom: 12px;
  color: #9c7429;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.supply-card--dark .supply-card__label {
  color: var(--gold-light);
}

.supply-card__index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #9c7429;
  font-size: .72rem;
  font-weight: 800;
}

.supply-card--dark .supply-card__index {
  border-color: rgba(255, 255, 255, .2);
  color: var(--gold-light);
}

.supply-card h3 {
  max-width: 450px;
  margin-bottom: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.supply-card--dark h3 {
  color: white;
}

.supply-card__intro {
  max-width: 500px;
  margin: 14px 0 12px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.supply-card--dark .supply-card__intro {
  color: rgba(255, 255, 255, .72);
}

.supply-list {
  display: grid;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.supply-list li {
  position: relative;
  padding: 9px 0 9px 29px;
  border-top: 1px solid var(--line);
  font-size: .84rem;
}

.supply-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.supply-list li::before {
  position: absolute;
  top: 9px;
  left: 2px;
  color: #9c7429;
  content: "✓";
  font-weight: 800;
}

.supply-card--dark .supply-list li {
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .86);
}

.supply-card--dark .supply-list li::before {
  color: var(--gold-light);
}

.supply-card__fact {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(223, 173, 69, .38);
  border-radius: 16px;
  background: rgba(242, 207, 122, .13);
}

.supply-card__fact > span {
  color: #8b651e;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.supply-card__fact > strong {
  color: var(--ink-strong);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.18rem;
}

.supply-card__fact > small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
}

.supply-card__fact--dark {
  border-color: rgba(242, 207, 122, .26);
  background: rgba(255, 255, 255, .07);
}

.supply-card__fact--dark > span {
  color: var(--gold-light);
}

.supply-card__fact--dark > small {
  color: rgba(255, 255, 255, .58);
}

.supply-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 5px 0 3px;
}

.supply-routes > div {
  display: grid;
  gap: 1px;
}

.supply-routes > div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.supply-routes small {
  color: rgba(255, 255, 255, .58);
  font-size: .68rem;
  text-transform: uppercase;
}

.supply-routes strong {
  color: white;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
}

.supply-card__button {
  align-self: flex-start;
  min-height: 46px;
  margin-top: 12px;
  padding: 12px 19px;
  font-size: .9rem;
}

.risk-section {
  padding: 58px 0 64px;
}

.risk-heading {
  margin-bottom: 30px;
}

.risk-heading h2 {
  max-width: 750px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.3rem, 3.4vw, 3.2rem);
  font-weight: 680;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.risk-heading > p {
  font-size: .96rem;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.risk-card {
  display: grid;
  min-height: 148px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(39, 49, 66, .16);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(30, 40, 55, .055);
}

.risk-card__side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 17px 18px;
}

.risk-card__side > span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.risk-card__side h3 {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 680;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.risk-card__side--problem {
  background: rgba(39, 49, 66, .085);
}

.risk-card__side--problem h3 {
  color: #354052;
}

.risk-card__side--solution {
  background:
    linear-gradient(135deg, rgba(242, 207, 122, .4), rgba(255, 248, 228, .9));
}

.risk-card__side--solution > span {
  color: #775316;
}

.risk-card__side--solution h3 {
  color: var(--ink-strong);
}

.risk-card__arrow {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  align-self: center;
  margin-inline: -17px;
  place-items: center;
  border: 1px solid rgba(223, 173, 69, .42);
  border-radius: 50%;
  color: var(--ink-strong);
  background: var(--gold-light);
  font-weight: 800;
}

.risk-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  color: white;
  background: var(--ink);
}

.risk-action > div {
  display: grid;
  gap: 2px;
}

.risk-action strong {
  font-size: 1rem;
}

.risk-action span {
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
}

.risk-action .button {
  flex: 0 0 auto;
  color: var(--ink-strong);
  background: var(--gold-light);
}

.process-section {
  padding: 58px 0 64px;
}

.process-heading {
  margin-bottom: 34px;
}

.process-heading h2 {
  max-width: 760px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.3rem, 3.4vw, 3.2rem);
  font-weight: 680;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.process-heading > p {
  font-size: .96rem;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(223, 173, 69, .22));
  content: "";
}

.process-step {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 0 24px 6px;
  border-right: 1px solid var(--line);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-step__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-step__number {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(223, 173, 69, .48);
  border-radius: 50%;
  color: #8b651e;
  background: var(--paper);
  font-size: .7rem;
  font-weight: 800;
}

.process-step__label {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--cream);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 24px 0 10px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.process-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(223, 173, 69, .3);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(242, 207, 122, .16), rgba(255, 255, 255, .72));
}

.process-result > span {
  color: #8b651e;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.process-result p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.process-result strong {
  color: var(--ink-strong);
}

.assortment-section {
  padding: 58px 0 64px;
  color: white;
  background:
    radial-gradient(circle at 84% 12%, rgba(223, 173, 69, .14), transparent 28%),
    var(--ink-strong);
}

.assortment-heading {
  margin-bottom: 30px;
}

.assortment-heading h2 {
  max-width: 760px;
  color: white;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.3rem, 3.4vw, 3.2rem);
  font-weight: 680;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.assortment-heading > p {
  color: rgba(255, 255, 255, .66);
  font-size: .96rem;
}

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

.assortment-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  transition: border-color 160ms ease, transform 160ms ease;
}

.assortment-card:hover {
  border-color: rgba(242, 207, 122, .52);
  transform: translateY(-3px);
}

.assortment-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.assortment-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #283447;
}

.assortment-card__image::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(20, 28, 40, .55), transparent);
  content: "";
}

.assortment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.assortment-card:hover .assortment-card__image img {
  transform: scale(1.025);
}

.assortment-card__image > span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 13px;
  left: 14px;
  color: white;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.assortment-card__body {
  display: grid;
  min-height: 104px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 15px 16px;
}

.assortment-card h3 {
  margin-bottom: 5px;
  color: white;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 680;
  letter-spacing: -.03em;
}

.assortment-card p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  line-height: 1.4;
}

.assortment-card__arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(242, 207, 122, .4);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 800;
}

.assortment-all {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
}

.assortment-all__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 11px;
}

.assortment-all__heading > div {
  display: grid;
  gap: 2px;
}

.assortment-all__heading span {
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.assortment-all__heading h3 {
  margin: 0;
  color: white;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 680;
  letter-spacing: -.025em;
}

.assortment-all__heading .button {
  flex: 0 0 auto;
}

.assortment-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assortment-list li {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  transition: border-color 160ms ease, background 160ms ease;
}

.assortment-list a {
  display: flex;
  min-height: 100%;
  align-items: center;
  padding: 7px 10px;
  color: white;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.assortment-list li:hover,
.assortment-list li:focus-within {
  border-color: rgba(242, 207, 122, .46);
  background: rgba(242, 207, 122, .08);
}

.assortment-list a:focus-visible {
  border-radius: 9px;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.assortment-all__note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: .76rem;
}

.request-section {
  padding: 64px 0 76px;
}

.request-box {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 52px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 82% 14%, rgba(223, 173, 69, .28), transparent 27%),
    linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 45%),
    var(--ink);
}

.request-box h2 {
  max-width: 520px;
  margin-bottom: 16px;
  color: white;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.5rem, 3.7vw, 3.55rem);
  font-weight: 680;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.request-box p {
  color: rgba(255,255,255,.72);
}

.request-copy__lead {
  max-width: 500px;
  margin: 0;
  font-size: .94rem;
  line-height: 1.55;
}

.request-steps {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.request-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.request-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.request-steps > li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(242, 207, 122, .38);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 800;
}

.request-steps div {
  display: grid;
  gap: 2px;
}

.request-steps strong {
  color: white;
  font-size: .9rem;
}

.request-steps small {
  color: rgba(255, 255, 255, .58);
  font-size: .74rem;
  line-height: 1.35;
}

.request-contact-note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 22px;
  padding: 13px 14px;
  border: 1px solid rgba(242, 207, 122, .2);
  border-radius: 12px;
  background: rgba(242, 207, 122, .09);
}

.request-contact-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-strong);
  background: var(--gold-light);
  font-size: .72rem;
  font-weight: 900;
}

.request-contact-note p {
  margin: 2px 0 0;
  font-size: .76rem;
  line-height: 1.45;
}

.request-contact-note strong {
  color: white;
}

.request-actions p {
  margin: 18px 0 0;
  font-size: 0.8rem;
}

.page-hero {
  padding: 100px 0 82px;
  background: var(--cream);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
}

.page-hero > .shell > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
}

.page-hero--center {
  min-height: 65vh;
  text-align: center;
}

.not-found {
  overflow: hidden;
  padding: 78px 0 90px;
  background:
    radial-gradient(circle at 78% 12%, rgba(223, 173, 69, .18), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.not-found__grid {
  display: grid;
  min-height: 580px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 84px;
}

.not-found__copy {
  max-width: 610px;
}

.not-found__copy h1 {
  margin-bottom: 24px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.15rem, 4.6vw, 4.55rem);
  font-weight: 680;
  line-height: 1.01;
  letter-spacing: -.052em;
}

.not-found__lead {
  max-width: 570px;
  margin-bottom: 30px;
  color: #4e5969;
  font-size: 1.08rem;
  line-height: 1.6;
}

.not-found__actions {
  margin-bottom: 40px;
}

.not-found__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.not-found__links > span {
  width: 100%;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.not-found__links a {
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}

.not-found__links i {
  margin-left: 4px;
  color: #9c7429;
  font-style: normal;
}

.not-found__visual {
  position: relative;
  min-height: 500px;
}

.not-found__fabric {
  position: absolute;
  inset: 0 0 18px 12px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .72);
  border-radius: 38px 124px 38px 38px;
  background:
    radial-gradient(circle at 75% 22%, rgba(242, 207, 122, .2), transparent 24%),
    repeating-linear-gradient(102deg, rgba(255, 255, 255, .045) 0 2px, transparent 2px 9px),
    linear-gradient(145deg, #1f3542, #14232c 62%, #263e45);
  box-shadow: 0 28px 72px rgba(20, 28, 40, .22);
}

.not-found__fabric::before,
.not-found__fabric::after {
  position: absolute;
  border: 1px solid rgba(242, 207, 122, .22);
  border-radius: 50%;
  content: "";
}

.not-found__fabric::before {
  top: -118px;
  right: -72px;
  width: 330px;
  height: 330px;
}

.not-found__fabric::after {
  right: 82px;
  bottom: -164px;
  width: 380px;
  height: 380px;
}

.not-found__code {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: var(--gold-light);
  font-size: clamp(6.5rem, 10vw, 9.2rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -.08em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, .22);
  transform: translate(-53%, -53%);
}

.not-found__seam {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: 38px;
  width: 128px;
  border-top: 1px dashed rgba(242, 207, 122, .5);
  transform: rotate(-18deg);
}

.not-found__label {
  position: absolute;
  z-index: 2;
  right: -14px;
  bottom: 0;
  display: grid;
  width: 250px;
  gap: 5px;
  padding: 19px 21px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 18px;
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 16px 42px rgba(20, 28, 40, .16);
  backdrop-filter: blur(12px);
}

.not-found__label small {
  color: #8b651e;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.not-found__label strong {
  color: var(--ink-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.18;
}

.catalog-hero {
  padding: 56px 0 60px;
  background:
    radial-gradient(circle at 88% 4%, rgba(223, 173, 69, .16), transparent 26%),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.catalog-hero__copy {
  max-width: none;
}

.catalog-hero h1 {
  max-width: 1060px;
  margin-bottom: 24px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 680;
  line-height: 1.03;
  letter-spacing: -.048em;
}

.catalog-hero__copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 28px;
  color: #4e5969;
  font-size: 1.02rem;
  line-height: 1.6;
}

.catalog-index {
  position: sticky;
  z-index: 9;
  top: 82px;
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(14px);
}

.catalog-index__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 24px;
}

.catalog-index__inner > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.catalog-index__inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-index a {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.catalog-index a:hover {
  border-color: rgba(223, 173, 69, .58);
  background: rgba(242, 207, 122, .18);
}

.catalog-section {
  padding: 78px 0 96px;
  background: var(--paper);
}

.catalog-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 46px;
  margin-bottom: 68px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 95% 0, rgba(223, 173, 69, .16), transparent 36%),
    var(--cream);
}

.catalog-guide__copy h2 {
  max-width: 590px;
  margin-bottom: 18px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.catalog-guide__copy > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: #4e5969;
  line-height: 1.65;
}

.catalog-guide__criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.catalog-guide__criteria > div {
  padding: 18px;
  border: 1px solid rgba(29, 38, 49, .1);
  border-radius: 14px;
  background: rgba(255, 253, 248, .8);
}

.catalog-guide__criteria dt {
  margin-bottom: 7px;
  color: var(--ink-strong);
  font-size: .78rem;
  font-weight: 800;
}

.catalog-guide__criteria dd {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.5;
}

.catalog-group {
  scroll-margin-top: 174px;
}

.catalog-group + .catalog-group {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.catalog-group__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.catalog-group__title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-group__title > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(223, 173, 69, .42);
  border-radius: 50%;
  color: #8b651e;
  background: rgba(242, 207, 122, .12);
  font-size: .68rem;
  font-weight: 800;
}

.catalog-group__heading .eyebrow {
  margin-bottom: 7px;
  font-size: .64rem;
}

.catalog-group__heading h2 {
  margin-bottom: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 680;
  letter-spacing: -.045em;
}

.catalog-group__meta {
  display: grid;
  justify-items: end;
  gap: 7px;
  margin-bottom: 4px;
}

.catalog-group__meta > span {
  color: var(--muted);
  font-size: .72rem;
}

.catalog-group__meta > a {
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
}

.catalog-group__meta i {
  margin-left: 5px;
  color: #9c7429;
  font-style: normal;
}

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

.fabric-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(28, 37, 50, .045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fabric-card:hover {
  border-color: rgba(223, 173, 69, .48);
  box-shadow: 0 18px 42px rgba(28, 37, 50, .09);
  transform: translateY(-2px);
}

.fabric-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ebe8df;
}

.fabric-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.fabric-card:hover .fabric-card__image img {
  transform: scale(1.025);
}

.fabric-card__count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 999px;
  color: white;
  background: rgba(20, 28, 40, .78);
  font-size: .62rem;
  font-weight: 750;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.fabric-card__empty,
.fabric-gallery__empty {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(223,173,69,.12), transparent),
    #eeece6;
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fabric-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.fabric-card__meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
  color: #8b651e;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.fabric-card__meta span:last-child {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.fabric-card h3 {
  margin-bottom: 6px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 680;
  line-height: 1.14;
  letter-spacing: -.035em;
}

.fabric-card h3 a {
  text-decoration: none;
}

.fabric-card__composition {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.fabric-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  padding-bottom: 8px;
  color: #4f5a6a;
  font-size: .68rem;
}

.fabric-card__specs span + span {
  position: relative;
}

.fabric-card__specs span + span::before {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.fabric-card__colours {
  display: flex;
  min-height: 17px;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 13px;
}

.fabric-card__colours span {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(39,49,66,.2);
  border-radius: 50%;
  background: #d9d5cb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
}

.fabric-card__colours small {
  margin-left: 2px;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 750;
}

.fabric-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 750;
  text-decoration: none;
}

.fabric-card__link i {
  color: #9c7429;
  font-style: normal;
}

.catalog-placeholder {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 38px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.catalog-placeholder__mark {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--ink);
  font-size: 2.8rem;
  font-weight: 700;
}

.catalog-placeholder h2 {
  margin-bottom: 12px;
  font-size: 2.7rem;
}

.catalog-placeholder p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.catalog-placeholder .button {
  margin-top: 8px;
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 90px;
  padding: 42px 46px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(223, 173, 69, .25), transparent 28%),
    var(--ink);
}

.catalog-cta > div {
  max-width: 720px;
}

.catalog-cta h2 {
  margin-bottom: 12px;
  color: white;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.catalog-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.catalog-cta > .button {
  flex: 0 0 auto;
}

.catalog-copy {
  max-width: 820px;
  margin-top: 80px;
  font-size: 1.05rem;
}

.category-hero {
  padding: 42px 0 50px;
  background:
    radial-gradient(circle at 90% 0, rgba(223, 173, 69, .14), transparent 25%),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.category-hero .breadcrumbs {
  margin-bottom: 26px;
}

.category-hero h1 {
  max-width: 1020px;
  margin-bottom: 20px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 4.2vw, 4.25rem);
  font-weight: 680;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.category-hero__lead {
  max-width: 760px;
  margin-bottom: 24px;
  color: #4e5969;
  font-size: 1.02rem;
  line-height: 1.6;
}

.category-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.category-hero__meta span {
  position: relative;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.category-hero__meta span + span::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.category-page {
  padding: 58px 0 88px;
  background: var(--paper);
}

.category-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.category-toolbar .eyebrow {
  margin-bottom: 7px;
  font-size: .64rem;
}

.category-toolbar h2 {
  margin-bottom: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 680;
  letter-spacing: -.045em;
}

.category-toolbar > a {
  margin-bottom: 7px;
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
}

.category-toolbar i {
  margin-left: 5px;
  color: #9c7429;
  font-style: normal;
}

.category-overview {
  margin-top: 72px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 0, rgba(223, 173, 69, .15), transparent 34%),
    var(--cream);
}

.category-overview__heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.category-overview__heading h2 {
  margin-bottom: 18px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.category-overview__heading > p:last-child {
  margin-bottom: 0;
  color: #4e5969;
  line-height: 1.65;
}

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

.category-overview__grid article {
  padding: 22px;
  border: 1px solid rgba(29, 38, 49, .1);
  border-radius: 15px;
  background: rgba(255, 253, 248, .82);
}

.category-overview__grid h3 {
  margin-bottom: 9px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.category-overview__grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

.category-overview__links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.category-overview__links > span {
  flex: 0 0 auto;
  padding-top: 7px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.category-overview__links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.category-overview__links a {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .68);
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
}

.category-overview__links a:hover {
  border-color: rgba(223, 173, 69, .62);
  background: rgba(242, 207, 122, .18);
}

.category-overview__note {
  margin: 18px 0 0;
  color: #4e5969;
  font-size: .78rem;
  line-height: 1.6;
}

.category-cta {
  margin-top: 72px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: .78rem;
}

.breadcrumbs a {
  color: inherit;
}

.detail-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-page {
  padding: 32px 0 78px;
}

.product-page__breadcrumbs {
  margin-bottom: 32px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: start;
  gap: clamp(48px, 5.8vw, 82px);
}

.product-gallery,
.product-summary {
  min-width: 0;
}

.product-gallery__stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ebe8df;
}

.product-gallery__stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__empty {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  font-size: .9rem;
}

.product-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  color: white;
  background: rgba(20, 28, 40, .72);
  box-shadow: 0 8px 24px rgba(20, 28, 40, .12);
  font-size: .64rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.product-gallery__views {
  display: flex;
  gap: 9px;
  margin-top: 12px;
}

.product-gallery__view {
  position: relative;
  overflow: hidden;
  width: 78px;
  padding: 0;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #ebe8df;
  cursor: pointer;
}

.product-gallery__view::after {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.product-gallery__view:hover::after,
.product-gallery__view.is-active::after {
  border-color: var(--ink);
}

.product-gallery__view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-colours {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-colours__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
}

.product-colours__heading p {
  margin-bottom: 0;
}

.product-colours__heading strong {
  font-size: .96rem;
  font-weight: 700;
}

.product-colours__heading > span {
  color: var(--muted);
  font-size: .7rem;
}

.product-colours__rail {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 2px 13px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(39, 49, 66, .25) transparent;
  scrollbar-width: thin;
}

.product-colour {
  display: grid;
  flex: 0 0 104px;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: .68rem;
  font-weight: 650;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-colour:hover {
  border-color: rgba(39, 49, 66, .4);
  transform: translateY(-1px);
}

.product-colour.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.product-colour > img,
.product-colour__swatch,
.product-colour__empty {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 9px;
  object-fit: cover;
  place-items: center;
}

.product-colour__empty {
  color: rgba(39, 49, 66, .35);
  background: var(--cream);
  font-weight: 800;
}

.product-colour > span:last-child {
  overflow: hidden;
  padding: 0 3px 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-colours__note {
  max-width: 560px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.5;
}

.product-summary {
  position: sticky;
  top: 112px;
  padding-top: 8px;
}

.product-summary .eyebrow {
  margin-bottom: 12px;
}

.product-summary h1 {
  max-width: 11ch;
  margin-bottom: 15px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 4.6vw, 4.35rem);
  font-weight: 680;
  line-height: 1.01;
  letter-spacing: -.05em;
}

.product-summary__article {
  margin-bottom: 24px;
  color: #9a681c;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-summary__lead {
  max-width: 520px;
  margin-bottom: 28px;
  color: #525d6d;
  font-size: 1.02rem;
  line-height: 1.58;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}

.product-specs > div {
  min-width: 0;
  padding: 15px 14px 15px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs > div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.product-specs dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .7rem;
}

.product-specs dd {
  margin: 0;
  color: var(--ink-strong);
  font-size: .94rem;
  font-weight: 720;
  line-height: 1.35;
}

.product-supply {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: var(--cream);
}

.product-supply > div {
  display: grid;
  gap: 7px;
}

.product-supply span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  font-weight: 650;
}

.product-supply i {
  display: grid;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: var(--ink-strong);
  background: var(--gold-light);
  font-size: .68rem;
  font-style: normal;
  place-items: center;
}

.product-summary__notice {
  margin: 14px 0 20px;
  padding: 16px 17px;
  border-left: 3px solid var(--gold);
  background: rgba(244, 240, 231, .55);
}

.product-summary__notice strong {
  font-size: .82rem;
}

.product-summary__notice p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.5;
}

.product-summary__button {
  width: 100%;
}

.product-summary__response {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .68rem;
  text-align: center;
}

.product-request-modal {
  width: min(900px, calc(100vw - 40px));
  max-width: none;
  max-height: min(860px, calc(100dvh - 40px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(20, 28, 40, .28);
}

.product-request-modal[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.product-request-modal::backdrop {
  background: rgba(20, 28, 40, .68);
  backdrop-filter: blur(5px);
}

.product-request-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px 23px;
  border-bottom: 1px solid var(--line);
}

.product-request-modal__header .eyebrow {
  margin-bottom: 8px;
}

.product-request-modal__header h2 {
  margin-bottom: 8px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 680;
  letter-spacing: -.05em;
}

.product-request-modal__header p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .84rem;
}

.product-request-modal__close {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.product-request-modal__close span,
.product-request-modal__close span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-request-modal__close span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-request-modal__close:hover {
  color: white;
  background: var(--ink);
}

.product-request-modal > .lead-form {
  min-height: 0;
  padding: 24px 32px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 0;
  border-radius: 0;
  background: var(--paper);
}

.product-content {
  padding: 74px 0;
  background: var(--cream);
}

.product-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 80px;
}

.product-content__grid--single {
  display: block;
}

.product-content__grid--single .product-content__main {
  max-width: 900px;
}

.product-content__main h2,
.product-content__rich h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.product-content__rich {
  color: #4f5a69;
  font-size: 1.02rem;
}

.product-content__rich > p {
  max-width: 820px;
  line-height: 1.72;
}

.product-content__links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-content__links > span {
  flex: 0 0 auto;
  padding-top: 7px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-content__links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-content__links a {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .72);
  color: var(--ink-strong);
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
}

.product-content__links a:hover {
  border-color: rgba(223, 173, 69, .62);
  background: rgba(242, 207, 122, .2);
}

.product-content__aside {
  display: grid;
  gap: 26px;
  align-content: start;
}

.product-content__aside > div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-content__aside p:last-child {
  margin-bottom: 0;
  color: #4f5a69;
}

.product-help {
  padding: 78px 0 96px;
}

.product-help__heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.product-help__heading h2 {
  margin-bottom: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.35rem);
  font-weight: 680;
  letter-spacing: -.05em;
}

.product-help__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.product-help__grid article {
  padding: 26px 28px 27px 0;
}

.product-help__grid article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.product-help__grid article > span {
  color: #9a681c;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.product-help__grid h3 {
  margin: 14px 0 10px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.025em;
}

.product-help__grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
}

.product-page__cta {
  margin-top: 68px;
}

.contacts-hero {
  padding: 34px 0 76px;
  background:
    radial-gradient(circle at 87% 0, rgba(223, 173, 69, .18), transparent 28%),
    linear-gradient(135deg, var(--paper), var(--cream));
}

.contacts-hero__breadcrumbs {
  margin-bottom: 42px;
}

.contacts-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  align-items: end;
  gap: clamp(48px, 7vw, 100px);
}

.contacts-hero h1 {
  margin-bottom: 22px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 4.6vw, 4.35rem);
  font-weight: 680;
  line-height: 1.01;
  letter-spacing: -.05em;
}

.contacts-hero__lead {
  max-width: 690px;
  margin-bottom: 0;
  color: #4f5a69;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.6;
}

.contacts-hero__card {
  padding: 30px 32px 32px;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 173, 69, .2), transparent 35%),
    var(--ink);
}

.contacts-hero__card .detail-label {
  color: var(--gold-light);
}

.contacts-hero__phone,
.contacts-hero__email {
  display: block;
  text-decoration: none;
}

.contacts-hero__phone {
  margin-top: 18px;
  color: white;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  font-weight: 750;
  letter-spacing: -.035em;
}

.contacts-hero__email {
  width: fit-content;
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 700;
}

.contacts-hero__actions {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-top: 26px;
}

.contacts-hero__call {
  flex: 0 0 auto;
  color: white;
  font-size: .76rem;
  font-weight: 750;
  text-decoration: none;
}

.contacts-hero__call span {
  margin-left: 5px;
  color: var(--gold-light);
}

.contacts-location {
  padding: 82px 0 92px;
}

.contacts-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 34px;
}

.contacts-section-heading > div {
  max-width: 720px;
}

.contacts-section-heading h2 {
  margin-bottom: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.65rem);
  font-weight: 680;
  letter-spacing: -.055em;
}

.contacts-section-heading > p {
  max-width: 410px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}

.contacts-location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
  gap: 24px;
  align-items: stretch;
}

.contacts-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.contacts-map__embed {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 253, 248, .55), rgba(255, 253, 248, .55)),
    repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(39, 49, 66, .04) 24px, rgba(39, 49, 66, .04) 25px);
}

.contacts-map__embed iframe,
.contacts-map__embed > div {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.contacts-map__embed noscript {
  display: grid;
  min-height: 480px;
  place-items: center;
}

.contacts-map__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.contacts-map__footer span {
  color: var(--muted);
  font-size: .66rem;
}

.contacts-map__footer a {
  font-size: .72rem;
  font-weight: 750;
  text-decoration: none;
}

.contacts-map__footer i {
  margin-left: 4px;
  color: #9a681c;
  font-style: normal;
}

.contacts-address {
  display: grid;
  align-content: start;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.contacts-address__item {
  padding-bottom: 25px;
}

.contacts-address__item + .contacts-address__item {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.contacts-address h3 {
  max-width: 380px;
  margin: 11px 0 7px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.contacts-address__item > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
}

.contacts-address__hours {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 12px 0 5px;
  color: var(--ink-strong) !important;
  font-size: 1rem !important;
}

.contacts-address__hours strong {
  font-size: 1.05rem;
}

.contacts-address__hours span {
  font-size: 1.2rem;
  font-weight: 720;
}

.contacts-address__closed {
  color: var(--muted) !important;
  font-size: .72rem !important;
}

.contacts-address__note {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  margin: 4px 0 24px;
  padding: 14px;
  border-radius: 12px;
  background: var(--cream);
}

.contacts-address__note > span {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--ink-strong);
  background: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  place-items: center;
}

.contacts-address__note p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.48;
}

.contacts-address__note strong {
  color: var(--ink);
}

.contacts-address > .button {
  width: 100%;
  margin-top: auto;
}

.contacts-channels {
  padding: 82px 0 96px;
  background: var(--cream);
}

.contacts-section-heading--compact {
  margin-bottom: 28px;
}

.contacts-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.contact-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  min-width: 0;
  padding: 25px 24px 25px 0;
  text-decoration: none;
}

.contact-channel + .contact-channel {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact-channel__number {
  color: #9a681c;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.contact-channel div {
  min-width: 0;
}

.contact-channel p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-channel strong,
.contact-channel small {
  display: block;
}

.contact-channel strong {
  overflow-wrap: anywhere;
  color: var(--ink-strong);
  font-size: .95rem;
}

.contact-channel small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .68rem;
}

.contact-channel > i {
  color: #9a681c;
  font-style: normal;
  transition: transform 160ms ease;
}

.contact-channel:hover > i {
  transform: translateX(4px);
}

.contacts-cta {
  margin-top: 70px;
}

.site-footer {
  padding: 62px 0 26px;
  border-top: 1px solid rgba(242, 207, 122, .16);
  color: rgba(255, 255, 255, .7);
  background:
    radial-gradient(circle at 12% 0, rgba(223, 173, 69, .12), transparent 25%),
    var(--ink-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .72fr 1fr 1.08fr;
  gap: 46px;
  align-items: start;
}

.footer-logo {
  width: 172px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: .94;
}

.site-footer a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.site-footer p {
  margin: 0;
}

.footer-brand__lead {
  max-width: 300px;
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  line-height: 1.55;
}

.footer-brand__status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
}

.footer-brand__status > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(242, 207, 122, .1);
}

.footer-brand__status p {
  color: rgba(255, 255, 255, .52);
  font-size: .72rem;
  line-height: 1.4;
}

.footer-column {
  min-height: 100%;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.footer-label {
  margin-bottom: 17px !important;
  color: var(--gold-light);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-nav > a {
  display: block;
  margin-bottom: 10px;
  font-size: .82rem;
}

.footer-phone {
  display: inline-block;
  margin-bottom: 7px;
  color: white !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.015em;
}

.footer-email {
  display: block;
  color: var(--gold-light) !important;
  font-size: .94rem;
  font-weight: 700;
}

.footer-contact-note {
  max-width: 240px;
  margin-top: 13px !important;
  color: rgba(255, 255, 255, .5);
  font-size: .72rem;
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-socials a {
  color: rgba(255, 255, 255, .68);
  font-size: .72rem;
  font-weight: 700;
}

.footer-socials sup,
.about-founder__socials sup {
  position: relative;
  top: -.12em;
  font-size: .7em;
}

.footer-request-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: white !important;
  font-size: .78rem;
  font-weight: 700;
}

.footer-request-link span {
  color: var(--gold-light);
}

.footer-company > p:not(.footer-label) {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: .76rem;
  line-height: 1.4;
}

.footer-company .footer-address {
  max-width: 280px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .5) !important;
}

.footer-documents {
  display: grid;
  gap: 7px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-documents a {
  display: block;
  font-size: .72rem;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .42);
  font-size: .7rem;
}

.site-footer .footer-credit {
  color: rgba(255, 255, 255, .42);
}

.site-footer .footer-credit:hover {
  color: var(--gold-light);
}

.footer-legal-note {
  width: var(--shell);
  max-width: none;
  margin: 12px auto 0 !important;
  color: rgba(255, 255, 255, .28);
  font-size: .58rem;
  line-height: 1.45;
}

.cookie-notice {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  max-width: 980px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: white;
  background: var(--ink-strong);
  box-shadow: 0 18px 60px rgba(20,28,40,.32);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
}

.cookie-notice p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
}

.cookie-notice a {
  text-underline-offset: 2px;
}

.lead-form__check a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 2px;
}

.admin-body {
  min-height: 100vh;
  background: var(--cream);
}

.login-shell {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 30px;
}

.login-brand {
  margin: 0 auto 26px;
}

.login-brand img {
  width: 190px;
}

.login-card {
  width: min(460px, calc(100vw - 40px));
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 22px 60px rgba(39,49,66,.1);
}

.login-card h1 {
  font-size: 2.7rem;
}

.stack-form {
  display: grid;
  gap: 18px;
}

.stack-form label {
  display: grid;
  gap: 7px;
  font-size: .88rem;
  font-weight: 700;
}

.stack-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font: inherit;
}

.stack-form input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(223,173,69,.18);
}

.form-error {
  padding: 11px 13px;
  border-radius: 9px;
  color: #812a2a;
  background: #fbe5e3;
  font-size: .88rem;
}

.admin-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(30px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: white;
}

.admin-header .brand img {
  width: 150px;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
  white-space: nowrap;
}

.admin-nav a {
  padding: 26px 0 22px;
  border-bottom: 3px solid transparent;
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
}

.admin-nav a[aria-current="page"] {
  border-color: var(--gold);
}

.text-button {
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.admin-main {
  width: var(--shell);
  margin: 70px auto;
}

.admin-main--wide {
  max-width: 1280px;
}

.admin-main h1 {
  margin-bottom: 12px;
  font-size: 4rem;
}

.admin-lead {
  margin-bottom: 40px;
  color: var(--muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-tile {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.admin-tile span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  color: #79571a;
  background: #f6e8c7;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-tile h2 {
  margin: 40px 0 8px;
  font-size: 1.8rem;
}

.admin-tile p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

.admin-tile--link {
  color: inherit;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.admin-tile--link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.admin-alert {
  margin-bottom: 24px;
  padding: 13px 16px;
  border: 1px solid;
  border-radius: 10px;
  font-size: .9rem;
}

.admin-alert--success {
  border-color: #b9d9c0;
  color: #245c31;
  background: #edf8ef;
}

.admin-alert--error {
  border-color: #e3b9b5;
  color: #7c2d29;
  background: #fbecea;
}

.admin-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.admin-title-row h1 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.admin-title-row--compact {
  align-items: center;
}

.admin-title-row--compact h2 {
  margin-bottom: 0;
  font-size: 2.6rem;
}

.text-link,
.danger-link {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.danger-link {
  color: #9b302a;
}

.admin-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table th {
  color: var(--muted);
  background: #faf8f2;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-table td {
  font-size: .9rem;
}

.admin-table small,
.admin-table td strong {
  display: block;
}

.admin-table small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .76rem;
}

.admin-table code {
  font-size: .8rem;
}

.admin-table td.admin-table__actions {
  text-align: right;
  white-space: nowrap;
}

.admin-table__actions > a,
.admin-table__actions > form {
  display: inline-block;
  vertical-align: middle;
}

.admin-table__actions > * + * {
  margin-left: 14px;
}

.admin-table__actions a {
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
}

.status-pill--live {
  color: #285c34;
  background: #e4f3e7;
}

.status-pill--draft {
  color: #665d4b;
  background: #eee9df;
}

.admin-empty {
  padding: 38px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,.5);
  text-align: center;
}

.admin-empty h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.admin-empty p {
  margin-bottom: 0;
}

.admin-form {
  display: grid;
  gap: 22px;
}

.admin-form--compact {
  max-width: 920px;
}

.admin-form__section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.admin-form__section > h2 {
  margin-bottom: 24px;
  font-size: 2rem;
}

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

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

.field {
  display: grid;
  align-content: start;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > span {
  color: #4f5968;
  font-size: .78rem;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: .9rem;
}

.field textarea {
  resize: vertical;
}

.field .code-textarea {
  min-height: 250px;
  font-family: Consolas, "Courier New", monospace;
  font-size: .82rem;
  line-height: 1.55;
  tab-size: 2;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(223,173,69,.15);
}

.check-field {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  color: #4f5968;
  font-size: .86rem;
  font-weight: 700;
}

.check-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.form-actions button:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.admin-code-notice {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid #e8d49d;
  border-radius: 10px;
  background: #fff9e9;
  color: #564719;
}

.admin-code-notice strong {
  display: block;
  margin-bottom: 4px;
}

.admin-code-notice p {
  margin: 0;
  line-height: 1.55;
}

.admin-related {
  margin-top: 60px;
}

.colour-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.colour-admin-card {
  overflow: hidden;
  padding-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: inherit;
  background: white;
  text-decoration: none;
}

.colour-admin-card img,
.colour-admin-card__empty {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 14px;
  object-fit: cover;
  background: #ebe8df;
}

.colour-admin-card strong,
.colour-admin-card small {
  display: block;
  margin-inline: 16px;
}

.colour-admin-card small {
  margin-top: 4px;
  color: var(--muted);
}

.upload-form {
  display: grid;
  grid-template-columns: 1.25fr .4fr 1fr auto auto;
  align-items: end;
  gap: 12px;
  margin: 25px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.upload-form .button {
  white-space: nowrap;
}

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

.image-admin-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.image-admin-card > img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 13px;
  border-radius: 9px;
  object-fit: cover;
}

.image-admin-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.image-admin-card > small {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-admin-card__actions {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.admin-danger-zone {
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid #e1bdb9;
}

.lead-admin-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.admin-detail-list {
  margin: 0;
}

.admin-detail-list > div {
  display: grid;
  grid-template-columns: minmax(120px, .65fr) minmax(0, 1.35fr);
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.admin-detail-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.admin-detail-list dt {
  color: var(--muted);
  font-size: .82rem;
}

.admin-detail-list dd {
  min-width: 0;
  margin: 0;
  font-weight: 650;
}

.pre-line {
  white-space: pre-line;
}

.break-anywhere {
  overflow-wrap: anywhere;
}

.cms-copy {
  max-width: 820px;
  color: #3f4a5a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.cms-copy h2,
.cms-copy h3 {
  margin: 1.8em 0 .6em;
}

.document-hero h1,
.cms-copy h1,
.cms-copy h2,
.cms-copy h3 {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 680;
  letter-spacing: -.035em;
}

.document-hero h1,
.cms-copy h1 {
  font-size: var(--public-h1-size);
}

.cms-copy h2 {
  font-size: var(--public-h2-size);
}

.cms-copy h3 {
  font-size: 1.8rem;
}

.cms-copy p,
.cms-copy ul,
.cms-copy ol {
  margin-bottom: 1.15em;
}

.cms-copy a {
  color: #8b651e;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.article-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card > div {
  padding: 30px;
}

.article-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.article-card h2 a {
  color: inherit;
  text-decoration: none;
}

.article-card p:not(.eyebrow) {
  color: var(--muted);
}

.article-hero h1 {
  max-width: 1020px;
}

.article-cover {
  margin-top: -36px;
}

.article-cover img {
  display: block;
  width: 100%;
  max-height: 660px;
  border-radius: 24px;
  object-fit: cover;
}

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

.lead-form {
  display: grid;
  gap: 19px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 22px 55px rgba(29, 38, 52, .1);
}

.request-box {
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
}

.request-box .lead-form {
  gap: 16px;
  padding: 26px;
}

.request-box .lead-form p {
  color: inherit;
}

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

.lead-form .field > span {
  color: #4f5968;
}

.lead-form .field input,
.lead-form .field textarea,
.lead-form .field select {
  background: white;
}

.lead-form .field input,
.lead-form .field select {
  height: 48px;
  min-height: 48px;
}

.lead-form .field select {
  padding-right: 42px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23273142' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 8px;
}

.lead-form .field--phone > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.field-inline-hint {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 600;
  text-align: right;
}

.lead-form__selection {
  display: grid;
  gap: 3px;
  padding: 15px 17px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--cream);
}

.lead-form__selection span,
.lead-form__selection small {
  color: var(--muted);
  font-size: .75rem;
}

.lead-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4f5968;
  font-size: .83rem;
  line-height: 1.4;
}

.lead-form__check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--ink);
}

.field-error {
  color: #9b302a;
  font-size: .76rem;
}

.lead-form .form-error {
  margin: 0;
  color: #812a2a;
}

.lead-form .button {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.lead-form .lead-form__note,
.request-box .lead-form .lead-form__note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

.page-hero--compact {
  padding-block: 76px 62px;
}

.lead-section__grid {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 72px;
}

.lead-section__grid > div {
  position: sticky;
  top: 112px;
}

.success-page {
  display: grid;
  min-height: 66vh;
  padding: 90px 0;
  place-items: center;
  background: var(--cream);
}

.success-card {
  max-width: 760px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(29, 38, 52, .08);
}

.success-card h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.success-card > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

  .category-overview__grid article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
  }

  .contacts-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }

  .contacts-hero__card {
    width: min(720px, 100%);
  }

  .contacts-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .contacts-section-heading > p {
    max-width: 620px;
    margin-bottom: 0;
  }

  .contacts-location__grid {
    grid-template-columns: 1fr;
  }

  .contacts-map__embed {
    min-height: 500px;
  }

  .contacts-channels__grid {
    grid-template-columns: 1fr;
  }

  .contact-channel,
  .contact-channel + .contact-channel {
    padding: 21px 0;
    border-left: 0;
  }

  .contact-channel + .contact-channel {
    border-top: 1px solid var(--line);
  }

  .not-found__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .not-found__copy {
    max-width: 720px;
  }

  .not-found__visual {
    width: min(620px, 100%);
    min-height: 420px;
    margin-inline: auto;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .hero-sample-note {
    left: 0;
  }

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

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

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

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

  .process-grid::before {
    display: none;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    min-height: 210px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
  }

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

  .section-heading,
  .request-box {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lead-section__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .lead-section__grid > div {
    position: static;
  }

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

  .lead-admin-layout {
    grid-template-columns: 1fr;
  }

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

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

  .catalog-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-gallery {
    max-width: 720px;
  }

  .product-summary {
    position: static;
    max-width: 720px;
    padding-top: 0;
  }

  .product-summary h1 {
    max-width: none;
  }

  .product-content__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-content__links {
    display: grid;
    gap: 10px;
  }

  .product-content__links > span {
    padding-top: 0;
  }

  .product-help__grid {
    grid-template-columns: 1fr;
  }

  .product-help__grid article,
  .product-help__grid article + article {
    padding: 22px 0;
    border-left: 0;
  }

  .product-help__grid article + article {
    border-top: 1px solid var(--line);
  }

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

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

  .upload-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 981px) and (max-width: 1050px) {
  .hero-grid {
    gap: 40px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --public-h1-size: clamp(1.75rem, 8.4vw, 2.1rem);
    --public-h2-size: clamp(1.7rem, 7.5vw, 2rem);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 132px;
  }

  .header-phone,
  .header-cta {
    display: none;
  }

  .mobile-menu summary {
    min-width: 48px;
    padding-inline: 13px;
  }

  .mobile-menu summary > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mobile-menu__panel {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-width: 1px 0;
    border-radius: 0 0 20px 20px;
  }

  .contacts-hero {
    padding: 20px 0 54px;
  }

  .contacts-hero__breadcrumbs {
    margin-bottom: 28px;
  }

  .contacts-hero__grid {
    gap: 30px;
  }

  .contacts-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 10.5vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -.045em;
  }

  .contacts-hero__lead {
    font-size: .96rem;
  }

  .contacts-hero__card {
    padding: 24px 22px 25px;
    border-radius: 18px;
  }

  .contacts-hero__phone {
    font-size: 1.7rem;
  }

  .contacts-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
  }

  .contacts-hero__actions .button {
    width: 100%;
  }

  .contacts-hero__call {
    text-align: center;
  }

  .contacts-location {
    padding: 54px 0 62px;
  }

  .contacts-section-heading {
    margin-bottom: 24px;
  }

  .contacts-section-heading h2 {
    font-size: 2rem;
  }

  .contacts-section-heading > p {
    font-size: .78rem;
  }

  .contacts-map,
  .contacts-address {
    border-radius: 17px;
  }

  .contacts-map__embed {
    min-height: 340px;
  }

  .contacts-map__footer {
    align-items: start;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
  }

  .contacts-address {
    padding: 23px 20px;
  }

  .contacts-address__item {
    padding-bottom: 20px;
  }

  .contacts-address__item + .contacts-address__item {
    padding-top: 20px;
  }

  .contacts-address h3 {
    font-size: 1.65rem;
  }

  .contacts-address__hours {
    font-size: .9rem !important;
  }

  .contacts-address__hours span {
    font-size: 1.05rem;
  }

  .contacts-channels {
    padding: 54px 0 68px;
  }

  .contact-channel {
    gap: 12px;
  }

  .contact-channel strong {
    font-size: .88rem;
  }

  .contacts-cta {
    margin-top: 48px;
  }

  .not-found {
    padding: 52px 0 66px;
  }

  .not-found__grid {
    gap: 38px;
  }

  .not-found__copy h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 11vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -.047em;
  }

  .not-found__lead {
    margin-bottom: 24px;
    font-size: .95rem;
    line-height: 1.55;
  }

  .not-found__actions {
    display: grid;
    margin-bottom: 30px;
  }

  .not-found__actions .button {
    width: 100%;
  }

  .not-found__links {
    gap: 10px 18px;
    padding-top: 18px;
  }

  .not-found__links a {
    font-size: .76rem;
  }

  .not-found__visual {
    min-height: 300px;
  }

  .not-found__fabric {
    inset: 0 0 10px;
    border-width: 7px;
    border-radius: 28px 78px 28px 28px;
  }

  .not-found__code {
    font-size: clamp(5.7rem, 28vw, 7.2rem);
  }

  .not-found__seam {
    right: 24px;
    bottom: 30px;
    width: 92px;
  }

  .not-found__label {
    right: 0;
    width: 210px;
    padding: 15px 17px;
    border-radius: 15px;
  }

  .not-found__label strong {
    font-size: 1.08rem;
  }

  .hero {
    padding: 62px 0 70px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8.4vw, 2.1rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    overflow-wrap: anywhere;
  }

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

  .hero .button {
    width: 100%;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo {
    width: calc(100% - 18px);
    height: 394px;
    border-width: 7px;
    border-radius: 28px 80px 28px 28px;
  }

  .hero-photo-caption {
    right: 0;
    bottom: 0;
    width: min(250px, calc(100% - 34px));
    padding: 16px 18px;
  }

  .hero-sample-note {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .proof-strip {
    padding: 10px 0;
  }

  .proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .proof-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .proof-grid > div {
    min-height: 68px;
    padding: 11px 14px;
  }

  .proof-grid p {
    font-size: .74rem;
  }

  .supply-section {
    padding: 44px 0 50px;
  }

  .risk-section {
    padding: 44px 0 50px;
  }

  .process-section {
    padding: 44px 0 50px;
  }

  .assortment-section {
    padding: 44px 0 50px;
  }

  .section-heading--supply h2 {
    font-size: 2.2rem;
  }

  .risk-heading h2 {
    font-size: 2.2rem;
  }

  .process-heading h2 {
    font-size: 2.2rem;
  }

  .assortment-heading h2 {
    font-size: 2.2rem;
  }

  .supply-card {
    min-height: 0;
    padding: 24px;
  }

  .supply-card__top {
    gap: 16px;
  }

  .supply-card__index {
    width: 40px;
    height: 40px;
  }

  .supply-card h3 {
    font-size: 1.75rem;
  }

  .supply-card__button {
    width: 100%;
  }

  .risk-card__side {
    padding: 9px 10px;
  }

  .risk-card__side--problem {
    padding-right: 20px;
  }

  .risk-card__side--solution {
    padding-left: 20px;
  }

  .risk-card__side > span {
    margin-bottom: 6px;
    font-size: .55rem;
  }

  .risk-card__side h3 {
    font-size: .9rem;
    line-height: 1.24;
  }

  .risk-card__arrow {
    width: 26px;
    height: 26px;
    margin-inline: -13px;
    font-size: .75rem;
  }

  .risk-grid {
    gap: 10px;
  }

  .risk-card {
    min-height: 126px;
  }

  .risk-action {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .risk-action .button {
    width: 100%;
  }

  .process-grid {
    gap: 10px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    min-height: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .process-step__top {
    gap: 8px;
  }

  .process-step__number {
    width: 38px;
    height: 38px;
    font-size: .62rem;
  }

  .process-step__label {
    font-size: .52rem;
    letter-spacing: .06em;
  }

  .process-step h3 {
    margin: 16px 0 8px;
    font-size: 1.02rem;
  }

  .process-step p {
    font-size: .75rem;
    line-height: 1.45;
  }

  .process-result {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }

  .assortment-grid {
    gap: 10px;
  }

  .assortment-card__body {
    min-height: 112px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .assortment-card h3 {
    font-size: 1.04rem;
  }

  .assortment-card p {
    font-size: .7rem;
  }

  .assortment-card__arrow {
    display: none;
  }

  .assortment-card__image > span {
    right: 10px;
    bottom: 9px;
    left: 10px;
    font-size: .54rem;
  }

  .assortment-all {
    padding: 12px;
  }

  .assortment-all__heading {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .assortment-all__heading .button {
    width: 100%;
  }

  .assortment-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .assortment-list li {
    min-height: 42px;
  }

  .assortment-list a {
    padding: 7px;
    font-size: .64rem;
  }

  .assortment-all__note {
    font-size: .7rem;
    line-height: 1.45;
  }

  .request-box {
    gap: 24px;
    padding: 24px 14px 14px;
    border-radius: 22px;
  }

  .request-box h2 {
    margin-bottom: 12px;
    font-size: 2.08rem;
    line-height: 1.06;
  }

  .request-copy {
    padding-inline: 4px;
  }

  .request-copy__lead {
    font-size: .84rem;
  }

  .request-steps {
    margin-top: 20px;
  }

  .request-steps li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 0;
  }

  .request-steps > li > span {
    width: 30px;
    height: 30px;
    font-size: .57rem;
  }

  .request-steps strong {
    font-size: .84rem;
  }

  .request-steps small {
    font-size: .69rem;
  }

  .request-contact-note {
    margin-top: 16px;
    padding: 10px;
  }

  .lead-form {
    padding: 22px;
  }

  .request-box .lead-form {
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
  }

  .lead-form__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .request-box .lead-form__check {
    font-size: .74rem;
  }

  .request-box .lead-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 8px;
  }

  .request-box .lead-form .field {
    min-width: 0;
  }

  .request-box .lead-form .field--mobile-wide {
    grid-column: 1 / -1;
  }

  .request-box .lead-form .field--paired-mobile > span {
    display: flex;
    height: 3.2em;
    align-items: flex-end;
    overflow-wrap: anywhere;
  }

  .lead-form .field input,
  .lead-form .field textarea,
  .lead-form .field select {
    min-width: 0;
    font-size: 16px;
  }

  .request-box .lead-form .field textarea {
    min-height: 92px;
  }

  .request-box .lead-form .lead-form__note {
    font-size: .69rem;
  }

  .request-box .lead-form--attempted input[aria-invalid="true"],
  .request-box .lead-form--attempted select[aria-invalid="true"],
  .request-box .lead-form--attempted textarea[aria-invalid="true"] {
    border-color: #b8473f;
    outline: 3px solid rgba(184, 71, 63, .14);
  }

  .request-box .lead-form--attempted input[type="checkbox"][aria-invalid="true"] {
    outline: 2px solid #b8473f;
    outline-offset: 2px;
  }

  .success-card {
    padding: 36px 26px;
  }

  .category-hero {
    padding: 30px 0 36px;
  }

  .category-hero .breadcrumbs {
    margin-bottom: 20px;
  }

  .category-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 10vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -.045em;
  }

  .category-hero__lead {
    margin-bottom: 18px;
    font-size: .92rem;
    line-height: 1.55;
  }

  .category-hero__meta {
    display: grid;
    gap: 5px;
    padding-top: 14px;
  }

  .category-hero__meta span {
    font-size: .68rem;
  }

  .category-hero__meta span + span::before {
    display: none;
  }

  .category-page {
    padding: 42px 0 62px;
  }

  .category-overview {
    margin-top: 52px;
    padding: 26px 20px;
    border-radius: 18px;
  }

  .category-overview__heading h2 {
    font-size: 1.9rem;
  }

  .category-overview__grid {
    grid-template-columns: 1fr;
  }

  .category-overview__grid article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .category-overview__links {
    display: grid;
    gap: 10px;
  }

  .category-overview__links > span {
    padding-top: 0;
  }

  .category-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .category-toolbar h2 {
    font-size: 1.75rem;
  }

  .category-toolbar > a {
    margin-bottom: 0;
    font-size: .7rem;
  }

  .category-cta {
    margin-top: 50px;
  }

  .catalog-hero {
    padding: 42px 0 46px;
  }

  .catalog-hero h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 9vw, 2.45rem);
    line-height: 1.06;
    letter-spacing: -.043em;
  }

  .catalog-hero__copy > p:not(.eyebrow) {
    margin-bottom: 24px;
    font-size: .94rem;
    line-height: 1.55;
  }

  .catalog-hero__actions {
    display: grid;
  }

  .catalog-hero__actions .button {
    width: 100%;
  }

  .catalog-index {
    position: static;
  }

  .catalog-index__inner {
    display: grid;
    gap: 10px;
    padding-block: 15px;
  }

  .catalog-index__inner > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .catalog-index a {
    display: flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 9px;
    border-radius: 9px;
    font-size: .65rem;
  }

  .catalog-section {
    padding: 50px 0 64px;
  }

  .catalog-guide {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .catalog-guide__copy h2 {
    font-size: 1.9rem;
  }

  .catalog-guide__criteria {
    grid-template-columns: 1fr;
  }

  .catalog-group {
    scroll-margin-top: 18px;
  }

  .catalog-group + .catalog-group {
    margin-top: 40px;
    padding-top: 36px;
  }

  .catalog-placeholder {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .catalog-placeholder__mark {
    width: 100px;
    height: 100px;
    font-size: 2.8rem;
  }

  .catalog-cta {
    gap: 22px;
    margin-top: 60px;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .catalog-cta h2 {
    font-size: 2rem;
  }

  .catalog-cta p:not(.eyebrow) {
    font-size: .82rem;
  }

  .catalog-cta > .button {
    width: 100%;
  }

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

  .site-footer {
    padding: 42px 0 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 24px;
  }

  .footer-logo {
    width: 150px;
    margin-bottom: 15px;
  }

  .footer-brand__lead {
    max-width: 330px;
    font-size: .8rem;
  }

  .footer-brand__status {
    margin-top: 15px;
  }

  .footer-column {
    min-height: 0;
    padding: 21px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 0;
  }

  .footer-label {
    margin-bottom: 13px !important;
  }

  .footer-nav > a {
    margin-bottom: 9px;
    font-size: .76rem;
  }

  .footer-phone {
    font-size: .95rem;
  }

  .footer-email {
    font-size: .82rem;
  }

  .footer-contact-note {
    font-size: .67rem;
  }

  .footer-request-link {
    align-items: flex-start;
    font-size: .72rem;
    line-height: 1.35;
  }

  .footer-company {
    grid-column: 1 / -1;
    margin-top: 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
  }

  .cookie-notice {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }

  .cookie-notice .button {
    width: 100%;
  }

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

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

  .product-page {
    padding: 20px 0 54px;
  }

  .product-page__breadcrumbs {
    margin-bottom: 22px;
  }

  .product-layout {
    gap: 32px;
  }

  .product-gallery__stage {
    border-radius: 18px;
  }

  .product-gallery__badge {
    top: 11px;
    left: 11px;
    padding: 6px 9px;
    font-size: .58rem;
  }

  .product-gallery__views {
    gap: 7px;
    margin-top: 9px;
  }

  .product-gallery__view {
    width: 64px;
    border-radius: 9px;
  }

  .product-colours {
    margin-top: 24px;
    padding-top: 20px;
  }

  .product-colours__heading {
    margin-bottom: 11px;
  }

  .product-colour {
    flex-basis: 88px;
    gap: 6px;
    padding: 5px;
    border-radius: 12px;
    font-size: .61rem;
  }

  .product-colour > img,
  .product-colour__swatch,
  .product-colour__empty {
    border-radius: 8px;
  }

  .product-colours__note {
    font-size: .62rem;
  }

  .product-summary .eyebrow {
    margin-bottom: 9px;
  }

  .product-summary h1 {
    margin-bottom: 13px;
    font-size: clamp(2.35rem, 10.5vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -.045em;
  }

  .product-summary__article {
    margin-bottom: 19px;
    font-size: .68rem;
  }

  .product-summary__lead {
    margin-bottom: 23px;
    font-size: .92rem;
  }

  .product-specs > div {
    padding: 13px 10px 13px 0;
  }

  .product-specs > div:nth-child(even) {
    padding-left: 12px;
  }

  .product-specs dt {
    font-size: .64rem;
  }

  .product-specs dd {
    font-size: .82rem;
  }

  .product-supply {
    margin-top: 20px;
    padding: 15px;
  }

  .product-summary__notice {
    margin-bottom: 18px;
    padding: 14px 15px;
  }

  .product-request-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .product-request-modal__header {
    gap: 14px;
    padding: 20px 18px 17px;
  }

  .product-request-modal__header h2 {
    font-size: 1.65rem;
  }

  .product-request-modal__header p:last-child {
    font-size: .75rem;
    line-height: 1.45;
  }

  .product-request-modal__close {
    width: 38px;
    height: 38px;
  }

  .product-request-modal > .lead-form {
    padding: 18px;
  }

  .product-content {
    padding: 52px 0;
  }

  .product-content__grid {
    gap: 32px;
  }

  .product-help {
    padding: 54px 0 68px;
  }

  .product-help__heading {
    margin-bottom: 24px;
  }

  .product-help__heading h2 {
    font-size: 2rem;
  }

  .product-page__cta {
    margin-top: 48px;
  }

  .catalog-group__heading {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }

  .catalog-group__title {
    gap: 11px;
  }

  .catalog-group__title > span {
    width: 36px;
    height: 36px;
    font-size: .6rem;
  }

  .catalog-group__heading .eyebrow {
    margin-bottom: 4px;
    font-size: .56rem;
  }

  .catalog-group__heading h2 {
    font-size: 1.7rem;
  }

  .catalog-group__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .catalog-group__meta > a {
    font-size: .7rem;
  }

  .fabric-card {
    border-radius: 14px;
  }

  .fabric-card__body {
    padding: 10px;
  }

  .fabric-card__count {
    right: 7px;
    bottom: 7px;
    padding: 4px 6px;
    font-size: .55rem;
  }

  .fabric-card__meta {
    display: grid;
    min-height: 0;
    justify-content: stretch;
    gap: 1px;
    margin-bottom: 6px;
    font-size: .55rem;
  }

  .fabric-card__meta span:last-child {
    font-size: .58rem;
  }

  .fabric-card h3 {
    min-height: 0;
    margin-bottom: 6px;
    font-size: .95rem;
    line-height: 1.18;
  }

  .fabric-card__composition {
    min-height: 0;
    margin-bottom: 7px;
    font-size: .65rem;
    line-height: 1.4;
  }

  .fabric-card__specs {
    min-height: 0;
    align-content: start;
    gap: 2px;
    padding-bottom: 7px;
    font-size: .59rem;
  }

  .fabric-card__specs span {
    width: 100%;
  }

  .fabric-card__specs span + span::before {
    display: none;
  }

  .fabric-card__colours {
    gap: 4px;
    margin-top: 8px;
  }

  .fabric-card__colours span {
    width: 12px;
    height: 12px;
  }

  .fabric-card__colours small {
    font-size: .56rem;
  }

  .fabric-card__link {
    margin-top: auto;
    padding-top: 8px;
    font-size: .63rem;
  }

  .admin-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .admin-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .admin-nav a {
    padding: 8px 0;
  }

  .admin-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-table-wrap {
    overflow-x: auto;
  }

  .admin-table {
    min-width: 760px;
  }

  .form-grid,
  .form-grid--four,
  .upload-form {
    grid-template-columns: 1fr;
  }

  .admin-form__section {
    padding: 20px;
  }

  .colour-admin-grid,
  .image-admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-column {
    min-height: 0;
  }
}

@media (max-width: 359px) {
  .request-box .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .request-box .lead-form .field--paired-mobile > span {
    display: block;
    height: auto;
  }

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

  .footer-brand,
  .footer-company {
    grid-column: auto;
  }

  .footer-contacts,
  .footer-company {
    margin-top: 22px;
  }

  .footer-documents {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* About company */

.about-hero {
  padding: 28px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(223, 173, 69, .16), transparent 26rem),
    var(--paper);
}

.about-hero__breadcrumbs {
  margin-bottom: 32px;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.about-hero__copy {
  min-width: 0;
}

.about-hero h1,
.about-founder h2,
.about-section-heading h2,
.about-place h2,
.about-cta h2 {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 680;
  letter-spacing: -.052em;
}

.about-hero h1 {
  max-width: 710px;
  margin-bottom: 26px;
  font-size: clamp(2.85rem, 4.35vw, 3.75rem);
  line-height: 1.01;
}

.about-hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.about-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 46px;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 760;
  text-decoration: none;
}

.about-text-link span {
  color: #a7781e;
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.about-text-link:hover span {
  transform: translateX(4px);
}

.about-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-hero__facts li {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  padding: 20px 12px 0 0;
}

.about-hero__facts li + li {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.about-hero__facts > li > span {
  color: #a7781e;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.about-hero__facts p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.35;
}

.about-hero__facts strong {
  color: var(--ink-strong);
  font-size: .88rem;
}

.about-hero__media {
  position: relative;
  margin: 0;
}

.about-hero__media::before {
  position: absolute;
  z-index: 0;
  right: -38px;
  bottom: -38px;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(223, 173, 69, .18);
  content: "";
}

.about-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(39, 49, 66, .16);
}

.about-hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 3px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 16px;
  color: white;
  background: rgba(20, 28, 40, .8);
  backdrop-filter: blur(11px);
}

.about-hero__media figcaption span {
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-hero__media figcaption strong {
  font-size: .88rem;
}

.about-founder {
  padding: 96px 0;
  color: rgba(255, 255, 255, .72);
  background: var(--ink-strong);
}

.about-founder__grid {
  display: grid;
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr);
  grid-template-areas:
    "portrait intro"
    "portrait details";
  align-items: start;
  column-gap: clamp(54px, 8vw, 112px);
  row-gap: 0;
}

.about-founder__portrait {
  position: relative;
  grid-area: portrait;
  align-self: center;
  margin: 0;
}

.about-founder__portrait::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 118px;
  height: 118px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
}

.about-founder__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: .84;
  border-radius: 24px;
  object-fit: cover;
  object-position: 50% 42%;
}

.about-founder__portrait figcaption {
  position: absolute;
  right: -28px;
  bottom: 24px;
  display: grid;
  min-width: 230px;
  gap: 2px;
  padding: 17px 21px;
  border-radius: 14px;
  color: var(--ink-strong);
  background: var(--gold-light);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.about-founder__portrait figcaption strong {
  font-size: 1rem;
}

.about-founder__portrait figcaption span {
  color: rgba(20, 28, 40, .7);
  font-size: .75rem;
}

.about-founder__intro,
.about-founder__details {
  min-width: 0;
}

.about-founder__intro {
  grid-area: intro;
}

.about-founder__details {
  grid-area: details;
}

.about-founder h2 {
  max-width: 720px;
  margin-bottom: 28px;
  color: white;
  font-size: clamp(2.5rem, 3.85vw, 3.35rem);
  line-height: 1.04;
}

.about-founder__lead,
.about-founder__intro > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-founder__lead {
  color: rgba(255, 255, 255, .9);
  font-size: 1.12rem;
}

.about-founder__principle {
  display: grid;
  gap: 8px;
  margin: 32px 0 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .06);
}

.about-founder__principle span {
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-founder__principle p {
  max-width: 640px;
  margin: 0;
  color: white;
  font-size: 1.14rem;
  font-weight: 650;
  line-height: 1.45;
}

.about-founder__areas {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-founder__areas li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
}

.about-founder__areas li::before {
  position: absolute;
  top: .38em;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid rgba(242, 207, 122, .65);
  border-radius: 50%;
  color: var(--gold-light);
  content: "✓";
  font-size: .55rem;
}

.about-founder__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.about-founder__socials > span {
  width: 100%;
  color: rgba(255, 255, 255, .42);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-founder__socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-size: .82rem;
  font-weight: 720;
  text-decoration: none;
}

.about-founder__socials a:hover {
  color: var(--gold-light);
}

.about-founder__socials i {
  color: var(--gold-light);
  font-style: normal;
}

.about-method {
  padding: 96px 0;
  background: var(--cream);
}

.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr);
  align-items: end;
  gap: 62px;
  margin-bottom: 52px;
}

.about-section-heading > div {
  min-width: 0;
}

.about-section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 3.8vw, 3.45rem);
  line-height: 1.04;
}

.about-section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: .98rem;
}

.about-method__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-method__grid li {
  min-width: 0;
  padding: 27px 22px 4px 0;
}

.about-method__grid li + li {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.about-method__number {
  display: block;
  margin-bottom: 42px;
  color: #a7781e;
  font-size: 1.28rem;
  font-weight: 800;
}

.about-method__label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-method__grid h3 {
  min-height: 2.35em;
  margin-bottom: 14px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 720;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.about-method__grid li > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.about-place {
  padding: 98px 0;
  background: var(--paper);
}

.about-place__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(58px, 8vw, 112px);
}

.about-place__copy {
  min-width: 0;
}

.about-place h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 3.8vw, 3.45rem);
  line-height: 1.04;
}

.about-place__lead {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-place__address {
  display: grid;
  gap: 5px;
  margin-bottom: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-place__address span {
  color: #8b651e;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-place__address strong {
  color: var(--ink-strong);
  font-size: 1.2rem;
}

.about-place__address p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.about-place__note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-bottom: 28px;
  padding: 16px 17px;
  border-radius: 14px;
  background: var(--cream);
}

.about-place__note > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(167, 120, 30, .28);
  border-radius: 50%;
  color: #8b651e;
  font-size: .72rem;
  font-weight: 800;
}

.about-place__note p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.5;
}

.about-place__note strong {
  color: var(--ink-strong);
}

.about-place__media {
  position: relative;
  margin: 0;
}

.about-place__media::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 46%;
  height: 44%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  content: "";
}

.about-place__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: .92;
  border-radius: 24px;
  object-fit: cover;
  object-position: 58% center;
}

.about-place__media figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 11px 14px;
  border-radius: 999px;
  color: white;
  background: rgba(20, 28, 40, .82);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-team {
  padding: 96px 0;
  background: var(--cream);
}

.about-section-heading--compact {
  margin-bottom: 44px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.about-team__grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, .66);
}

.about-team__grid article > span {
  display: block;
  margin-bottom: 35px;
  color: #8b651e;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.about-team__grid h3 {
  margin-bottom: 14px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 720;
  line-height: 1.18;
  letter-spacing: -.028em;
}

.about-team__grid p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  align-items: end;
  gap: 48px;
  padding: 42px 44px;
  border-radius: 24px;
  color: rgba(255, 255, 255, .72);
  background: var(--ink-strong);
}

.about-cta h2 {
  max-width: 750px;
  margin-bottom: 15px;
  color: white;
  font-size: clamp(2rem, 3.15vw, 2.7rem);
  line-height: 1.05;
}

.about-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
}

.about-cta__actions {
  display: grid;
  min-width: 255px;
  gap: 17px;
  justify-items: center;
}

.about-cta__actions > a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: .83rem;
  font-weight: 750;
  text-decoration: none;
}

.about-cta__actions > a:not(.button) span {
  color: var(--gold-light);
}

@media (max-width: 980px) {
  .about-hero__grid,
  .about-founder__grid,
  .about-place__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__grid {
    gap: 46px;
  }

  .about-hero h1 {
    max-width: 820px;
  }

  .about-hero__media {
    width: min(100%, 720px);
  }

  .about-founder__grid {
    grid-template-areas:
      "intro"
      "portrait"
      "details";
    gap: 46px;
  }

  .about-founder__portrait {
    width: min(78%, 540px);
  }

  .about-founder__principle {
    margin-top: 0;
  }

  .about-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-section-heading > p {
    max-width: 690px;
  }

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

  .about-method__grid li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .about-method__grid li:nth-child(n + 3) {
    margin-top: 34px;
    padding-top: 27px;
    border-top: 1px solid var(--line);
  }

  .about-place__grid {
    gap: 48px;
  }

  .about-place__copy {
    max-width: 720px;
  }

  .about-place__media {
    width: min(100%, 720px);
  }

  .about-place__media img {
    aspect-ratio: 1.12;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .about-team__grid article {
    display: grid;
    grid-template-columns: 120px minmax(180px, .7fr) minmax(0, 1fr);
    align-items: start;
    gap: 20px;
  }

  .about-team__grid article > span,
  .about-team__grid h3 {
    margin-bottom: 0;
  }

  .about-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .about-cta__actions {
    min-width: 0;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .about-hero {
    padding: 20px 0 54px;
  }

  .about-hero__breadcrumbs {
    margin-bottom: 22px;
  }

  .about-hero__grid {
    gap: 34px;
  }

  .about-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 10.2vw, 2.65rem);
    letter-spacing: -.05em;
  }

  .about-hero__lead {
    margin-bottom: 25px;
    font-size: .98rem;
  }

  .about-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .about-hero__actions .button {
    width: 100%;
  }

  .about-text-link {
    justify-content: center;
  }

  .about-hero__facts {
    grid-template-columns: 1fr;
  }

  .about-hero__facts li,
  .about-hero__facts li + li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .about-hero__facts li:first-child {
    padding-top: 16px;
  }

  .about-hero__media::before {
    right: -20px;
    bottom: -20px;
  }

  .about-hero__media img {
    border-radius: 20px;
  }

  .about-hero__media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px 14px;
  }

  .about-founder,
  .about-method,
  .about-place,
  .about-team {
    padding: 64px 0;
  }

  .about-founder__grid {
    gap: 40px;
  }

  .about-founder__portrait {
    width: calc(100% - 8px);
  }

  .about-founder__portrait::before {
    top: -10px;
    right: -10px;
    width: 78px;
    height: 78px;
  }

  .about-founder__portrait img {
    aspect-ratio: .9;
    border-radius: 18px;
  }

  .about-founder__portrait figcaption {
    right: -8px;
    bottom: -18px;
    min-width: 210px;
  }

  .about-founder h2,
  .about-section-heading h2,
  .about-place h2 {
    font-size: clamp(2rem, 9.1vw, 2.4rem);
  }

  .about-founder__lead {
    font-size: 1rem;
  }

  .about-founder__principle {
    margin-block: 27px 24px;
    padding: 18px;
  }

  .about-founder__principle p {
    font-size: 1rem;
  }

  .about-section-heading {
    gap: 16px;
    margin-bottom: 34px;
  }

  .about-section-heading > p {
    font-size: .9rem;
  }

  .about-method__grid {
    grid-template-columns: 1fr;
  }

  .about-method__grid li,
  .about-method__grid li + li,
  .about-method__grid li:nth-child(3),
  .about-method__grid li:nth-child(n + 3) {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    margin-top: 0;
    padding: 22px 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .about-method__number {
    grid-row: 1 / span 3;
    margin: 2px 0 0;
    font-size: .9rem;
  }

  .about-method__label {
    margin-bottom: 8px;
  }

  .about-method__grid h3 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 1.12rem;
  }

  .about-place__grid {
    gap: 38px;
  }

  .about-place__lead {
    font-size: .94rem;
  }

  .about-place__media::after {
    right: -10px;
    bottom: -10px;
  }

  .about-place__media img {
    aspect-ratio: 1;
    border-radius: 18px;
  }

  .about-team__grid article {
    display: block;
    padding: 23px;
  }

  .about-team__grid article > span {
    margin-bottom: 24px;
  }

  .about-team__grid h3 {
    margin-bottom: 11px;
  }

  .about-cta {
    gap: 24px;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .about-cta h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.25rem);
  }

  .about-cta__actions,
  .about-cta__actions .button {
    width: 100%;
  }

  .about-cta__actions {
    justify-items: center;
  }
}

/* Terms */

#scenarios,
#agreement,
#payment,
#receiving,
#questions {
  scroll-margin-top: 82px;
}

.terms-hero {
  padding: 28px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(223, 173, 69, .17), transparent 28rem),
    var(--paper);
}

.terms-hero__breadcrumbs {
  margin-bottom: 34px;
}

.terms-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: center;
  gap: clamp(54px, 7vw, 94px);
  padding-bottom: 64px;
}

.terms-hero__copy {
  min-width: 0;
}

.terms-hero h1,
.terms-section-heading h2,
.terms-cta h2 {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 680;
  letter-spacing: -.05em;
}

.terms-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 4.7vw, 4rem);
  line-height: 1;
}

.terms-hero__lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.25rem);
  line-height: 1.55;
}

.terms-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.terms-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 760;
  text-decoration: none;
}

.terms-text-link span {
  color: #9b6f18;
  font-size: 1.08rem;
  transition: transform 160ms ease;
}

.terms-text-link:hover span {
  transform: translateX(4px);
}

.terms-summary {
  padding: 28px;
  border-radius: 22px;
  color: rgba(255, 255, 255, .74);
  background: var(--ink-strong);
  box-shadow: 0 24px 60px rgba(39, 49, 66, .16);
}

.terms-summary__label {
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.terms-summary ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-summary li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.terms-summary li > span {
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 800;
}

.terms-summary li p {
  display: grid;
  gap: 3px;
  margin: 0;
  font-size: .74rem;
  line-height: 1.4;
}

.terms-summary li strong {
  color: white;
  font-size: .9rem;
}

.terms-summary__note {
  margin: 17px 0 0;
  padding: 15px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .06);
  font-size: .72rem;
  line-height: 1.45;
}

.terms-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms-nav a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 720;
  text-align: center;
  text-decoration: none;
}

.terms-nav a + a {
  border-left: 1px solid var(--line);
}

.terms-nav a:hover {
  color: #8b651e;
  background: rgba(223, 173, 69, .07);
}

.terms-scenarios,
.terms-commercial,
.terms-questions {
  padding: 92px 0;
  background: var(--paper);
}

.terms-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  align-items: end;
  gap: 58px;
  margin-bottom: 46px;
}

.terms-section-heading > div {
  min-width: 0;
}

.terms-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 3.8vw, 3.45rem);
  line-height: 1.04;
}

.terms-section-heading > p {
  max-width: 480px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .94rem;
}

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

.terms-scenario {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.terms-scenario--stock {
  background:
    linear-gradient(145deg, rgba(223, 173, 69, .12), transparent 43%),
    var(--cream);
}

.terms-scenario--china {
  color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(145deg, rgba(223, 173, 69, .1), transparent 42%),
    var(--ink-strong);
}

.terms-scenario__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.terms-scenario__number {
  color: #9b6f18;
  font-size: 1.25rem;
  font-weight: 800;
}

.terms-scenario--china .terms-scenario__number {
  color: var(--gold-light);
}

.terms-scenario__badge {
  padding: 7px 11px;
  border: 1px solid rgba(39, 49, 66, .13);
  border-radius: 999px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.terms-scenario--china .terms-scenario__badge {
  border-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .66);
}

.terms-scenario__eyebrow {
  margin-bottom: 12px;
  color: #8b651e;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.terms-scenario--china .terms-scenario__eyebrow {
  color: var(--gold-light);
}

.terms-scenario h3 {
  max-width: 480px;
  margin-bottom: 15px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.terms-scenario--china h3 {
  color: white;
}

.terms-scenario__lead {
  max-width: 510px;
  min-height: 3.1em;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: .9rem;
}

.terms-scenario--china .terms-scenario__lead {
  color: rgba(255, 255, 255, .62);
}

.terms-scenario__steps {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.terms-scenario--china .terms-scenario__steps {
  border-color: rgba(255, 255, 255, .12);
}

.terms-scenario__steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.terms-scenario--china .terms-scenario__steps li {
  border-color: rgba(255, 255, 255, .12);
}

.terms-scenario__steps li > span {
  color: #9b6f18;
  font-size: .68rem;
  font-weight: 800;
}

.terms-scenario--china .terms-scenario__steps li > span {
  color: var(--gold-light);
}

.terms-scenario__steps p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
  line-height: 1.45;
}

.terms-scenario--china .terms-scenario__steps p {
  color: rgba(255, 255, 255, .6);
}

.terms-scenario__steps strong {
  color: var(--ink-strong);
  font-size: .86rem;
}

.terms-scenario--china .terms-scenario__steps strong {
  color: white;
}

.terms-scenario__result {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 253, 248, .82);
}

.terms-scenario__result span {
  color: #8b651e;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.terms-scenario__result p {
  margin: 0;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 650;
}

.terms-scenario__times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.terms-scenario__times p {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  background: rgba(255, 255, 255, .05);
}

.terms-scenario__times span {
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.terms-scenario__times strong {
  color: white;
  font-size: 1rem;
}

.terms-scenario__caveat {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: .68rem;
  line-height: 1.45;
}

.terms-agreement {
  padding: 92px 0;
  color: rgba(255, 255, 255, .68);
  background: var(--ink-strong);
}

.terms-section-heading--wide h2 {
  max-width: 840px;
  color: white;
}

.terms-agreement .terms-section-heading > p {
  color: rgba(255, 255, 255, .58);
}

.terms-agreement__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.terms-agreement__grid article {
  min-width: 0;
  min-height: 178px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.terms-agreement__grid article > span {
  display: block;
  margin-bottom: 35px;
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 800;
}

.terms-agreement__grid p {
  display: grid;
  gap: 7px;
  margin: 0;
  font-size: .76rem;
  line-height: 1.45;
}

.terms-agreement__grid strong {
  color: white;
  font-size: .94rem;
}

.terms-agreement__result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .06);
}

.terms-agreement__result > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(242, 207, 122, .5);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: .72rem;
}

.terms-agreement__result p {
  margin: 0;
  font-size: .82rem;
}

.terms-agreement__result strong {
  color: white;
}

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

.terms-commercial__card {
  min-width: 0;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.terms-commercial__number {
  display: block;
  margin-bottom: 38px;
  color: #9b6f18;
  font-size: 1.18rem;
  font-weight: 800;
}

.terms-commercial__label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.terms-commercial__card h3 {
  margin-bottom: 22px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.terms-commercial__card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-commercial__card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: .82rem;
}

.terms-commercial__card li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #b98628;
  border-radius: 50%;
  content: "";
}

.terms-document-note {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: end;
  gap: 56px;
  margin-top: 18px;
  padding: 32px 34px;
  border-radius: 20px;
  color: rgba(255, 255, 255, .68);
  background: var(--ink-strong);
}

.terms-document-note h3 {
  max-width: 690px;
  margin: 0;
  color: white;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.terms-document-note > p {
  margin: 0;
  font-size: .82rem;
}

.terms-receiving {
  padding: 92px 0;
  background: var(--cream);
}

.terms-receiving__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.terms-receiving__steps li {
  min-width: 0;
  padding: 26px 25px 32px 0;
}

.terms-receiving__steps li + li {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.terms-receiving__steps span {
  display: block;
  margin-bottom: 38px;
  color: #9b6f18;
  font-size: .86rem;
  font-weight: 800;
}

.terms-receiving__steps h3 {
  margin-bottom: 12px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 710;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.terms-receiving__steps p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.terms-claim {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(185, 134, 40, .22);
  border-radius: 20px;
  background: var(--paper);
}

.terms-claim__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(185, 134, 40, .35);
  border-radius: 50%;
  color: #9b6f18;
  font-size: 1.05rem;
  font-weight: 800;
}

.terms-claim__label {
  margin-bottom: 6px;
  color: #8b651e;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.terms-claim h3 {
  margin-bottom: 7px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 710;
  letter-spacing: -.02em;
}

.terms-claim div > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.terms-claim > .button {
  white-space: nowrap;
}

.terms-section-heading--compact {
  margin-bottom: 34px;
}

.terms-faq {
  border-top: 1px solid var(--line);
}

.terms-faq details {
  border-bottom: 1px solid var(--line);
}

.terms-faq summary {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 4px;
  color: var(--ink-strong);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

.terms-faq summary::-webkit-details-marker {
  display: none;
}

.terms-faq summary span,
.terms-faq summary span::after {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #9b6f18;
  content: "";
}

.terms-faq summary span {
  position: relative;
  flex: 0 0 auto;
}

.terms-faq summary span::after {
  position: absolute;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.terms-faq details[open] summary span::after {
  transform: rotate(0);
}

.terms-faq details > p {
  max-width: 760px;
  margin: -5px 0 22px;
  color: var(--muted);
  font-size: .86rem;
}

.terms-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: end;
  gap: 46px;
  margin-top: 54px;
  padding: 40px 42px;
  border-radius: 23px;
  color: rgba(255, 255, 255, .7);
  background: var(--ink-strong);
}

.terms-cta h2 {
  max-width: 720px;
  margin-bottom: 13px;
  color: white;
  font-size: clamp(2.05rem, 3.2vw, 2.75rem);
  line-height: 1.04;
}

.terms-cta p:not(.eyebrow) {
  margin: 0;
}

.terms-cta__actions {
  display: grid;
  min-width: 230px;
  gap: 16px;
  justify-items: center;
}

.terms-cta__actions > a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: .8rem;
  font-weight: 720;
  text-decoration: none;
}

.terms-cta__actions > a:not(.button) span {
  color: var(--gold-light);
}

@media (max-width: 980px) {
  .terms-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .terms-hero__copy {
    max-width: 760px;
  }

  .terms-summary {
    max-width: 760px;
  }

  .terms-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .terms-section-heading > p {
    max-width: 690px;
  }

  .terms-scenarios__grid,
  .terms-commercial__grid {
    grid-template-columns: 1fr;
  }

  .terms-scenario__lead {
    min-height: 0;
  }

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

  .terms-document-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .terms-claim > .button {
    grid-column: 2;
    justify-self: start;
  }

  .terms-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .terms-cta__actions {
    min-width: 0;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  #scenarios,
  #agreement,
  #payment,
  #receiving,
  #questions {
    scroll-margin-top: 68px;
  }

  .terms-hero {
    padding-top: 20px;
  }

  .terms-hero__breadcrumbs {
    margin-bottom: 24px;
  }

  .terms-hero__grid {
    gap: 30px;
    padding-bottom: 42px;
  }

  .terms-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 12vw, 3rem);
  }

  .terms-hero__lead {
    margin-bottom: 24px;
    font-size: .96rem;
  }

  .terms-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .terms-hero__actions .button {
    width: 100%;
  }

  .terms-text-link {
    justify-content: center;
  }

  .terms-summary {
    padding: 22px;
    border-radius: 18px;
  }

  .terms-summary__label {
    margin-bottom: 17px;
  }

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

  .terms-nav a {
    min-height: 52px;
    padding: 9px;
    border-bottom: 1px solid var(--line);
    font-size: .7rem;
  }

  .terms-nav a + a {
    border-left: 0;
  }

  .terms-nav a:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .terms-nav a:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .terms-scenarios,
  .terms-agreement,
  .terms-commercial,
  .terms-receiving,
  .terms-questions {
    padding: 64px 0;
  }

  .terms-section-heading {
    gap: 15px;
    margin-bottom: 32px;
  }

  .terms-section-heading h2 {
    font-size: clamp(2rem, 9.1vw, 2.4rem);
  }

  .terms-section-heading > p {
    font-size: .87rem;
  }

  .terms-scenario {
    padding: 25px 21px;
    border-radius: 19px;
  }

  .terms-scenario__top {
    margin-bottom: 30px;
  }

  .terms-scenario h3 {
    font-size: 1.55rem;
  }

  .terms-scenario__lead {
    font-size: .83rem;
  }

  .terms-scenario__steps li {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .terms-scenario__times {
    grid-template-columns: 1fr;
  }

  .terms-agreement__grid {
    grid-template-columns: 1fr;
  }

  .terms-agreement__grid article {
    display: grid;
    min-height: 0;
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 18px;
  }

  .terms-agreement__grid article > span {
    margin: 2px 0 0;
  }

  .terms-agreement__result {
    align-items: start;
    padding: 17px;
  }

  .terms-commercial__card {
    padding: 25px 22px;
    border-radius: 18px;
  }

  .terms-commercial__number {
    margin-bottom: 28px;
  }

  .terms-commercial__card h3 {
    font-size: 1.45rem;
  }

  .terms-document-note {
    padding: 25px 22px;
    border-radius: 18px;
  }

  .terms-document-note h3 {
    font-size: 1.45rem;
  }

  .terms-receiving__steps {
    grid-template-columns: 1fr;
  }

  .terms-receiving__steps li,
  .terms-receiving__steps li + li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .terms-receiving__steps span {
    grid-row: 1 / span 2;
    margin: 2px 0 0;
  }

  .terms-receiving__steps h3 {
    margin-bottom: 7px;
    font-size: 1.1rem;
  }

  .terms-claim {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 22px;
  }

  .terms-claim__mark {
    width: 38px;
    height: 38px;
  }

  .terms-claim > .button {
    grid-column: auto;
    width: 100%;
  }

  .terms-faq summary {
    min-height: 68px;
    font-size: .9rem;
  }

  .terms-faq details > p {
    font-size: .8rem;
  }

  .terms-cta {
    gap: 23px;
    margin-top: 42px;
    padding: 28px 22px;
    border-radius: 19px;
  }

  .terms-cta h2 {
    font-size: clamp(1.9rem, 8.7vw, 2.25rem);
  }

  .terms-cta__actions,
  .terms-cta__actions .button {
    width: 100%;
  }

  .terms-cta__actions {
    justify-items: center;
  }
}
