:root {
  --paper: #ffffff;
  --surface: #ffffff;
  --ink: #111111;
  --soft-ink: #2d241f;
  --muted: #6e6963;
  --line: #d7d2c9;
  --line-dark: #8f867b;
  --sale: #ead993;
  --sale-dark: #35261f;
  --mist: #efefef;
  --cream: #f7f3eb;
  --max: 1265px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

body.is-menu-open {
  overflow: hidden;
}

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

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}

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

button {
  border-radius: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.promo-strip,
.sale-strip {
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.promo-strip {
  background: #35261f;
  color: #f5df99;
}

.sale-strip {
  min-height: 36px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  background: var(--sale);
  color: #2d241f;
}

.sale-strip a {
  border-bottom: 1px solid currentColor;
}

.nav-shell {
  display: grid;
  grid-template-columns: 40px auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: var(--max);
  min-height: 50px;
  margin: 0 auto;
  padding: 0 28px;
  background: #fff;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 3px auto;
  background: var(--ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: #050505;
}

.brand-mark span {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #111;
  font-size: 18px;
}

.nav-actions a:first-child {
  font-size: 12px;
  font-weight: 700;
}

.lang-toggle {
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.icon-button {
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 0;
  max-width: calc(var(--max) - 48px);
  min-height: 36px;
  margin: 0 auto 7px;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.search-row input {
  width: 100%;
  height: 34px;
  border: 0;
  padding: 0 14px;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.search-row button {
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.category-shortcuts {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 8px;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-shortcuts::-webkit-scrollbar {
  display: none;
}

.category-shortcuts a {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 104px;
  min-height: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.category-shortcuts a:last-child {
  border-right: 1px solid var(--line);
}

.category-shortcuts a:hover {
  background: #f6f2e8;
}

.nav-links {
  position: fixed;
  top: 208px;
  left: 0;
  right: 0;
  z-index: 19;
  display: none;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-right: 1px solid var(--line);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.nav-links a:last-child {
  border-right: 0;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(360px, calc(100vh - 218px), 500px);
  min-height: 360px;
  max-height: 500px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sale);
  overflow: hidden;
}

.hero-media {
  position: relative;
  min-width: 0;
  border-right: 2px solid #fff;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.55s ease, transform 1.4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide:nth-child(3),
.hero-slide:nth-child(4) {
  object-position: 50% 30%;
}

.hero-slide:nth-child(6) {
  object-position: 42% 50%;
}

.hero-image-controls {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-image-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.32);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(7px);
}

.hero-carousel-meta {
  position: absolute;
  top: 22px;
  left: 18px;
  right: 104px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  width: min(220px, 100%);
}

.hero-dots button {
  flex: 1 1 auto;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
  padding: 0;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #fff;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 34px 34px;
  background: var(--sale);
  color: var(--sale-dark);
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sale-dark);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 420px;
  margin-bottom: 20px;
  color: var(--sale-dark);
  font-size: 15px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 10px 14px;
  width: min(320px, 100%);
}

.hero-actions a,
.hero-actions button {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--sale-dark);
  border-radius: 8px;
  background: var(--sale-dark);
  color: #f6e39e;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

section {
  scroll-margin-top: 134px;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 36px;
  padding: 0 24px;
}

.section-head h2 {
  max-width: 760px;
}

.section-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
}

.product-workbench {
  padding: 22px 0 44px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.feature-section {
  padding: 32px 0 44px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.model-story-section {
  scroll-margin-top: 190px;
  padding: 34px 0 34px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.workbench-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto 14px;
  padding: 0 16px;
}

.workbench-head h2 {
  min-width: 0;
  margin: 0;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link {
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.filters {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar,
.product-grid::-webkit-scrollbar {
  display: none;
}

.filters button {
  flex: 0 0 auto;
  min-height: 32px;
  border: 1px solid #cfc9be;
  background: #fff;
  padding: 0 12px;
  color: #111;
  font-size: 11px;
  cursor: pointer;
}

.filters button.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.product-grid {
  display: flex;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 4px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.product-card {
  flex: 0 0 242px;
  min-width: 0;
  scroll-snap-align: start;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ececec;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.025);
}

.product-card-media span {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 6px;
  background: #fff;
  padding: 5px 9px;
  color: #111;
  font-size: 11px;
}

.product-card-info {
  padding-top: 14px;
}

.product-card-info strong {
  display: block;
  margin-bottom: 5px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-info p {
  display: none;
}

.product-card-footer {
  display: grid;
  gap: 3px;
  color: #151515;
  font-size: 13px;
}

.product-card-button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 36px;
  margin-top: 12px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 12px;
  cursor: pointer;
}

.product-card-button:hover {
  background: #111;
  color: #fff;
}

.category-showcase {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px;
}

.category-grid article {
  min-width: 0;
  background: #fff;
}

.category-grid img {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  background: var(--mist);
  object-fit: cover;
}

.category-grid div {
  min-height: 86px;
  padding-top: 16px;
  text-align: center;
}

.category-grid h2 {
  margin-bottom: 7px;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.category-grid a {
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.editorial-section {
  padding: 16px 0 34px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.editorial-grid article {
  min-width: 0;
  text-align: center;
}

.editorial-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  background: var(--mist);
  object-fit: cover;
}

.editorial-grid h2 {
  min-height: 50px;
  margin: 16px auto 8px;
  padding: 0 8px;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.editorial-grid a {
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.model-head-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.model-controls {
  display: flex;
  gap: 8px;
}

.model-nav {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.model-nav:hover {
  background: var(--ink);
  color: #fff;
}

.model-carousel-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  overflow: hidden;
}

.model-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.model-carousel::-webkit-scrollbar {
  display: none;
}

.model-card {
  position: relative;
  flex: 0 0 clamp(280px, 28vw, 360px);
  min-width: 0;
  height: clamp(390px, 35vw, 500px);
  overflow: hidden;
  border: 0;
  background: var(--mist);
  scroll-snap-align: start;
}

.model-card.is-wide {
  flex-basis: clamp(360px, 38vw, 500px);
}

.model-card img {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--mist);
  object-fit: cover;
  transition: transform 0.55s ease;
}

.model-card.is-wide img {
  height: 100%;
}

.model-card:hover img {
  transform: scale(1.035);
}

.model-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 0;
  padding: 72px 18px 18px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.52) 52%, rgba(17, 17, 17, 0.78) 100%);
  color: #fff;
  text-align: left;
}

.model-card h2 {
  margin-bottom: 7px;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.model-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.55;
}

.model-carousel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 16px auto 0;
  padding: 0 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.model-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.model-dots button {
  width: 22px;
  height: 2px;
  border: 0;
  background: #c9c0b2;
  padding: 0;
  cursor: pointer;
}

.model-dots button.is-active {
  width: 44px;
  background: var(--ink);
}

.partner-band {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.partner-band h2 {
  margin-bottom: 10px;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.partner-band p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.partner-band button {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.site-footer {
  background: #fff;
  color: var(--ink);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 1fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px;
  border-bottom: 1px solid var(--line);
}

.footer-newsletter h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 30px;
  font-weight: 400;
}

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

.footer-signup {
  display: grid;
  grid-template-columns: 1fr 96px;
  border: 1px solid #111;
}

.footer-signup input {
  min-width: 0;
  height: 44px;
  border: 0;
  padding: 0 12px;
  outline: 0;
}

.footer-signup button {
  border: 0;
  border-left: 1px solid #111;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px 52px;
  border-bottom: 1px solid var(--line);
}

.footer-columns nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-columns h3 {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

.footer-columns a {
  color: #242424;
  font-size: 14px;
}

.footer-columns a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px 26px;
  color: var(--muted);
  font-size: 12px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 150px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-strip span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  padding: 22px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.service-strip span:last-child {
  border-right: 0;
}

.brand-statement {
  max-width: 920px;
  margin: 0 auto;
  padding: 76px 24px 72px;
  text-align: center;
}

.brand-statement .eyebrow {
  color: var(--muted);
  font-size: 11px;
}

.brand-statement h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: 40px;
}

.brand-statement p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.selection-section,
.tools-section,
.policy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.selection-media img,
.tools-section img,
.policy-section img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  background: var(--mist);
  object-fit: cover;
}

.selection-copy,
.tools-copy,
.policy-copy {
  max-width: 540px;
}

.selection-copy .eyebrow,
.tools-copy .eyebrow,
.policy-copy .eyebrow,
.section-head .eyebrow,
.profit-panel .eyebrow {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 11px;
}

.selection-copy p:not(.eyebrow),
.tools-copy p,
.policy-copy > p {
  color: var(--muted);
}

.selection-tags,
.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.selection-tags span,
.tool-list span {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 11px;
  color: var(--soft-ink);
  font-size: 12px;
}

.partner-section,
.profit-section,
.bulk-section,
.learning-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.tier-grid,
.pack-grid,
.lesson-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.tier-grid article,
.pack-grid article,
.bulk-grid article,
.lesson-grid article,
.policy-grid article {
  border: 1px solid var(--line);
  background: #fff;
}

.tier-grid article {
  min-height: 210px;
  padding: 24px;
}

.tier-grid span,
.lesson-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
}

.tier-grid p,
.pack-grid p,
.bulk-grid span,
.lesson-grid p,
.policy-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.profit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) 1fr;
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.profit-panel {
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  padding: 30px;
}

.profit-panel p {
  color: rgba(255, 255, 255, 0.72);
}

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

.pack-grid article {
  min-height: 160px;
  padding: 24px;
}

.bulk-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: 42px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.bulk-section > div:first-child p:not(.eyebrow) {
  color: var(--muted);
}

.bulk-grid {
  display: grid;
  gap: 1px;
}

.bulk-grid article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  padding: 22px;
}

.tools-section {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.policy-section {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 28px;
}

.policy-grid article {
  padding: 18px;
}

.lesson-grid article {
  min-height: 200px;
  padding: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
  background: #fff;
}

.contact-section h2 {
  max-width: 620px;
}

.contact-section p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px;
}

.contact-card span,
.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.contact-card strong {
  display: block;
  margin: 4px 0 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 40;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 1060px) {
  .nav-shell {
    padding: 0 22px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-media {
    height: 360px;
    border-right: 0;
    border-bottom: 2px solid #fff;
  }

  .hero-content {
    min-height: 370px;
  }

  .nav-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid,
  .editorial-grid,
  .tier-grid,
  .lesson-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .selection-section,
  .tools-section,
  .policy-section,
  .bulk-section,
  .profit-section {
    grid-template-columns: 1fr;
  }

  .tools-section img {
    order: -1;
  }

  .selection-copy,
  .tools-copy,
  .policy-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .promo-strip,
  .sale-strip {
    min-height: 35px;
    padding: 0 28px;
    font-size: 11px;
  }

  .nav-shell {
    grid-template-columns: 34px auto 1fr;
    min-height: 50px;
    gap: 10px;
    padding: 0 14px;
  }

  .brand-mark span {
    font-size: 29px;
  }

  .nav-actions {
    gap: 13px;
    font-size: 18px;
  }

  .nav-actions a:first-child {
    display: none;
  }

  .search-row {
    max-width: calc(100% - 28px);
    min-height: 36px;
    margin-bottom: 8px;
  }

  .search-row input,
  .search-row button {
    height: 34px;
  }

  .category-shortcuts {
    justify-content: flex-start;
    padding: 0 14px 8px;
    scroll-padding-left: 14px;
  }

  .category-shortcuts a {
    min-width: 68px;
    min-height: 32px;
    padding: 0 9px;
    font-size: 11px;
  }

  .nav-links {
    top: 207px;
    grid-template-columns: 1fr;
  }

  .nav-links a {
    justify-content: start;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-media {
    display: block;
    height: 260px;
    border-right: 0;
    border-bottom: 2px solid #fff;
  }

  .hero-image-controls {
    top: auto;
    right: 14px;
    bottom: 14px;
  }

  .hero-image-controls button {
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .hero-carousel-meta {
    top: auto;
    left: 14px;
    right: 88px;
    bottom: 18px;
  }

  .hero-content {
    min-height: 280px;
    padding: 28px 20px 32px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 15px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions a,
  .hero-actions button {
    min-height: 46px;
    font-size: 12px;
  }

  .workbench-head {
    display: grid;
    gap: 14px;
  }

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

  .product-card {
    flex-basis: 168px;
  }

  .product-card-info strong,
  .product-card-footer,
  .product-card-button {
    font-size: 11px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
    padding: 0 10px;
  }

  .model-story-section .workbench-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
  }

  .model-story-section .workbench-head h2 {
    line-height: 1.35;
  }

  .model-head-actions {
    flex-shrink: 0;
    align-items: flex-end;
    gap: 12px;
  }

  .model-carousel-shell {
    padding: 0 10px;
  }

  .model-carousel {
    gap: 10px;
  }

  .model-card,
  .model-card.is-wide {
    flex-basis: 82vw;
    height: min(520px, 112vw);
  }

  .model-card img,
  .model-card.is-wide img {
    height: 100%;
  }

  .model-card div {
    padding: 70px 14px 16px;
  }

  .model-carousel-meta {
    padding: 0 10px;
  }

  .model-dots {
    gap: 5px;
  }

  .model-dots button {
    width: 16px;
  }

  .model-dots button.is-active {
    width: 30px;
  }

  .editorial-grid h2 {
    min-height: 58px;
    font-size: 13px;
  }

  .partner-band {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 16px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    padding: 34px 16px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
    padding: 34px 16px 42px;
  }

  .footer-bottom {
    padding-right: 16px;
    padding-left: 16px;
  }

  .category-grid div {
    min-height: 72px;
    padding-top: 13px;
  }

  .category-grid h2 {
    font-size: 14px;
  }

  .service-strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-strip span {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip span:last-child {
    border-bottom: 0;
  }

  .brand-statement {
    padding: 60px 18px 56px;
  }

  .brand-statement h2 {
    font-size: 30px;
  }

  .section-head,
  .selection-section,
  .tools-section,
  .policy-section,
  .bulk-section,
  .profit-section,
  .contact-section,
  .tier-grid,
  .lesson-grid {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .selection-section,
  .tools-section,
  .policy-section {
    gap: 28px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .selection-media img,
  .tools-section img,
  .policy-section img {
    aspect-ratio: 1 / 1;
  }

  .partner-section,
  .profit-section,
  .bulk-section,
  .learning-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .tier-grid,
  .pack-grid,
  .lesson-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .profit-section {
    gap: 0;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 420px) {
  .brand-mark span {
    font-size: 27px;
  }

  .icon-button {
    font-size: 20px;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

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

  .editorial-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-signup {
    grid-template-columns: 1fr;
  }

  .footer-signup button {
    min-height: 42px;
    border-top: 1px solid #111;
    border-left: 0;
  }
}
