﻿:root {
  --ink: #171412;
  --muted: #6f675f;
  --paper: #f8f4ec;
  --paper-2: #eee5d7;
  --line: rgba(23, 20, 18, 0.12);
  --brand: #d71920;
  --brand-deep: #8f1116;
  --steel: #25333a;
  --steel-soft: #dfe7e7;
  --gold: #b69a68;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(32, 24, 16, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --font-display: "Bodoni 72", "Didot", "Georgia", serif;
  --font-body: "Trebuchet MS", "Aptos", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 25, 32, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(182, 154, 104, 0.18), transparent 30rem),
    linear-gradient(135deg, #fbf8f1 0%, var(--paper) 46%, #e8eee9 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(23, 20, 18, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 18, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -1;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.9rem, 5.8vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 5rem);
}

h3 {
  font-size: 1.12rem;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 999;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(248, 244, 236, 0.78);
  box-shadow: 0 18px 60px rgba(24, 19, 14, 0.1);
  backdrop-filter: blur(22px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 70px rgba(24, 19, 14, 0.16);
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  padding: 3px;
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.12);
}

.brand span {
  display: grid;
  gap: 0.08rem;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  border-radius: 999px;
  color: rgba(23, 20, 18, 0.72);
  font-size: 0.9rem;
  padding: 0.68rem 0.92rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(560px, 1.32fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: center;
  min-height: calc(100svh - 88px);
  padding: clamp(2.8rem, 5vw, 4.8rem) 0 3rem;
}

.hero.page-shell {
  width: min(1320px, calc(100% - 40px));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::before,
.subhero::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(215, 25, 32, 0.35);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(26deg);
  z-index: -1;
}

.hero-copy::before {
  top: -58px;
  left: -58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--brand);
}

.hero-lede {
  width: min(650px, 100%);
  margin-top: 1.5rem;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.hero-lede.narrow {
  width: min(760px, 100%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  padding: 0.82rem 1.28rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(215, 25, 32, 0.28);
}

.button.ghost {
  border-color: rgba(23, 20, 18, 0.18);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: calc(var(--radius-lg) + 18px);
  background: linear-gradient(145deg, rgba(215, 25, 32, 0.22), rgba(182, 154, 104, 0.18), rgba(37, 51, 58, 0.12));
  z-index: -1;
}

.hero-media img,
.subhero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-media-wide {
  align-self: center;
}

.hero-media-wide img {
  background: rgba(255, 255, 255, 0.45);
}

.hero-card {
  position: absolute;
  right: -18px;
  bottom: 30px;
  width: min(225px, 58%);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(24, 19, 14, 0.18);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.9;
  margin: 0.35rem 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: 0 24px 70px rgba(24, 19, 14, 0.08);
}

.trust-strip article {
  background: rgba(255, 255, 255, 0.66);
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  margin-top: 0.6rem;
}

.section {
  padding: clamp(4.8rem, 9vw, 8.5rem) 0;
}

.split-section,
.two-column,
.evidence-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-section.reverse .section-copy {
  order: 2;
}

.section-copy p:not(.eyebrow),
.rich-copy p,
.form-heading p {
  font-size: 1.02rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.feature-list span,
.case-card li,
.check-grid li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--steel);
  padding: 0.6rem 0.88rem;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.92fr 0.72fr;
  gap: 1rem;
  align-items: end;
}

.image-stack img,
.gallery-mosaic img,
.equipment-strip img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-stack .wide {
  grid-column: 1 / -1;
  aspect-ratio: 18 / 7;
}

.image-stack img:not(.wide) {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 820px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-deep);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(6px);
}

.product-grid,
.values-grid,
.process-grid,
.case-grid,
.catalog-grid {
  display: grid;
  gap: 1rem;
}

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

.product-card,
.catalog-card,
.case-card,
.values-grid article,
.process-grid article,
.timeline-card,
.contact-panel,
.inquiry-form {
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(24, 19, 14, 0.08);
  backdrop-filter: blur(16px);
}

.product-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.1rem;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  border-radius: 24px;
  background: var(--white);
  object-fit: contain;
  padding: 0.8rem;
}

.product-card h3,
.case-card h2,
.catalog-card h2,
.values-grid h3,
.process-grid h3,
.timeline-card h3 {
  letter-spacing: -0.025em;
}

.evidence-band {
  background:
    linear-gradient(135deg, rgba(23, 20, 18, 0.92), rgba(37, 51, 58, 0.95)),
    url("assets/images/workshop-panorama.jpg") center / cover;
  color: var(--white);
}

.evidence-band h2,
.evidence-band h3,
.evidence-band p,
.evidence-band .eyebrow {
  color: var(--white);
}

.evidence-band p {
  opacity: 0.78;
}

.evidence-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.evidence-cards article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.evidence-cards img {
  width: 100%;
  height: 220px;
  border-radius: 24px;
  background: var(--white);
  object-fit: contain;
  padding: 0.8rem;
  margin-bottom: 1rem;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(4rem, 7vw, 6rem);
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.1), rgba(255, 255, 255, 0.64)),
    var(--white);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.cta-section h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.subhero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 58svh;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}

.subhero::before {
  top: 70px;
  left: -40px;
}

.subhero-image {
  aspect-ratio: 1 / 0.9;
}

.product-hero .subhero-image,
.case-hero .subhero-image {
  background: var(--white);
  object-fit: contain;
  padding: 1rem;
}

.contact-hero .subhero-image {
  aspect-ratio: 4 / 3;
}

.two-column {
  align-items: start;
}

.rich-copy {
  display: grid;
  gap: 1rem;
}

