:root {
  --bg: #f4f0e7;
  --surface: #fbf8f2;
  --surface-strong: #ffffff;
  --surface-soft: #efe7db;
  --text: #17211d;
  --muted: #6e746f;
  --line: rgba(15, 61, 46, 0.1);
  --primary: #0f3d2e;
  --primary-deep: #0a2b21;
  --primary-soft: rgba(15, 61, 46, 0.08);
  --accent: #d9c9b5;
  --shadow-soft: 0 20px 50px rgba(23, 33, 29, 0.08);
  --shadow-strong: 0 30px 70px rgba(23, 33, 29, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 61, 46, 0.08), transparent 30%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 100%);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 241, 0.8);
  border-bottom: 1px solid rgba(15, 61, 46, 0.07);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-weight: 600;
}

.brand-copy small {
  color: var(--muted);
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.35s ease;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--primary);
}

.hero-section,
.page-hero {
  padding: 88px 0 56px;
}

.section {
  padding: 56px 0;
}

.section-spacious {
  padding: 72px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(239, 231, 219, 0.42));
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(10, 43, 33, 0.96), rgba(15, 61, 46, 0.96)),
    linear-gradient(135deg, #0b2f24, #174735);
  color: #eef2ee;
}

.section-dark .section-kicker,
.section-dark p,
.section-dark span {
  color: rgba(238, 242, 238, 0.78);
}

.hero-grid,
.period-grid,
.two-column,
.contact-layout,
.specialization-layout,
.cta-layout,
.footer-layout,
.intro-split {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.period-grid,
.two-column,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.intro-split h2,
.mission-card h2,
.cta-layout h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  line-height: 0.95;
}

.section-heading h2,
.intro-split h2,
.mission-card h2,
.cta-layout h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
}

.lead,
.section-heading p,
.intro-copy,
.story-block p,
.contact-card p,
.mission-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.eyebrow,
.section-kicker,
.mini-tag,
.editorial-chip {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
}

.eyebrow,
.section-kicker,
.editorial-chip {
  color: var(--primary);
}

.mini-tag,
.accent {
  color: #9f6256;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 32px rgba(15, 61, 46, 0.22);
}

.btn-primary:hover {
  background: var(--primary-deep);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(15, 61, 46, 0.08);
}

.btn-secondary:hover {
  background: rgba(15, 61, 46, 0.14);
}

.hero-points,
.feature-list,
.contact-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.feature-list li,
.contact-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-top: 0.85rem;
  color: var(--muted);
}

.hero-points li::before,
.feature-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--primary);
}

.hero-premium {
  position: relative;
}

.hero-premium::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40px;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 201, 181, 0.45), transparent 68%);
  pointer-events: none;
}

.hero-editorial-card {
  position: relative;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(180deg, rgba(11, 23, 20, 0.08), rgba(11, 23, 20, 0.82)),
    url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.hero-editorial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 43, 33, 0.05), rgba(10, 43, 33, 0.76));
}

.editorial-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.85);
  z-index: 1;
}

.editorial-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: #f5f3ed;
}

.editorial-content p {
  max-width: 24ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
  margin: 0 0 1.5rem;
}

.editorial-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.editorial-stats span {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(251, 248, 242, 0.14);
  backdrop-filter: blur(8px);
  color: #f8f4ed;
  text-align: center;
}

.intro-split {
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
}

.intro-copy {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(15, 61, 46, 0.12);
}

