:root {
  --ink: #11283b;
  --ink-soft: #1e3c54;
  --cream: #f4efe3;
  --sand: #d8c6a6;
  --sage: #7f8d70;
  --earth: #7a5b3f;
  --rust: #b0633f;
  --white: #ffffff;
  --max-width: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 14px 36px rgba(17, 40, 59, 0.16);
  --shadow-card: 0 8px 18px rgba(17, 40, 59, 0.1);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 239, 227, 0.45), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(127, 141, 112, 0.25), transparent 32%),
    linear-gradient(180deg, #f7f3eb 0%, #efe3cf 100%);
  font-family: "Barlow", "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

button {
  font: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

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

.container {
  width: calc(100% - 2rem);
  max-width: var(--max-width);
  margin-inline: auto;
}

.section {
  padding: var(--space-7) 0;
}

.section-title {
  font-family: "Alegreya", Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 var(--space-3);
  overflow-wrap: break-word;
}

.section-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--rust);
  margin-bottom: var(--space-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.hero-cta {
  min-height: 52px;
  padding-inline: 1.45rem;
  box-shadow: 0 12px 24px rgba(17, 40, 59, 0.18);
}

.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn.disabled,
.btn[aria-disabled="true"],
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 227, 0.87);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 40, 59, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand > span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-logo {
  width: clamp(58px, 8.6vw, 92px);
  height: clamp(58px, 8.6vw, 92px);
  min-width: 58px;
  min-height: 58px;
  max-width: 92px;
  max-height: 92px;
  flex: 0 0 auto;
  object-fit: contain;
  background: rgba(17, 40, 59, 0.05);
  border-radius: 50%;
  border: 2px solid rgba(17, 40, 59, 0.12);
}

.brand-main {
  font-family: "Alegreya", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.brand-sub {
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
}

.nav-links {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  color: var(--ink);
}

.nav-cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  border: 1px solid rgba(17, 40, 59, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-weight: 700;
  padding: 0.52rem 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cart-button:hover,
.nav-cart-button:focus-visible {
  background: var(--white);
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.nav-cart-button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(17, 40, 59, 0.12);
  color: var(--ink);
  font-size: 0.74rem;
  line-height: 1;
}

.cart-count.has-items {
  background: var(--rust);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-7) 0 calc(var(--space-7) + var(--space-6));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(127, 141, 112, 0.3), transparent 60%);
  top: -120px;
  right: -100px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(17, 40, 59, 0.18), transparent 65%);
  left: -100px;
  bottom: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(var(--space-4), 5vw, var(--space-7));
  align-items: center;
}

.hero h1 {
  font-family: "Alegreya", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  margin: 0 0 var(--space-3);
  overflow-wrap: break-word;
}

.hero-grid,
.shop-tools,
.product-card,
.contact-card,
.story-card,
.feature-card {
  min-width: 0;
}

.hero h1,
.section-title,
.product-card h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero p {
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 0 var(--space-4);
}

.hero-origin-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 0.75rem;
  opacity: 0.8;
}

