:root {
  --ink: #f5f0e2;
  --paper: #0c100b;
  --paper-strong: #fff6df;
  --moss: #7b9905;
  --moss-deep: #030503;
  --leaf: #c8f000;
  --gold: #b99661;
  --water: #11180f;
  --clay: #76623e;
  --line: #3d4921;
  --muted: #c8bea4;
  --smoke: #080a07;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(200, 240, 0, 0.12), transparent 26rem),
    radial-gradient(circle at 84% 6%, rgba(210, 173, 116, 0.16), transparent 20rem),
    radial-gradient(circle at 70% 72%, rgba(200, 240, 0, 0.08), transparent 28rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 6px),
    #070906;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--paper-strong);
  color: var(--moss-deep);
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
}

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

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 35, 17, 0.96);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 108px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand span span {
  color: #d9e5c7;
  font-size: 0.84rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  border-radius: 6px;
  color: #edf4e4;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: transparent;
  color: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.utility-bar {
  background: var(--gold);
  color: #20170a;
  font-weight: 800;
  padding: 0.5rem 1rem;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: var(--paper);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 20, 11, 0.86), rgba(11, 20, 11, 0.55), rgba(11, 20, 11, 0.18)),
    linear-gradient(0deg, rgba(16, 35, 17, 0.5), rgba(16, 35, 17, 0));
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 78vh;
  padding: 6rem 0;
}

.hero-copy {
  max-width: 680px;
}

.hero-logo {
  width: 176px;
  height: auto;
  margin-bottom: 1.25rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 3.15rem;
  max-width: 760px;
}

h2 {
  font-size: 2.15rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

.lead {
  color: #354037;
  font-size: 1.15rem;
}

.hero .lead {
  color: #eef5e9;
  max-width: 620px;
  margin-top: 1rem;
}

.hero-actions,
.card-actions,
.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  padding: 0.75rem 1rem;
  text-align: center;
  text-decoration: none;
}

.made-oregon-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.made-oregon-badge-mark {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: #c9a775;
  box-shadow: 0 10px 24px rgba(12, 20, 13, 0.18);
}

.made-oregon-badge-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16);
}

.made-oregon-badge-text {
  font-weight: 900;
  line-height: 1.3;
}

.hero-made-badge,
.page-made-badge {
  width: min(100%, 560px);
  margin-top: 1.25rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 35, 17, 0.5);
  color: #f4f0e8;
}

.hero-made-badge .made-oregon-badge-mark,
.page-made-badge .made-oregon-badge-mark {
  width: 82px;
  height: 82px;
}

.footer-made-badge {
  margin-top: 1rem;
  color: #e5eddd;
}

.footer-made-badge .made-oregon-badge-mark {
  width: 62px;
  height: 62px;
}

.footer-made-badge .made-oregon-badge-text {
  font-size: 0.92rem;
}

.button-primary {
  background: var(--leaf);
  color: #0d170d;
}

.button-secondary {
  background: var(--moss-deep);
  color: var(--paper);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--paper);
}

.button-disabled {
  background: #e5e0d3;
  border-color: #c9c0aa;
  color: #6a6254;
  cursor: not-allowed;
}

.checkout-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  width: 100%;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.section-light {
  background: #f1efe4;
}

.section-dark {
  background: var(--moss-deep);
  color: var(--paper);
}