.section-heading {
  margin-bottom: 2rem;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.image-feature-card {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: translateY(0) scale(1);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}

.image-feature-card::before,
.image-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.image-feature-card::before {
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.image-feature-card::after {
  background: linear-gradient(180deg, rgba(10, 43, 33, 0.12), rgba(10, 43, 33, 0.88));
}

.image-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.image-feature-card:hover::before {
  transform: scale(1.08);
}

.card-design::before {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=1200&q=80");
}

.card-sourcing::before {
  background-image: url("https://images.unsplash.com/photo-1523381210434-271e8be1f52b?auto=format&fit=crop&w=1200&q=80");
}

.card-manufacturing::before {
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=1200&q=80");
}

.card-quality::before {
  background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1200&q=80");
}

.image-card-inner {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
  color: #f7f4ef;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 600;
}

.image-card-inner h3 {
  margin: 1rem 0 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.image-card-inner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(247, 244, 239, 0.88);
}

.specialization-layout {
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
}

.specialization-stack {
  display: grid;
  gap: 1rem;
}

.special-card,
.contact-card,
.contact-form,
.mission-card,
.benefit-card,
.stat-panel,
.product-preview,
.service-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.special-card {
  padding: 1.65rem;
}

.special-card.highlight {
  background: linear-gradient(180deg, rgba(255, 245, 241, 0.9), rgba(255, 255, 255, 0.96));
}

.special-card h3,
.product-preview h2,
.service-card h2,
.benefit-card strong {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
}

.special-card p,
.product-preview p,
.service-card p,
.benefit-card span,
.value-chip span {
  color: var(--muted);
  line-height: 1.8;
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.premium-values {
  align-items: stretch;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

.cards-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.value-chip {
  min-height: 170px;
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, background 0.35s ease;
}

.value-chip strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #f4f0e9;
}

.value-chip:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.process-section {
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.timeline-line {
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 61, 46, 0.12), rgba(15, 61, 46, 0.32), rgba(15, 61, 46, 0.12));
}

.timeline-step {
  position: relative;
  padding-top: 0.25rem;
  transition: transform 0.35s ease;
}

.timeline-step:hover {
  transform: translateY(-6px);
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid rgba(15, 61, 46, 0.12);
  box-shadow: 0 12px 24px rgba(23, 33, 29, 0.08);
  color: var(--primary);
  font-weight: 600;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.timeline-step h3 {
  margin: 1.2rem 0 0.55rem;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.timeline-step p {
  margin: 0;
  max-width: 18ch;
  color: var(--muted);
  line-height: 1.75;
}

.timeline-step:hover .timeline-number,
.timeline-step.active .timeline-number {
  background: var(--primary);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 16px 28px rgba(15, 61, 46, 0.24);
}

.cta-layout {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.1rem 2.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.story-block {
  display: grid;
  gap: 1rem;
}

.stat-panel {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.stat-panel strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.stat-panel span {
  color: var(--muted);
}

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

.mission-card {
  padding: 1.8rem;
}

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

.product-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.7rem;
}

.period-page {
  background:
    radial-gradient(circle at top right, rgba(217, 201, 181, 0.42), transparent 28%),
    linear-gradient(180deg, #fff8f4 0%, #f7f1ea 100%);
}

.period-hero {
  padding-bottom: 2rem;
}

.layer-diagram {
  padding: 1.3rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.layer {
  padding: 1rem 1.2rem;
  margin-top: 0.85rem;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(159, 98, 86, 0.12), rgba(255, 255, 255, 0.95));
  font-weight: 600;
}

.layer:first-child {
  margin-top: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  min-height: 160px;
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
}

.contact-shell {
  padding: 1.2rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(15, 61, 46, 0.08);
}

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

.contact-card.contact-sidebar,
.contact-form-panel {
  padding: 1.8rem;
  border-radius: 28px;
}

.contact-card.contact-sidebar {
  background:
    radial-gradient(circle at top right, rgba(217, 201, 181, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 228, 0.86));
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(15, 61, 46, 0.05);
}

.contact-form-head {
  margin-bottom: 1.25rem;
}

.contact-form-head h2,
.contact-card.contact-sidebar h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  line-height: 1;
}

.contact-form-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-info-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-info-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 61, 46, 0.06);
}

.contact-info-item span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}

.contact-info-item strong {
  font-size: 1rem;
}

.contact-sidebar-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
}

.product-picker {
  position: relative;
}

.product-picker-input {
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.product-picker-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  max-height: 320px;
  padding: 0.5rem;
  overflow-y: auto;
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: 20px;
  background: rgba(251, 248, 242, 0.98);
  box-shadow: 0 22px 45px rgba(23, 33, 29, 0.14);
}

.product-picker.is-open .product-picker-menu {
  display: grid;
  gap: 0.35rem;
}

.product-option {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.65rem;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-option:hover {
  background: rgba(15, 61, 46, 0.08);
  transform: translateY(-2px);
}

.product-option-media {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-soft);
}

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

.product-option-copy {
  display: grid;
  gap: 0.2rem;
}

.product-option-copy strong {
  font-size: 0.98rem;
  font-weight: 600;
}

.product-option-copy small {
  color: var(--muted);
}

.product-option-copy mark {
  padding: 0;
  background: transparent;
  color: var(--primary);
}

.product-picker-empty {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(15, 61, 46, 0.05);
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

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

.catalog-card {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: 1rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 228, 0.9));
  border: 1px solid rgba(15, 61, 46, 0.08);
  box-shadow: 0 24px 55px rgba(23, 33, 29, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.catalog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(15, 61, 46, 0.16);
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(15, 61, 46, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 40%);
  pointer-events: none;
}

.catalog-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(15, 61, 46, 0.12)),
    var(--surface-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.08);
}

