:root {
  --bg: #eef2ea;
  --bg-soft: #f7f8f3;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-solid: #ffffff;
  --panel-elevated: #f5f7f0;
  --ink: #162019;
  --ink-soft: #243128;
  --muted: #5d6b61;
  --moss: #24372b;
  --sage: #77877a;
  --amber: #ae6a31;
  --amber-deep: #864f20;
  --line: rgba(22, 32, 25, 0.1);
  --line-strong: rgba(22, 32, 25, 0.16);
  --shadow: 0 24px 56px rgba(24, 32, 25, 0.08);
  --shadow-soft: 0 12px 28px rgba(24, 32, 25, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-display: "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --content-width: min(1200px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 8% 0%, rgba(174, 106, 49, 0.12), transparent 22%),
    radial-gradient(circle at 100% 4%, rgba(36, 55, 43, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f7f1 0%, #ebefe7 100%);
  background-color: var(--bg);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  opacity: 0.65;
}

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

a {
  color: var(--moss);
  text-decoration: none;
}

a:hover {
  color: var(--ink-soft);
}

p,
ul,
ol {
  margin: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-main,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.site-main {
  padding-bottom: 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 243, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header__inner {
  width: var(--content-width);
  margin: 0 auto;
  padding: 18px 0 14px;
  display: grid;
  grid-template-columns: 1.15fr auto auto;
  gap: 20px;
  align-items: center;
}

.site-header--active {
  background: rgba(247, 248, 243, 0.92);
  box-shadow: 0 10px 30px rgba(24, 32, 25, 0.06);
  border-bottom: 1px solid var(--line);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-lockup__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--panel-solid);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
  position: relative;
  display: grid;
  place-items: center;
}

.brand-lockup__icon::before,
.brand-lockup__icon::after {
  position: absolute;
}

.brand-lockup__icon::before {
  content: "CS";
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand-lockup__icon::after {
  content: none;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-lockup small {
  max-width: 28rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-shell {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-shell a {
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
}

.menu-shell a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--moss);
  opacity: 0.22;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.menu-shell a:hover::after,
.menu-shell .current-menu-item a::after {
  transform: scaleX(1);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 13px 20px;
  background: var(--moss);
  border: 1px solid rgba(36, 55, 43, 0.12);
  color: #f7f8f3;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(24, 32, 25, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.single_add_to_cart_button.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(24, 32, 25, 0.1);
  background: #1d2c22;
}

.button--ghost {
  background: var(--panel-solid);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.button--ghost:hover,
.button--header:hover {
  background: var(--panel-elevated);
  color: var(--ink);
}

.button--header {
  background: transparent;
  color: var(--moss);
  border: 1px solid var(--line-strong);
  justify-self: end;
  box-shadow: none;
}

.product-hero__cta .single_add_to_cart_button.button,
.woocommerce.single-product .single_add_to_cart_button.button {
  background: var(--amber);
  border-color: rgba(174, 106, 49, 0.2);
  color: #fff8f0;
  box-shadow: 0 16px 30px rgba(174, 106, 49, 0.18);
}

.product-hero__cta .single_add_to_cart_button.button:hover,
.woocommerce.single-product .single_add_to_cart_button.button:hover {
  background: var(--amber-deep);
}

.eyebrow {
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.hero-panel,
.page-hero,
.comparison-band,
.faq-band,
.section-block,
.product-hero,
.product-content,
.site-footer {
  position: relative;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  padding: 28px 0 20px;
}

.hero-panel__content,
.hero-panel__media,
.comparison-band,
.faq-band,
.page-content,
.product-hero,
.product-content,
.page-hero,
.empty-state {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-panel__content {
  padding: 40px 40px 36px;
}

.hero-panel__content h1,
.section-heading h2,
.comparison-band h2,
.faq-band h2,
.product-hero__summary h1,
.page-hero h1,
.site-footer h2 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-panel__lede,
.product-hero__strap,
.page-hero p:last-child,
.section-heading p:last-child,
.comparison-band__copy p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 40rem;
}

.hero-panel__proof {
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #fbfcf8, #eef2ea),
    radial-gradient(circle at top right, rgba(174, 106, 49, 0.16), transparent 44%);
  border: 1px solid rgba(36, 55, 43, 0.12);
  box-shadow: var(--shadow-soft);
}

.hero-panel__proof::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(174, 106, 49, 0.12), transparent 68%);
  pointer-events: none;
}

.hero-panel__proof-stat {
  position: relative;
  z-index: 1;
  min-width: 106px;
  padding-right: 18px;
  border-right: 1px solid rgba(22, 32, 25, 0.1);
}

.hero-panel__proof-stat strong {
  display: block;
  color: var(--moss);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-panel__proof-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__proof-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.hero-panel__proof-copy .eyebrow {
  color: var(--amber-deep);
}

.hero-panel__proof-copy p:last-child {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 34rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--panel-elevated);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-panel__actions,
.product-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-panel__media {
  padding: 18px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}

.hero-panel__frame,
.product-hero__frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  isolation: isolate;
}

.hero-panel__frame::after,
.product-hero__frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(22, 32, 25, 0.14));
  pointer-events: none;
}

.canopy-progressive-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
}

.canopy-progressive-image__picture {
  display: block;
}

.canopy-progressive-image::before,
.canopy-progressive-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 560ms ease;
}

.canopy-progressive-image::before {
  background-image: var(--progressive-placeholder-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.08);
  filter: blur(18px) saturate(0.82);
}

.canopy-progressive-image::after {
  background:
    linear-gradient(180deg, rgba(37, 73, 127, 0.18), rgba(14, 34, 67, 0.34)),
    linear-gradient(135deg, rgba(82, 143, 216, 0.12), rgba(15, 39, 77, 0.24));
}

.canopy-progressive-image__full {
  --progressive-image-opacity: 1;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 620ms ease, transform 220ms ease;
}

.canopy-progressive-image.is-loaded::before,
.canopy-progressive-image.is-loaded::after {
  opacity: 0;
}

.canopy-progressive-image.is-loaded .canopy-progressive-image__full {
  opacity: var(--progressive-image-opacity);
}

.hero-panel__frame > .canopy-progressive-image {
  grid-area: 1 / 1;
}

.hero-panel__image {
  grid-area: 1 / 1;
}

.hero-panel__image--background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: blur(20px) saturate(0.9);
  --progressive-image-opacity: 0.45;
}

.hero-panel__image--foreground {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

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

.metric-card,
.story-card,
.keyword-card,
.comparison-card,
.faq-card,
.spec-card,
.rail-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--panel-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.metric-card strong,
.spec-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.72rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.metric-card span,
.spec-card span,
.keyword-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-block,
.comparison-band,
.faq-band,
.page-content,
.product-content,
.product-grid,
.empty-state,
.spec-grid {
  margin-top: 28px;
}

.section-block {
  padding: 4px 0 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  max-width: 54rem;
}

.keyword-grid,
.story-grid,
.faq-grid,
.product-grid,
.spec-grid {
  display: grid;
  gap: 18px;
}

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

.keyword-card {
  min-height: 94px;
  display: flex;
  align-items: flex-start;
}

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

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

.story-card h3,
.comparison-card h3,
.faq-card h3,
.rail-card h3,
.featured-product__notes h3,
.product-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.story-card p,
.comparison-card p,
.faq-card p,
.rail-card p,
.featured-product__notes p,
.product-card p {
  color: var(--muted);
}

.comparison-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 34px;
}

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

.featured-product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.featured-product__notes {
  display: grid;
  gap: 18px;
}

.featured-product__notes .canopy-progressive-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
}

.product-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--panel-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 55, 43, 0.2);
  box-shadow: var(--shadow);
}

.product-card__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.product-card__media .canopy-progressive-image__full {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.product-card:hover .product-card__media .canopy-progressive-image__full {
  transform: scale(1.03);
}

.product-card__body {
  display: grid;
  gap: 12px;
}

.product-card__meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__price {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__link::after {
  content: "↗";
  font-size: 0.9rem;
  line-height: 1;
}

.gallery-showcase {
  margin-top: 28px;
}

.gallery-showcase__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.gallery-showcase__feature,
.gallery-showcase__card,
.gallery-showcase__notice {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel-solid);
  box-shadow: var(--shadow-soft);
}

.gallery-showcase__feature {
  display: grid;
}

.gallery-showcase__media,
.gallery-showcase__card-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-showcase__media::after,
.gallery-showcase__card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(22, 32, 25, 0.1));
  pointer-events: none;
}

.gallery-showcase__image,
.gallery-showcase__card-image {
  width: 100%;
  height: auto;
}

.gallery-showcase__image {
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.gallery-showcase__card-image {
  aspect-ratio: 1.25 / 0.9;
  object-fit: cover;
}

.gallery-showcase__caption,
.gallery-showcase__card-body,
.gallery-showcase__notice {
  padding: 20px 22px 22px;
}

.gallery-showcase__caption,
.gallery-showcase__card-body {
  display: grid;
  gap: 10px;
}

.gallery-showcase__stack {
  display: grid;
  gap: 18px;
}

.gallery-showcase__caption h3,
.gallery-showcase__card-body h3,
.gallery-showcase__notice h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.gallery-showcase__caption p:last-child,
.gallery-showcase__card-body p:last-child,
.gallery-showcase__notice p:last-of-type {
  color: var(--muted);
}

.gallery-showcase__notice {
  display: grid;
  gap: 12px;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(22, 33, 24, 0.98), rgba(29, 44, 34, 0.98)),
    radial-gradient(circle at top right, rgba(214, 174, 120, 0.22), transparent 42%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f3f2eb;
}

.gallery-showcase__notice .eyebrow {
  color: #d6ae78;
}

.gallery-showcase__notice p:last-of-type {
  color: rgba(243, 242, 235, 0.76);
}

.gallery-showcase__notice .button {
  margin-top: 4px;
  justify-self: start;
  background: #f3f2eb;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
}

.gallery-showcase__notice .button:hover {
  background: #ffffff;
}

.faq-band {
  padding: 30px;
}

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

.page-hero {
  margin-top: 28px;
  padding: 32px;
}

.page-hero--compact h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.35rem);
}