.section-water {
  background: #e4eeee;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

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

.reason-grid,
.product-grid,
.color-grid,
.policy-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

.reason {
  border-left: 4px solid var(--leaf);
  padding: 0.2rem 0 0.2rem 1rem;
}

.reason h3 {
  margin-bottom: 0.35rem;
}

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

.product-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card-image {
  display: block;
  background: #f7f6ef;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 48%;
}

.product-card-body {
  padding: 1.35rem;
}

.product-card h3 a {
  text-decoration: none;
}

.product-card p {
  margin-top: 0.75rem;
}

.product-facts {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

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

.product-facts div {
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
}

.product-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0.1rem 0 0;
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 2.5rem;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(280px, 430px) 1fr;
}

.rounded-media {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-callout {
  border-left: 5px solid var(--gold);
  margin-top: 1.5rem;
  padding-left: 1.2rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.proof-band {
  background: var(--water);
  color: var(--paper);
  padding: 2rem 0;
}

.proof-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.proof-band strong {
  display: block;
  font-size: 1.4rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--moss-deep), #29491a);
  color: var(--paper);
  padding: 5.5rem 0 4rem;
}

.page-hero .lead {
  color: #e5eddd;
  max-width: 760px;
  margin-top: 1rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: #dbe8cf;
  font-size: 0.92rem;
}

.breadcrumb a {
  color: inherit;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 48%) 1fr;
  gap: 2.6rem;
  align-items: start;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4rem 0;
}

.gallery-main {
  overflow: hidden;
  background: #f7f6ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 48%;
}

.gallery-options {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.gallery-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0.7rem;
  text-align: left;
}

.gallery-option[aria-pressed="true"] {
  border-color: var(--moss);
  box-shadow: inset 0 0 0 2px var(--moss);
}

.swatch {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  background: var(--swatch);
}

.product-detail-copy {
  padding-top: 0.5rem;
}

.product-detail-copy .lead {
  margin-top: 1rem;
}

.checkout-panel {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f1efe4;
}

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

.color-card {
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.color-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.color-card div {
  padding: 1rem;
}

.color-card p {
  margin-top: 0.55rem;
}

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

.policy-item,
.contact-item,
.faq-list details,
.notice {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.policy-item h2,
.policy-item h3,
.contact-item h2,
.contact-item h3 {
  margin-bottom: 0.5rem;
}

.policy-item ul,
.policy-copy ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.policy-copy {
  max-width: 880px;
}

.policy-copy h2 {
  margin-top: 2.2rem;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p,
.policy-copy li {
  color: #334038;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: #334038;
  margin-top: 0.8rem;
}

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

.link-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.link-list a {
  color: var(--moss);
  font-weight: 900;
}

.site-footer {
  background: #0b160c;
  color: var(--paper);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: #e5eddd;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #c8d2bf;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.08), transparent 0.09rem),
    radial-gradient(circle at 72% 68%, rgba(210, 173, 116, 0.12), transparent 0.08rem),
    radial-gradient(circle at 50% 80%, rgba(200, 240, 0, 0.12), transparent 0.07rem);
  background-size: 18px 18px, 25px 25px, 31px 31px;
  opacity: 0.42;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(4, 5, 3, 0.98), rgba(12, 16, 9, 0.96)),
    var(--moss-deep);
  border-bottom: 2px solid rgba(210, 173, 116, 0.56);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

.brand strong,
.site-nav a,
.utility-bar,
.button,
.eyebrow,
h1,
h2,
h3,
.product-facts dt,
.product-facts dd,
.faq-list summary {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
}

.brand strong {
  color: var(--paper-strong);
  text-shadow: 0 0 14px rgba(200, 240, 0, 0.24);
}

.brand span span {
  color: #cfbf9e;
}

.site-nav a {
  color: #f6ead0;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(200, 240, 0, 0.12);
  border-color: rgba(200, 240, 0, 0.45);
  color: var(--leaf);
}

.nav-toggle {
  border-color: rgba(210, 173, 116, 0.72);
  background: rgba(200, 240, 0, 0.08);
}

.utility-bar {
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(255, 241, 207, 0.2) 6% 8%, transparent 8% 92%, rgba(255, 241, 207, 0.2) 92% 94%, transparent 94%),
    linear-gradient(180deg, #d8bf86, #a97b3e);
  color: #080a06;
  border-bottom: 2px solid #050704;
  text-transform: uppercase;
}

.hero {
  min-height: 82vh;
  background: #050704;
}

.hero::before,
.page-hero::before,
.section-dark::before,
.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 241, 207, 0.12), transparent 0.08rem),
    radial-gradient(circle at 88% 18%, rgba(200, 240, 0, 0.18), transparent 0.07rem),
    radial-gradient(circle at 54% 76%, rgba(255, 255, 255, 0.08), transparent 0.07rem);
  background-size: 28px 28px, 34px 34px, 19px 19px;
  opacity: 0.38;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(7, 9, 6, 0.8) 48%, rgba(7, 9, 6, 0.35)),
    radial-gradient(circle at 60% 70%, rgba(200, 240, 0, 0.2), transparent 28rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.04));
}

.hero-media img {
  filter: contrast(1.18) saturate(1.05) brightness(0.86);
}

.hero-content {
  min-height: 82vh;
}

.hero-logo {
  width: 196px;
  padding: 0.45rem;
  background: rgba(210, 173, 116, 0.92);
  border: 2px solid #050704;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  transform: rotate(-2deg);
}

