:root {
  --red: #ed2b2b;
  --red-dark: #c71919;
  --ink: #232326;
  --muted: #62646a;
  --line: #e5e5e7;
  --soft: #f6f4f1;
  --dark: #171717;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(27, 27, 30, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 8px;
}

.brand img {
  display: block;
  width: min(225px, 46vw);
  height: auto;
}

.desktop-nav,
.header-actions,
.hero-actions,
.filters {
  display: flex;
  align-items: center;
  gap: 12px;
}

.desktop-nav {
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 800;
}

.desktop-nav a,
.site-footer a {
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--red);
}

.button {
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.92rem;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(237, 43, 43, 0.24);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.ghost,
.button.glass {
  background: #fff;
  border-color: var(--line);
}

.button.glass {
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
}

.button.large {
  min-height: 52px;
  padding: 0 24px;
}

.outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  place-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 16px 16px;
  background: #fff;
}

.mobile-nav a {
  display: block;
  padding: 13px 6px;
  font-weight: 800;
  text-decoration: none;
}

.home-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: #fff;
  background: #1b1713;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.28)),
    url("/images/hero-thermos.png") center / cover no-repeat;
  transform: scale(1.02);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -3vw;
  right: -3vw;
  bottom: -72px;
  height: 150px;
  background: #fff;
  transform: rotate(-3.2deg);
  transform-origin: left top;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 560px) 180px;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 52px 0 100px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.9rem, 6.1vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 20px 0 0;
  max-width: 540px;
  font-size: 1.22rem;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.material-pills {
  display: grid;
  gap: 12px;
}

.material-pills span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  font-weight: 900;
  padding: 0 18px;
}

.material-pills img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.service-overlap {
  position: relative;
  z-index: 3;
  margin-top: -70px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-grid article {
  min-height: 154px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.service-grid h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.service-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-grid a,
.section-title-line a,
.contact-final a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.service-grid a {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
}

.service-icon {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.section {
  padding: 56px 0;
}

.product-section {
  padding-top: 30px;
}

.section-title-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-title-line h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.12;
}

.section-title-line span,
.red-line {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  background: var(--red);
}

.filters {
  flex-wrap: wrap;
  margin: 0 0 18px;
}

.filters button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.filters button.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(33, 33, 36, 0.12);
}

.product-card[hidden] {
  display: none;
}

.product-image {
  width: 100%;
  min-height: 168px;
  display: block;
  border: 0;
  border-radius: 0;
  background: url("/images/laser-process.png") center / cover no-repeat;
  cursor: zoom-in;
}

.product-1 { background-position: 30% 50%; }
.product-2 { background-position: 45% 45%; }
.product-3 { background-position: 62% 45%; }
.product-4 { background-position: 74% 50%; }
.product-5 { background-position: 84% 50%; }

.product-meta {
  position: relative;
  min-height: 74px;
  padding: 12px 48px 12px 14px;
}

.product-meta strong,
.product-meta small {
  display: block;
}

.product-meta strong {
  line-height: 1.15;
}

.product-meta small {
  margin-top: 4px;
  color: var(--muted);
}

.product-meta button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  font-size: 1.2rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dots[hidden] {
  display: none;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d5d5d7;
  cursor: pointer;
}

.slider-dots .active {
  background: var(--red);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.82);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #f4f4f5;
}

.lightbox-text {
  padding: 2px 6px 4px;
}

.lightbox-text h2 {
  margin: 0;
  font-size: 1.25rem;
}

.lightbox-text p {
  margin: 4px 0 0;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 42px 0 62px;
}

.process-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36%;
  height: 76%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18)),
    url("/images/laser-process.png") center / cover no-repeat;
  clip-path: polygon(22% 12%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.85;
  pointer-events: none;
}

.process-grid {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-grid article {
  position: relative;
}

.process-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 18px #f0f0f1;
}

.process-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.process-grid h3 {
  margin: 0;
  font-size: 1.12rem;
}

.process-grid p {
  margin: 8px 0 0;
  color: #4e5157;
  font-size: 0.92rem;
}

.business-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #171717;
}

.business-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.68)),
    url("/images/laser-process.png") right center / cover no-repeat;
  opacity: 0.95;
}

.business-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 210px;
  padding: 42px 0;
}

.business-content > div,
.business-content article {
  padding: 14px 0;
}

.business-content article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 26px;
}

.business-content h2 {
  margin: 0;
  max-width: 410px;
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  line-height: 1.12;
}

.business-content p {
  color: rgba(255, 255, 255, 0.78);
}

.business-icon {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 10px;
}

.contact-final {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.contact-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 31%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(255, 255, 255, 0.08)),
    url("/images/laser-process.png") center / cover no-repeat;
  clip-path: ellipse(92% 78% at 0% 54%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1280px, calc(100% - 48px));
  grid-template-columns: minmax(470px, 0.95fr) minmax(560px, 1.15fr);
  gap: 56px;
  align-items: center;
  min-height: 380px;
  padding: 48px 0;
}

