:root {
  --ink: #12120f;
  --paper: #eee5d6;
  --cream: #fffaf0;
  --muted: #6f6b5f;
  --line: #d2c6b4;
  --olive: #5c6b3f;
  --taupe: #d1c1a4;
  --clay: #a55c3d;
  --soft: #cfae9e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* WooCommerce follows the same paper, ink and olive system as the shop. */
.rezim-checkout-flow { padding-top: 42px; padding-bottom: 80px; }
.checkout-steps { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.checkout-steps > * { padding: 11px 16px; border: 2px solid var(--ink); border-radius: 8px; background: var(--cream); font-weight: 800; }
.checkout-steps .is-current { background: var(--olive); color: var(--cream); }
.woocommerce .woocommerce-cart-form, .woocommerce .cart-collaterals, .woocommerce form.checkout, .woocommerce .woocommerce-order, .woocommerce .woocommerce-notices-wrapper, .woocommerce .woocommerce-order-details, .woocommerce .woocommerce-customer-details { color: var(--ink); }
.woocommerce form:not(.product-form) { display: block; grid-template-columns: none; gap: 0; align-items: normal; margin-top: 0; }
.woocommerce form.checkout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; gap: 24px; }
.woocommerce form.checkout .col2-set { grid-column: 1; grid-row: 1 / 3; float: none; width: 100%; }
.woocommerce form.checkout .col2-set .col-1, .woocommerce form.checkout .col2-set .col-2 { float: none; width: 100%; }
.woocommerce form.checkout #order_review_heading { grid-column: 2; grid-row: 1; float: none; width: 100%; margin: 0; }
.woocommerce form.checkout #order_review { grid-column: 2; grid-row: 2; float: none; width: 100%; }
.woocommerce form .form-row label { display: block; }
.woocommerce input[type="checkbox"], .woocommerce input[type="radio"] { width: auto; min-height: 0; padding: 0; }
.woocommerce table.shop_table { border: 2px solid var(--ink); border-radius: 10px; background: var(--cream); border-collapse: separate; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--line); padding: 14px; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce #payment, .woocommerce form.checkout #order_review, .woocommerce .woocommerce-order-details, .woocommerce .woocommerce-customer-details { padding: 24px; border: 2px solid var(--ink); border-radius: 10px; background: var(--cream); }
.woocommerce #payment { background: var(--cream); }
.woocommerce #payment div.payment_box { background: var(--paper); color: var(--ink); }
.woocommerce #payment div.payment_box::before { border-bottom-color: var(--paper); }
.woocommerce .button, .woocommerce button.button, .woocommerce a.button, .woocommerce #payment #place_order { min-height: 48px; padding: 12px 18px; border: 2px solid var(--ink); border-radius: 8px; background: var(--ink); color: var(--cream); font-weight: 900; box-shadow: 4px 4px 0 var(--olive); }
.woocommerce .button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce #payment #place_order:hover { background: var(--olive); color: var(--cream); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { min-height: 48px; padding: 10px 12px; border: 2px solid var(--ink); border-radius: 8px; background: var(--cream); color: var(--ink); font: inherit; }
.woocommerce form .form-row textarea { min-height: 110px; }
.woocommerce form .form-row label { font-weight: 800; }
.woocommerce .woocommerce-info, .woocommerce .woocommerce-message { border: 2px solid var(--olive); border-top-width: 5px; border-radius: 8px; background: var(--cream); color: var(--ink); }
.woocommerce .woocommerce-error { border: 2px solid var(--clay); border-top-width: 5px; border-radius: 8px; background: var(--cream); }
.woocommerce .woocommerce-info::before, .woocommerce .woocommerce-message::before { color: var(--olive); }
.woocommerce .woocommerce-error::before { color: var(--clay); }
.woocommerce h2, .woocommerce h3 { color: var(--ink); }
.woocommerce a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.woocommerce .product-name a { color: var(--ink); font-weight: 800; }
@media (max-width: 700px) { .woocommerce form.checkout { display: block; } .woocommerce form.checkout #order_review_heading { margin: 28px 0 12px; } .woocommerce .cart-collaterals .cart_totals, .woocommerce #payment, .woocommerce form.checkout #order_review { padding: 16px; } }

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

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

.site-hero {
  min-height: 96vh;
  background:
    linear-gradient(90deg, rgba(18, 18, 15, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 18, 15, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand,
.nav-links,
.actions,
.chips,
.product-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #050610;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(207, 238, 0, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  gap: 6px;
  padding: 6px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-links ul {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  margin: 0;
}

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

.hero-grid,
.section,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: 28px;
  padding: 56px 0 28px;
}

h1,
h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 950;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
}

h2 {
  font-size: clamp(1.95rem, 3.9vw, 4.2rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lead,
.section-heading p,
.split > p,
.launch p,
.qr-band p,
.final-cta p {
  color: #393a34;
  font-size: 1rem;
  line-height: 1.65;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.actions,
.chips {
  flex-wrap: wrap;
  gap: 12px;
}

.actions {
  margin-top: 34px;
}

.button,
.product-footer a,
.blog-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.button-dark,
.product-footer a {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--olive);
}

.button-light,
.blog-grid a {
  background: var(--cream);
  color: var(--ink);
}

.hero-visual {
  margin: 0;
}

.hero-visual img,
.identity img {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--olive);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  border: 2px solid var(--ink);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.signal-strip span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 12px;
  background: var(--cream);
  border-right: 2px solid var(--ink);
  font-weight: 950;
  text-align: center;
}

.signal-strip span:nth-child(2),
.launch-board div:nth-child(4) {
  background: var(--taupe);
}

.signal-strip span:nth-child(3),
.launch-board div:nth-child(2) {
  background: var(--olive);
  color: var(--cream);
}

.signal-strip span:nth-child(4),
.launch-board div:nth-child(3) {
  background: var(--soft);
}

.section {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}

.split,
.launch,
.box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.product-grid,
.blog-grid,
.launch-board,
.faq-list,
.social-grid,
.copy-stack {
  display: grid;
  gap: 18px;
}

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

.product-card,
.blog-grid article,
.launch-board div,
.booking-preview,
.faq-list details,
.social-card,
.copy-stack div {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e3d7c5;
  border-bottom: 2px solid var(--ink);
}

.product-body {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.tag,
.blog-grid article > span {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 7px 10px;
  background: var(--taupe);
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.1;
}

.product-card p,
.blog-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.55;
}

.product-footer {
  justify-content: space-between;
  gap: 12px;
}

.instagram-bridge {
  background:
    linear-gradient(90deg, rgba(92, 107, 63, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(92, 107, 63, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
}

.social-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.social-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-shadow: 9px 9px 0 var(--clay);
}

.social-card:hover {
  transform: translate(-2px, -2px);
}

.social-mark {
  width: 86px;
  height: 86px;
  overflow: hidden;
  background: #050610;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(207, 238, 0, 0.22);
}

.social-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.social-card strong {
  width: fit-content;
  padding: 10px 12px;
  background: var(--ink);
  border-radius: 6px;
  color: var(--paper);
}

.copy-stack div {
  display: grid;
  min-height: 108px;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.copy-stack div:nth-child(1) {
  background: var(--ink);
  color: var(--paper);
}

.copy-stack div:nth-child(2) {
  background: var(--taupe);
}

.copy-stack div:nth-child(3) {
  background: var(--soft);
}

.copy-stack strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.65rem, 3vw, 3.3rem);
  line-height: 0.95;
}

.copy-stack span {
  color: inherit;
  font-size: 0.98rem;
  font-weight: 850;
}

.qr-band {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 42px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
}

.qr-band p {
  color: #e3dccd;
}

.qr-demo {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  width: min(100%, 330px);
  aspect-ratio: 1 / 1;
  padding: 18px;
  background: var(--paper);
  border: 3px solid var(--paper);
  border-radius: 8px;
}

.qr-demo span,
.qr-demo i {
  border-radius: 3px;
}

.qr-demo span {
  background: var(--ink);
}

.chips {
  margin-bottom: 24px;
}

.chips span {
  padding: 10px 12px;
  border: 1px solid rgba(238, 229, 214, 0.45);
  border-radius: 8px;
  color: var(--paper);
  font-weight: 850;
}

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

.launch-board div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.launch-board strong {
  font-size: 2.05rem;
  line-height: 1;
}

.launch-board span {
  font-size: 1.05rem;
  font-weight: 950;
}

.booking-preview {
  padding: 22px;
  box-shadow: 9px 9px 0 var(--olive);
}

.booking-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 950;
}

.booking-top span:last-child {
  color: var(--olive);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar b,
.calendar span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 6px;
}

.calendar b {
  color: var(--muted);
  font-size: 0.8rem;
}

.calendar span {
  background: #f3eadb;
  font-weight: 900;
}

.calendar .booked {
  background: #d7d2ca;
  color: #8b8378;
  text-decoration: line-through;
}

.calendar .selected {
  background: var(--olive);
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.blog-grid article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.blog-grid a {
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
}

.identity img {
  max-width: 760px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 950;
}

.final-cta {
  margin-bottom: 32px;
  padding: 64px;
  background: var(--clay);
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta p {
  max-width: 780px;
}

form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(18, 18, 15, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 18, 15, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  border-bottom: 1px solid var(--line);
}

.hero-panel {
  padding-top: 74px;
  padding-bottom: 54px;
}

.hero-with-video {
  position: relative;
  width: min(1520px, calc(100% - 16px));
  min-height: min(720px, calc(100vh - 104px));
  margin-top: 24px;
  padding: 66px 34px 48px;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--olive);
}

.hero-bg-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-video {
  z-index: 0;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02) brightness(1.08);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 18, 15, 0.66), rgba(18, 18, 15, 0.38) 48%, rgba(18, 18, 15, 0.08)),
    linear-gradient(180deg, rgba(18, 18, 15, 0.14), rgba(18, 18, 15, 0.4));
}

.hero-with-video > :not(.hero-bg-video):not(.hero-scrim) {
  position: relative;
  z-index: 2;
}

.hero-with-video .eyebrow {
  color: #d9f200;
}

.hero-with-video .lead {
  color: #f1eadc;
}

.hero-with-video .button-light {
  background: rgba(255, 250, 240, 0.9);
}

.hero-with-video .hero-visual img {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-with-video .hero-visual {
  justify-self: end;
  width: min(100%, 780px);
  margin-right: -18px;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading-row > div {
  max-width: 760px;
}

.page-hero,
.product-detail,
.site-footer,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero {
  padding: 78px 0 52px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.product-info h1 {
  font-size: clamp(2.45rem, 5.8vw, 5.15rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-chip,
.option-button,
.cart-item-actions button {
  min-height: 44px;
  padding: 0 14px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.filter-chip.is-active,
.option-button.is-selected,
.cart-item-actions button:hover {
  background: var(--ink);
  color: var(--paper);
}

.filter-chip:disabled,
.option-button:disabled,
.swatch:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

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

.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--olive);
}

.product-card,
.product-card img,
.button,
.filter-chip,
.option-button,
.swatch,
.cart-item,
.info-card,
.site-footer {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.product-image-link {
  display: block;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
  padding: 78px 0 92px;
}

.product-media img {
  width: 100%;
  background: #e3d7c5;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--olive);
}

.product-zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.product-zoom-trigger img {
  display: block;
}

.product-zoom-trigger:focus-visible img {
  outline: 4px solid #d9f200;
  outline-offset: 4px;
}

.product-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.product-note span,
.form-help,
.cart-summary p,
.empty-cart p,
.info-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.58;
}

.product-info {
  position: sticky;
  top: 20px;
}

.price {
  margin: 22px 0;
  color: var(--olive);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.95rem, 3.2vw, 3.3rem);
  line-height: 1;
}

.product-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 22px;
}

.product-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-form legend {
  margin-bottom: 10px;
  font-weight: 950;
}

.legend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.legend-row legend {
  margin: 0;
}

.legend-row a {
  color: var(--olive);
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.fit-button {
  display: grid;
  gap: 5px;
  min-height: 74px;
  padding: 12px 14px;
  text-align: left;
}

.fit-button strong {
  font-size: 0.95rem;
  line-height: 1.05;
}

.fit-button span {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0.78;
}

.fit-button.is-selected span {
  opacity: 0.9;
}

.swatch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 13px 0 9px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
}

.swatch::before {
  display: block;
  width: 24px;
  height: 24px;
  background: var(--swatch);
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.swatch-rainbow::before {
  background: repeating-linear-gradient(
    90deg,
    #e53935 0 4px,
    #fb8c00 4px 8px,
    #fdd835 8px 12px,
    #43a047 12px 16px,
    #1e88e5 16px 20px,
    #8e24aa 20px 24px
  );
}

.swatch.is-selected {
  box-shadow: 0 0 0 3px var(--olive);
}

.swatch:disabled.is-selected {
  box-shadow: none;
}

.size-guide {
  padding-top: 0;
}

.size-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--olive);
}

.size-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.size-table th,
.size-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.size-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.size-table tbody th {
  color: var(--olive);
  font-weight: 950;
}

.size-table tbody tr:nth-child(even) {
  background: #f4eddf;
}

.size-table tbody tr:last-child th,
.size-table tbody tr:last-child td {
  border-bottom: 0;
}

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

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 18, 15, 0.86);
  opacity: 0;
  transition: opacity 160ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
}

.image-lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  object-fit: contain;
  background: var(--paper);
  border: 3px solid var(--cream);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 46px;
  height: 46px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.size-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.offline-showcase {
  background:
    linear-gradient(90deg, rgba(18, 18, 15, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 18, 15, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
}

.offline-layout,
.offline-config,
.offline-hero {
  display: grid;
  gap: 28px;
  align-items: start;
}

.offline-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.offline-config {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
}

.offline-layout .offline-config {
  grid-template-columns: 1fr;
}

.offline-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
}

.offline-hero figure,
.offline-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #dccfbd;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.offline-hero figure {
  box-shadow: 10px 10px 0 var(--olive);
}

.offline-hero img,
.offline-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offline-hero img {
  aspect-ratio: 1 / 1;
}

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

.offline-gallery figure:first-child {
  grid-column: span 2;
}

.offline-gallery img {
  aspect-ratio: 1 / 1;
}

.offline-gallery-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.offline-gallery-wide figure:first-child {
  grid-column: auto;
}

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

.package-card {
  display: grid;
  min-height: 210px;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.package-card span {
  width: fit-content;
  padding: 6px 9px;
  background: var(--taupe);
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.package-card p,
.offline-price-panel p,
.feature-list span {
  color: var(--muted);
  line-height: 1.55;
}

.package-card strong,
.offline-price {
  color: var(--olive);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.85rem);
  line-height: 1;
}

.package-card.is-selected {
  transform: translate(-2px, -2px);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 7px 7px 0 var(--olive);
}

.package-card.is-selected span {
  background: #d9f200;
  color: var(--ink);
}

.package-card.is-selected p,
.package-card.is-selected strong {
  color: #f1eadc;
}

.offline-price-panel,
.feature-list article {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.offline-price-panel {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 16px;
  padding: 22px;
  box-shadow: 9px 9px 0 var(--clay);
}

.offline-price-panel h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
}

.offline-price {
  margin: 0;
}

.offline-facts {
  display: grid;
  gap: 10px;
}

.offline-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.offline-facts span,
.offline-facts strong {
  font-weight: 950;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.feature-list strong {
  font-size: 1rem;
}

.cart-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--olive);
  font-weight: 950;
}

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

.info-card {
  min-height: 190px;
  padding: 24px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.info-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.55rem);
}