.hero-badge {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(17, 40, 59, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.hero-badge img {
  width: 70px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-badge .hero-badge-label {
  display: block;
  font-size: 0.7rem;
  color: var(--rust);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}

.hero-badge strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.hero-badge .hero-badge-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.3;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(17, 40, 59, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.55rem 0.72rem;
}
.hero-card {
  background: linear-gradient(140deg, #12324a 0%, #294f63 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  transform: rotate(1.5deg);
}

.hero-card strong {
  font-family: "Alegreya", Georgia, serif;
  font-size: 1.35rem;
}

.hero-product {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 40, 59, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-product img {
  width: 100%;
  height: clamp(300px, 34vw, 440px);
  object-fit: contain;
  background: #fff;
  padding: var(--space-3);
}

.hero-product-copy {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.hero-product-copy span,
.product-status {
  color: var(--rust);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-product-copy strong {
  font-family: "Alegreya", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1;
  text-align: right;
}

.limited-drop-card {
  position: relative;
}

.limited-drop-media {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.limited-drop-track,
.limited-drop-slide,
.limited-drop-zoom-target,
.limited-drop-slide > video,
.limited-drop-slide > iframe {
  width: 100%;
  height: clamp(300px, 34vw, 440px);
}

.limited-drop-slide[hidden] {
  display: none;
}

.limited-drop-zoom-target {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: zoom-in;
}

.limited-drop-slide img,
.limited-drop-slide > video,
.limited-drop-slide > iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 34vw, 440px);
  object-fit: contain;
  border: 0;
  background: #fff;
}

.limited-drop-slide img {
  padding: 0.5rem;
  transition: transform 0.25s ease;
}

.limited-drop-zoom-target:hover img {
  transform: scale(1.025);
}

.limited-drop-zoom-target:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: -3px;
}

.limited-drop-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(17, 40, 59, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
}

.limited-drop-nav:hover {
  background: var(--cream);
}

.limited-drop-nav:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 2px;
}

.limited-drop-nav:disabled {
  display: none;
}

.limited-drop-nav svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.limited-drop-nav-previous {
  left: 1rem;
}

.limited-drop-nav-next {
  right: 1rem;
}

.limited-drop-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  z-index: 3;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 40, 59, 0.88);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  transform: translateX(-50%);
}

.limited-drop-zoom-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(17, 40, 59, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  pointer-events: none;
}

.limited-drop-zoom-icon svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.drop-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--rust);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(17, 40, 59, 0.16);
}

.limited-drop-card .hero-product-copy {
  align-items: end;
}

.limited-drop-card .hero-product-copy > div {
  display: grid;
  gap: 0.35rem;
}

.limited-drop-card .hero-product-copy strong,
.limited-drop-card .hero-product-copy small {
  display: block;
  text-align: left;
}

.limited-drop-card .hero-product-copy small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.limited-drop-price {
  color: var(--earth);
  font-size: 1.1rem;
}

.limited-drop-cta {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.86rem;
}

.limited-drop-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.7rem;
  align-items: center;
}

body.product-zoom-open {
  overflow: hidden;
}

.drop-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
}

.drop-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 26, 0.84);
  backdrop-filter: blur(8px);
}

.drop-zoom-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1180px);
  height: min(92vh, 880px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.drop-zoom-stage {
  --zoom-x: 50%;
  --zoom-y: 50%;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
  user-select: none;
}

.drop-zoom-stage.is-zooming {
  cursor: zoom-out;
}

.drop-zoom-image {
  max-width: 100%;
  max-height: 100%;
  padding: clamp(0.75rem, 2vw, 2rem);
  object-fit: contain;
  pointer-events: none;
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 0.16s ease;
}

.drop-zoom-stage.is-zooming .drop-zoom-image {
  transform: scale(2.55);
}

.drop-zoom-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(17, 40, 59, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  color: var(--ink);
}

.drop-zoom-close svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.35;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: end;
  margin-bottom: var(--space-4);
}

