: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);
}

@media (dynamic-range: high) {
  .canopy-progressive-image--hdr .canopy-progressive-image__full {
    dynamic-range-limit: no-limit;
  }
}

.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);
  }
}
