:root {
  --ink: #171b20;
  --muted: #626b73;
  --line: rgba(54, 65, 75, 0.18);
  --paper: #d8d6ce;
  --white: #fff9ec;
  --steel: #aeb4bb;
  --blue: #647c91;
  --amber: #bd7847;
  --graphite: #3f4852;
  --dark: #1b222a;
  --panel: rgba(246, 240, 222, 0.86);
  --panel-solid: #f2ecd8;
  --shadow: 0 28px 82px rgba(23, 27, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(56, 66, 77, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 66, 77, 0.04) 1px, transparent 1px),
    linear-gradient(118deg, rgba(189, 120, 71, 0.1) 0 15%, transparent 15% 42%, rgba(100, 124, 145, 0.13) 42% 66%, transparent 66%),
    linear-gradient(135deg, #dad8cf 0%, #eee7d4 36%, #cfd4d6 72%, #efe3ca 100%);
  background-size: 54px 54px, 54px 54px, auto, auto;
  content: "";
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

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

ul {
  margin: 0;
  padding: 0;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--amber), #d8b18c);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(54, 65, 75, 0.16);
  background: linear-gradient(90deg, rgba(239, 235, 220, 0.92), rgba(217, 221, 224, 0.9));
  box-shadow: 0 12px 38px rgba(23, 27, 32, 0.1);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 1px solid rgba(54, 65, 75, 0.18);
  background: #f5eedb;
  box-shadow: 0 10px 24px rgba(23, 27, 32, 0.08);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #343e48;
  font-size: 13px;
}

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

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(54, 65, 75, 0.2);
  border-radius: 6px;
  background: rgba(246, 240, 222, 0.72);
  color: var(--ink);
  cursor: pointer;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(23, 27, 32, 0.16);
  border-radius: 6px;
  background: linear-gradient(135deg, #202832, #657384);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  background: linear-gradient(135deg, #bd7847, #d09a67);
  border-color: var(--amber);
  box-shadow: 0 16px 34px rgba(115, 74, 45, 0.22);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(246, 240, 222, 0.58);
  color: #263440;
}

.btn-secondary:hover {
  background: var(--amber);
  color: var(--white);
}

.btn-light {
  border-color: rgba(255, 249, 236, 0.58);
  background: rgba(246, 240, 222, 0.92);
  color: #171b20;
}

.btn-light:hover {
  border-color: var(--amber);
  background: var(--amber);
}

.hero {
  position: relative;
  min-height: 690px;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, rgba(18, 24, 30, 0.84), rgba(47, 60, 73, 0.55) 48%, rgba(159, 96, 52, 0.22) 100%),
    linear-gradient(180deg, rgba(18, 24, 30, 0.1), rgba(18, 24, 30, 0.42));
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent, rgba(18, 24, 30, 0.74)),
    linear-gradient(90deg, transparent, rgba(189, 120, 71, 0.16), transparent);
  content: "";
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04) brightness(1.02);
  transform: scale(1.02);
}

.hero-inner {
  display: grid;
  align-content: center;
  min-height: 690px;
  padding: 86px 0 130px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding-left: 58px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  margin-left: -58px;
  margin-right: 16px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  content: "";
}

.hero h1 {
  max-width: 1000px;
  font-size: 70px;
  text-transform: none;
}

.hero-line {
  display: block;
}

.hero-copy {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.hero-specs {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 28px;
  left: max(20px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 249, 236, 0.18);
  border-radius: 8px;
  background: rgba(18, 24, 30, 0.3);
  box-shadow: 0 22px 70px rgba(18, 24, 30, 0.22);
  backdrop-filter: blur(12px);
  color: var(--white);
  overflow: hidden;
}

.hero-specs div {
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 249, 236, 0.12);
}

.hero-specs div:last-child {
  border-right: 0;
}

.hero-specs strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.hero-specs span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-white {
  background:
    linear-gradient(180deg, rgba(255, 249, 236, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(239, 235, 219, 0.88), rgba(213, 218, 222, 0.9));
}

.section-steel {
  background:
    linear-gradient(118deg, rgba(189, 120, 71, 0.09) 0 19%, transparent 19% 55%, rgba(100, 124, 145, 0.1) 55%),
    linear-gradient(135deg, rgba(215, 218, 222, 0.92), rgba(238, 232, 209, 0.86));
}

.section-dark {
  background: linear-gradient(135deg, #1b222a, #4d5965);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.52fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-head h2,
.page-title h1 {
  font-size: 52px;
  text-transform: none;
}

.section-head p,
.page-title p {
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-head p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

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

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

.product-card,
.blog-card,
.info-card,
.contact-card,
.stat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 249, 236, 0.72), rgba(224, 224, 220, 0.46)),
    var(--panel);
  box-shadow: 0 1px 0 rgba(255, 249, 236, 0.62) inset, 0 16px 46px rgba(23, 27, 32, 0.1);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.product-card::before,
.blog-card::before,
.info-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 249, 236, 0.4), rgba(100, 124, 145, 0.12) 42%, transparent 64%);
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.product-card:hover,
.blog-card:hover,
.info-card:hover,
.contact-card:hover {
  border-color: rgba(189, 120, 71, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 249, 236, 0.84), rgba(229, 226, 217, 0.58)),
    rgba(246, 240, 222, 0.94);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card:hover::before,