.catalog-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.95rem;
  padding: 0.25rem 0.35rem 0.35rem;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.catalog-arrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 61, 46, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-body h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.catalog-card-body h2 a {
  transition: color 0.3s ease;
}

.catalog-card:hover .catalog-card-body h2 a {
  color: var(--primary);
}

.catalog-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.25rem;
}

.catalog-actions .btn {
  flex: 1 1 180px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.product-detail-media,
.product-gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.product-detail-media {
  aspect-ratio: 4 / 4.4;
}

.product-detail-media img,
.product-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-detail-copy .lead {
  margin: 0;
}

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

.product-gallery-card {
  aspect-ratio: 1 / 1.08;
}

.product-customer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-customer-card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 61, 46, 0.08);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-customer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.product-customer-card strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.product-customer-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-customer-logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 110px;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(251, 248, 242, 0.98), rgba(239, 231, 219, 0.8));
}

.product-customer-logo img {
  max-height: 68px;
  width: auto;
  object-fit: contain;
}

.empty-state {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.empty-state p:last-of-type {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.enquiry-highlight {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
  border-radius: 18px;
  background: rgba(15, 61, 46, 0.08);
  border: 1px solid rgba(15, 61, 46, 0.08);
}

.enquiry-highlight strong {
  font-size: 0.9rem;
}

.enquiry-highlight span {
  color: var(--primary);
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-layout {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 61, 46, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--muted);
}

.service-card {
  padding: 1.6rem;
}

.service-card span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

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

@media (max-width: 1100px) {
  .image-card-grid,
  .cards-five,
  .benefits-grid,
  .catalog-grid,
  .product-gallery-grid,
  .product-customer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2rem;
  }

  .timeline-line {
    left: 6%;
    right: 6%;
  }

  .specialization-layout,
  .hero-grid,
  .period-grid,
  .two-column,
  .contact-layout,
  .mission-grid,
  .product-preview,
  .product-detail-layout,
  .cta-layout,
  .footer-layout,
  .intro-split,
  .cards-four {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-left: 0;
    border-left: 0;
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(251, 248, 242, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-section,
  .page-hero {
    padding-top: 72px;
  }

  .section,
  .section-spacious {
    padding: 48px 0;
  }

  .image-card-grid,
  .cards-five,
  .benefits-grid,
  .catalog-grid,
  .product-gallery-grid,
  .product-customer-grid,
  .timeline,
  .editorial-stats {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    padding: 0.9rem;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step p {
    max-width: none;
  }

  .btn,
  .button-row a {
    width: 100%;
  }

  .hero-editorial-card {
    min-height: 420px;
  }
}