.legal-list {
  display: grid;
  gap: 14px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item,
.empty-cart,
.cart-summary {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.cart-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.cart-item img {
  width: 132px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.cart-item h2,
.cart-summary h2,
.empty-cart h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.cart-item p {
  margin: 7px 0;
  color: var(--muted);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
  font-weight: 950;
}

.cart-summary,
.empty-cart {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.cart-summary {
  position: sticky;
  top: 20px;
}

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

.site-footer {
  margin-top: 34px;
  padding: 42px 0 0;
  border-top: 3px solid var(--ink);
}

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

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: #34352f;
  font-weight: 800;
}

.footer-brand {
  width: fit-content;
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .launch,
  .box,
  .qr-band,
  .social-grid,
  .product-detail,
  .cart-layout,
  .offline-layout,
  .offline-config,
  .offline-hero,
  form {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .blog-grid,
  .product-grid-wide,
  .info-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-info,
  .cart-summary,
  .offline-price-panel {
    position: static;
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 8px;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .site-hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 28px;
  }

  .hero-with-video {
    width: calc(100% - 12px);
    min-height: auto;
    margin-top: 8px;
    padding: 34px 18px 28px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(18, 18, 15, 0.6), rgba(18, 18, 15, 0.28) 52%, rgba(18, 18, 15, 0.48));
  }

  .hero-with-video .hero-visual {
    width: min(118%, 560px);
    margin: -10px -38px -10px auto;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.65rem);
  }

  h2,
  .page-hero h1,
  .product-info h1 {
    font-size: clamp(2rem, 9vw, 3.05rem);
  }

  .fit-options {
    grid-template-columns: 1fr;
  }

  h3 {
    font-size: 1.22rem;
  }

  .lead,
  .section-heading p,
  .split > p,
  .launch p,
  .qr-band p,
  .final-cta p {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .button,
  .product-footer a,
  .blog-grid a {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .legend-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .size-table th,
  .size-table td {
    padding: 13px 14px;
  }

  .product-grid,
  .blog-grid,
  .launch-board,
  .signal-strip,
  .product-grid-wide,
  .info-grid,
  .offline-packages,
  .offline-gallery,
  .offline-gallery-wide,
  .footer-grid,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .offline-gallery figure:first-child {
    grid-column: auto;
  }

  .section {
    padding: 58px 0;
  }

  .qr-band,
  .final-cta {
    padding: 28px;
  }

  .section-heading-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero,
  .product-detail {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .cart-item-actions {
    justify-items: start;
  }
}