.page-content {
  padding: 32px;
}

.page-content h2,
.product-content__main h2 {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.1;
}

.page-content h3,
.product-content__main h3 {
  margin: 24px 0 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
}

.page-content p + p,
.product-content__main p + p {
  margin-top: 14px;
}

.page-content ul,
.product-content__main ul {
  padding-left: 20px;
  margin-top: 16px;
}

.page-content li,
.product-content__main li {
  margin-bottom: 8px;
}

.product-hero {
  margin-top: 28px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
}

.product-hero__gallery {
  display: grid;
  gap: 16px;
}

.product-hero__frame .canopy-progressive-image__full {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

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

.product-hero__thumbs .canopy-progressive-image {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.product-hero__summary {
  padding: 12px 10px 12px 4px;
}

.product-hero__price {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.product-hero__excerpt {
  margin-top: 12px;
  color: var(--muted);
}

.product-hero__microcopy {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin-top: 20px;
}

.product-hero__microcopy li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
}

.product-hero__microcopy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--moss);
}

.woocommerce div.product form.cart {
  margin: 0;
}

.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.woocommerce .quantity .qty {
  width: 72px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  color: var(--ink);
}

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

.product-content {
  padding: 26px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.product-photo-gallery {
  padding: 8px 0 0;
}

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

.product-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--panel-solid);
  box-shadow: var(--shadow-soft);
}

.product-photo-card .canopy-progressive-image__full {
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.product-photo-card__body {
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
}

.product-photo-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.15;
}

.product-photo-card__body p:last-child {
  color: var(--muted);
}

.product-content__main,
.product-content__rail {
  display: grid;
  gap: 16px;
}

.product-content__main {
  padding: 8px 6px 0 0;
}

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

.source-card {
  display: flex;
  align-items: flex-start;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--panel-elevated);
  border: 1px solid var(--line);
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.source-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: var(--panel-solid);
}

.site-footer {
  margin-top: 40px;
  margin-bottom: 32px;
  padding: 32px;
  background: #162118;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: none;
  color: #f3f2eb;
}

.site-footer .eyebrow {
  color: #d6ae78;
}

.site-footer h2 {
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.site-footer__links {
  display: grid;
  gap: 12px;
  justify-items: start;
  align-content: start;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: #d0d7c8;
}

.site-footer__meta {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #99a596;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.empty-state {
  padding: 36px;
  text-align: center;
}

.empty-state h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.canopy-shortcode-note {
  display: none;
}

.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 280ms ease, transform 280ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .canopy-progressive-image::before,
  .canopy-progressive-image::after,
  .canopy-progressive-image__full,
  .js-reveal {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .site-header__inner,
  .hero-panel,
  .comparison-band,
  .featured-product,
  .gallery-showcase__layout,
  .product-hero,
  .product-content,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .button--header {
    justify-self: start;
  }

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

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

  .source-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 24px, 100%);
  }

  .site-main {
    padding-bottom: 48px;
  }

  .site-header__inner {
    padding: 18px 0 14px;
    gap: 14px;
  }

  .brand-lockup small {
    display: none;
  }

  .menu-shell {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-panel__content,
  .hero-panel__media,
  .comparison-band,
  .faq-band,
  .page-content,
  .page-hero,
  .product-hero,
  .product-content,
  .site-footer,
  .empty-state {
    padding: 22px;
  }

  .hero-panel__ledger,
  .keyword-grid,
  .story-grid,
  .faq-grid,
  .product-grid,
  .spec-grid,
  .comparison-band__cards,
  .product-photo-gallery__grid,
  .product-hero__thumbs,
  .source-list {
    grid-template-columns: 1fr;
  }

  .hero-panel__content h1,
  .section-heading h2,
  .comparison-band h2,
  .faq-band h2,
  .product-hero__summary h1,
  .page-hero h1,
  .site-footer h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-panel__lede,
  .product-hero__strap,
  .page-hero p:last-child,
  .section-heading p:last-child,
  .comparison-band__copy p:last-child {
    font-size: 1rem;
  }

  .hero-panel__proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-panel__proof-stat {
    min-width: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(22, 32, 25, 0.1);
  }
}

:root {
  --bg: #ebe4d6;
  --bg-soft: #f6f0e5;
  --panel: rgba(251, 246, 237, 0.88);
  --panel-solid: rgba(255, 252, 246, 0.96);
  --panel-elevated: #f3ecdf;
  --ink: #1d221d;
  --ink-soft: #2c372d;
  --muted: #5f655a;
  --moss: #22362a;
  --sage: #74806e;
  --amber: #b36c2d;
  --amber-deep: #8e4f19;
  --line: rgba(31, 40, 31, 0.11);
  --line-strong: rgba(31, 40, 31, 0.2);
  --shadow: 0 28px 64px rgba(39, 36, 23, 0.16);
  --shadow-soft: 0 18px 42px rgba(39, 36, 23, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Fraunces", serif;
  --font-body: "Instrument Sans", sans-serif;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(179, 108, 45, 0.2), transparent 24%),
    radial-gradient(circle at 85% 3%, rgba(34, 54, 42, 0.14), transparent 22%),
    linear-gradient(180deg, #f6f0e7 0%, #ebe3d5 46%, #e5dccd 100%);
  background-color: var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(39, 36, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 36, 23, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 86%);
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px);
}

.site-shell::before {
  top: 11rem;
  left: -6rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(179, 108, 45, 0.12), transparent 70%);
}

.site-shell::after {
  right: -3rem;
  top: 30rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 54, 42, 0.12), transparent 72%);
}

.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  background: rgba(245, 238, 225, 0.58);
  backdrop-filter: blur(18px) saturate(1.05);
}

.site-header--active {
  background: rgba(247, 241, 231, 0.9);
  box-shadow: 0 18px 44px rgba(39, 36, 23, 0.1);
}

.site-header__inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px 0 12px;
}

.brand-lockup {
  gap: 16px;
}

.brand-lockup__text {
  display: grid;
  gap: 4px;
}

.brand-lockup__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(31, 40, 31, 0.14);
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(34, 54, 42, 1), rgba(17, 27, 21, 1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 16px 28px rgba(22, 24, 18, 0.18);
}

.brand-lockup__icon::before {
  content: "";
  inset: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(211, 170, 109, 0.92) 0 16%, transparent 17%),
    radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(211, 170, 109, 0.4) 47% 49%, transparent 50%);
}

.brand-lockup__icon::after {
  content: "";
  inset: 14px 24px;
  background: linear-gradient(180deg, rgba(241, 226, 188, 0.98), rgba(179, 108, 45, 0.88));
  clip-path: polygon(50% 0, 61% 0, 100% 100%, 89% 100%);
}

.brand-lockup strong {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.brand-lockup small {
  max-width: 34rem;
  color: rgba(68, 78, 66, 0.86);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}

.primary-nav {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 251, 244, 0.68);
  border: 1px solid rgba(31, 40, 31, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.primary-nav__label,
.site-status-pill,
.hero-panel__signal-strip span,
.product-hero__signal-strip span,
.page-hero__meta span,
.site-footer__seal span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 40, 31, 0.1);
  background: rgba(255, 253, 248, 0.84);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav__label::before,
.site-status-pill::before,
.hero-panel__signal-strip span::before,
.product-hero__signal-strip span::before,
.page-hero__meta span::before,
.site-footer__seal span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9b27d, #b36c2d);
  box-shadow: 0 0 0 4px rgba(179, 108, 45, 0.12);
}

.primary-nav__label {
  justify-self: start;
  color: var(--amber-deep);
  background: rgba(179, 108, 45, 0.08);
  border-color: rgba(179, 108, 45, 0.14);
}

.menu-shell {
  width: 100%;
  gap: 10px;
  justify-content: space-between;
}

.menu-shell a {
  padding: 10px 12px 12px;
  border-radius: 14px;
  color: var(--ink-soft);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.menu-shell a:hover,
.menu-shell .current-menu-item a {
  color: var(--ink);
  background: rgba(34, 54, 42, 0.06);
  transform: translateY(-1px);
}

.menu-shell a::after {
  left: 12px;
  right: 12px;
  bottom: 8px;
  background: linear-gradient(90deg, rgba(179, 108, 45, 0.24), rgba(34, 54, 42, 0.58));
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.site-status-pill {
  color: var(--amber-deep);
  background: rgba(179, 108, 45, 0.08);
  border-color: rgba(179, 108, 45, 0.14);
  white-space: nowrap;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 14px 22px;
  border-color: rgba(34, 54, 42, 0.18);
  background: linear-gradient(135deg, #263c2d, #16221b);
  box-shadow: 0 14px 28px rgba(19, 24, 19, 0.16);
}

.button::before,
.woocommerce a.button::before,
.woocommerce button.button::before,
.woocommerce input.button::before,
.single_add_to_cart_button.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.single_add_to_cart_button.button:hover {
  box-shadow: 0 18px 34px rgba(19, 24, 19, 0.2);
}

.button--ghost,
.button--header {
  background: rgba(255, 252, 246, 0.86);
}

.button--header {
  color: var(--ink-soft);
}

.button--footer {
  margin-top: 10px;
}

.hero-panel,
.comparison-band,
.faq-band,
.page-content,
.product-hero,
.product-content,
.page-hero,
.empty-state,
.site-footer {
  overflow: hidden;
}

.hero-panel__content,
.hero-panel__media,
.comparison-band,
.faq-band,
.page-content,
.product-hero,
.product-content,
.page-hero,
.empty-state {
  border: 1px solid rgba(31, 40, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-panel__content,
.hero-panel__media,
.comparison-band,
.faq-band,
.page-content,
.product-hero,
.product-content,
.page-hero,
.empty-state,
.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.72), rgba(255, 248, 238, 0.88)),
    linear-gradient(135deg, rgba(179, 108, 45, 0.04), transparent 38%);
}

.hero-panel {
  gap: 24px;
  padding-top: 36px;
}

.hero-panel__content {
  padding: 46px 42px 40px;
}

.hero-panel__content h1,
.section-heading h2,
.comparison-band h2,
.faq-band h2,
.product-hero__summary h1,
.page-hero h1,
.site-footer h2 {
  font-weight: 600;
  line-height: 0.98;
}

.hero-panel__signal-strip,
.product-hero__signal-strip,
.page-hero__meta,
.site-footer__seal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel__signal-strip {
  margin-top: 18px;
}

.hero-panel__signal-strip span,
.product-hero__signal-strip span,
.page-hero__meta span,
.site-footer__seal span {
  background: rgba(255, 252, 247, 0.9);
}

.hero-panel__lede,
.product-hero__strap,
.page-hero p:last-child,
.section-heading p:last-child,
.comparison-band__copy p:last-child {
  color: rgba(57, 65, 54, 0.88);
}

.hero-panel__proof {
  margin-top: 28px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255, 252, 245, 0.92), rgba(240, 231, 214, 0.92)),
    radial-gradient(circle at top right, rgba(179, 108, 45, 0.18), transparent 44%);
  border-color: rgba(31, 40, 31, 0.08);
}