.section-header-row .section-title {
  margin-bottom: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.proof-card {
  display: grid;
  grid-template-rows: 210px auto;
  overflow: hidden;
  border: 1px solid rgba(17, 40, 59, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-3);
  background: #fff;
}

.proof-card div {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 0.55rem;
  padding: var(--space-3) var(--space-3) var(--space-4);
  border-top: 1px solid rgba(17, 40, 59, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.proof-card span {
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0;
  font-family: "Alegreya", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.proof-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.social-proof-card {
  align-self: start;
  display: flex;
  flex-direction: column;
}

.social-proof-card img {
  height: auto;
  object-fit: contain;
  padding: 0;
}

.social-proof-image--colorado {
  object-position: center;
}

.social-proof-image--catch {
  object-position: center top;
}

.social-proof-card .social-proof-image--product {
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.facebook-proof {
  display: grid;
  gap: 0.35rem;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1px solid rgba(17, 40, 59, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-card);
}

.facebook-proof p {
  margin: 0;
  font-family: "Alegreya", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.facebook-proof span {
  color: var(--earth);
  font-weight: 700;
}

.facebook-proof strong {
  color: var(--rust);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.meta-item {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 40, 59, 0.1);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
}

.meta-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.card-grid {
  display: grid;
  gap: var(--space-4);
}

.shop-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.shop-product-grid {
  margin-top: 1.25rem;
}

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

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

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

.feature-card,
.product-card,
.story-card,
.contact-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 40, 59, 0.1);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}

.feature-card h3,
.product-card h3,
.story-card h3 {
  font-family: "Alegreya", Georgia, serif;
  margin-top: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card.is-clickable {
  cursor: pointer;
}

.product-card.is-clickable .product-selector {
  cursor: auto;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(176, 99, 63, 0.24);
  box-shadow: 0 16px 34px rgba(17, 40, 59, 0.14);
  transform: translateY(-3px);
}

.product-media {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: calc(var(--space-2) * -1) calc(var(--space-2) * -1) var(--space-3);
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(17, 40, 59, 0.08);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.product-media-placeholder {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.product-media-tall {
  aspect-ratio: 4 / 3;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
}

.product-price,
.product-status {
  font-weight: 700;
  color: var(--earth);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: auto 0 var(--space-3);
}

.product-tags span {
  border: 1px solid rgba(17, 40, 59, 0.14);
  border-radius: 999px;
  background: rgba(244, 239, 227, 0.72);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.45rem 0.55rem;
}

.buy-button-slot {
  margin-top: 0;
  min-height: 42px;
}

.shop-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.8fr) minmax(280px, 1fr) auto;
  gap: var(--space-3);
  align-items: end;
  margin-top: var(--space-4);
  padding: var(--space-3);
  border: 1px solid rgba(17, 40, 59, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-card);
}

.shop-search {
  display: grid;
  gap: 0.4rem;
}

.shop-search span,
.shop-refiners span,
.field-label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-search input {
  min-height: 46px;
}

.shop-refiners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.shop-refiners label {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.shop-refiners select {
  min-height: 42px;
  padding: 0.55rem 0.65rem;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-chip {
  min-height: 42px;
  border: 1px solid rgba(17, 40, 59, 0.14);
  border-radius: 999px;
  background: rgba(244, 239, 227, 0.72);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 0.8rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.shop-cart-shortcut {
  min-height: 46px;
  white-space: nowrap;
}

.product-selector {
  display: grid;
  gap: var(--space-2);
  margin-top: auto;
}

.quick-add-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.field-label {
  display: grid;
  gap: 0.4rem;
}

.field-label select {
  min-height: 46px;
}

.variant-swatches {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.4rem;
}

.swatch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  min-width: 0;
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(17, 40, 59, 0.08);
  padding: 0.18rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.swatch-button span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.22)),
    var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(17, 40, 59, 0.16);
}

.swatch-button:hover,
.swatch-button:focus-visible,
.swatch-button[aria-pressed="true"] {
  border-color: var(--rust);
  background: rgba(176, 99, 63, 0.12);
  transform: translateY(-1px);
}

.swatch-button.is-unavailable,
.swatch-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.product-purchase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  align-items: center;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 34px minmax(42px, 1fr) 34px;
  align-items: center;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid rgba(17, 40, 59, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.quantity-stepper button {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

.quantity-stepper button:hover,
.quantity-stepper button:focus-visible {
  background: rgba(127, 141, 112, 0.16);
}

.quantity-stepper input,
.quantity-stepper span {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  padding: 0;
  text-align: center;
}

.quantity-stepper input:focus {
  outline: none;
}

.quantity-stepper.compact {
  grid-template-columns: 32px 38px 32px;
  min-height: 38px;
  width: max-content;
}

.add-cart-button {
  width: 100%;
  min-height: 46px;
  padding-inline: 0.9rem;
}

.text-button {
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--rust);
  font-weight: 700;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--ink);
}

.shop-empty {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1px dashed rgba(17, 40, 59, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-weight: 700;
  text-align: center;
}

.cart-open {
  overflow: hidden;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(17, 40, 59, 0.46);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: min(440px, 100vw);
  height: 100dvh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 227, 0.98)),
    var(--cream);
  box-shadow: -18px 0 42px rgba(17, 40, 59, 0.24);
  transform: translateX(110%);
  transition: transform 0.28s ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-drawer-header,
.cart-drawer-footer {
  flex: 0 0 auto;
  padding: var(--space-4);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: flex-start;
  border-bottom: 1px solid rgba(17, 40, 59, 0.12);
}

.cart-drawer-header .section-kicker {
  margin: 0 0 0.2rem;
}

.cart-drawer-header h2 {
  margin: 0;
  font-family: "Alegreya", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 40, 59, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.icon-button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-drawer-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: var(--space-4);
}

.cart-reconciliation-notice {
  margin: 0 0 var(--space-3);
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(139, 94, 52, 0.28);
  border-radius: 0.6rem;
  background: rgba(255, 244, 214, 0.82);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cart-empty {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-4);
  border: 1px solid rgba(17, 40, 59, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.cart-empty h3 {
  margin: 0;
  font-family: "Alegreya", Georgia, serif;
  font-size: 1.45rem;
}

.cart-empty p {
  margin: 0;
  color: var(--ink-soft);
}

.cart-items {
  display: grid;
  gap: var(--space-3);
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid rgba(17, 40, 59, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
}

.cart-item img {
  width: 86px;
  height: 86px;
  border-radius: var(--radius-sm);
  background: var(--white);
  object-fit: contain;
}

.cart-item-main {
  display: grid;
  gap: var(--space-2);
  min-width: 0;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  align-items: flex-start;
}

.cart-item h3,
.cart-item p {
  margin: 0;
}

.cart-item h3 {
  font-family: "Alegreya", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.05;
}

.cart-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.cart-item strong {
  white-space: nowrap;
}

.cart-item-child {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 0.45rem 0.55rem;
  border-left: 3px solid var(--rust);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(179, 91, 55, 0.08);
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.cart-item-child strong {
  color: var(--ink);
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  align-items: center;
}

.cart-drawer-footer {
  display: grid;
  gap: var(--space-3);
  border-top: 1px solid rgba(17, 40, 59, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: baseline;
  font-size: 1.1rem;
}

.cart-total-row strong {
  font-size: 1.3rem;
}

.cart-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.checkout-button {
  min-height: 50px;
}

.checkout-button.is-loading {
  pointer-events: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: var(--space-4);
  z-index: 70;
  max-width: calc(100vw - 2rem);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.notice {
  padding: var(--space-3);
  border-left: 4px solid var(--rust);
  background: rgba(176, 99, 63, 0.12);
  border-radius: var(--radius-sm);
  margin-top: var(--space-4);
}

.story-banner {
  background: linear-gradient(120deg, rgba(17, 40, 59, 0.95), rgba(122, 91, 63, 0.9));
  color: var(--cream);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft);
}

.story-banner .section-kicker {
  color: var(--sand);
}

.story-banner .section-title {
  margin-top: 0;
}

.story-banner-feature {
  background: linear-gradient(135deg, rgba(17, 40, 59, 0.95) 0%, rgba(26, 60, 84, 0.9) 50%, rgba(122, 91, 63, 0.85) 100%);
  margin-bottom: var(--space-6);
  padding: var(--space-7);
  text-align: center;
}

.story-banner-feature .section-title {
  color: var(--cream);
  margin-bottom: var(--space-3);
}

.story-banner-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 auto var(--space-4);
  max-width: 60ch;
}

.story-banner-note {
  color: var(--sand);
  font-size: 1rem;
  font-style: italic;
  margin: 0 auto;
  max-width: 55ch;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.stack-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section-tight {
  padding-top: 0;
}

.center-actions {
  margin-top: 1.5rem;
  text-align: center;
}

.form-gap {
  margin-top: 0.75rem;
}

.form-helper {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-helper[data-state='success'] {
  color: #236445;
  font-weight: 700;
}

.form-helper[data-state='error'] {
  color: #8b2e20;
  font-weight: 700;
}

.honeypot-field {
  display: none;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(17, 40, 59, 0.25);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
.btn:focus-visible,
.mobile-toggle:focus-visible,
.nav-cart-button:focus-visible,
.icon-button:focus-visible,
.filter-chip:focus-visible,
.swatch-button:focus-visible,
.quantity-stepper button:focus-visible,
.text-button:focus-visible {
  outline: 3px solid rgba(127, 141, 112, 0.5);
  outline-offset: 2px;
}

.site-footer {
  margin-top: var(--space-7);
  background: #10283a;
  color: var(--cream);
  padding: var(--space-5) 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-origin {
  font-size: 0.82rem;
  color: rgba(244, 239, 227, 0.6);
  font-style: italic;
  margin: 0;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  gap: var(--space-3);
}

/* Jewel Bait Company co-brand */
.co-brand-logo {
  width: clamp(80px, 18vw, 130px);
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}

.co-brand-header {
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.co-brand-header .cb-name {
  font-family: "Alegreya", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1;
}

.co-brand-header .cb-sub {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--earth);
}

.co-brand-badge img {
  width: 90px;
  height: auto;
  object-fit: contain;
  display: block;
}

.co-brand-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.co-brand-badge strong {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .co-brand-header {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
  }
  .co-brand-header .cb-name {
    font-size: 0.6rem;
  }
  .co-brand-header .cb-sub {
    font-size: 0.55rem;
  }
  .co-brand-logo {
    width: clamp(70px, 20vw, 100px);
  }
}

@media (max-width: 520px) {
  .co-brand-header {
    display: none;
  }
  .co-brand-badge img {
    width: 70px;
  }
  .co-brand-badge {
    font-size: 0.72rem;
  }
  .co-brand-badge strong {
    font-size: 0.78rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .btn,
  .reveal {
    transition: none;
  }

  .product-card:hover,
  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .proof-grid,
  .grid-3,
  .grid-4,
  .grid-2,
  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    min-height: 88px;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    right: 0;
    width: min(320px, 85vw);
    height: calc(100vh - 88px);
    background: var(--cream);
    box-shadow: -8px 0 24px rgba(17, 40, 59, 0.16);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  }

  .nav-cart-button {
    justify-content: space-between;
    width: 100%;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .meta-row {
    grid-template-columns: 1fr;
  }

  .section-header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-product-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .limited-drop-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-product-copy strong {
    text-align: left;
  }

  .brand-logo {
    width: clamp(52px, 15vw, 72px);
    height: clamp(52px, 15vw, 72px);
    min-width: 52px;
    min-height: 52px;
    max-width: 72px;
    max-height: 72px;
  }

  .shop-tools {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .shop-refiners {
    grid-template-columns: 1fr;
  }

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

  .shop-cart-shortcut {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .section {
    padding: var(--space-6) 0;
  }

  .hero {
    padding: var(--space-6) 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .hero p {
    max-width: 100%;
  }

  .hero-badge {
    align-items: flex-start;
    padding: 0.9rem;
  }

  .trust-list li {
    flex: 1 1 100%;
  }

  .proof-card {
    grid-template-rows: 180px auto;
  }

  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .btn {
    min-height: 48px;
    padding-inline: 1rem;
  }

  .product-card,
  .feature-card,
  .story-card,
  .contact-card,
  .meta-item {
    padding: var(--space-3);
  }

  .product-media {
    margin: 0 0 var(--space-3);
  }

  .product-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .product-status {
    white-space: normal;
  }

  .variant-swatches {
    grid-template-columns: repeat(6, minmax(30px, 1fr));
  }

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

  .quantity-stepper {
    grid-template-columns: 44px 1fr 44px;
  }

  .cart-drawer {
    width: 100vw;
  }

  .cart-drawer-header,
  .cart-drawer-body,
  .cart-drawer-footer {
    padding: var(--space-3);
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
    gap: var(--space-2);
    padding: var(--space-2);
  }

  .cart-item img {
    width: 70px;
    height: 70px;
  }

  .cart-item-top,
  .cart-item-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-filters {
    grid-template-columns: 1fr;
  }
}
