:root {
  color-scheme: light;
  --ink: #111411;
  --ink-soft: #2b302d;
  --muted: #68706b;
  --paper: #f6f4ef;
  --panel: #ffffff;
  --line: #dedbd2;
  --steel: #171a1a;
  --red: #cf2f22;
  --red-dark: #a9251b;
  --green: #28705d;
  --gold: #b88a31;
  --blue: #2e6f8e;
  --shadow: 0 22px 60px rgba(18, 20, 18, .12);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

body.drawer-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
  background: var(--steel);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 239, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 20, 17, .1);
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  color: #fff;
  background: var(--steel);
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.announcement span {
  color: #ffcf6b;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  padding: 10px 0;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.icon-button,
.nav-cta,
.primary-button,
.secondary-button,
.filter-button,
.close-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}

.icon-button {
  gap: 8px;
  border: 1px solid var(--line);
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.icon-button strong {
  min-width: 22px;
  border-radius: 999px;
  padding: 2px 6px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
}

.nav-cta,
.primary-button {
  padding: 0 18px;
  color: #fff;
  background: var(--red);
}

.primary-button:hover,
.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.primary-button.wide {
  width: 100%;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, .5);
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.secondary-button.light:hover {
  background: rgba(255, 255, 255, .2);
}

.hero {
  position: relative;
  height: clamp(490px, calc(100vh - 88px), 680px);
  min-height: 490px;
  overflow: hidden;
  color: #fff;
  background: var(--steel);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .62) 32%, rgba(0, 0, 0, .24) 64%, rgba(0, 0, 0, .1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .02) 38%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  bottom: 72px;
  width: min(620px, calc(100% - 48px));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffca5f;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 78px;
  line-height: .9;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: 48px;
  line-height: .98;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(560px, 100%);
  margin: 24px 0 0;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 16px;
  background: rgba(0, 0, 0, .34);
}

.hero-stats dt {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 6px 0 0;
  font-size: 24px;
  font-weight: 950;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: -36px auto 0;
  position: relative;
  z-index: 6;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.trust-strip div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

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

.trust-strip span,
.process-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-strip strong {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.42;
}

.category-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 18px auto 0;
  position: relative;
  z-index: 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.category-band a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.category-band a:last-child {
  border-right: 0;
}

.category-band span,
.social-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.category-band strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

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

.section-header {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin-bottom: 28px;
}

.section-header.compact {
  max-width: 850px;
}

.section-header p,
.split-copy p,
.quote-copy p,
.founder-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.filter-button {
  border: 1px solid var(--line);
  padding: 0 14px;
  color: var(--ink-soft);
  background: #fff;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

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

.product-card,
.studio-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(18, 20, 18, .06);
}

.product-media {
  position: relative;
  aspect-ratio: 1.28 / 1;
  background: #191c1c;
  overflow: hidden;
}

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

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(17, 20, 17, .82);
  font-size: 12px;
  font-weight: 900;
}

.product-body,
.studio-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-row strong {
  font-size: 28px;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.feature-list,
.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-button {
  min-height: 40px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.mini-button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.mini-button:hover {
  transform: translateY(-1px);
  border-color: var(--red);
}

.compare-band,
.social-band {
  background: #fff;
  border-block: 1px solid var(--line);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 46px;
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 18px;
}

.comparison-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: .85fr 1fr 1fr;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.comparison-table [role="row"]:last-child {
  border-bottom: 0;
}

.comparison-table strong,
.comparison-table span {
  display: flex;
  align-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  line-height: 1.35;
}

.comparison-table strong:last-child,
.comparison-table span:last-child {
  border-right: 0;
}

.comparison-table strong {
  color: #fff;
  background: var(--steel);
}

.studio-card {
  position: relative;
}

.studio-card.highlight {
  border-color: rgba(207, 47, 34, .45);
  box-shadow: 0 24px 60px rgba(207, 47, 34, .12);
}

.studio-card .package-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.studio-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.studio-meta div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #faf9f5;
}

.studio-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.studio-meta strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.founder-band {
  background: var(--steel);
  color: #fff;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.founder-media {
  height: 540px;
  border-radius: 8px;
  overflow: hidden;
}

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 8% center;
}