.blog-card:hover::before,
.info-card:hover::before {
  opacity: 1;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card img,
.blog-card img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.92) contrast(1.04) brightness(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.product-card:hover img,
.blog-card:hover img {
  filter: saturate(0.98) contrast(1.04) brightness(1.04);
  transform: scale(1.026);
}

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

.product-card h3,
.blog-card h2,
.blog-card h3,
.info-card h3,
.contact-card h3 {
  font-size: 22px;
  text-transform: none;
}

.product-card p,
.blog-card p,
.info-card p,
.contact-card p,
.spec-table td,
.spec-table th {
  color: var(--muted);
}

.product-card p,
.blog-card p,
.info-card p {
  margin-top: 12px;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(97, 111, 127, 0.22);
  border-radius: 999px;
  color: #465564;
  background: rgba(225, 225, 218, 0.76);
  font-size: 11px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #96613f;
  font-weight: 800;
  transition: gap 200ms ease, color 200ms ease;
}

.text-link::after {
  content: "→";
  color: var(--amber);
}

.text-link:hover {
  gap: 14px;
  color: #3f4d5b;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: 46px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 0.92fr);
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.image-panel:hover img {
  filter: saturate(1) contrast(1.03) brightness(1.04);
  transform: scale(1.026);
}

.copy-block h2 {
  font-size: 46px;
  text-transform: none;
}

.copy-block p {
  margin-top: 18px;
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #37424d;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

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

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.metric {
  min-height: 138px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 249, 236, 0.6), rgba(214, 217, 221, 0.38)),
    rgba(246, 240, 222, 0.78);
  transition: background 240ms ease, transform 240ms ease;
}

.metric:hover {
  background:
    linear-gradient(145deg, rgba(255, 249, 236, 0.78), rgba(214, 217, 221, 0.5)),
    rgba(246, 240, 222, 0.94);
  transform: translateY(-3px);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 92px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(118deg, rgba(189, 120, 71, 0.11) 0 18%, transparent 18% 62%, rgba(100, 124, 145, 0.13) 62%),
    linear-gradient(135deg, rgba(218, 219, 219, 0.92), rgba(241, 233, 207, 0.78));
}

.page-title {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.46fr);
  gap: 40px;
  align-items: end;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a {
  color: #96613f;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 222, 0.8);
  box-shadow: 0 14px 42px rgba(23, 27, 32, 0.08);
}

.spec-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

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

.spec-table th {
  background: rgba(209, 214, 217, 0.78);
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table td:first-child {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

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

.detail-layout > * {
  min-width: 0;
}

.sticky-box {
  position: sticky;
  top: 104px;
}

.inquiry-band {
  border-top: 1px solid rgba(255, 249, 236, 0.16);
  background:
    linear-gradient(118deg, rgba(189, 120, 71, 0.14) 0 18%, transparent 18% 54%, rgba(100, 124, 145, 0.1) 54%),
    linear-gradient(135deg, #1b222a, #596879);
  color: var(--white);
}

.inquiry-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 249, 236, 0.25);
  border-radius: 6px;
  background: rgba(255, 249, 236, 0.13);
  color: var(--ink);
  font: inherit;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.inquiry-band .field input,
.inquiry-band .field textarea,
.inquiry-band .field select {
  color: var(--white);
}

.section-white .field input,
.section-white .field textarea,
.section-white .field select {
  border-color: rgba(97, 111, 127, 0.22);
  background: rgba(246, 240, 222, 0.82);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(184, 116, 73, 0.76);
  background: rgba(255, 249, 236, 0.2);
  box-shadow: 0 0 0 3px rgba(184, 116, 73, 0.14);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.section-white .field input::placeholder,
.section-white .field textarea::placeholder {
  color: rgba(65, 72, 80, 0.52);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 249, 236, 0.13);
}

.section-white .contact-line {
  border-bottom-color: rgba(54, 65, 75, 0.16);
}

.contact-line span {
  color: var(--muted);
}

.contact-line strong,
.contact-line a {
  font-weight: 800;
}

.article-hero {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(1.02);
}

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article h1 {
  font-size: 58px;
  text-transform: none;
}

.article-meta {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.article-content {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.article-content h2 {
  margin-top: 18px;
  font-size: 28px;
  text-transform: none;
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.blog-card {
  overflow: hidden;
}

.blog-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.footer {
  padding: 52px 0 24px;
  background:
    linear-gradient(118deg, rgba(189, 120, 71, 0.1) 0 18%, transparent 18% 60%, rgba(100, 124, 145, 0.08) 60%),
    #1b222a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) repeat(3, minmax(150px, 0.34fr));
  gap: 32px;
}

.footer h3,
.footer h4 {
  font-size: 16px;
  text-transform: none;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer p {
  margin-top: 12px;
}

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

.footer a:hover {
  color: #d8a47d;
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.hidden-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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

@media (max-width: 920px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .mobile-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(239, 235, 220, 0.98);
    box-shadow: 0 20px 44px rgba(23, 27, 32, 0.11);
  }

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

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 30px;
  }

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

  .hero-specs {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(720px, calc(100% - 28px));
    margin: 0 auto;
    padding-bottom: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section,
  .section-tight {
    padding: 66px 0;
  }

  .section-head,
  .page-title,
  .split,
  .split.reverse,
  .inquiry-inner,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .sticky-box {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand-sub {
    display: none;
  }

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

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-specs {
    grid-template-columns: 1fr;
  }

  .hero-specs div {
    padding: 12px 0;
    border-right: 0;
  }

  .product-card img,
  .blog-card img {
    height: 210px;
  }

  .section-head h2,
  .page-title h1,
  .copy-block h2 {
    font-size: 32px;
  }

  .article h1 {
    font-size: 34px;
  }

  .contact-line {
    display: grid;
    gap: 4px;
  }
}
