:root {
  --ink: #1e2328;
  --muted: #5f6b75;
  --line: #dfe5e8;
  --paper: #ffffff;
  --soft: #f5f8f7;
  --brand: #0f7c6b;
  --brand-dark: #0a5f53;
  --accent: #c96f32;
  --gold: #e0b14b;
  --blue: #4877a7;
  --shadow: 0 18px 45px rgba(30, 35, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
}

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

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-weight: 700;
  border-radius: 6px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand-dark);
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  min-height: calc(100vh - 73px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(38px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(245, 248, 247, 0.98) 0%, rgba(245, 248, 247, 0.7) 58%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(135deg, #ffffff 0%, #edf7f3 55%, #f8eee5 100%);
}

.hero h1,
.page-intro h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead,
.page-intro p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary,
.button.compact {
  color: #ffffff;
  background: var(--brand);
}

.button.primary:hover,
.button.compact:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--brand-dark);
  border-color: var(--brand);
  background: #ffffff;
}

.button.compact {
  min-height: 40px;
  margin-top: 8px;
  padding: 8px 14px;
  align-self: flex-start;
}

.hero-image {
  position: relative;
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 124, 107, 0.85), rgba(72, 119, 167, 0.86)),
    radial-gradient(circle at 70% 20%, rgba(224, 177, 75, 0.42), transparent 34%);
  box-shadow: var(--shadow);
}

.display-card {
  position: absolute;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 34px rgba(30, 35, 40, 0.18);
}

.display-card.large {
  width: 54%;
  aspect-ratio: 1 / 1.15;
  left: 11%;
  top: 15%;
}

.display-card.medium {
  width: 42%;
  aspect-ratio: 1.1 / 1;
  right: 10%;
  top: 31%;
  background: #f7e5d5;
}

.display-card.small {
  width: 28%;
  aspect-ratio: 1 / 1;
  left: 38%;
  bottom: 12%;
  background: #d7ece6;
}

.section,
.split-section,
.contact-options {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.contact-band h2,
.split-section h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.15;
}

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

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.product-card h2,
.product-card h3 {
  margin: 4px 0 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

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

.product-card span {
  color: var(--brand-dark);
  font-weight: 800;
}

.product-image {
  min-height: 180px;
  border-radius: 6px;
  background: var(--soft);
}

.product-photo {
  display: grid;
  min-height: 180px;
  place-items: center;
  border-radius: 6px;
  background: var(--soft);
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 18px;
}

.status {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status.available {
  color: var(--brand-dark);
  background: #d7ece6;
}

.status.unavailable {
  color: #7a4a20;
  background: #f6e7c4;
}

.load-error {
  color: var(--muted);
}

.product-one {
  background: linear-gradient(145deg, #f4dcc8, #ffffff 55%, #d7ece6);
}

.product-two {
  background: linear-gradient(145deg, #d9e7f5, #ffffff 55%, #f6e7c4);
}

.product-three {
  background: linear-gradient(145deg, #d6eee4, #ffffff 58%, #efcfba);
}

.product-four {
  background: linear-gradient(145deg, #f2dfb0, #ffffff 55%, #cfe0ef);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 7vw, 82px);
  padding: clamp(24px, 5vw, 42px);
  color: #ffffff;
  background: var(--brand-dark);
}

.contact-band .eyebrow {
  color: #f3c979;
}

.page-intro {
  padding: clamp(44px, 8vw, 88px) clamp(18px, 5vw, 72px) clamp(24px, 5vw, 42px);
  background: var(--soft);
}

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

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

.contact-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-link {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.contact-link strong {
  font-size: 1.1rem;
}

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

.contact-link:hover {
  border-color: var(--brand);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  font-weight: 700;
  color: var(--brand-dark);
}

@media (max-width: 920px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid,
  .product-grid.catalog,
  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-image {
    min-height: 330px;
  }

  .product-grid,
  .product-grid.catalog,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