.hero-panel__media {
  padding: 16px;
}

.hero-panel__frame,
.product-hero__frame {
  min-height: 100%;
  border-radius: 28px;
  border-color: rgba(31, 40, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(253, 248, 240, 0.96), rgba(240, 232, 219, 0.96)),
    linear-gradient(135deg, rgba(179, 108, 45, 0.08), transparent 36%);
}

.hero-panel__frame::before,
.product-hero__frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(31, 40, 31, 0.08);
  background-image:
    linear-gradient(rgba(31, 40, 31, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 40, 31, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.hero-panel__image--background {
  transform: scale(1.1);
  filter: blur(26px) saturate(0.92);
  --progressive-image-opacity: 0.38;
}

.hero-panel__image--foreground {
  padding: 26px;
}

.hero-panel__signal-note {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 22px;
  z-index: 2;
  max-width: min(18rem, calc(100% - 44px));
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(20, 26, 21, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 38px rgba(17, 20, 15, 0.22);
  backdrop-filter: blur(12px);
  color: #f8f3eb;
}

.hero-panel__signal-note .eyebrow {
  color: #dcb986;
}

.hero-panel__signal-note strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-panel__signal-note span {
  color: rgba(248, 243, 235, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.metric-card,
.story-card,
.keyword-card,
.comparison-card,
.faq-card,
.spec-card,
.rail-card,
.gallery-showcase__feature,
.gallery-showcase__card,
.gallery-showcase__notice,
.product-photo-card,
.product-card,
.source-card {
  position: relative;
  border-color: rgba(31, 40, 31, 0.08);
  box-shadow: 0 16px 32px rgba(39, 36, 23, 0.08);
}

.metric-card::before,
.story-card::before,
.keyword-card::before,
.comparison-card::before,
.faq-card::before,
.spec-card::before,
.rail-card::before,
.product-card::before,
.product-photo-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 108, 45, 0), rgba(179, 108, 45, 0.58), rgba(34, 54, 42, 0));
}

.metric-card strong,
.spec-card strong,
.product-hero__price {
  color: var(--ink);
}

.section-heading {
  position: relative;
  gap: 14px;
  margin-bottom: 26px;
  padding-left: 18px;
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(179, 108, 45, 0.95), rgba(34, 54, 42, 0.26));
  border-radius: 999px;
}

.comparison-band {
  gap: 28px;
  padding: 38px;
}

.comparison-card,
.faq-card,
.story-card,
.rail-card,
.product-card,
.product-photo-card,
.gallery-showcase__feature,
.gallery-showcase__card,
.source-card,
.metric-card,
.spec-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.comparison-card:hover,
.faq-card:hover,
.story-card:hover,
.rail-card:hover,
.product-card:hover,
.product-photo-card:hover,
.gallery-showcase__feature:hover,
.gallery-showcase__card:hover,
.source-card:hover,
.metric-card:hover,
.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 40, 31, 0.14);
}

.product-card {
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 240, 230, 0.96)),
    linear-gradient(135deg, rgba(179, 108, 45, 0.05), transparent 34%);
}

.product-card__media,
.product-photo-card .canopy-progressive-image,
.product-hero__thumbs .canopy-progressive-image,
.featured-product__notes .canopy-progressive-image {
  border-color: rgba(31, 40, 31, 0.08);
  background: rgba(246, 240, 229, 0.88);
}

.product-card__meta,
.source-card,
.site-footer__links,
.site-footer__meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.product-card__link {
  color: var(--amber-deep);
}

.gallery-showcase__feature,
.gallery-showcase__card,
.product-photo-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 240, 230, 0.94)),
    linear-gradient(135deg, rgba(179, 108, 45, 0.05), transparent 36%);
}

.gallery-showcase__notice {
  background:
    linear-gradient(180deg, rgba(18, 27, 21, 0.98), rgba(31, 44, 34, 0.98)),
    radial-gradient(circle at top right, rgba(216, 182, 124, 0.26), transparent 42%);
}

.page-hero {
  padding: 36px;
}

.page-hero__meta {
  margin-top: 18px;
}

.product-hero {
  padding: 22px;
}

.product-hero__summary {
  padding: 12px 12px 12px 6px;
}

.product-hero__signal-strip {
  margin-top: 16px;
}

.product-hero__purchase-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid rgba(31, 40, 31, 0.08);
  color: rgba(57, 65, 54, 0.88);
}

.product-hero__microcopy {
  gap: 10px;
}

.product-hero__microcopy li {
  padding: 11px 14px 11px 38px;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(31, 40, 31, 0.07);
}

.product-hero__microcopy li::before {
  left: 16px;
  top: 17px;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #d9b27d, #b36c2d);
}

.source-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(244, 236, 224, 0.92)),
    linear-gradient(135deg, rgba(179, 108, 45, 0.05), transparent 34%);
}

.site-footer {
  margin-top: 48px;
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(211, 170, 109, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(19, 28, 22, 0.98), rgba(15, 20, 16, 1));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 56px rgba(17, 17, 13, 0.22);
}

.site-footer__grid {
  gap: 36px;
}

.site-footer__seal {
  margin-top: 24px;
}

.site-footer__seal span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e7dfd2;
}

.site-footer__seal span::before {
  box-shadow: 0 0 0 4px rgba(211, 170, 109, 0.12);
}

.site-footer__links {
  gap: 14px;
}

.site-footer__links a {
  color: #d7dccf;
}

.site-footer__links .button--footer {
  color: #f7f3ea;
}

.js-reveal {
  transform: translateY(18px);
  transition:
    opacity 420ms ease var(--reveal-delay, 0ms),
    transform 560ms cubic-bezier(0.2, 0.9, 0.22, 1) var(--reveal-delay, 0ms);
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 1fr;
  }

  .primary-nav {
    justify-items: start;
  }

  .menu-shell {
    justify-content: flex-start;
  }

  .site-header__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-panel__signal-note {
    right: 22px;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .primary-nav {
    padding: 14px;
  }

  .menu-shell {
    gap: 8px;
  }

  .menu-shell a {
    padding: 8px 10px 10px;
  }

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

  .hero-panel__content,
  .hero-panel__media,
  .comparison-band,
  .faq-band,
  .page-content,
  .page-hero,
  .product-hero,
  .product-content,
  .site-footer,
  .empty-state {
    padding: 22px;
  }

  .hero-panel__signal-note {
    position: relative;
    inset: auto;
    margin: 16px;
    max-width: none;
  }

  .site-status-pill {
    white-space: normal;
  }
}

/* 2026 documentary field journal rework */

:root {
  --bg: #0b0f0d;
  --bg-soft: #111714;
  --bg-elevated: #171e1a;
  --surface: rgba(15, 21, 18, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --text: #f4efe3;
  --text-soft: rgba(244, 239, 227, 0.9);
  --text-muted: rgba(244, 239, 227, 0.7);
  --accent: #cda168;
  --accent-strong: #dfa55f;
  --line: rgba(244, 239, 227, 0.18);
  --line-strong: rgba(244, 239, 227, 0.28);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  --content-width: min(1240px, calc(100vw - 56px));
  --content-narrow: min(980px, calc(100vw - 56px));
  --header-h: 86px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Hanken Grotesk", sans-serif;
  --font-mono: "Hanken Grotesk", sans-serif;
}

html {
  background: #090d0b;
}

body {
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(205, 161, 104, 0.16), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(58, 79, 65, 0.2), transparent 20%),
    linear-gradient(180deg, #101512 0%, #0b0f0d 42%, #080b09 100%);
  background-color: var(--bg);
  line-height: 1.72;
}

body::before {
  opacity: 0.18;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0 0.5px, transparent 0.6px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.16) 0 0.5px, transparent 0.6px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4efe3;
  color: #0b0f0d;
  font-size: 0.9rem;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: linear-gradient(180deg, rgba(5, 7, 6, 0.72), rgba(5, 7, 6, 0));
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header--active {
  background: rgba(8, 11, 9, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: var(--content-width);
  margin: 0 auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--text);
}

.brand-lockup__logo {
  display: block;
  width: clamp(76px, 6vw, 88px);
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(67, 55, 38, 0.12));
}

.primary-nav {
  justify-self: center;
}

.menu-shell {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.menu-shell a,
.site-header__cta,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-shell a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: rgba(244, 239, 227, 0.86);
}