.eyebrow {
  color: #526d00;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow,
.proof-band .eyebrow {
  color: var(--leaf);
  text-shadow: 0 0 18px rgba(200, 240, 0, 0.34);
}

h1,
h2,
h3 {
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  color: var(--paper-strong);
  font-style: italic;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.72),
    0 0 22px rgba(200, 240, 0, 0.22);
}

.hero .lead,
.page-hero .lead {
  color: #f2e6c7;
}

.hero-made-badge,
.page-made-badge {
  background:
    linear-gradient(135deg, rgba(210, 173, 116, 0.24), rgba(9, 12, 7, 0.78)),
    rgba(9, 12, 7, 0.78);
  border-color: rgba(210, 173, 116, 0.7);
  box-shadow: inset 0 0 0 1px rgba(200, 240, 0, 0.16), 0 16px 36px rgba(0, 0, 0, 0.34);
}

.made-oregon-badge-mark {
  background: var(--gold);
  border: 2px solid #0a0b08;
  box-shadow: 0 0 0 2px rgba(210, 173, 116, 0.4), 0 12px 24px rgba(0, 0, 0, 0.35);
}

.made-oregon-badge-text {
  color: inherit;
}

.section {
  position: relative;
  background: var(--paper);
}

.section-light {
  background:
    radial-gradient(circle at 16% 8%, rgba(200, 240, 0, 0.1), transparent 16rem),
    repeating-linear-gradient(-8deg, rgba(52, 39, 20, 0.035) 0 1px, transparent 1px 9px),
    #ead9b4;
}

.section-dark,
.proof-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(210, 173, 116, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 64%, rgba(200, 240, 0, 0.12), transparent 24rem),
    #070906;
  color: var(--paper-strong);
}