.timeline-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 0;
}

.timeline-card {
  padding: 1.5rem;
}

.timeline-card span,
.catalog-card span,
.process-grid span,
.case-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--brand-deep);
  font-weight: 800;
  margin-bottom: 1rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1rem;
}

.gallery-mosaic img:first-child {
  grid-row: span 2;
  height: 100%;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 210px;
}

.values-grid,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid article,
.process-grid article {
  padding: 1.5rem;
}

.catalog-grid {
  grid-template-columns: repeat(2, 1fr);
}

.catalog-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--white);
  object-fit: contain;
  padding: 0.8rem;
}

.catalog-card.accent-card {
  display: flex;
  align-items: stretch;
  min-height: 260px;
  background: linear-gradient(135deg, rgba(37, 51, 58, 0.92), rgba(23, 20, 18, 0.92));
}

.catalog-card.accent-card h2,
.catalog-card.accent-card p,
.catalog-card.accent-card .text-link {
  color: var(--white);
}

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

.quote-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-detail-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
}

.product-detail-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5.6rem);
}

.product-detail-image {
  position: relative;
  border-radius: var(--radius-lg);
}

.product-detail-image::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: calc(var(--radius-lg) + 16px);
  background: linear-gradient(145deg, rgba(215, 25, 32, 0.18), rgba(182, 154, 104, 0.2), rgba(37, 51, 58, 0.1));
  z-index: -1;
}

.product-detail-image img {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  object-fit: contain;
  padding: clamp(0.9rem, 2vw, 1.4rem);
}

.product-detail-image span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(23, 20, 18, 0.78);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.78rem 1rem;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.product-breadcrumb,
.product-nav-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.product-breadcrumb {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: -1rem;
}

.product-breadcrumb a {
  color: var(--brand-deep);
  font-weight: 800;
}

.product-breadcrumb strong {
  color: var(--ink);
}

.product-nav-band {
  margin-top: 1rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(24, 19, 14, 0.07);
}

.product-nav-band a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.62rem 0.82rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-nav-band a:hover,
.product-nav-band a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.product-side-card,
.detail-panel,
.product-link-card {
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(24, 19, 14, 0.08);
  backdrop-filter: blur(16px);
}

.product-side-card {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.product-side-card h2 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.product-meta {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.product-meta strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.28rem;
}

.product-story {
  display: grid;
  gap: 1.2rem;
}

.product-story h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-panel {
  padding: clamp(1.2rem, 2.6vw, 2rem);
}

.detail-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.detail-checklist {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-checklist li {
  position: relative;
  color: var(--steel);
  padding-left: 1.45rem;
}

.detail-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(215, 25, 32, 0.1);
}

.detail-checklist.compact li {
  color: var(--muted);
}

.product-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--steel);
  padding: 0.58rem 0.78rem;
}

.spec-panel {
  overflow: hidden;
}

.spec-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.66);
  padding: 0.95rem 1rem;
}

.spec-list dt {
  color: var(--brand-deep);
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(215, 25, 32, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.1), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.detail-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.detail-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 1rem;
}

.related-products-section {
  padding-top: 0;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-link-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-link-card img {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  border-radius: 24px;
  background: var(--white);
  object-fit: contain;
  padding: 0.75rem;
}

.product-link-card span,
.product-link-card small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-link-card strong {
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.check-grid {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-grid {
  grid-template-columns: repeat(2, 1fr);
}

.case-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.case-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.case-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.case-card li {
  font-size: 0.88rem;
}

.equipment-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.equipment-strip img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--white);
  object-fit: contain;
  padding: 0.8rem;
}

.contact-layout {
  align-items: start;
}

.contact-panel,
.inquiry-form {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.contact-methods a,
.address {
  display: grid;
  gap: 0.18rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.contact-methods span,
.address strong {
  color: var(--brand-deep);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.qr {
  width: 160px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 0.5rem;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--steel);
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 20, 18, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(215, 25, 32, 0.58);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.1);
}

.form-status {
  min-height: 1.4rem;
  color: var(--brand-deep);
  font-weight: 800;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  background: #151311;
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 2rem;
}

.site-footer strong,
.site-footer span {
  display: block;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background: rgba(248, 244, 236, 0.96);
    box-shadow: var(--shadow);
    padding: 0.65rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .hero,
  .subhero,
  .split-section,
  .split-section.reverse,
  .two-column,
  .evidence-layout,
  .quote-section,
  .product-detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .section-copy {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    aspect-ratio: auto;
  }

  .trust-strip,
  .product-grid,
  .timeline-section,
  .values-grid,
  .process-grid,
  .case-grid,
  .catalog-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-card {
    grid-template-columns: 150px 1fr;
  }

  .section-heading,
  .cta-section,
  .detail-cta {
    align-items: start;
    flex-direction: column;
  }

  .product-side-card {
    position: static;
  }

  .related-product-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    width: min(100% - 20px, 1220px);
    margin-top: 10px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .subhero {
    padding-top: 3.5rem;
  }

  .hero-actions,
  .feature-list,
  .case-card ul {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .product-grid,
  .timeline-section,
  .values-grid,
  .process-grid,
  .case-grid,
  .catalog-grid,
  .related-product-grid,
  .footer-grid,
  .evidence-cards,
  .equipment-strip,
  .image-stack,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card img {
    max-height: 260px;
  }

  .product-nav-band {
    border-radius: 26px;
  }

  .product-nav-band a {
    flex: 1 1 100%;
    text-align: center;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .product-detail-image span {
    position: static;
    display: block;
    margin-top: 0.7rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
  }

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.3rem);
  }
}