.menu-shell a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(205, 161, 104, 0), rgba(205, 161, 104, 1), rgba(205, 161, 104, 0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.menu-shell a:hover,
.menu-shell .current-menu-item a {
  color: var(--text);
}

.menu-shell a:hover::after,
.menu-shell a:focus-visible::after,
.menu-shell .current-menu-item a::after {
  transform: scaleX(1);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button,
.site-header__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(205, 161, 104, 0.34);
  background: rgba(205, 161, 104, 0.14);
  color: var(--text);
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.single_add_to_cart_button.button:hover,
.site-header__cta:hover {
  transform: translateY(-1px);
  background: rgba(205, 161, 104, 0.24);
  border-color: rgba(205, 161, 104, 0.6);
}

.button--ghost,
.button--header,
.site-header__cta {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line);
}

.button--ghost:hover,
.button--header:hover,
.site-header__cta:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-main {
  width: 100%;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 80px;
}

.home .site-main,
.single-product .site-main {
  padding-top: 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-panel__media,
.hero-panel__media .canopy-progressive-image,
.hero-panel__media .canopy-progressive-image__picture,
.hero-panel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-panel__media {
  display: block;
  padding: 0;
}

.hero-panel__media .canopy-progressive-image {
  background: #060907;
}

.hero-panel__image {
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, calc(var(--scene-progress, 0) * -6%), 0) scale(1.08);
  transition: transform 220ms ease;
}

.hero-panel__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 7, 0.92) 0%, rgba(6, 9, 7, 0.72) 38%, rgba(6, 9, 7, 0.28) 72%),
    linear-gradient(180deg, rgba(6, 9, 7, 0.54) 0%, rgba(6, 9, 7, 0.18) 26%, rgba(6, 9, 7, 0.9) 100%);
}

.hero-panel__inner,
.hero-panel__factline,
.section-block,
.crumb-trail,
.page-hero,
.page-content,
.product-content,
.product-grid,
.empty-state,
.source-block,
.spec-band {
  width: var(--content-width);
  margin: 0 auto;
}

.hero-panel__inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 68px) 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 44px;
  align-items: end;
}

.hero-panel__copy {
  max-width: 40rem;
}

