:root {
  --rm-bg: #f4efe7;
  --rm-bg-deep: #e7ddd0;
  --rm-surface: rgba(255, 250, 244, 0.84);
  --rm-surface-strong: rgba(255, 253, 249, 0.94);
  --rm-panel: #f8f2ea;
  --rm-panel-deep: #e9dfd2;
  --rm-ink: #171a1c;
  --rm-ink-soft: #51565d;
  --rm-line: rgba(23, 26, 28, 0.1);
  --rm-line-strong: rgba(23, 26, 28, 0.16);
  --rm-bronze: #b07a42;
  --rm-bronze-deep: #8d6339;
  --rm-bronze-soft: rgba(176, 122, 66, 0.14);
  --rm-olive: #485447;
  --rm-shadow-xl: 0 34px 100px rgba(26, 23, 20, 0.12);
  --rm-shadow-lg: 0 24px 60px rgba(26, 23, 20, 0.1);
  --rm-shadow-md: 0 16px 36px rgba(26, 23, 20, 0.08);
  --rm-radius-xxl: 38px;
  --rm-radius-xl: 30px;
  --rm-radius-lg: 22px;
  --rm-radius-md: 16px;
  --rm-shell: min(1260px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body.rollmate-site {
  margin: 0;
  color: var(--rm-ink);
  background:
    radial-gradient(circle at top left, rgba(176, 122, 66, 0.22), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(72, 84, 71, 0.18), transparent 22%),
    linear-gradient(180deg, #f7f2ea 0%, #efe6da 100%);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.7;
}

body.rollmate-site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 54px,
      rgba(23, 26, 28, 0.018) 54px,
      rgba(23, 26, 28, 0.018) 55px
    );
  opacity: 0.55;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Baskerville, "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247, 241, 233, 0.7);
  border-bottom: 1px solid rgba(23, 26, 28, 0.06);
}

.site-header__inner,
.site-main,
.site-footer__grid {
  width: var(--rm-shell);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.site-brand__eyebrow,
.section-kicker,
.footer-label,
.hero__spec-label,
.pillar-card__eyebrow,
.scenario-card__label,
.trust-bar__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rm-bronze-deep);
}

.site-brand__name {
  font-size: 1.7rem;
}

.site-nav .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.ghost-link,
.text-link,
.footer-links a {
  color: var(--rm-ink-soft);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.ghost-link:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--rm-ink);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-pill,
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 26, 28, 0.1);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 8px 20px rgba(26, 23, 20, 0.05);
}

.ghost-link {
  color: var(--rm-ink);
}

.cart-pill strong {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  border-radius: 999px;
  background: var(--rm-ink);
  color: #fff;
  font-size: 0.82rem;
}

.site-main {
  position: relative;
  padding: 48px 0 84px;
}

.site-main--luxury {
  display: grid;
  gap: 28px;
}

.site-main--narrow {
  max-width: 1080px;
}

.hero,
.trust-bar,
.media-gallery,
.section-shell,
.editorial-panel,
.specs-showcase,
.faq-section,
.cta-banner,
.entry-card,
.shop-shell,
.shop-header,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-cart .cart_totals,
.woocommerce-checkout .woocommerce-checkout-review-order {
  position: relative;
  border: 1px solid var(--rm-line);
  border-radius: var(--rm-radius-xxl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 245, 0.68));
  box-shadow: var(--rm-shadow-xl);
  overflow: hidden;
}

.hero::before,
.media-gallery::before,
.section-shell::before,
.editorial-panel::before,
.specs-showcase::before,
.faq-section::before,
.cta-banner::before,
.entry-card::before,
.shop-shell::before,
.shop-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 48%),
    radial-gradient(circle at top right, rgba(176, 122, 66, 0.08), transparent 22%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  padding: clamp(24px, 3vw, 30px);
}

.hero__copy,
.hero__stage,
.editorial-panel__intro,
.editorial-panel__quote,
.product-spotlight,
.spec-sheet {
  position: relative;
  z-index: 1;
}