.founder-copy {
  display: grid;
  gap: 18px;
}

.founder-copy p {
  color: rgba(255, 255, 255, .76);
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.founder-tags span {
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 850;
}

.social-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 38px;
  align-items: start;
}

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

.social-grid a {
  display: grid;
  gap: 12px;
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #faf9f5;
}

.social-grid strong {
  line-height: 1.35;
}

.process-band {
  background: #fff;
  border-block: 1px solid var(--line);
}

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

.process-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 226px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #faf9f5;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 520px);
  gap: 44px;
  align-items: start;
}

.quote-copy {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 126px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.quote-form label:nth-last-of-type(1),
.quote-form .wide,
.form-note {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(207, 47, 34, .12);
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.faq-section {
  padding-top: 12px;
}

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

details {
  padding: 18px;
}

summary {
  cursor: pointer;
  font-weight: 950;
  line-height: 1.35;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  background: rgba(17, 20, 17, .52);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  width: min(430px, 100%);
  height: 100%;
  padding: 20px;
  background: #fff;
  transform: translateX(100%);
  transition: transform .22s ease;
}

.cart-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.drawer-head strong {
  font-size: 22px;
}

.close-button {
  border: 1px solid var(--line);
  padding: 0 12px;
  background: #fff;
}

.drawer-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 16px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.remove-button {
  align-self: start;
  color: var(--red);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.drawer-total strong {
  font-size: 26px;
}

.drawer-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 100;
  max-width: min(560px, calc(100% - 32px));
  transform: translateX(-50%) translateY(18px);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(17, 20, 17, .94);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  text-align: center;
  line-height: 1.4;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-footer {
  padding: 48px 24px;
  color: rgba(255, 255, 255, .82);
  background: #0d0f0f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(140px, 1fr));
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand .brand-mark {
  background: #fff;
  color: var(--red);
}

.footer-brand small {
  color: rgba(255, 255, 255, .62);
}

.site-footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.55;
}

.site-footer div div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .announcement {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto auto;
    min-height: 66px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-actions {
    justify-self: end;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .hero {
    height: 640px;
    min-height: 640px;
  }

  .hero img {
    object-position: 56% center;
  }

  .hero-content {
    bottom: 48px;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 40px;
  }

  .category-band,
  .trust-strip,
  .product-grid,
  .studio-grid,
  .faq-grid,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-band,
  .trust-strip {
    margin: 0;
    border-radius: 0;
  }

  .category-band a:last-child,
  .trust-strip div:nth-child(3),
  .trust-strip div:nth-child(4) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .split-layout,
  .founder-layout,
  .social-layout,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

  .quote-copy {
    position: static;
  }

  .founder-media {
    height: 390px;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    gap: 10px;
  }

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

  .brand small {
    font-size: 11px;
  }

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

  .icon-button {
    min-height: 38px;
    padding: 0 9px;
    font-size: 13px;
  }

  .hero {
    height: 590px;
    min-height: 590px;
  }

  .hero img {
    object-position: 61% center;
  }

  .hero-content {
    left: 18px;
    bottom: 34px;
    width: calc(100% - 36px);
  }

  h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 33px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

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

  .hero-stats div {
    padding: 10px 9px;
  }

  .hero-stats dt {
    font-size: 10px;
  }

  .hero-stats dd {
    font-size: 18px;
  }

  .section-shell {
    padding: 60px 16px;
  }

  .category-band,
  .trust-strip,
  .product-grid,
  .studio-grid,
  .faq-grid,
  .social-grid,
  .process-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .category-band a,
  .category-band a:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .category-band a:first-child {
    border-top: 0;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip div:first-child {
    border-top: 0;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table [role="row"] {
    min-width: 620px;
  }

  .card-actions,
  .studio-meta {
    grid-template-columns: 1fr;
  }

  .founder-media {
    height: 320px;
  }

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