:root {
  --black: #08090b;
  --black-soft: #121418;
  --black-card: #191c21;
  --white: #ffffff;
  --paper: #f5f6f8;
  --paper-dark: #e7e9ed;
  --text: #141518;
  --muted: #666b73;
  --muted-dark: #aeb3bb;
  --red: #ed1c24;
  --red-dark: #b80911;
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: #d9dce2;
  --shadow: 0 18px 45px rgba(13, 16, 22, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 76px);
  background: rgba(8, 9, 11, .96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { width: 88px; height: 78px; object-fit: contain; }
.llc-label {
  padding-left: 13px;
  border-left: 2px solid var(--red);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .19em;
}
.site-header nav { display: flex; align-items: center; gap: 29px; font-size: .92rem; font-weight: 600; }
.site-header nav > a:not(.nav-cta) { color: #d1d4d9; transition: color .18s ease; }
.site-header nav > a:not(.nav-cta):hover,
.site-header nav > a:not(.nav-cta):focus-visible { color: var(--white); }
.nav-etsy { padding-left: 23px; border-left: 1px solid var(--line-dark); }
.nav-cta {
  padding: 12px 19px;
  background: var(--red);
  color: var(--white);
  border-radius: 5px;
  transition: background .18s ease, transform .18s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { background: #ff343b; transform: translateY(-2px); }
.menu-toggle {
  display: none;
  padding: 9px 14px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  font: inherit;
}

.hero {
  position: relative;
  min-height: calc(92vh - 94px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 6vw;
  padding: 72px clamp(22px, 5vw, 76px) 86px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 42%, rgba(237,28,36,.16), transparent 35%),
    var(--black);
  background-size: 48px 48px, 48px 48px, auto, auto;
}
.hero:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 5px;
  height: 44%;
  background: var(--red);
}
.hero-copy { position: relative; z-index: 1; max-width: 700px; }
.eyebrow {
  margin: 0 0 19px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.catalog-heading h2,
.process h2,
.photo-tip h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.055em;
  line-height: .96;
}
.hero h1 { font-size: clamp(4rem, 7.7vw, 8rem); font-weight: 650; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-text {
  max-width: 600px;
  margin: 29px 0 32px;
  color: #c5c9d0;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 22px;
  border-radius: 5px;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.primary { background: var(--red); color: var(--white); }
.primary:hover, .primary:focus-visible { background: #ff343b; }
.secondary { border: 1px solid currentColor; }
.text-link { font-weight: 700; }
.text-link span { margin-left: 6px; color: var(--red); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 43px; color: #9da2aa; font-size: .84rem; }
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row span:before { content: ""; width: 7px; height: 2px; background: var(--red); }
.hero-visual { position: relative; z-index: 1; }
.image-frame { position: relative; overflow: hidden; background: var(--black-card); }
.hero-image {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  box-shadow: 22px 22px 0 rgba(237,28,36,.17), 0 35px 90px rgba(0,0,0,.48);
}
.hero-image:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45)); }
.hero-image img { aspect-ratio: 1 / 1.08; object-fit: cover; }
.floating-note {
  position: absolute;
  right: -18px;
  bottom: 32px;
  display: grid;
  min-width: 230px;
  padding: 17px 21px;
  background: var(--white);
  color: var(--text);
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
  font-size: .9rem;
}
.floating-note span { color: var(--muted); font-size: .8rem; }

.product-section { padding: 108px clamp(22px, 5vw, 76px); background: var(--white); color: var(--text); }
.section-heading,
.catalog-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 7vw;
  margin-bottom: 50px;
}
.section-heading h2,
.catalog-heading h2,
.process h2,
.photo-tip h2 { font-size: clamp(2.8rem, 5vw, 5.3rem); }
.section-heading > p,
.catalog-heading > div:last-child { max-width: 520px; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-card {
  min-height: 455px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: #bec2c9; box-shadow: var(--shadow); }
.product-card img { height: 360px; object-fit: cover; transition: transform .5s ease; }
.product-card:hover img { transform: scale(1.025); }
.product-info { display: grid; grid-template-columns: 38px 1fr; gap: 10px; margin-top: auto; padding: 27px; }
.number { color: #888d95; font-family: "Space Grotesk", sans-serif; font-size: .8rem; }
.product-info h3 { margin: 0 0 7px; font-family: "Space Grotesk", sans-serif; font-size: 1.55rem; line-height: 1.15; }
.product-info p { max-width: 540px; margin: 0 0 17px; color: var(--muted); }
.product-info a { padding-bottom: 3px; border-bottom: 2px solid var(--red); font-weight: 700; }
.category-card { position: relative; min-height: 350px; background: #f1f2f4; }
.orange-card { background: var(--red); color: var(--white); border-color: var(--red); }
.orange-card .number, .orange-card .product-info p { color: rgba(255,255,255,.78); }
.orange-card .product-info a { border-bottom-color: var(--white); }
.category-icon { padding: 32px; color: rgba(20,21,24,.78); font-family: "Space Grotesk", sans-serif; font-size: 5rem; line-height: 1; }
.orange-card .category-icon { color: var(--white); }
.text-card { position: relative; min-height: 350px; background: var(--black); color: var(--white); border-color: var(--black); }
.text-card .number, .text-card .product-info p { color: var(--muted-dark); }
.text-card .product-info a { border-bottom-color: var(--red); }
.orbit { position: absolute; top: -58px; right: -42px; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.orbit:before, .orbit:after { content: ""; position: absolute; inset: 36px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit:after { inset: 80px; }
.orbit span { position: absolute; top: 96px; left: 15px; width: 12px; height: 12px; background: var(--red); border-radius: 50%; }

.catalog-section { padding: 108px clamp(22px, 5vw, 76px); background: var(--paper); color: var(--text); }
.catalog-shop-link { display: inline-block; margin-top: 8px; padding-bottom: 3px; color: var(--text); border-bottom: 2px solid var(--red); font-weight: 700; }
.square-order-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  padding: 30px 34px;
  background: var(--black);
  color: var(--white);
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow);
}
.square-order-bar h3 { margin: 3px 0; font-family: "Space Grotesk", sans-serif; font-size: 1.55rem; }
.square-order-bar p { margin: 0; color: var(--muted-dark); }
.square-badge { color: #ff5960; font-size: .7rem; font-weight: 700; letter-spacing: .16em; }
.square-button { flex-shrink: 0; background: var(--red); color: var(--white); white-space: nowrap; }
.square-button:hover, .square-button:focus-visible { background: #ff343b; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 19px; }
.catalog-card {
  min-width: 0;
  padding-bottom: 23px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(10,12,16,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.catalog-card:hover, .catalog-card:focus-visible { transform: translateY(-6px); border-color: #bbbfc7; box-shadow: var(--shadow); outline: none; }
.catalog-card img { aspect-ratio: 1 / 1; padding: 8px; object-fit: contain; background: #f6f7f8; transition: transform .5s ease; }
.catalog-card:hover img { transform: scale(1.015); }
.catalog-card h3 { min-height: 2.8em; margin: 7px 19px 12px; font-family: "Space Grotesk", sans-serif; font-size: 1.12rem; line-height: 1.25; }
.catalog-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 18px 19px 0; }
.catalog-tag { color: var(--red-dark); font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.catalog-store { padding: 4px 7px; color: var(--muted-dark); background: #f1f2f4; border-radius: 999px; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.catalog-price { display: block; margin: -4px 19px 13px; color: var(--muted-dark); font-size: .86rem; font-weight: 700; }
.shop-product { display: inline-block; margin: 0 19px; padding-bottom: 2px; border-bottom: 2px solid var(--red); font-size: .88rem; font-weight: 700; }
.shop-product.sold-out { color: var(--muted-dark); border-bottom-color: var(--muted-dark); }
.square-admin-page { min-height: 75vh; }
.square-connect-card { max-width: 760px; padding: clamp(24px, 5vw, 48px); background: var(--white); border: 1px solid var(--line-light); border-radius: 6px; box-shadow: var(--shadow); }
.connection-status { display: grid; gap: 6px; padding: 18px 20px; background: #f1f2f4; border-left: 5px solid var(--muted-dark); }
.connection-status.connected { background: #eefaf2; border-left-color: #21834b; }
.connection-status span, .connection-help { color: var(--muted-dark); }
.connection-steps { display: grid; gap: 10px; margin: 28px 0; padding-left: 22px; }
.square-connect-form { display: grid; gap: 12px; }
.square-connect-form label { font-weight: 700; }
.square-connect-form input { width: 100%; padding: 15px 16px; border: 1px solid var(--line-light); border-radius: 4px; font: inherit; }
.square-connect-form button { justify-self: start; border: 0; cursor: pointer; }
.square-connect-form button:disabled { cursor: wait; opacity: .65; }
.connection-help, .connection-message { margin: 0; }
.connection-message { padding: 12px 14px; background: #f1f2f4; border-radius: 4px; font-weight: 600; }
.checkout-settings-card { margin-top: 24px; }
.money-input { display: grid; grid-template-columns: auto 1fr; align-items: center; border: 1px solid var(--line-light); border-radius: 4px; overflow: hidden; }
.money-input span { padding-left: 16px; font-weight: 700; }
.money-input input { border: 0; }

.product-detail-page { min-height: 72vh; padding: 46px clamp(22px, 6vw, 92px) 100px; }
.product-back { display: inline-block; margin-bottom: 28px; color: var(--muted-dark); font-weight: 700; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(36px, 6vw, 86px); align-items: start; max-width: 1180px; margin: 0 auto; }
.product-gallery { min-width: 0; }
.product-detail-image { overflow: hidden; background: var(--white); border: 1px solid var(--line-light); border-radius: 6px; box-shadow: var(--shadow); }
.product-detail-image img { width: 100%; aspect-ratio: 1 / 1; padding: 10px; object-fit: contain; background: #f6f7f8; }
.product-image-button { position: relative; display: block; width: 100%; padding: 0; cursor: zoom-in; }
.product-image-button:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.product-enlarge-label { position: absolute; right: 12px; bottom: 12px; padding: 8px 11px; color: var(--white); background: rgba(13,15,19,.82); border-radius: 4px; font-size: .78rem; font-weight: 700; }
.product-thumbnails { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 10px; margin-top: 12px; }
.product-thumbnail { padding: 0; overflow: hidden; background: var(--white); border: 2px solid transparent; border-radius: 4px; cursor: pointer; transition: border-color .18s ease, transform .18s ease; }
.product-thumbnail img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-thumbnail:hover, .product-thumbnail:focus-visible { border-color: #747982; transform: translateY(-2px); outline: none; }
.product-thumbnail.selected { border-color: var(--red); }
.product-lightbox { width: min(96vw, 1200px); max-width: none; padding: 48px 20px 18px; background: #0d0f13; border: 0; }
.product-lightbox-title { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.product-lightbox-stage { position: relative; display: grid; place-items: center; min-height: min(76vh, 820px); }
.product-lightbox-stage img { width: auto; max-width: 100%; height: auto; max-height: 78vh; object-fit: contain; }
.product-lightbox-nav { position: absolute; z-index: 1; top: 50%; width: 48px; height: 48px; padding: 0; color: var(--white); background: rgba(13,15,19,.72); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 2.3rem; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.product-lightbox-nav:hover, .product-lightbox-nav:focus-visible { background: var(--red); outline: none; }
.product-lightbox-nav.previous { left: 12px; }
.product-lightbox-nav.next { right: 12px; }
.product-lightbox-count { margin: 4px 0 0; color: var(--white); text-align: center; font-size: .9rem; }
.product-detail-copy { padding-top: 18px; }
.product-detail-copy h1 { margin: 8px 0 20px; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: .98; letter-spacing: -.045em; }
.product-detail-description { max-width: 620px; color: var(--muted-dark); font-size: 1.08rem; line-height: 1.7; }
.product-detail-price { margin: 22px 0 30px; font-family: "Space Grotesk", sans-serif; font-size: 1.45rem; font-weight: 700; }
.purchase-options { display: grid; gap: 12px; padding-top: 26px; border-top: 1px solid var(--line-light); }
.purchase-options h2 { margin: 0 0 4px; font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; }
.purchase-button { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; color: var(--white); background: var(--black); border-radius: 4px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.purchase-button:hover, .purchase-button:focus-visible { transform: translateY(-2px); background: #292d34; outline: none; }
.purchase-button.square { background: #1769e0; }
.purchase-button.square:hover, .purchase-button.square:focus-visible { background: #0f55ba; }
.purchase-button.unavailable { color: var(--muted-dark); background: #eef0f2; }
.checkout-note { margin-top: 14px; color: var(--muted-dark); font-size: .86rem; }
.add-to-cart-panel { display: grid; gap: 15px; margin: 28px 0; padding: 22px; color: var(--text); background: #f4f5f7; border: 1px solid var(--line-light); border-left: 5px solid var(--red); border-radius: 4px; }
.add-to-cart-panel h2 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; }
.product-option-field, .quantity-field { display: grid; gap: 7px; font-weight: 700; }
.product-option-field select, .quantity-field select { min-height: 44px; padding: 9px 12px; color: var(--text); -webkit-text-fill-color: var(--text); background: var(--white); border: 1px solid var(--line-light); border-radius: 4px; color-scheme: light; font: inherit; opacity: 1; }
.product-option-field select option, .quantity-field select option { color: var(--text); background: var(--white); }
.add-to-cart-row { display: grid; grid-template-columns: 110px 1fr; gap: 12px; align-items: end; }
.add-cart-button { min-height: 44px; color: var(--white); background: var(--red); border: 0; cursor: pointer; }
.direct-checkout-note { margin: 0; color: var(--muted-dark); font-size: .86rem; }

.cart-trigger { display: inline-flex; align-items: center; gap: 7px; min-height: 39px; padding: 8px 12px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.42); border-radius: 4px; font: inherit; font-weight: 700; cursor: pointer; }
.cart-trigger span { display: grid; min-width: 22px; height: 22px; padding: 0 5px; place-items: center; color: var(--black); background: var(--white); border-radius: 999px; font-size: .75rem; }
.cart-sheet { width: min(92vw, 440px); max-width: 440px; gap: 0; color: var(--text); background: var(--white); }
.cart-sheet-header { padding: 28px 24px 20px; border-bottom: 1px solid var(--line-light); }
.cart-title { font-family: "Space Grotesk", sans-serif; font-size: 1.65rem; }
.cart-items { display: grid; gap: 0; padding: 0 24px; overflow-y: auto; }
.cart-item { display: grid; grid-template-columns: 82px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.cart-item > img { width: 82px; height: 82px; padding: 4px; object-fit: contain; background: #f4f5f7; }
.cart-item > div { display: grid; align-content: start; gap: 3px; }
.cart-item span { color: var(--muted-dark); font-size: .86rem; }
.cart-item-actions { display: flex; align-items: center; gap: 12px; margin-top: 7px; }
.cart-item-actions select { padding: 5px 8px; color: var(--text); -webkit-text-fill-color: var(--text); background: var(--white); border: 1px solid var(--line-light); border-radius: 3px; color-scheme: light; opacity: 1; }
.cart-item-actions select option { color: var(--text); background: var(--white); }
.cart-item-actions button { padding: 0; color: var(--red-dark); background: none; border: 0; font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }
.cart-footer { padding: 20px 24px 28px; border-top: 1px solid var(--line-light); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.08rem; }
.cart-footer p { margin: 0; color: var(--muted-dark); font-size: .82rem; }
.cart-checkout-button { justify-content: center; color: var(--white); background: var(--red); text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.checkout-page { min-height: 74vh; padding: 46px clamp(22px, 6vw, 92px) 100px; background: #f4f5f7; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 430px); gap: clamp(28px, 5vw, 70px); max-width: 1180px; margin: 0 auto; align-items: start; }
.checkout-form, .checkout-summary, .checkout-empty, .checkout-success { color: var(--text); background: var(--white); border: 1px solid var(--line-light); border-radius: 6px; box-shadow: var(--shadow); }
.checkout-form { display: grid; gap: 30px; padding: clamp(24px, 4vw, 44px); }
.checkout-form h1, .checkout-empty h1, .checkout-success h1 { margin: 4px 0 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.04em; }
.checkout-form fieldset { display: grid; gap: 16px; margin: 0; padding: 0; border: 0; }
.checkout-form legend { margin-bottom: 13px; font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; font-weight: 700; }
.checkout-fields { display: grid; gap: 15px; }
.checkout-fields.two-column { grid-template-columns: 1fr 1fr; }
.checkout-fields label { display: grid; gap: 7px; font-size: .92rem; font-weight: 700; }
.checkout-fields label span { color: var(--muted-dark); font-size: .78rem; font-weight: 500; }
.checkout-fields input { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line-light); border-radius: 4px; font: inherit; }
.checkout-fields input:focus { border-color: var(--red); outline: 2px solid rgba(237,28,36,.16); }
.full-field { grid-column: 1 / -1; }
.square-card-container { min-height: 90px; padding: 14px; background: #fafafa; border: 1px solid var(--line-light); border-radius: 4px; }
.secure-payment-note { margin: 0; color: var(--muted-dark); font-size: .84rem; }
.checkout-message { margin: 0; padding: 12px 14px; color: #8f0b11; background: #fff1f1; border-left: 4px solid var(--red); }
.checkout-pay-button { width: 100%; justify-content: center; min-height: 52px; color: var(--white); background: var(--red); border: 0; cursor: pointer; }
.checkout-pay-button:disabled { cursor: wait; opacity: .58; }
.checkout-summary { position: sticky; top: 28px; padding: 25px; }
.checkout-summary h2 { margin: 0 0 18px; font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; }
.checkout-summary-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 11px; align-items: start; padding: 13px 0; border-bottom: 1px solid var(--line-light); }
.checkout-summary-item img { width: 64px; height: 64px; padding: 3px; object-fit: contain; background: #f4f5f7; }
.checkout-summary-item > div { display: grid; gap: 2px; }
.checkout-summary-item span { color: var(--muted-dark); font-size: .8rem; }
.checkout-summary-item b { font-size: .88rem; }
.checkout-summary dl { display: grid; gap: 10px; margin: 20px 0 0; }
.checkout-summary dl > div { display: flex; justify-content: space-between; gap: 15px; }
.checkout-summary dt, .checkout-summary dd { margin: 0; }
.checkout-summary dd { font-weight: 700; text-align: right; }
.checkout-estimated-total { margin-top: 7px; padding-top: 15px; border-top: 1px solid var(--line-light); font-size: 1.08rem; }
.checkout-empty, .checkout-success { max-width: 760px; margin: 60px auto; padding: clamp(30px, 6vw, 64px); }
.checkout-empty p, .checkout-success p { color: var(--muted-dark); font-size: 1.05rem; line-height: 1.6; }
.checkout-success > span { color: #21834b; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.checkout-success-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }

@media (max-width: 760px) {
  .product-detail-page { padding-top: 28px; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-detail-copy { padding-top: 0; }
  .product-detail-copy h1 { font-size: clamp(2.15rem, 11vw, 3.4rem); }
  .checkout-page { padding-top: 28px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; grid-row: 1; }
  .checkout-fields.two-column { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .add-to-cart-row { grid-template-columns: 96px 1fr; }
}

.process { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; padding: 116px clamp(22px, 5vw, 76px); }
.process-intro > p:last-child { max-width: 330px; color: var(--muted-dark); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid var(--line-dark); }
.steps li:last-child { border-bottom: 1px solid var(--line-dark); }
.steps li > span { color: var(--red); font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.steps h3 { margin: 0 0 5px; font-family: "Space Grotesk", sans-serif; font-size: 1.35rem; }
.steps p { margin: 0; color: var(--muted-dark); }
.photo-tip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 7vw;
  margin: 0 clamp(22px, 5vw, 76px) 90px;
  padding: 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    var(--red);
  background-size: 38px 38px;
  color: var(--white);
  border-radius: 6px;
}
.photo-tip .eyebrow { color: var(--white); }
.tip-copy p { max-width: 540px; margin: 0 0 27px; font-size: 1.1rem; }
.photo-tip .secondary { border-color: var(--white); }
.photo-tip .secondary:hover { background: var(--white); color: var(--red-dark); }

footer { padding: 62px clamp(22px, 5vw, 76px) 34px; border-top: 1px solid var(--line-dark); }
.footer-logo { width: min(260px, 70vw); height: auto; margin-bottom: 20px; }
.footer-brand { font-family: "Space Grotesk", sans-serif; font-size: clamp(2.2rem, 5vw, 5rem); font-weight: 700; letter-spacing: -.05em; }
.footer-brand b { color: var(--red); }
footer > p { color: var(--muted-dark); }
.footer-links { display: flex; flex-wrap: wrap; gap: 25px; margin: 33px 0 52px; }
.footer-links a { padding-bottom: 2px; border-bottom: 1px solid var(--line-dark); }
footer small { display: block; padding-top: 23px; color: #777c84; border-top: 1px solid var(--line-dark); }

@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-header nav { gap: 20px; }
}
@media (max-width: 1050px) {
  .site-header nav {
    position: absolute;
    top: 94px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px 22px 22px;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
  }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 12px 2px; }
  .site-header nav > a:not(.nav-cta) { border-bottom: 1px solid var(--line-dark); }
  .nav-etsy { border-left: 0; }
  .nav-cta { margin-top: 12px; text-align: center; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero h1 { font-size: clamp(3.5rem, 15vw, 6rem); }
  .hero-visual { width: min(100%, 620px); margin: 20px auto 0; }
  .floating-note { right: 0; }
  .section-heading, .catalog-heading, .process, .photo-tip { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card img { height: auto; aspect-ratio: 4 / 3; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .square-order-bar { align-items: flex-start; flex-direction: column; }
  .square-button { white-space: normal; }
  .process { gap: 52px; }
  .photo-tip { padding: 40px 28px; }
}
@media (max-width: 520px) {
  .site-header { height: 86px; padding-inline: 17px; }
  .brand-logo { width: 73px; height: 68px; }
  .llc-label { padding-left: 9px; font-size: .67rem; }
  .site-header nav { top: 86px; }
  .hero { min-height: auto; padding-top: 48px; padding-bottom: 68px; }
  .hero:before { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-row { margin-top: 36px; }
  .floating-note { position: relative; right: auto; bottom: auto; margin: -16px 14px 0; }
  .product-section, .catalog-section, .process { padding-top: 78px; padding-bottom: 78px; }
  .product-info { padding: 22px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card h3 { min-height: auto; }
  .square-order-bar { padding: 25px 22px; }
  .photo-tip { margin-inline: 14px; padding: 36px 23px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .hero-visual { animation: rise .7s ease both; }
  .hero-visual { animation-delay: .12s; }
  .catalog-card { animation: card-in .5s ease both; }
  .catalog-card:nth-child(2n) { animation-delay: .04s; }
  .catalog-card:nth-child(3n) { animation-delay: .08s; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  @keyframes card-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}