.hero__copy {
  padding: clamp(16px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__copy h1 {
  max-width: 10ch;
  margin-top: 14px;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
}

.hero__lede {
  max-width: 56ch;
  margin-top: 22px;
  color: var(--rm-ink-soft);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button-primary,
.button-secondary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: linear-gradient(135deg, #111518, #30353b);
  color: #fff;
  box-shadow: 0 20px 34px rgba(17, 21, 24, 0.18);
}

.button-secondary,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: linear-gradient(135deg, #c0894d, #8c6035);
  color: #fff;
  box-shadow: 0 18px 30px rgba(176, 122, 66, 0.24);
}

.button-primary:hover,
.button-secondary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  transform: translateY(-2px);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric-card {
  padding: 18px 16px;
  border-radius: var(--rm-radius-md);
  border: 1px solid rgba(23, 26, 28, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--rm-shadow-md);
  animation: rise-in 620ms ease both;
}

.metric-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: Baskerville, "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.2rem;
}

.metric-card span,
.pillar-card p,
.editorial-panel p,
.scenario-card p,
.check-list li,
.spec-sheet__row span,
.faq-item p,
.entry-content,
.footer-copy,
.woocommerce-result-count,
.woocommerce-product-details__short-description,
.woocommerce-tabs p,
.woocommerce .product_meta {
  color: var(--rm-ink-soft);
}

.hero__stage {
  min-height: 760px;
  border-radius: calc(var(--rm-radius-xxl) - 6px);
  background:
    radial-gradient(circle at 70% 22%, rgba(176, 122, 66, 0.2), transparent 22%),
    radial-gradient(circle at 28% 14%, rgba(72, 84, 71, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 233, 223, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero__glow {
  position: absolute;
  inset: 12% 14% 20% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.04) 72%);
  filter: blur(20px);
}

.hero__visual {
  position: absolute;
  inset: 76px 42px 150px;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero__visual img {
  width: min(100%, 760px);
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(17, 21, 24, 0.18));
  animation: float-drift 7s ease-in-out infinite;
}

.hero__badge,
.hero__spec-card {
  position: absolute;
  border: 1px solid rgba(23, 26, 28, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--rm-shadow-lg);
  backdrop-filter: blur(14px);
}

.hero__badge {
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 16px 18px;
}

.hero__badge span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rm-bronze-deep);
}

.hero__badge strong {
  font-size: 1rem;
}

.hero__badge--top {
  top: 34px;
  left: 28px;
}

.hero__badge--bottom {
  right: 32px;
  bottom: 180px;
}

.hero__spec-card {
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px 26px;
}

.hero__spec-card h2,
.section-heading h2,
.editorial-panel h2,
.product-spotlight__content h2,
.spec-sheet h2,
.cta-banner h2,
.entry-title,
.shop-header h1,
.woocommerce div.product .product_title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.hero__price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  margin: 10px 0 14px;
  color: var(--rm-bronze-deep);
  font-size: 1.56rem;
  font-weight: 700;
}

.hero__product-copy {
  max-width: 50ch;
}

.trust-bar {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.media-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  padding: 18px;
}

.media-gallery__stack {
  display: grid;
  gap: 18px;
}

.media-frame {
  position: relative;
  min-height: 260px;
  border-radius: calc(var(--rm-radius-xxl) - 8px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--rm-shadow-lg);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(17, 21, 24, 0.08));
}

.media-gallery__lead {
  min-height: 640px;
}

.media-gallery__tile {
  min-height: 200px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-bar__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-bar__list li {
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 26, 28, 0.08);
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-weight: 700;
  color: var(--rm-ink-soft);
}

.section-shell,
.faq-section,
.entry-card {
  padding: clamp(28px, 4vw, 42px);
}