.hero-panel__brand {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-panel__content h1,
.hero-panel__copy h1,
.section-heading h2,
.page-hero h1,
.product-hero__summary h1,
.site-footer h2,
.purchase-block__content h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-panel__copy h1 {
  font-size: clamp(4.2rem, 8.8vw, 8rem);
  max-width: 11ch;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.hero-panel__lede,
.section-heading p:last-child,
.page-hero p:last-child,
.product-hero__strap,
.product-hero__excerpt,
.purchase-block__content p,
.product-content__main,
.page-content {
  color: var(--text-soft);
}

.hero-panel__lede {
  margin-top: 18px;
  max-width: 36rem;
  font-size: 1.14rem;
  line-height: 1.76;
  color: rgba(244, 239, 227, 0.92);
}

.hero-panel__actions,
.product-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel__manifest {
  margin: 0;
  display: grid;
  gap: 10px;
  align-self: end;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(7, 10, 8, 0.34);
  border: 1px solid rgba(244, 239, 227, 0.12);
  backdrop-filter: blur(14px);
}

.hero-panel__manifest-row {
  padding: 14px 0 16px;
  border-top: 1px solid var(--line);
}

.hero-panel__manifest-row:last-child {
  border-bottom: 1px solid var(--line);
}

.hero-panel__manifest dt {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel__manifest dd {
  margin: 8px 0 0;
  color: rgba(244, 239, 227, 0.92);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-panel__factline {
  position: relative;
  z-index: 2;
  padding: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel__factline span {
  position: relative;
  padding-left: 16px;
}

.hero-panel__factline span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.section-block {
  padding-top: 96px;
}

.section-heading {
  width: min(42rem, 100%);
  display: grid;
  gap: 12px;
}

.section-heading h2,
.page-hero h1,
.product-hero__summary h1,
.site-footer h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.section-heading p:last-child,
.page-hero p:last-child {
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.7;
}

.signal-brief__layout,
.detail-ledger__layout,
.purchase-block__layout,
.product-content,
.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  margin-top: 26px;
}

.signal-brief__lead {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.signal-line,
.detail-ledger__row,
.faq-card,
.rail-card,
.source-row,
.story-card {
  border-top: 1px solid var(--line);
}

.signal-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
}

.signal-line__index,
.crumb-trail__item,
.product-card__facts dt,
.source-row__index,
.site-footer__closing,
.product-hero__signal-strip span,
.keyword-line {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signal-line__index,
.source-row__index {
  color: var(--accent);
}

.signal-line h3,
.image-story__caption h3,
.image-story__slice-body h3,
.detail-ledger__row h3,
.purchase-block__content h3,
.faq-card h3,
.product-photo-card__body h3,
.rail-card h3,
.product-card__heading h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.signal-line h3,
.detail-ledger__row h3,
.faq-card h3,
.rail-card h3,
.product-card__heading h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.signal-line p,
.detail-ledger__row p,
.faq-card p,
.rail-card p,
.product-card__summary {
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.7;
}

.image-story__media,
.image-story__slice-media,
.purchase-block__media,
.product-card__media {
  display: block;
}

.image-story__media {
  aspect-ratio: 1.12 / 1;
}

.image-story__slice-media {
  aspect-ratio: 1 / 0.84;
}

.image-story__media .canopy-progressive-image,
.image-story__slice-media .canopy-progressive-image,
.purchase-block__media .canopy-progressive-image,
.purchase-block__media .canopy-progressive-image__picture,
.product-card__media .canopy-progressive-image,
.product-card__media .canopy-progressive-image__picture,
.product-hero__thumbs .canopy-progressive-image,
.product-hero__thumbs .canopy-progressive-image__picture,
.product-hero__thumbs .canopy-progressive-image__full,
.product-card__media .canopy-progressive-image__full {
  display: block;
  width: 100%;
  height: 100%;
}

.image-story__layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.image-story__feature,
.image-story__slice,
.purchase-block__media,
.product-hero__frame,
.product-card__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-story__media,
.image-story__slice-media {
  position: relative;
}

.image-story__image,
.purchase-block__image,
.product-card__media .canopy-progressive-image__full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-story__image--feature {
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.image-story__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(8, 11, 9, 0), rgba(8, 11, 9, 0.9));
}

.image-story__caption h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.image-story__caption p:last-child {
  color: rgba(244, 239, 227, 0.9);
  max-width: 28rem;
}

.image-story__stack {
  display: grid;
  gap: 18px;
}

.image-story__slice-body,
.image-story__note {
  padding: 20px 0 0;
}

.image-story__note {
  border-top: 1px solid var(--line);
}

.image-story__note h3 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.image-story__note p {
  margin-top: 10px;
  color: var(--text-soft);
}

.detail-ledger__rows,
.detail-ledger__keywords,
.faq-grid,
.product-content__rail,
.source-list,
.product-grid {
  display: grid;
  gap: 0;
}

.detail-ledger__row {
  padding: 20px 0;
}

.detail-ledger__keywords {
  list-style: none;
  margin: 0;
  padding: 0;
  align-content: start;
}

.keyword-line {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

.purchase-block__media .canopy-progressive-image__full,
.product-hero__frame .canopy-progressive-image__full {
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  transform: translate3d(0, calc(var(--scene-progress, 0) * -3%), 0) scale(1.05);
}

.purchase-block__media {
  min-height: clamp(320px, 38vw, 480px);
}

.product-hero__thumbs .canopy-progressive-image {
  aspect-ratio: 1 / 0.84;
}

.purchase-block__content {
  align-self: center;
}

.purchase-block__content h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.purchase-block__price,
.product-hero__price {
  margin-top: 20px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.purchase-block__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
}

.purchase-block__list li,
.product-hero__signal-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  line-height: 1.25;
  white-space: nowrap;
}

.purchase-block__list li::before,
.product-hero__signal-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(205, 161, 104, 0.12);
}

.faq-grid {
  margin-top: 22px;
}

.faq-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding: 20px 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.source-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.source-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.source-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--text);
}

.source-card__label {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.025em;
}

.source-card__action {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.crumb-trail {
  margin-bottom: 18px;
}

.crumb-trail__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.crumb-trail__item {
  color: var(--text-muted);
}

.crumb-trail__item:not(:last-child)::after {
  content: "/";
  margin-left: 12px;
  color: rgba(244, 239, 227, 0.28);
}

.crumb-trail__item a:hover {
  color: var(--text);
}

.page-hero {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 22px 0 0;
  padding-top: 22px;
}

.page-content,
.product-content__main {
  margin-top: 28px;
  max-width: 100%;
  font-size: 1.03rem;
  line-height: 1.85;
}

.page-content,
.product-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.page-content h2,
.product-content__main h2 {
  margin: 36px 0 14px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-content h3,
.product-content__main h3 {
  margin: 28px 0 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.page-content a,
.product-content__main a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.page-content ul,
.product-content__main ul {
  padding-left: 22px;
}

.page-content li,
.product-content__main li {
  margin-bottom: 10px;
}

.product-hero {
  width: var(--content-width);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 44px;
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.product-hero__gallery {
  display: grid;
  gap: 18px;
}

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

.product-hero__thumbs .canopy-progressive-image {
  overflow: hidden;
  border-radius: 22px;
}

.product-hero__summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.product-hero__summary h1 {
  font-size: clamp(3.4rem, 5vw, 5.8rem);
}

.product-hero__strap {
  margin-top: 14px;
  font-size: 1.06rem;
  line-height: 1.7;
}

.product-hero__signal-strip {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-hero__excerpt p {
  margin: 14px 0 0;
}

.product-hero__purchase-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 227, 0.74);
}

.woocommerce div.product form.cart {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.woocommerce .quantity {
  margin: 0;
}

.woocommerce .quantity .qty {
  width: 78px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.spec-band .section-heading {
  margin-bottom: 22px;
}

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

.spec-card {
  padding: 18px 0 20px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.spec-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spec-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.product-photo-gallery__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-photo-card {
  margin: 0;
  padding-top: 14px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.product-photo-card:first-child {
  grid-column: 1 / -1;
}

.product-photo-card .canopy-progressive-image {
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg-soft);
}

.product-photo-card:first-child .canopy-progressive-image__full {
  aspect-ratio: 1.24 / 0.72;
  object-fit: cover;
}

.product-photo-card .canopy-progressive-image__full {
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
}

.product-photo-card__body {
  padding: 16px 0 0;
  display: grid;
  gap: 8px;
}

.product-content {
  margin-top: 82px;
}

.product-content__rail {
  align-content: start;
}

.rail-card {
  padding: 18px 0 22px;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.product-grid {
  margin-top: 24px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 20px 0 26px;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid var(--line);
}

.product-card__media {
  display: block;
  min-height: clamp(260px, 28vw, 360px);
  align-self: stretch;
}

.product-card__media .canopy-progressive-image__full {
  aspect-ratio: auto;
}

.product-card__body {
  display: grid;
  gap: 16px;
  align-content: start;
}

.product-card__summary {
  margin: 0;
  font-size: 0.98rem;
  max-width: 44ch;
}

.product-card__heading h3 {
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
}

.product-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
}

.product-card__facts div {
  min-width: 140px;
}

.product-card__facts dt {
  color: var(--text-muted);
}

.product-card__facts dd {
  margin: 8px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.product-card__link {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.product-card__link::after {
  content: "↗";
  margin-left: 8px;
}

.site-footer {
  width: var(--content-width);
  margin: 112px auto 40px;
  padding-top: 34px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.single-product .crumb-trail {
  margin-top: calc(var(--header-h) + 18px);
}

.site-footer__lead p {
  max-width: 34rem;
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

.site-footer__nav {
  display: grid;
  justify-items: start;
  gap: 14px;
  align-content: start;
}

.site-footer__nav a:not(.button) {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__closing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}

.empty-state {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.empty-state h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

.story-card {
  padding: 20px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.canopy-progressive-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.canopy-progressive-image__picture {
  display: block;
}

.canopy-progressive-image::before,
.canopy-progressive-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.canopy-progressive-image::before {
  background-image: var(--progressive-placeholder-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.08);
  filter: blur(18px) saturate(0.8);
}

.canopy-progressive-image::after {
  background: linear-gradient(180deg, rgba(11, 15, 13, 0.04), rgba(11, 15, 13, 0.18));
}

.canopy-progressive-image__full {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  opacity: 0;
  transition: opacity 560ms ease, transform 360ms ease;
}

.canopy-progressive-image.is-loaded::before,
.canopy-progressive-image.is-loaded::after {
  opacity: 0;
}

.canopy-progressive-image.is-loaded .canopy-progressive-image__full {
  opacity: 1;
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 480ms ease var(--reveal-delay, 0ms),
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-panel__image,
  .purchase-block__media .canopy-progressive-image__full,
  .product-hero__frame .canopy-progressive-image__full,
  .canopy-progressive-image__full,
  .canopy-progressive-image::before,
  .canopy-progressive-image::after,
  .js-reveal,
  .button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .single_add_to_cart_button.button,
  .site-header {
    transition: none;
  }

  .hero-panel__image,
  .purchase-block__media .canopy-progressive-image__full,
  .product-hero__frame .canopy-progressive-image__full {
    transform: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --content-width: min(100vw - 40px, 100%);
  }

  .site-header__inner,
  .hero-panel__inner,
  .signal-brief__layout,
  .image-story__layout,
  .detail-ledger__layout,
  .purchase-block__layout,
  .product-hero,
  .product-content,
  .site-footer__inner,
  .product-card,
  .faq-card {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .product-hero__summary {
    position: static;
  }

  .product-card__media,
  .purchase-block__media {
    min-height: 320px;
  }

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

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 24px, 100%);
    --header-h: 76px;
  }

  .site-main {
    padding-bottom: 56px;
  }

  .site-header__inner {
    min-height: var(--header-h);
    gap: 14px;
  }

  .brand-lockup strong {
    font-size: 1.2rem;
  }

  .menu-shell {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .menu-shell a,
  .site-header__cta,
  .button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .single_add_to_cart_button.button {
    font-size: 0.72rem;
  }

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

  .hero-panel__inner {
    padding: calc(var(--header-h) + 56px) 0 40px;
    gap: 28px;
  }

  .hero-panel__copy h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .section-block {
    padding-top: 76px;
  }

  .section-heading h2,
  .page-hero h1,
  .product-hero__summary h1,
  .site-footer h2,
  .purchase-block__content h3 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .signal-line,
  .source-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-card,
  .product-card,
  .product-photo-gallery__grid,
  .spec-grid,
  .product-hero__thumbs {
    grid-template-columns: 1fr;
  }

  .product-card__media,
  .purchase-block__media {
    min-height: auto;
  }

  .image-story__slice-media,
  .product-card__media,
  .purchase-block__media {
    aspect-ratio: 1 / 0.88;
  }

  .product-hero__signal-strip,
  .purchase-block__list {
    gap: 10px;
  }

  .product-hero__signal-strip span,
  .purchase-block__list li {
    width: 100%;
    justify-content: flex-start;
  }

  .product-photo-card:first-child {
    grid-column: auto;
  }

  .hero-panel__factline,
  .site-footer__closing,
  .product-card__facts {
    gap: 12px;
  }
}

/* UI repair pass: restore contrast, card media fill, and compact product pills. */
:root {
  --text-soft: rgba(244, 239, 227, 0.88);
  --text-muted: rgba(244, 239, 227, 0.64);
}

.hero-panel__scrim {
  background:
    linear-gradient(90deg, rgba(6, 9, 7, 0.92) 0%, rgba(6, 9, 7, 0.74) 34%, rgba(6, 9, 7, 0.32) 66%, rgba(6, 9, 7, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 9, 7, 0.3) 0%, rgba(6, 9, 7, 0.16) 28%, rgba(6, 9, 7, 0.84) 100%);
}

.hero-panel__copy,
.page-hero,
.product-hero__summary,
.product-card__body {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.hero-panel__lede,
.page-hero p:last-child,
.product-card__summary,
.product-hero__excerpt,
.product-hero__excerpt p,
.purchase-block__content p,
.rail-card p,
.faq-card p {
  color: var(--text-soft);
}

.page-hero p:last-child,
.product-card__summary {
  font-size: 1rem;
  line-height: 1.75;
}

.page-hero p:last-child {
  max-width: 36rem;
}

.canopy-progressive-image__picture {
  width: 100%;
  height: 100%;
}

.product-card {
  align-items: stretch;
  gap: 32px;
  padding: 28px 0 34px;
}

.product-card__media {
  display: grid;
  align-self: stretch;
  min-height: clamp(260px, 30vw, 380px);
}

.product-card__media .canopy-progressive-image,
.product-card__media .canopy-progressive-image__picture,
.product-card__media .canopy-progressive-image__full {
  width: 100%;
  height: 100%;
}

.product-card__media .canopy-progressive-image__full {
  object-fit: cover;
}

.product-card__body {
  gap: 18px;
}

.product-card__heading h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.product-card__facts dt {
  color: var(--text-muted);
}

.product-card__facts dd {
  font-size: 1.25rem;
}

.product-hero__signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-hero__signal-strip span {
  flex: 0 1 auto;
  width: auto;
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid rgba(244, 239, 227, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  line-height: 1.25;
  white-space: normal;
}

.product-hero__purchase-note {
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .product-card__media {
    min-height: 220px;
  }

  .product-card__summary,
  .page-hero p:last-child {
    font-size: 0.96rem;
  }
}

/* Final visual cleanup: strengthen dark-mode surfaces and rebalance media. */

.site-header {
  background: linear-gradient(180deg, rgba(6, 9, 7, 0.9), rgba(6, 9, 7, 0.58));
  border-bottom-color: rgba(244, 239, 227, 0.08);
  backdrop-filter: blur(18px) saturate(0.9);
}

.site-header--active {
  background: rgba(8, 11, 9, 0.94);
  border-bottom-color: rgba(244, 239, 227, 0.12);
}

.hero-panel__scrim {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.86) 30%, rgba(5, 7, 6, 0.56) 54%, rgba(5, 7, 6, 0.18) 78%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.74) 0%, rgba(5, 7, 6, 0.3) 28%, rgba(5, 7, 6, 0.9) 100%);
}

.hero-panel__copy {
  position: relative;
  max-width: 34rem;
  padding: 0 2rem 2rem 0;
}

.hero-panel__copy::before {
  content: "";
  position: absolute;
  inset: -5rem auto -4rem -5rem;
  width: min(44rem, 82vw);
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 22% 42%, rgba(5, 7, 6, 0.74) 0%, rgba(5, 7, 6, 0.48) 42%, rgba(5, 7, 6, 0) 78%);
}

.hero-panel__copy h1 {
  font-size: clamp(3.75rem, 7.2vw, 6.5rem);
  max-width: 8.5ch;
}

.hero-panel__lede {
  max-width: 31rem;
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-panel__manifest {
  background: rgba(7, 10, 8, 0.58);
  border-color: rgba(244, 239, 227, 0.14);
}

.hero-panel__factline {
  color: rgba(244, 239, 227, 0.76);
}

.product-grid {
  gap: 0;
}

.product-card {
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  padding: 28px 0 34px;
}

.product-card__media {
  min-height: 0;
  aspect-ratio: 0.96 / 1.12;
  border: 1px solid rgba(244, 239, 227, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.product-card__media .canopy-progressive-image__full,
.purchase-block__media .canopy-progressive-image__full {
  object-position: center 22%;
}

.product-card__body {
  gap: 20px;
  max-width: 48rem;
}

.product-card__summary {
  max-width: 42ch;
  font-size: 1.03rem;
  line-height: 1.8;
  color: rgba(244, 239, 227, 0.9);
}

.product-card__facts {
  column-gap: 24px;
  row-gap: 18px;
}

.product-card__facts dt {
  color: rgba(244, 239, 227, 0.72);
}

.product-card__facts dd {
  font-size: 1.42rem;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: rgba(205, 161, 104, 0.94);
}

.faq-band {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.faq-grid {
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.faq-card {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  padding: 28px 0;
  background: transparent;
  box-shadow: none;
}

.faq-card::before {
  content: none;
}

.faq-card h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.faq-card p {
  max-width: 44ch;
  font-size: 1.03rem;
  line-height: 1.82;
  color: rgba(244, 239, 227, 0.86);
}

@media (max-width: 1100px) {
  .product-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card__media {
    aspect-ratio: 1.08 / 0.96;
  }

  .faq-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .hero-panel__copy {
    padding-right: 0;
  }

  .hero-panel__copy::before {
    inset: -3rem -1rem -2rem -2rem;
    width: auto;
  }

  .hero-panel__copy h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .product-card__media {
    aspect-ratio: 1 / 1.06;
  }

  .product-card__summary,
  .faq-card p {
    font-size: 0.98rem;
  }
}

/* Research-driven direction: less luxury-editorial, more field journal / equipment catalog. */
:root {
  --bg: #141816;
  --bg-soft: #1b211d;
  --bg-elevated: #202720;
  --text: #efe6d6;
  --text-soft: rgba(239, 230, 214, 0.88);
  --text-muted: rgba(239, 230, 214, 0.62);
  --accent: #73806a;
  --accent-strong: #946946;
  --line: rgba(239, 230, 214, 0.12);
  --line-strong: rgba(239, 230, 214, 0.2);
  --font-display: "Bitter", serif;
  --font-body: "Alegreya Sans", sans-serif;
  --font-mono: "Alegreya Sans", sans-serif;
}

body {
  background:
    radial-gradient(circle at 14% 0%, rgba(115, 128, 106, 0.12), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(148, 105, 70, 0.08), transparent 18%),
    linear-gradient(180deg, #1a1f1b 0%, #131815 46%, #0e1210 100%);
  background-color: var(--bg);
}

body::before {
  opacity: 0.12;
}

.eyebrow,
.signal-line__index,
.source-row__index {
  color: #9b7959;
}

.site-header {
  background: linear-gradient(180deg, rgba(11, 13, 11, 0.9), rgba(11, 13, 11, 0.6));
}

.site-header--active {
  background: rgba(14, 17, 14, 0.94);
}

.brand-lockup strong {
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-lockup__kicker,
.hero-panel__brand,
.hero-panel__factline,
.site-footer__closing,
.product-card__facts dt,
.crumb-trail__item,
.keyword-line {
  letter-spacing: 0.12em;
}

.menu-shell a,
.site-header__cta,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button,
.site-header__cta {
  background: rgba(115, 128, 106, 0.14);
  border-color: rgba(115, 128, 106, 0.32);
  color: var(--text);
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.single_add_to_cart_button.button:hover,
.site-header__cta:hover {
  background: rgba(115, 128, 106, 0.24);
  border-color: rgba(148, 105, 70, 0.28);
}

.button--ghost,
.button--header,
.site-header__cta,
.hero-panel__actions .button--ghost,
.purchase-block__content .button--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(239, 230, 214, 0.12);
}

.hero-panel__copy h1,
.section-heading h2,
.page-hero h1,
.product-hero__summary h1,
.purchase-block__content h3,
.site-footer h2 {
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-panel__copy h1 {
  max-width: 9.2ch;
}

.hero-panel__lede,
.page-hero p:last-child,
.product-card__summary,
.product-hero__excerpt,
.product-hero__excerpt p,
.purchase-block__content p,
.faq-card p,
.rail-card p {
  font-size: 1.06rem;
}

.hero-panel__manifest,
.product-card__media,
.purchase-block__media,
.product-hero__frame,
.product-hero__thumbs .canopy-progressive-image {
  border-color: rgba(239, 230, 214, 0.08);
}

.product-card__heading h3 {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
}

.product-card__facts dd,
.spec-card strong {
  font-weight: 600;
}

.product-card__link,
.source-card__action {
  color: #b48861;
}

.faq-band .section-heading h2 {
  max-width: 11ch;
}

@media (max-width: 760px) {
  .hero-panel__lede,
  .page-hero p:last-child,
  .product-card__summary,
  .product-hero__excerpt,
  .product-hero__excerpt p,
  .purchase-block__content p,
  .faq-card p,
  .rail-card p {
    font-size: 0.98rem;
  }
}

/* Final refinement pass: readable hero, cleaner cards, and dark FAQ reset. */
.hero-panel__scrim {
  background:
    linear-gradient(90deg, rgba(6, 9, 7, 0.96) 0%, rgba(6, 9, 7, 0.82) 26%, rgba(6, 9, 7, 0.48) 54%, rgba(6, 9, 7, 0.18) 76%, rgba(6, 9, 7, 0.1) 100%),
    linear-gradient(180deg, rgba(6, 9, 7, 0.48) 0%, rgba(6, 9, 7, 0.08) 24%, rgba(6, 9, 7, 0.9) 100%);
}

.hero-panel__copy {
  position: relative;
  padding: 26px 32px 30px 0;
  max-width: 38rem;
}

.hero-panel__copy::before {
  content: "";
  position: absolute;
  inset: -22px 14% -24px -36px;
  border-radius: 0 34px 34px 0;
  background:
    linear-gradient(90deg, rgba(6, 9, 7, 0.78) 0%, rgba(6, 9, 7, 0.58) 56%, rgba(6, 9, 7, 0.18) 84%, rgba(6, 9, 7, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.hero-panel__brand,
.hero-panel__factline {
  color: rgba(244, 239, 227, 0.72);
}

.hero-panel__manifest {
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(10, 14, 11, 0.78), rgba(10, 14, 11, 0.9));
  border-color: rgba(244, 239, 227, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: none;
}

.hero-panel__manifest dd {
  color: var(--text);
}

.hero-panel__actions .button--ghost,
.purchase-block__content .button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(244, 239, 227, 0.12);
  color: var(--text);
}

.product-card {
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.product-card__media {
  min-height: 0;
  aspect-ratio: 0.94 / 1.04;
  max-width: 420px;
}

.product-card__media .canopy-progressive-image__full {
  object-position: 54% center;
}

.product-card__body {
  padding-top: 8px;
  gap: 20px;
}

.product-card__summary {
  max-width: 48ch;
  color: rgba(244, 239, 227, 0.82);
}

.product-card__facts {
  gap: 16px 24px;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-grid > :only-child {
  grid-column: 1 / -1;
}

.purchase-block__content p {
  max-width: 38rem;
  color: rgba(244, 239, 227, 0.88);
}

.faq-band {
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 96px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.faq-band .section-heading {
  width: min(44rem, 100%);
  margin-bottom: 22px;
  padding-left: 0;
}

.faq-band .section-heading::before {
  content: none;
}

.faq-grid {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.faq-card {
  gap: 28px;
  padding: 26px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.faq-card::before {
  content: none;
}

.faq-card h3 {
  font-size: clamp(1.85rem, 2.6vw, 2.7rem);
  line-height: 0.98;
  max-width: 11ch;
}

.faq-card p {
  margin: 0;
  max-width: 38rem;
  color: rgba(244, 239, 227, 0.84);
  font-size: 1.03rem;
}

@media (max-width: 1100px) {
  .hero-panel__copy {
    padding-right: 0;
  }

  .hero-panel__copy::before {
    inset: -18px -18px -22px -24px;
    border-radius: 28px;
  }

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

  .product-card__media {
    max-width: none;
    aspect-ratio: 1.05 / 0.9;
  }

  .faq-card h3,
  .faq-card p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .hero-panel__copy {
    padding: 22px 20px 24px 0;
  }

  .hero-panel__copy::before {
    inset: -14px -8px -18px -14px;
    border-radius: 24px;
  }

  .product-card__media {
    aspect-ratio: 1 / 0.92;
  }

  .faq-band {
    padding-top: 76px;
  }

  .faq-card {
    gap: 14px;
    padding: 20px 0;
  }

  .faq-card p {
    font-size: 0.98rem;
  }
}

/* Daylight field-catalog reset: less glossy, less luxury, more real hardware. */
:root {
  --bg: #e5ded1;
  --bg-soft: #efe7db;
  --bg-elevated: #f7f1e8;
  --text: #26221d;
  --text-soft: rgba(38, 34, 29, 0.84);
  --text-muted: rgba(38, 34, 29, 0.58);
  --accent: #647360;
  --accent-strong: #986947;
  --line: rgba(38, 34, 29, 0.12);
  --line-strong: rgba(38, 34, 29, 0.2);
}

html {
  background: #ddd6c9;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(100, 115, 96, 0.08), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(152, 105, 71, 0.06), transparent 18%),
    linear-gradient(180deg, #ebe4d7 0%, #e3dbce 42%, #ddd5c8 100%);
  background-color: var(--bg);
}

body::before {
  opacity: 0.08;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(38, 34, 29, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(38, 34, 29, 0.025) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
  mix-blend-mode: multiply;
}

body::after {
  opacity: 0.04;
}

.site-header {
  background: rgba(238, 231, 221, 0.84);
  border-bottom-color: rgba(38, 34, 29, 0.08);
  backdrop-filter: blur(12px);
}

.site-header--active {
  background: rgba(244, 238, 230, 0.96);
  border-bottom-color: rgba(38, 34, 29, 0.12);
}

.brand-lockup,
.brand-lockup strong,
.brand-lockup small,
.menu-shell a,
.site-header__cta {
  color: var(--text);
}

.brand-lockup__mark {
  border-color: rgba(100, 115, 96, 0.32);
  box-shadow: inset 0 0 12px rgba(100, 115, 96, 0.08);
}

.primary-nav {
  background: rgba(247, 241, 232, 0.82);
  border: 1px solid rgba(38, 34, 29, 0.08);
  box-shadow: none;
  border-radius: 16px;
}

.menu-shell a,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button,
.site-header__cta,
.product-hero__signal-strip span,
.purchase-block__list li {
  border-radius: 14px;
}

.menu-shell a {
  color: rgba(38, 34, 29, 0.72);
}

.menu-shell a:hover,
.menu-shell .current-menu-item a {
  color: var(--text);
  background: rgba(100, 115, 96, 0.08);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button,
.site-header__cta {
  background: rgba(100, 115, 96, 0.08);
  border-color: rgba(100, 115, 96, 0.22);
  color: var(--text);
  box-shadow: none;
}

.button::before,
.woocommerce a.button::before,
.woocommerce button.button::before,
.woocommerce input.button::before,
.single_add_to_cart_button.button::before {
  content: none;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.single_add_to_cart_button.button:hover,
.site-header__cta:hover {
  background: rgba(100, 115, 96, 0.14);
  border-color: rgba(152, 105, 71, 0.24);
  transform: translateY(-1px);
}

.button--ghost,
.button--header,
.hero-panel__actions .button--ghost,
.purchase-block__content .button--ghost {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(38, 34, 29, 0.1);
  color: var(--text);
}

.hero-panel__scrim {
  background:
    linear-gradient(90deg, rgba(239, 232, 223, 0.78) 0%, rgba(239, 232, 223, 0.72) 28%, rgba(239, 232, 223, 0.44) 54%, rgba(239, 232, 223, 0.08) 76%, rgba(239, 232, 223, 0) 100%),
    linear-gradient(180deg, rgba(239, 232, 223, 0.22) 0%, rgba(239, 232, 223, 0) 28%, rgba(239, 232, 223, 0.18) 100%);
}

.hero-panel__copy,
.page-hero,
.product-hero__summary,
.product-card__body {
  text-shadow: none;
}

.hero-panel__copy::before {
  inset: -24px 10% -26px -28px;
  border-radius: 0 24px 24px 0;
  background:
    linear-gradient(90deg, rgba(246, 240, 232, 0.88) 0%, rgba(246, 240, 232, 0.74) 62%, rgba(246, 240, 232, 0.18) 88%, rgba(246, 240, 232, 0) 100%);
}

.hero-panel__copy h1,
.section-heading h2,
.page-hero h1,
.product-hero__summary h1,
.purchase-block__content h3,
.site-footer h2,
.faq-card h3,
.product-card__heading h3,
.spec-card strong {
  color: var(--text);
}

.hero-panel__brand,
.hero-panel__factline,
.site-footer__closing,
.crumb-trail__item,
.product-card__facts dt {
  color: var(--text-muted);
}

.hero-panel__lede,
.page-hero p:last-child,
.product-card__summary,
.product-hero__excerpt,
.product-hero__excerpt p,
.purchase-block__content p,
.faq-card p,
.rail-card p,
.product-hero__purchase-note {
  color: var(--text-soft);
}

.hero-panel__manifest {
  background: rgba(247, 241, 232, 0.76);
  border-color: rgba(38, 34, 29, 0.12);
  box-shadow: 0 12px 30px rgba(93, 82, 68, 0.08);
}

.hero-panel__manifest dt,
.hero-panel__manifest dd {
  color: var(--text);
}

.hero-panel__factline span::before,
.purchase-block__list li::before,
.product-hero__signal-strip span::before {
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(152, 105, 71, 0.1);
}

.product-hero__signal-strip span,
.purchase-block__list li {
  background: rgba(255, 255, 255, 0.44);
  border-color: rgba(38, 34, 29, 0.1);
  color: var(--text);
}

.product-card__media,
.purchase-block__media,
.product-hero__frame,
.product-hero__thumbs .canopy-progressive-image,
.product-photo-card .canopy-progressive-image {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(38, 34, 29, 0.08);
  box-shadow: 0 12px 34px rgba(93, 82, 68, 0.08);
}

.section-heading::before {
  background: linear-gradient(180deg, rgba(152, 105, 71, 0.9), rgba(100, 115, 96, 0.32));
}

.faq-band,
.page-content,
.product-content,
.site-footer {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.faq-grid,
.signal-line,
.detail-ledger__row,
.faq-card,
.rail-card,
.source-row,
.story-card,
.spec-card,
.product-card,
.site-footer,
.site-footer__closing {
  border-color: rgba(38, 34, 29, 0.12);
}

.site-footer__nav a:not(.button),
.source-card,
.source-card__label {
  color: var(--text);
}

.product-card__link,
.source-card__action,
.eyebrow,
.signal-line__index,
.source-row__index {
  color: var(--accent-strong);
}

@media (max-width: 1100px) {
  .hero-panel__copy::before {
    inset: -18px -12px -22px -18px;
    border-radius: 22px;
  }
}

@media (max-width: 760px) {
  .hero-panel__copy::before {
    inset: -12px -8px -14px -10px;
    border-radius: 18px;
  }

  .primary-nav {
    border-radius: 14px;
  }
}

/* Final FAQ repair: restore self-contained cards instead of split article rows. */
.faq-band {
  padding-top: 88px;
  scroll-margin-top: 104px;
}

.faq-band .section-heading {
  width: min(42rem, 100%);
  margin-bottom: 28px;
}

.faq-grid {
  margin-top: 0;
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.faq-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 24px 26px 26px;
  background: rgba(247, 241, 232, 0.72);
  border: 1px solid rgba(38, 34, 29, 0.1);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(93, 82, 68, 0.08);
  overflow: hidden;
}

.faq-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(152, 105, 71, 0.75), rgba(100, 115, 96, 0.45));
}

.faq-card h3 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.02;
  text-wrap: balance;
}

.faq-card p {
  margin: 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.68;
}

@media (max-width: 980px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .faq-band {
    padding-top: 72px;
    scroll-margin-top: 88px;
  }

  .faq-card {
    padding: 20px 20px 22px;
    border-radius: 18px;
  }

  .faq-card h3 {
    font-size: clamp(1.4rem, 8vw, 1.8rem);
  }

  .faq-card p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
}

/* Final image-story repair: prevent the feature card from stretching into a dead slab. */
.image-story {
  scroll-margin-top: 104px;
}

.image-story__layout {
  align-items: start;
}

.image-story__feature {
  align-self: start;
  display: grid;
  grid-template-rows: auto auto;
}

.image-story__media {
  aspect-ratio: 1.04 / 1;
}

.image-story__caption {
  position: static;
  padding: 18px 22px 22px;
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.64), rgba(247, 241, 232, 0.96));
  border-top: 1px solid rgba(38, 34, 29, 0.08);
}

.image-story__caption h3 {
  max-width: 12ch;
}

.image-story__caption p:last-child {
  max-width: none;
}

.image-story__slice,
.image-story__note {
  align-self: start;
}

@media (max-width: 760px) {
  .image-story {
    scroll-margin-top: 88px;
  }

  .image-story__caption {
    padding: 18px 18px 20px;
  }

  .image-story__caption h3 {
    max-width: none;
  }
}

/* Field atlas refresh: editorial typography, grouped translucent surfaces, and survey-style chips. */
:root {
  --font-display: "Bitter", serif;
  --font-body: "Alegreya Sans", sans-serif;
  --field-panel: rgba(250, 245, 236, 0.72);
  --field-panel-strong: rgba(252, 248, 240, 0.86);
  --field-panel-soft: rgba(247, 241, 232, 0.52);
  --field-edge: rgba(57, 49, 41, 0.14);
  --field-edge-strong: rgba(57, 49, 41, 0.2);
  --field-shadow: 0 24px 64px rgba(71, 60, 47, 0.14);
  --field-shadow-soft: 0 16px 36px rgba(71, 60, 47, 0.1);
  --accent: #5d7058;
  --accent-strong: #b26935;
  --text: #241f18;
  --text-soft: rgba(36, 31, 24, 0.78);
  --text-muted: rgba(36, 31, 24, 0.56);
  --line: rgba(57, 49, 41, 0.12);
  --line-strong: rgba(57, 49, 41, 0.18);
}

html {
  background: #e4dccd;
}

body {
  background:
    radial-gradient(circle at 10% -4%, rgba(178, 105, 53, 0.22), transparent 22%),
    radial-gradient(circle at 88% 2%, rgba(93, 112, 88, 0.18), transparent 19%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #ebe4d6 0%, #e3dac8 44%, #ddd3c1 100%);
  color: var(--text);
  font-family: var(--font-body);
}

body::before {
  opacity: 0.16;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(57, 49, 41, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(57, 49, 41, 0.02) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 62%);
  background-size: auto, 28px 28px, 28px 28px, auto;
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.28), transparent 20%),
    radial-gradient(circle at 78% 74%, rgba(178, 105, 53, 0.12), transparent 24%);
  mix-blend-mode: soft-light;
  opacity: 0.46;
}

.site-header,
.site-header--active {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  padding-bottom: 18px;
}

.site-header__inner {
  margin-top: 16px;
  padding: 12px 16px;
  min-height: auto;
  background: linear-gradient(180deg, rgba(250, 245, 236, 0.82), rgba(244, 237, 226, 0.74));
  border: 1px solid rgba(57, 49, 41, 0.08);
  border-radius: 28px;
  box-shadow: var(--field-shadow);
  backdrop-filter: blur(20px) saturate(145%);
}

.site-header--active .site-header__inner {
  background: linear-gradient(180deg, rgba(252, 248, 240, 0.92), rgba(246, 240, 231, 0.82));
  box-shadow: 0 24px 54px rgba(71, 60, 47, 0.18);
}

.site-header + .hero-panel {
  margin-top: 0;
}

.hero-panel__brand,
.eyebrow,
.product-card__link,
.source-card__action {
  color: var(--accent-strong);
}

.primary-nav {
  justify-self: center;
  padding: 4px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(57, 49, 41, 0.08);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.menu-shell {
  gap: 4px;
}

.menu-shell a {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(36, 31, 24, 0.74);
}

.menu-shell a::after {
  content: none;
}

.menu-shell a:hover,
.menu-shell .current-menu-item a {
  background: rgba(93, 112, 88, 0.1);
  color: var(--text);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 8px;
}

.site-header__status {
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.site-header__cta {
  min-height: 44px;
  padding: 0 18px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button.button,
.site-header__cta {
  background: linear-gradient(135deg, rgba(93, 112, 88, 0.16), rgba(178, 105, 53, 0.18));
  border-color: rgba(57, 49, 41, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 24px rgba(71, 60, 47, 0.08);
  color: var(--text);
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.single_add_to_cart_button.button:hover,
.site-header__cta:hover {
  background: linear-gradient(135deg, rgba(93, 112, 88, 0.22), rgba(178, 105, 53, 0.24));
  border-color: rgba(178, 105, 53, 0.26);
}

.button--ghost,
.button--header,
.hero-panel__actions .button--ghost,
.purchase-block__content .button--ghost {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(57, 49, 41, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(71, 60, 47, 0.06);
}

.hero-panel__scrim {
  background:
    linear-gradient(114deg, rgba(242, 235, 226, 0.92) 0%, rgba(242, 235, 226, 0.82) 32%, rgba(242, 235, 226, 0.18) 62%, rgba(242, 235, 226, 0) 76%),
    linear-gradient(180deg, rgba(247, 242, 234, 0.1) 0%, rgba(247, 242, 234, 0) 36%, rgba(80, 69, 56, 0.2) 100%);
}

.hero-panel__copy {
  position: relative;
  display: grid;
  gap: 0;
  padding: 32px 34px 34px;
  max-width: 44rem;
  background: linear-gradient(180deg, rgba(252, 248, 241, 0.74), rgba(244, 236, 224, 0.56));
  border: 1px solid rgba(57, 49, 41, 0.12);
  border-radius: 34px;
  box-shadow: var(--field-shadow);
  backdrop-filter: blur(22px) saturate(150%);
}

.hero-panel__copy > * {
  position: relative;
  z-index: 1;
}

.hero-panel__copy::before {
  inset: auto auto 18px 18px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(178, 105, 53, 0.22) 0 15%, transparent 16%),
    radial-gradient(circle at center, transparent 0 48%, rgba(93, 112, 88, 0.16) 49% 52%, transparent 53%),
    radial-gradient(circle at center, transparent 0 68%, rgba(178, 105, 53, 0.12) 69% 72%, transparent 73%);
  opacity: 0.8;
  z-index: 0;
}

.hero-panel__copy h1 {
  max-width: 8.8ch;
  color: var(--text);
  text-shadow: none;
}

.hero-panel__lede,
.page-hero p:last-child,
.product-card__summary,
.product-hero__excerpt,
.product-hero__excerpt p,
.faq-card p,
.rail-card p,
.product-hero__purchase-note,
.site-footer__lead p {
  color: var(--text-soft);
}

.hero-panel__signal-pills,
.page-hero__meta,
.site-footer__seal,
.product-card__signals,
.product-hero__signal-strip,
.detail-ledger__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-panel__signal-pills {
  margin-top: 24px;
}

.hero-panel__signal-pill {
  background: linear-gradient(180deg, rgba(54, 48, 41, 0.62), rgba(41, 35, 30, 0.5));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 28px rgba(18, 14, 10, 0.2);
  color: #fff8f0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px) saturate(118%);
}

.page-hero__meta {
  margin-top: 14px;
}

.site-footer__seal {
  margin-top: 22px;
}

.product-card__signals {
  margin-top: 2px;
}

.hero-panel__signal-pill,
.page-hero__meta span,
.site-footer__seal span,
.product-card__signals li,
.product-hero__signal-strip span,
.hero-panel__factline span,
.keyword-line {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 42px;
  max-width: 100%;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(57, 49, 41, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 12px 26px rgba(71, 60, 47, 0.08);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.12;
  text-align: left;
  white-space: normal;
  text-transform: uppercase;
  backdrop-filter: blur(18px) saturate(145%);
}

.hero-panel__signal-pill::before,
.page-hero__meta span::before,
.site-footer__seal span::before,
.product-card__signals li::before,
.product-hero__signal-strip span::before,
.hero-panel__factline span::before,
.keyword-line::before {
  content: "";
  position: static;
  display: block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 0 5px rgba(178, 105, 53, 0.12);
}

.hero-panel__factline {
  position: absolute;
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  bottom: clamp(84px, 11vh, 132px);
  z-index: 2;
  width: min(calc(100% - 48px), 43rem);
  justify-content: flex-end;
  margin-left: 0;
  align-content: flex-start;
  gap: 10px 12px;
  padding-bottom: 0;
}

.hero-panel__factline span,
.keyword-line {
  color: var(--text);
}

.hero-panel__manifest,
.page-hero,
.product-hero__summary,
.product-card,
.image-story__feature,
.image-story__slice,
.image-story__note,
.product-photo-card,
.site-footer,
.source-card,
.signal-line,
.detail-ledger__row,
.faq-card,
.rail-card,
.spec-card {
  background: linear-gradient(180deg, var(--field-panel-strong), var(--field-panel));
  border: 1px solid var(--field-edge);
  box-shadow: var(--field-shadow-soft);
  backdrop-filter: blur(20px) saturate(145%);
}

.hero-panel__manifest,
.page-hero,
.product-hero__summary,
.product-card,
.image-story__feature,
.image-story__slice,
.image-story__note,
.product-photo-card,
.site-footer,
.source-card {
  border-radius: 30px;
  overflow: hidden;
}

.signal-line,
.detail-ledger__row,
.faq-card,
.rail-card,
.spec-card {
  border-radius: 24px;
}

.hero-panel__manifest {
  padding: 22px 24px;
  box-shadow: var(--field-shadow);
}

.hero-panel__manifest-row {
  border-top-color: rgba(57, 49, 41, 0.1);
}

.hero-panel__manifest-row:last-child {
  border-bottom-color: rgba(57, 49, 41, 0.1);
}

.signal-line + .signal-line,
.detail-ledger__row + .detail-ledger__row {
  margin-top: 14px;
}

.signal-line,
.detail-ledger__row,
.faq-card,
.rail-card,
.spec-card {
  padding: 22px 24px;
  border-top-width: 1px;
}

.detail-ledger__keywords {
  align-content: start;
}

.image-story__feature,
.image-story__slice,
.image-story__note,
.product-photo-card {
  display: grid;
  gap: 0;
}

.image-story__caption,
.image-story__slice-body,
.image-story__note,
.product-photo-card__body {
  padding: 20px 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(250, 245, 236, 0.78));
  border-top: 1px solid rgba(57, 49, 41, 0.08);
}

.image-story__note {
  gap: 14px;
}

.page-hero {
  display: grid;
  gap: 16px;
  padding: 28px 30px 30px;
}

.product-hero {
  align-items: start;
  gap: 34px;
}

.product-hero__summary {
  padding: 30px 32px 34px;
}

.product-hero__purchase-note {
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(57, 49, 41, 0.1);
  border-radius: 18px;
}

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

.product-card {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: start;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(71, 60, 47, 0.16);
}

.product-card__media {
  flex: 0 0 248px;
  width: 248px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  max-width: 248px;
  min-height: 0;
  aspect-ratio: 1.16 / 0.82;
  max-height: 210px;
  align-self: start;
}

.product-card__media .canopy-progressive-image,
.product-card__media .canopy-progressive-image__picture,
.product-card__media .canopy-progressive-image__full {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.product-card__media .canopy-progressive-image__full {
  object-fit: cover;
  object-position: center 46%;
}

.product-card--rak-1w-solar-mesh-relay .product-card__media {
  aspect-ratio: 1.14 / 0.84;
}

.product-card--rak-1w-solar-mesh-relay .product-card__media .canopy-progressive-image__full {
  object-position: center center;
}

.product-card--rak4631-solar-mesh-relay .product-card__media .canopy-progressive-image__full {
  object-position: center center;
}

.product-card__body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 6px 4px 8px 0;
  gap: 12px;
}

.product-card__heading h3 {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.02;
}

.product-card__summary {
  max-width: 40ch;
  font-size: 0.97rem;
}

.product-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(57, 49, 41, 0.08);
}

.product-card__facts div {
  display: grid;
  gap: 6px;
}

.product-card__facts dd {
  font-size: 1rem;
}

.product-card__link {
  margin-top: 4px;
}

.source-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.source-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-top: 0;
}

.source-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--text);
  text-decoration: none;
}

.source-card:hover {
  transform: translateY(-2px);
}

.site-footer {
  margin-top: 118px;
  overflow: hidden;
}

.site-footer__inner {
  margin-top: 0;
  padding: 32px 34px 24px;
  align-items: start;
}

.site-footer__nav {
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: start;
}

.site-footer__nav .button--footer {
  margin-top: 10px;
}

.site-footer__closing {
  padding: 18px 34px 24px;
  border-top: 1px solid rgba(57, 49, 41, 0.1);
}

@media (max-width: 1100px) {
  .site-header + .hero-panel {
    margin-top: 0;
  }

  .site-header,
  .site-header--active {
    padding-bottom: 14px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
    gap: 12px 14px;
  }

  .brand-lockup {
    justify-content: flex-start;
  }

  .brand-lockup__logo {
    width: clamp(72px, 20vw, 82px);
  }

  .primary-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .site-header__actions {
    justify-self: end;
  }

  .hero-panel__factline {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    justify-content: flex-start;
    margin-top: 18px;
    margin-left: 0;
  }

  .menu-shell {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-panel__copy,
  .page-hero,
  .product-hero__summary,
  .site-footer,
  .product-card,
  .image-story__feature,
  .image-story__slice,
  .image-story__note,
  .product-photo-card,
  .hero-panel__manifest {
    border-radius: 26px;
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card__media {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    aspect-ratio: 1.18 / 0.84;
  }

  .product-card__body {
    padding: 0;
  }
}

@media (max-width: 760px) {
  .site-header + .hero-panel {
    margin-top: 0;
  }

  .site-header,
  .site-header--active {
    padding-bottom: 10px;
  }

  .site-header__inner {
    margin-top: 12px;
    padding: 12px;
    border-radius: 22px;
    gap: 10px;
  }

  .brand-lockup {
    justify-content: center;
  }

  .site-header__cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .primary-nav {
    border-radius: 18px;
    padding: 4px;
  }

  .menu-shell a {
    min-height: 42px;
    padding: 0 12px;
  }

  .hero-panel__copy,
  .hero-panel__manifest,
  .page-hero,
  .product-hero__summary,
  .site-footer__inner,
  .site-footer__closing,
  .product-card__body,
  .faq-card,
  .rail-card,
  .spec-card,
  .detail-ledger__row,
  .signal-line,
  .source-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-panel__copy {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .hero-panel__copy::before {
    width: 88px;
    height: 88px;
    bottom: 14px;
    left: 14px;
  }

  .hero-panel__signal-pill,
  .page-hero__meta span,
  .site-footer__seal span,
  .product-card__signals li,
  .product-hero__signal-strip span,
  .hero-panel__factline span,
  .keyword-line {
    font-size: 0.74rem;
    padding-right: 16px;
  }

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

  .source-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