.contact-copy {
  padding-left: 270px;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.contact-form-stack {
  display: grid;
  gap: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0;
}

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

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.check-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-line input {
  width: auto;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8d9dc;
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(237, 43, 43, 0.16);
  border-color: var(--red);
}

.validation {
  color: var(--red-dark);
  font-weight: 800;
}

.form-success {
  padding: 13px 15px;
  border-radius: var(--radius);
  background: #edf8ef;
  color: #236b33;
  font-weight: 800;
}

.contact-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-weight: 900;
}

.contact-benefits span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
}

.site-footer {
  padding: 34px 0 22px;
  border-top: 1px solid var(--line);
  background: #f6f6f7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer p {
  color: var(--muted);
}

.site-footer div:nth-child(3) a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 70vh;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.admin-shell.narrow {
  width: min(760px, calc(100% - 32px));
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.admin-head h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-home-link {
  display: inline-block;
  text-decoration: none;
}

.admin-home-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.admin-tile,
.admin-panel,
.admin-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-tile {
  display: block;
  padding: 24px;
  text-decoration: none;
}

.admin-tile span {
  color: var(--red);
  font-weight: 900;
}

.admin-tile strong {
  display: block;
  margin: 8px 0;
  font-size: 1.4rem;
}

.admin-tile p {
  color: var(--muted);
}

.admin-panel {
  margin-top: 24px;
  padding: 24px;
}

.admin-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.content-editor {
  gap: 22px;
}

.content-block-editor {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-block-editor legend {
  padding: 0 8px;
  color: var(--red);
  font-weight: 900;
}

.admin-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.admin-media-row > div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.admin-media-row img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
}

.admin-media-row .icon-preview {
  width: 92px;
  height: 92px;
}

.admin-media-row small {
  color: var(--muted);
  word-break: break-all;
}

.admin-stack {
  display: grid;
  gap: 20px;
}

.category-picker {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.category-picker legend {
  padding: 0 8px;
  font-weight: 900;
}

.admin-list-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.admin-thumb {
  width: 120px;
  height: 82px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions form {
  margin: 0;
}

.button.danger {
  color: var(--red);
}

.admin-category-list {
  display: grid;
  gap: 10px;
}

.admin-category-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.admin-table-panel {
  display: grid;
  gap: 18px;
}

.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-section-head h2,
.admin-section-head p {
  margin: 0;
}

.admin-section-head p {
  color: var(--muted);
}

.admin-section-head.compact {
  margin-bottom: 4px;
}

.inline-editor {
  border-color: rgba(237, 43, 43, 0.26);
  box-shadow: 0 12px 32px rgba(237, 43, 43, 0.08);
}

.admin-upload-preview {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-upload-preview img {
  width: 140px;
  height: 92px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-upload-preview small {
  color: var(--muted);
  word-break: break-all;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

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

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small {
  max-width: 360px;
  margin-top: 3px;
  color: var(--muted);
}

.admin-table tr.is-selected td {
  background: rgba(237, 43, 43, 0.06);
}

.admin-table-thumb,
.admin-table-icon,
.admin-table-placeholder {
  width: 62px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f5f6;
}

.admin-table-thumb {
  object-fit: cover;
}

.admin-table-icon {
  object-fit: contain;
  padding: 6px;
}

.actions-col {
  width: 112px;
}

.icon-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-actions form {
  margin: 0;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--red);
  color: var(--red);
}

.icon-button.primary-icon {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(237, 43, 43, 0.22);
}

.icon-button.danger {
  color: var(--red);
}

.admin-two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.request-list {
  display: grid;
  gap: 14px;
}

.request-list article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.request-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.request-list p {
  margin: 0;
}

.request-list.compact {
  max-height: 620px;
  overflow: auto;
}

@media (max-width: 1050px) {
  .product-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .business-content,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .contact-copy {
    padding-left: 160px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav.open {
    display: block;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .material-pills {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-grid,
  .process-grid,
  .admin-grid,
  .admin-two-col,
  .admin-media-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    grid-template-columns: 64px 1fr;
  }

  .process-section::after,
  .contact-image {
    display: none;
  }

  .process-grid {
    width: 100%;
  }

  .business-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .business-content article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
  }

  .contact-copy {
    padding-left: 0;
  }

}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 82px;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .brand img {
    width: min(220px, 62vw);
  }

  .home-hero,
  .hero-stage {
    min-height: auto;
  }

  .hero-stage {
    width: 100%;
    min-width: 0;
    gap: 26px;
    padding: 46px 12px 92px;
  }

  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 11vw, 2.7rem);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .material-pills {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .material-pills span {
    min-width: 0;
    padding: 0 12px;
    font-size: 0.95rem;
  }

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

  .product-card {
    width: 100%;
    max-width: 100%;
  }

  .product-meta {
    min-height: 0;
    padding: 16px 58px 18px 16px;
  }

  .product-meta strong {
    font-size: 1.1rem;
    overflow-wrap: break-word;
  }

  .product-meta small {
    overflow-wrap: break-word;
  }

  .product-rail,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-title-line {
    align-items: start;
    flex-direction: column;
  }

  .section-title-line a {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .service-overlap {
    margin-top: -54px;
  }

  .service-grid {
    gap: 14px;
  }

  .service-grid article,
  .contact-form,
  .admin-form,
  .admin-panel {
    padding: 18px;
  }

  .product-image {
    min-height: 210px;
  }

  .admin-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