.section-shell--tight {
  padding-top: 26px;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.section-heading--compact h2 {
  max-width: 14ch;
}

.section-heading h2,
.editorial-panel h2,
.product-spotlight__content h2,
.spec-sheet h2,
.cta-banner h2 {
  margin-top: 10px;
}

.pillar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.pillar-card,
.scenario-card,
.faq-item {
  border-radius: var(--rm-radius-lg);
  border: 1px solid rgba(23, 26, 28, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--rm-shadow-md);
}

.pillar-card {
  padding: 24px;
}

.pillar-card h3,
.scenario-card h3 {
  margin: 10px 0 12px;
  font-size: 1.55rem;
}

.editorial-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 18px;
  padding: clamp(24px, 3vw, 30px);
}

.editorial-panel__intro,
.editorial-panel__quote {
  padding: clamp(18px, 2vw, 28px);
  border-radius: calc(var(--rm-radius-xxl) - 10px);
}

.editorial-panel__intro {
  background: rgba(255, 255, 255, 0.42);
}

.editorial-panel__quote {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(22, 25, 28, 0.92), rgba(60, 65, 70, 0.86)),
    rgba(22, 25, 28, 0.9);
  color: #fff;
}

.editorial-panel__quote p {
  max-width: 22ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Baskerville, "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.scenario-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.scenario-card {
  min-height: 320px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.scenario-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.92;
}

.scenario-card--media {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.scenario-card--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 21, 24, 0.08), rgba(17, 21, 24, 0.72));
}

.scenario-card--media .scenario-card__label,
.scenario-card--media h3,
.scenario-card--media p {
  color: #fff;
}

.scenario-card > * {
  position: relative;
  z-index: 2;
}

.scenario-card--stone::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.84), transparent 26%),
    linear-gradient(145deg, rgba(250, 243, 235, 0.96), rgba(229, 220, 208, 0.92));
}

.scenario-card--bronze::before {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.3), transparent 22%),
    linear-gradient(145deg, rgba(195, 145, 84, 0.96), rgba(133, 91, 47, 0.98));
}

.scenario-card--ink::before {
  background:
    radial-gradient(circle at 72% 20%, rgba(176, 122, 66, 0.3), transparent 24%),
    linear-gradient(145deg, rgba(28, 33, 38, 0.96), rgba(58, 66, 74, 0.94));
}

.scenario-card--bronze .scenario-card__label,
.scenario-card--ink .scenario-card__label,
.scenario-card--ink h3,
.scenario-card--ink p,
.scenario-card--bronze h3,
.scenario-card--bronze p {
  color: #fff;
}

.specs-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: clamp(24px, 3vw, 30px);
}

.product-spotlight,
.spec-sheet {
  padding: clamp(18px, 2vw, 26px);
  border-radius: calc(var(--rm-radius-xxl) - 8px);
  background: rgba(255, 255, 255, 0.48);
}

.product-spotlight {
  display: grid;
  gap: 22px;
}

.product-spotlight__media {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 76% 16%, rgba(176, 122, 66, 0.18), transparent 20%),
    radial-gradient(circle at 20% 22%, rgba(72, 84, 71, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 233, 223, 0.86));
}

.product-spotlight__media img {
  width: min(100%, 540px);
  filter: drop-shadow(0 22px 30px rgba(17, 21, 24, 0.14));
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rm-bronze), var(--rm-bronze-deep));
  box-shadow: 0 0 0 6px var(--rm-bronze-soft);
}

.spec-sheet__rows {
  margin-top: 24px;
  border-radius: 22px;
  border: 1px solid rgba(23, 26, 28, 0.08);
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.spec-sheet__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(23, 26, 28, 0.08);
}

.spec-sheet__row:last-child {
  border-bottom: 0;
}

.spec-sheet__row strong {
  max-width: 48%;
  text-align: right;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  list-style: none;
}

.faq-item p {
  padding: 0 22px 22px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.84);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  background:
    radial-gradient(circle at right center, rgba(176, 122, 66, 0.36), transparent 24%),
    linear-gradient(135deg, rgba(16, 19, 22, 0.98), rgba(58, 64, 70, 0.92));
  color: #fff;
}

.cta-banner .section-kicker,
.cta-banner h2 {
  color: #fff;
}

