:root {
  --ink: #17130f;
  --coal: #241f19;
  --paper: #f5f0e7;
  --paper-2: #ebe5d8;
  --white: #fffdf8;
  --line: #2b251f;
  --hairline: #d5ccbd;
  --muted: #6f675c;
  --wine: #8d2f27;
  --wine-dark: #681f1b;
  --olive: #646b4b;
  --brass: #b98235;
  --steel: #7d7a72;
  --shadow: 10px 10px 0 rgba(23, 19, 15, 0.18);
  --soft-shadow: 0 24px 70px rgba(23, 19, 15, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

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

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

p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

table {
  border-collapse: collapse;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 240, 231, 0.93);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 30px rgba(23, 19, 15, 0.12);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.brand img {
  width: 118px;
  height: auto;
  filter: grayscale(1) contrast(1.25);
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid rgba(23, 19, 15, 0.24);
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--coal);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--wine-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

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

.button,
.button-secondary,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--wine);
}

.button:hover {
  background: var(--wine-dark);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 rgba(100, 107, 75, 0.34);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--olive);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button-light {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.button-light:hover {
  color: var(--ink);
  background: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(255, 253, 248, 0.24);
}

.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease, filter 900ms ease;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.88), rgba(23, 19, 15, 0.56) 48%, rgba(23, 19, 15, 0.12)),
    linear-gradient(0deg, rgba(23, 19, 15, 0.8), rgba(23, 19, 15, 0.08) 54%);
}

.hero:hover > img,
.page-hero:hover > img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(0.92);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.58fr);
  gap: 48px;
  align-items: end;
}

.eyebrow {
  color: var(--brass);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 790px;
  margin-top: 18px;
  font-size: 76px;
  font-weight: 700;
}

.hero p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 0 0 0 6px rgba(100, 107, 75, 0.16);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  border-top: 2px solid var(--ink);
}

.hero-metric {
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
}

.hero-metric:nth-child(2n) {
  border-right: 0;
}

.hero-metric strong {
  display: block;
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
}

.hero-metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.metric {
  min-height: 128px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease, color 180ms ease;
}

.metric:hover {
  background: var(--ink);
  color: var(--white);
}

.metric strong {
  display: block;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.78;
}

.section {
  padding: 94px 0;
}

.section.tight {
  padding: 68px 0;
}

.section.alt {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.dark p {
  color: rgba(255, 253, 248, 0.7);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.48fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.section.dark .section-head {
  border-color: rgba(255, 253, 248, 0.26);
}

.section-head.center {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-head.center p {
  margin: 14px auto 0;
}

.section-head h2 {
  margin-top: 10px;
  font-size: 48px;
}

.section-head p {
  max-width: 560px;
  font-size: 17px;
}

.product-grid,
.blog-grid,
.value-grid,
.spec-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

.product-grid.four .product-card:first-child {
  grid-column: span 2;
}

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

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

.contact-grid.two {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: start;
}

.product-card,
.blog-card,
.value-card,
.spec-card,
.contact-card,
.side-panel,
.contact-form {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.product-card,
.blog-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.product-card:hover,
.blog-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow);
}

.product-card > a,
.blog-card > a {
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.product-card img,
.blog-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 420ms ease, filter 420ms ease;
}

.product-grid.four .product-card:first-child img {
  height: 260px;
}

.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.08);
}

.product-card-body,
.blog-card-body {
  padding: 24px;
}

.product-card h2,
.product-card h3,
.blog-card h2,
.blog-card h3,
.value-card h3,
.spec-card h3,
.contact-card h3 {
  font-size: 22px;
}

.product-card p,
.blog-card p,
.value-card p,
.spec-card p,
.contact-card p {
  margin-top: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag,
.category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.category {
  border-color: var(--wine-dark);
  background: rgba(141, 47, 39, 0.09);
  color: var(--wine-dark);
}

.card-link {
  position: relative;
  display: inline-flex;
  margin-top: 18px;
  color: var(--wine-dark);
  font-weight: 900;
}

.card-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.card-link:hover::after {
  transform: scaleX(1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.split-media,
.feature-media {
  position: relative;
}

.split-media::before,
.feature-media::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--ink);
  z-index: 0;
}

.split-media img,
.feature-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  object-fit: cover;
}

.split-media img {
  aspect-ratio: 4 / 3;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.82fr);
  gap: 44px;
  align-items: center;
}

.feature-copy h2,
.split-copy h2 {
  margin-top: 10px;
  font-size: 44px;
}

.feature-copy p,
.split-copy p {
  margin-top: 16px;
  font-size: 17px;
}

.feature-media img {
  aspect-ratio: 16 / 10;
}