.section-water {
  background:
    linear-gradient(135deg, #10150e, #232811 62%, #0a0d07);
  color: var(--paper-strong);
}

.section-water .lead,
.section-water p:not(.eyebrow) {
  color: #f0e5c7;
}

.section-heading {
  border-bottom: 3px solid var(--line);
  padding-bottom: 1rem;
}

.section-heading p:not(.eyebrow) {
  color: #514532;
}

.reason {
  background:
    linear-gradient(135deg, #14170f, #080a06);
  border: 2px solid rgba(210, 173, 116, 0.68);
  border-left: 7px solid var(--leaf);
  border-radius: var(--radius);
  color: var(--paper-strong);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.reason p {
  color: #e6d8b9;
}

.product-card,
.policy-item,
.contact-item,
.faq-list details,
.notice,
.checkout-panel,
.gallery-option,
.color-card,
.product-detail-layout {
  background:
    linear-gradient(135deg, rgba(255, 248, 226, 0.96), rgba(235, 215, 173, 0.96)),
    var(--paper-strong);
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.product-detail-layout {
  margin: 4rem auto;
  padding: 2rem;
  color: var(--ink);
}

.product-detail-copy .lead,
.product-detail-copy p {
  color: #3d3528;
}

.product-detail-copy .eyebrow {
  color: #526d00;
  text-shadow: none;
}

.product-card,
.color-card,
.gallery-main,
.rounded-media {
  border: 2px solid var(--line);
}

.product-card-image,
.gallery-main {
  background:
    radial-gradient(circle at 50% 22%, rgba(200, 240, 0, 0.16), transparent 14rem),
    #080a06;
}

.product-card-image img,
.gallery-main img,
.color-card img,
.rounded-media {
  filter: contrast(1.08) saturate(1.05);
}

.product-card h3 a,
.link-list a,
.breadcrumb a,
.footer-links a {
  text-decoration-color: rgba(200, 240, 0, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.product-facts div {
  border-top: 2px solid rgba(52, 39, 20, 0.36);
}

.product-facts dt {
  color: #4a3d2b;
}

.product-facts dd,
.price {
  color: #0c0d08;
}

.muted,
.policy-copy p,
.policy-copy li,
.faq-list p {
  color: #3d3528;
}

.button {
  border-width: 2px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    filter 160ms ease,
    transform 160ms ease;
}

.button-primary {
  background: linear-gradient(180deg, #dfff22, var(--leaf));
  border-color: #efff6c;
  color: #070906;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-secondary {
  background: linear-gradient(180deg, #1e2216, #080a06);
  border-color: var(--gold);
  color: var(--paper-strong);
}

.button-ghost {
  border-color: rgba(210, 173, 116, 0.82);
  color: #fff1cf;
  background: rgba(0, 0, 0, 0.26);
}

.button-disabled {
  background: linear-gradient(180deg, #ded1b1, #c3b08b);
  border-color: #75613d;
  color: #342714;
  box-shadow: none;
}

.checkout-note {
  color: #4c4232;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(200, 240, 0, 0.22), transparent 18rem),
    linear-gradient(135deg, #050704, #14190e 55%, #050704);
  border-bottom: 4px solid var(--gold);
}

.breadcrumb {
  color: #f0e1bd;
}

.gallery-option[aria-pressed="true"] {
  border-color: var(--leaf);
  box-shadow: inset 0 0 0 2px var(--leaf), 0 0 22px rgba(200, 240, 0, 0.22);
}

.swatch {
  border: 2px solid #080a06;
}

.story-callout {
  border-left-color: var(--leaf);
  color: #141008;
}

.proof-band {
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.link-list a {
  color: #416400;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(210, 173, 116, 0.14), transparent 18rem),
    radial-gradient(circle at 82% 58%, rgba(200, 240, 0, 0.12), transparent 20rem),
    #050704;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  position: relative;
  z-index: 1;
}

.footer-logo {
  padding: 0.25rem;
  background: rgba(210, 173, 116, 0.92);
  border: 2px solid #050704;
}

.footer-links a {
  color: #f4e7c8;
}

.footer-links a:hover {
  color: var(--leaf);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top-color: rgba(210, 173, 116, 0.35);
  color: #dac8a4;
}

/* Dark Dice Bomb ad styling pass */
body {
  background:
    radial-gradient(circle at 14% 8%, rgba(200, 240, 0, 0.1), transparent 22rem),
    radial-gradient(circle at 88% 12%, rgba(54, 75, 22, 0.42), transparent 24rem),
    radial-gradient(circle at 72% 78%, rgba(200, 240, 0, 0.07), transparent 30rem),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, #020302 0%, #071008 42%, #030503 100%);
  color: var(--ink);
}

body::before {
  background:
    radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.08), transparent 0.08rem),
    radial-gradient(circle at 74% 64%, rgba(200, 240, 0, 0.12), transparent 0.07rem),
    linear-gradient(18deg, transparent 0 42%, rgba(185, 150, 97, 0.08) 42% 43%, transparent 43% 100%),
    repeating-linear-gradient(-11deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 13px);
  background-size: 21px 21px, 31px 31px, 260px 170px, 100% 100%;
  opacity: 0.34;
}

.skip-link {
  background: var(--leaf);
  color: #030503;
}

.utility-bar {
  background:
    linear-gradient(90deg, transparent, rgba(200, 240, 0, 0.1) 50%, transparent),
    #0d130c;
  color: var(--leaf);
  border-bottom: 1px solid rgba(185, 150, 97, 0.5);
  text-shadow: 0 0 12px rgba(200, 240, 0, 0.3);
}

.site-header {
  background:
    linear-gradient(180deg, rgba(2, 3, 2, 0.98), rgba(7, 13, 7, 0.97)),
    var(--moss-deep);
  border-bottom: 1px solid rgba(200, 240, 0, 0.3);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.56);
}

.brand {
  gap: 0.9rem;
}

.brand img {
  width: 108px;
  height: 72px;
  filter: contrast(1.08) drop-shadow(0 7px 16px rgba(0, 0, 0, 0.48));
}

.brand strong {
  color: var(--paper-strong);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1;
  text-shadow:
    0 1px 0 #000,
    0 0 14px rgba(200, 240, 0, 0.36),
    0 0 26px rgba(255, 246, 223, 0.18);
}

.brand span span {
  color: #eee3c9;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 0 #000;
}

.site-nav a {
  color: #f4ecd9;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(200, 240, 0, 0.13);
  border-color: rgba(200, 240, 0, 0.5);
  color: var(--leaf);
}

.nav-toggle {
  border-color: rgba(200, 240, 0, 0.55);
  background: rgba(200, 240, 0, 0.08);
  color: var(--leaf);
}

.hero {
  background: #020302;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(3, 7, 3, 0.82) 42%, rgba(3, 7, 3, 0.12) 78%),
    radial-gradient(circle at 58% 72%, rgba(200, 240, 0, 0.2), transparent 27rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.08));
}

.hero-media img {
  filter: contrast(1.2) saturate(1.16) brightness(1.04);
}

.hero h1,
.page-hero h1 {
  color: var(--paper-strong);
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.82),
    0 0 24px rgba(200, 240, 0, 0.28);
}

.lead,
.section-heading p:not(.eyebrow),
.policy-copy p,
.policy-copy li,
.faq-list p,
.product-card p,
.product-detail-copy p,
.product-detail-copy .lead,
.color-card p,
.contact-item p,
.policy-item p,
.notice p,
.muted {
  color: #ded5bf;
}

.hero .lead,
.page-hero .lead,
.section-water .lead,
.section-water p:not(.eyebrow) {
  color: #f4ecd9;
}

.eyebrow,
.product-detail-copy .eyebrow {
  color: var(--leaf);
  text-shadow: 0 0 16px rgba(200, 240, 0, 0.28);
}

.section,
.section-light,
.section-water {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(200, 240, 0, 0.08), transparent 18rem),
    radial-gradient(circle at 86% 78%, rgba(64, 84, 29, 0.35), transparent 24rem),
    repeating-linear-gradient(-9deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, #0e140d, #050805 68%, #020302);
  color: var(--ink);
}

.section-light {
  background:
    radial-gradient(circle at 78% 16%, rgba(200, 240, 0, 0.1), transparent 18rem),
    radial-gradient(circle at 20% 72%, rgba(185, 150, 97, 0.08), transparent 22rem),
    repeating-linear-gradient(12deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 11px),
    linear-gradient(135deg, #121910, #080d08 70%, #030503);
}

.section-dark,
.proof-band {
  background:
    radial-gradient(circle at 20% 26%, rgba(200, 240, 0, 0.08), transparent 22rem),
    radial-gradient(circle at 84% 64%, rgba(185, 150, 97, 0.08), transparent 20rem),
    repeating-linear-gradient(-16deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    #030503;
  color: var(--paper-strong);
}

.section::before,
.proof-band::before,
.page-hero::before,
.site-footer::before {
  background:
    linear-gradient(100deg, transparent 0 14%, rgba(255, 255, 255, 0.035) 14% 15%, transparent 15% 100%),
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.09), transparent 0.07rem),
    radial-gradient(circle at 78% 70%, rgba(200, 240, 0, 0.12), transparent 0.06rem);
  background-size: 230px 130px, 26px 26px, 38px 38px;
  opacity: 0.26;
}

.section > .wrap,
.proof-band > .wrap,
.page-hero > .wrap,
.site-footer .wrap {
  position: relative;
  z-index: 1;
}

.page-hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(200, 240, 0, 0.2), transparent 20rem),
    radial-gradient(circle at 8% 72%, rgba(185, 150, 97, 0.08), transparent 20rem),
    linear-gradient(135deg, #020302, #0d160d 58%, #020302);
  border-bottom: 1px solid rgba(200, 240, 0, 0.38);
}

.breadcrumb {
  color: #d8ceb5;
}

.section-heading {
  border-bottom: 1px solid rgba(200, 240, 0, 0.34);
}

.reason,
.product-card,
.policy-item,
.contact-item,
.faq-list details,
.notice,
.checkout-panel,
.gallery-option,
.color-card,
.product-detail-layout,
.policy-copy {
  background:
    linear-gradient(145deg, rgba(25, 31, 21, 0.98), rgba(8, 12, 8, 0.98) 68%, rgba(15, 23, 14, 0.98)),
    var(--smoke);
  border: 1px solid rgba(185, 150, 97, 0.5);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.policy-copy {
  padding: 2rem;
  border-radius: var(--radius);
}

.product-card,
.policy-item,
.contact-item,
.faq-list details,
.notice,
.checkout-panel,
.color-card,
.product-detail-layout,
.policy-copy {
  position: relative;
  overflow: hidden;
}

.product-card::before,
.policy-item::before,
.contact-item::before,
.faq-list details::before,
.notice::before,
.checkout-panel::before,
.color-card::before,
.product-detail-layout::before,
.policy-copy::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(255, 255, 255, 0.03) 22% 23%, transparent 23% 100%),
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.07), transparent 0.06rem),
    radial-gradient(circle at 74% 78%, rgba(200, 240, 0, 0.09), transparent 0.05rem);
  background-size: 180px 120px, 22px 22px, 31px 31px;
  opacity: 0.3;
}

.product-card > *,
.policy-item > *,
.contact-item > *,
.faq-list details > *,
.notice > *,
.checkout-panel > *,
.color-card > *,
.product-detail-layout > *,
.policy-copy > * {
  position: relative;
  z-index: 1;
}

.reason {
  border-left: 6px solid var(--leaf);
}

.reason p {
  color: #e0d7c2;
}

.product-card-image,
.gallery-main {
  background:
    radial-gradient(circle at 48% 22%, rgba(200, 240, 0, 0.2), transparent 14rem),
    linear-gradient(135deg, #141b12, #030503);
  border-color: rgba(200, 240, 0, 0.24);
}

.product-card-image img,
.gallery-main img,
.color-card img,
.rounded-media {
  filter: contrast(1.14) saturate(1.1) brightness(1.05);
}

.rounded-media {
  background: #050805;
  border: 1px solid rgba(185, 150, 97, 0.42);
}

.product-facts div {
  border-top: 1px solid rgba(200, 240, 0, 0.32);
}

.product-facts dt {
  color: var(--leaf);
}

.product-facts dd,
.price,
.product-card h3 a,
.color-card h3,
.policy-item h2,
.policy-item h3,
.contact-item h2,
.contact-item h3,
.faq-list summary {
  color: var(--paper-strong);
}

.link-list a,
.product-card h3 a,
.breadcrumb a,
.footer-links a {
  color: var(--paper-strong);
  text-decoration-color: rgba(200, 240, 0, 0.65);
}

.link-list a:hover,
.product-card h3 a:hover,
.breadcrumb a:hover,
.footer-links a:hover {
  color: var(--leaf);
}

.gallery-option {
  color: var(--paper-strong);
}

.gallery-option[aria-pressed="true"] {
  border-color: var(--leaf);
  box-shadow: inset 0 0 0 2px var(--leaf), 0 0 24px rgba(200, 240, 0, 0.26);
}

.swatch {
  border-color: rgba(255, 246, 223, 0.5);
}

.button-primary {
  background: linear-gradient(180deg, #e9ff37, var(--leaf) 62%, #9ec000);
  border-color: #f3ff7c;
  color: #020302;
  box-shadow: 0 0 0 1px rgba(200, 240, 0, 0.2), 0 12px 28px rgba(0, 0, 0, 0.36);
}

.button-secondary {
  background: linear-gradient(180deg, #202a16, #080d07);
  border-color: rgba(200, 240, 0, 0.55);
  color: var(--paper-strong);
}

.button-ghost {
  background: rgba(2, 3, 2, 0.44);
  border-color: rgba(185, 150, 97, 0.7);
  color: var(--paper-strong);
}

.button-disabled {
  background: linear-gradient(180deg, #252a20, #151912);
  border-color: rgba(185, 150, 97, 0.58);
  color: #d9cbae;
}

.checkout-note {
  color: #d5cbb4;
}

.made-oregon-badge-mark {
  background: var(--gold);
  border-color: #050805;
}

.hero-made-badge,
.page-made-badge,
.footer-made-badge {
  background: rgba(6, 9, 6, 0.72);
  border-color: rgba(185, 150, 97, 0.58);
  color: var(--paper-strong);
}

.story-callout {
  border-left-color: var(--leaf);
  color: var(--paper-strong);
}

.proof-band {
  border-top: 1px solid rgba(185, 150, 97, 0.42);
  border-bottom: 1px solid rgba(185, 150, 97, 0.42);
}

.site-footer {
  background:
    radial-gradient(circle at 16% 16%, rgba(200, 240, 0, 0.08), transparent 18rem),
    radial-gradient(circle at 82% 58%, rgba(185, 150, 97, 0.08), transparent 20rem),
    linear-gradient(135deg, #020302, #080d07);
  border-top: 1px solid rgba(200, 240, 0, 0.34);
  color: var(--paper-strong);
}

.footer-logo {
  background: transparent;
  border: 0;
  padding: 0;
  filter: contrast(1.08) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.48));
}

.footer-bottom {
  border-top-color: rgba(200, 240, 0, 0.22);
  color: #d5cbb4;
}

.footer-grid p {
  color: #d5cbb4;
}

/* Final polish */
.hero-content {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.page-hero {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3.25rem, 6vw, 4.5rem);
}

.section {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.section-tight {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.section-heading {
  align-items: flex-end;
  gap: 1.5rem;
}

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

.button:not(.button-disabled):hover {
  transform: translateY(-1px);
}

.button-primary:hover {
  filter: saturate(1.08) brightness(1.04);
  box-shadow: 0 0 0 1px rgba(200, 240, 0, 0.35), 0 16px 34px rgba(0, 0, 0, 0.42);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--leaf);
  color: var(--leaf);
  box-shadow: 0 0 0 1px rgba(200, 240, 0, 0.18), 0 14px 30px rgba(0, 0, 0, 0.34);
}

.button-disabled {
  opacity: 0.86;
}

.product-grid,
.color-grid,
.policy-grid,
.contact-grid {
  align-items: stretch;
}

.product-card {
  min-height: 100%;
}

.product-card-body {
  display: flex;
  flex-direction: column;
}

.product-card .card-actions {
  margin-top: auto;
  padding-top: 1.4rem;
}

.product-card-image {
  display: grid;
  min-height: 360px;
  padding: 0.9rem;
  place-items: center;
}

.product-card-image img {
  height: 100%;
  min-height: 0;
  max-height: 430px;
  object-fit: contain;
}

.gallery-main {
  display: grid;
  padding: 1rem;
  place-items: center;
}

.gallery-main img {
  object-fit: contain;
  background: #f7f6ef;
  border-radius: 5px;
}

.gallery-option {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.gallery-option:hover {
  border-color: rgba(200, 240, 0, 0.72);
  color: var(--leaf);
  transform: translateX(2px);
}

.gallery-option-static:hover {
  border-color: var(--line);
  color: var(--paper-strong);
  transform: none;
}

.gallery-option-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.gallery-option-stock {
  color: #d5cbb4;
  font-size: 0.78rem;
  font-weight: 800;
}

.gallery-option.is-sold-out {
  opacity: 0.72;
}

.quantity-control {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 1rem;
}

.quantity-control label {
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quantity-control input {
  width: min(7rem, 100%);
  min-height: 44px;
  border: 1px solid rgba(200, 240, 0, 0.45);
  border-radius: 6px;
  background: #060a06;
  color: var(--paper-strong);
  font: inherit;
  font-weight: 900;
  padding: 0.6rem 0.75rem;
}

.quantity-control input:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 3px;
}

.quantity-control span {
  color: #d5cbb4;
  font-size: 0.9rem;
}

.color-card {
  display: flex;
  flex-direction: column;
}

.color-card img {
  background: #f7f6ef;
  object-fit: contain;
  padding: 0.85rem;
}

.color-card div {
  flex: 1;
}

.made-oregon-badge {
  max-width: 100%;
}

.hero-made-badge,
.page-made-badge {
  padding: 0.8rem 0.95rem;
}

.made-oregon-badge-text {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
}

.policy-copy h2,
.faq-list summary {
  color: var(--paper-strong);
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--moss-deep);
    padding: 0.75rem 1rem 1rem;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
  }

  .hero,
  .hero-content {
    min-height: 72vh;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(11, 20, 11, 0.86), rgba(11, 20, 11, 0.62));
  }

  .hero-media img {
    object-position: 65% 50%;
  }

  .reason-grid,
  .product-grid,
  .split,
  .split-reverse,
  .product-detail-layout,
  .color-grid,
  .policy-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card-image img {
    max-height: 440px;
  }

  .section-heading,
  .proof-band .wrap {
    display: block;
  }

  .section-heading .button,
  .proof-band .button {
    margin-top: 1rem;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    gap: 0.65rem;
  }

  .brand img {
    width: 84px;
    height: 56px;
  }

  .brand strong {
    font-size: 1.04rem;
  }

  .brand span span {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-logo {
    width: 134px;
  }

  .hero-actions,
  .card-actions,
  .policy-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .made-oregon-badge {
    align-items: flex-start;
  }

  .hero-made-badge .made-oregon-badge-mark,
  .page-made-badge .made-oregon-badge-mark {
    width: 70px;
    height: 70px;
  }

  .product-facts.compact {
    grid-template-columns: 1fr;
  }

  .product-detail-layout {
    padding: 1rem;
  }

  .section {
    padding: 3.2rem 0;
  }
}