.site-footer {
  padding: 0 0 42px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 30px 0 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.entry-card .entry-title {
  margin-bottom: 18px;
}

.entry-content h2,
.entry-content h3 {
  margin: 28px 0 12px;
  font-size: 1.6rem;
}

.entry-content ul {
  padding-left: 20px;
  list-style: disc;
}

.entry-content a {
  color: var(--rm-bronze-deep);
}

.shop-header {
  margin-bottom: 22px;
  padding: 26px 30px;
}

.shop-shell {
  padding: 28px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(23, 26, 28, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(246, 239, 231, 0.76));
  box-shadow: var(--rm-shadow-md);
}

.woocommerce ul.products li.product a img,
.woocommerce div.product div.images img {
  border-radius: 24px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(176, 122, 66, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 235, 226, 0.88));
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.34rem;
}

.woocommerce ul.products li.product a.button {
  width: 100%;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 34px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto;
  float: none;
}

.woocommerce div.product div.summary {
  padding: 14px 0;
}

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

.woocommerce .quantity .qty {
  min-width: 88px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(23, 26, 28, 0.14);
  background: #fff;
}

.woocommerce .woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce .woocommerce-tabs ul.tabs::before {
  border-bottom-color: rgba(23, 26, 28, 0.12);
}

.woocommerce .woocommerce-tabs ul.tabs li {
  border-radius: 16px 16px 0 0;
}

.woocommerce .woocommerce-tabs ul.tabs li a {
  color: var(--rm-ink-soft);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce nav.woocommerce-pagination ul {
  color: var(--rm-ink-soft);
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
  border-color: rgba(23, 26, 28, 0.12);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 0 22px;
  padding: 16px 20px 16px 48px;
}

.woocommerce table.shop_table,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-cart table.cart img {
  border-radius: 16px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 46px;
  border: 1px solid rgba(23, 26, 28, 0.14);
  background: #fff;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
  width: 100%;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review_heading {
  margin-bottom: 22px;
}

.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-cart .cart_totals {
  padding: 24px;
}

.woocommerce form .show-password-input,
.woocommerce-account .addresses .title .edit {
  color: var(--rm-bronze-deep);
}

.screen-reader-text,
.woocommerce-products-header {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1120px) {
  .hero,
  .media-gallery,
  .editorial-panel,
  .specs-showcase,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .hero__stage {
    min-height: 660px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .site-nav .menu {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__metrics,
  .pillar-grid,
  .scenario-grid,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__copy h1 {
    max-width: 12ch;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-main,
  .site-header__inner,
  .site-footer__grid {
    width: min(100vw - 24px, 1260px);
  }

  .site-main {
    padding-top: 28px;
  }

  .hero,
  .trust-bar,
  .media-gallery,
  .section-shell,
  .editorial-panel,
  .specs-showcase,
  .faq-section,
  .cta-banner,
  .entry-card,
  .shop-shell,
  .shop-header {
    border-radius: 28px;
  }

  .hero__copy h1,
  .hero__spec-card h2,
  .section-heading h2,
  .editorial-panel h2,
  .product-spotlight__content h2,
  .spec-sheet h2,
  .cta-banner h2,
  .entry-title,
  .shop-header h1,
  .woocommerce div.product .product_title {
    font-size: 2.4rem;
  }

  .hero__metrics,
  .pillar-grid,
  .scenario-grid,
  .site-footer__grid,
  .trust-bar__list {
    grid-template-columns: 1fr;
  }

  .media-gallery__lead {
    min-height: 320px;
  }

  .site-header__actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding: 16px;
  }

  .hero__copy {
    padding: 10px;
  }

  .hero__stage {
    min-height: 600px;
  }

  .hero__visual {
    inset: 74px 18px 200px;
  }

  .hero__badge {
    min-width: 0;
    width: calc(100% - 36px);
  }

  .hero__badge--top {
    top: 16px;
    left: 18px;
  }

  .hero__badge--bottom {
    right: 18px;
    bottom: 190px;
  }

  .hero__spec-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
  }

  .spec-sheet__row {
    flex-direction: column;
  }

  .spec-sheet__row strong {
    max-width: none;
    text-align: left;
  }
}