.spec-table {
  width: 100%;
  margin-top: 24px;
  border: 2px solid var(--ink);
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius);
}

.spec-table th,
.spec-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
  text-align: left;
}

.spec-table th {
  width: 38%;
  color: var(--ink);
  background: var(--paper-2);
  font-size: 13px;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--coal);
}

.section.dark .spec-table {
  border-color: rgba(255, 253, 248, 0.72);
  background: #211b16;
}

.section.dark .spec-table th {
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
}

.section.dark .spec-table td {
  color: rgba(255, 253, 248, 0.76);
  border-color: rgba(255, 253, 248, 0.16);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--coal);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 4px rgba(141, 47, 39, 0.13);
}

.section.dark .check-list li {
  color: rgba(255, 253, 248, 0.78);
}

.value-card,
.spec-card,
.contact-card {
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.value-card {
  border-top: 8px solid var(--wine);
}

.value-card:nth-child(2n),
.spec-card:nth-child(2n) {
  border-top-color: var(--olive);
}

.value-card:hover,
.spec-card:hover,
.contact-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button.active,
.filter-button:hover {
  color: var(--white);
  background: var(--wine-dark);
  transform: translateY(-2px);
}

.page-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 104px 0 74px;
}

.page-hero h1 {
  max-width: 930px;
  font-size: 64px;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 19px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.article-body {
  min-width: 0;
  padding: 0 0 2px;
}

.article-body > img.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}

.article-body h2 {
  margin-top: 36px;
  font-size: 34px;
}

.article-body h2:first-of-type {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 28px;
  font-size: 23px;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-top: 16px;
  color: var(--coal);
}

.article-body p {
  font-size: 17px;
}

.article-body li + li {
  margin-top: 8px;
}

.side-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.side-panel h2 {
  font-size: 23px;
}

.side-panel p {
  margin-top: 12px;
}

.side-panel dl {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.side-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.side-panel dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.contact-form {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--coal);
  font-size: 13px;
  font-weight: 900;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(141, 47, 39, 0.28);
  transform: translate(-1px, -1px);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
}

.footer-grid img {
  width: 126px;
  height: auto;
  margin-bottom: 16px;
  filter: grayscale(1) invert(1) brightness(1.25);
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  display: block;
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
}

.footer-grid a {
  margin-top: 9px;
}

.footer-grid a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  color: rgba(255, 253, 248, 0.52);
  font-size: 13px;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 1080px) {
  .product-grid.four,
  .blog-grid,
  .value-grid,
  .spec-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid.four .product-card:first-child {
    grid-column: span 1;
  }

  .hero-grid,
  .split,
  .feature-band,
  .contact-grid.two,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .hero h1 {
    font-size: 62px;
  }

  .section-head h2,
  .feature-copy h2,
  .split-copy h2 {
    font-size: 40px;
  }
}

@media (max-width: 780px) {
  .container,
  .nav,
  .hero-grid {
    width: min(100% - 32px, 100%);
  }

  .nav {
    min-height: 66px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-grid {
    padding: 74px 0 44px;
    align-items: center;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button,
  .button-secondary,
  .button-light {
    width: 100%;
    max-width: 100%;
  }

  .hero-panel,
  .product-card,
  .blog-card,
  .value-card,
  .spec-card,
  .contact-card,
  .side-panel,
  .contact-form {
    min-width: 0;
  }

  .hero-metrics,
  .metrics-strip,
  .product-grid.four,
  .blog-grid,
  .value-grid,
  .spec-grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-card img,
  .blog-card img,
  .product-grid.four .product-card:first-child img {
    height: 204px;
  }

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

  .filter-button {
    width: 100%;
    white-space: normal;
  }

  .spec-table {
    display: block;
    overflow-x: auto;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-head h2,
  .feature-copy h2,
  .split-copy h2,
  .article-body h2 {
    font-size: 34px;
  }

  .page-hero {
    min-height: 400px;
  }

  .page-hero .container {
    padding: 84px 0 50px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container,
  .nav,
  .hero-grid {
    width: calc(100% - 32px);
  }

  .hero p,
  .page-hero p {
    max-width: 100%;
    font-size: 17px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero-metric strong,
  .metric strong {
    font-size: 28px;
  }

  .product-card h2,
  .product-card h3,
  .blog-card h2,
  .blog-card h3,
  .value-card h3,
  .spec-card h3,
  .contact-card h3 {
    font-size: 19px;
    line-height: 1.15;
  }

  .product-card-body,
  .blog-card-body,
  .value-card,
  .spec-card,
  .contact-card,
  .side-panel,
  .contact-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
