:root {
  --green: #0f4d2f;
  --green-dark: #092e1d;
  --green-soft: #e8f2ec;
  --gold: #f4b000;
  --gold-soft: #fff3c7;
  --cream: #fffaf0;
  --ink: #172119;
  --muted: #5d6c61;
  --line: #dfe7dc;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(9, 46, 29, .10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99;
  font-weight: 800;
}

.skip-link:focus { left: 12px; }

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

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 900px;
  max-height: 260px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-links a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.call-small {
  background: var(--green);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(15, 77, 47, .18);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(244,176,0,.32), transparent 35%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  padding: clamp(48px, 7vw, 82px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin: 0 0 8px;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: .96;
  margin: 10px 0 18px;
  max-width: 850px;
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin: 0 0 10px;
  letter-spacing: -.03em;
}

.lead {
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  line-height: 1.68;
  max-width: 780px;
  color: rgba(255,255,255,.92);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 12px 28px rgba(244,176,0,.22);
}

.btn.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.4);
}

.delivery {
  display: inline-block;
  margin-top: 18px;
  background: rgba(244,176,0,.18);
  color: #fff7d6;
  border: 1px solid rgba(244,176,0,.45);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.stock-summary {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
}

.summary-label {
  color: var(--gold);
  font-weight: 900;
  margin: 0;
}

.big-number {
  font-size: clamp(4rem, 7vw, 5.6rem);
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
  margin: 14px 0 6px;
}

.section {
  padding: clamp(44px, 7vw, 66px) 0;
}

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

.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-image {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(15,77,47,.12), rgba(244,176,0,.22)),
    repeating-linear-gradient(0deg, #d6b06c 0 18px, #b78338 18px 24px);
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
  padding: 20px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 1.25rem;
  line-height: 1.18;
}

.qty {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin: 14px 0 4px;
}

.price {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 1.1rem;
  margin: 14px 0 6px;
}

.note {
  color: var(--muted);
  line-height: 1.5;
}

.card .btn { margin-top: auto; }

.info-band {
  background:
    radial-gradient(circle at right, rgba(244,176,0,.22), transparent 36%),
    var(--green);
  color: white;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 34px);
  margin-bottom: 56px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.info-band p {
  color: rgba(255,255,255,.88);
  max-width: 760px;
}

.site-footer {
  background: var(--green-dark);
  color: white;
  padding: 30px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  color: rgba(255,255,255,.72);
  margin: 6px 0 0;
}

.site-footer a {
  color: white;
  font-weight: 800;
}

address {
  font-style: normal;
  text-align: right;
}

@media (max-width: 980px) {
  .stock-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links { display: none; }
}

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

  .nav {
    min-height: 150px;
    gap: 10px;
  }

  .brand img {
    width: 420px;
    max-height: 140px;
  }

  .call-small {
    padding: 10px 12px;
    font-size: .9rem;
  }

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

  .hero-actions .btn,
  .info-band .btn {
    width: 100%;
  }

  .info-band,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  address {
    text-align: left;
  }
}

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

.collection-hero {
  padding-top: clamp(42px, 6vw, 74px);
}

.photo-panel {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  min-height: 360px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.collection-grid .card .card-body {
  min-height: 250px;
}

.collection-grid .card h3 {
  font-size: 1.42rem;
}

.collection-grid .card .note {
  font-size: 1rem;
}

.recycling-band {
  background: var(--green-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 7vw, 72px) 0;
  margin-bottom: 52px;
}

.recycling-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 32px;
  align-items: center;
}

.recycling-grid h2 {
  color: var(--green-dark);
}

.recycling-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.photo-stack img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.credit {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.55);
  max-width: 560px;
}

@media (max-width: 760px) {
  .photo-panel,
  .photo-panel img {
    min-height: 260px;
  }

  .recycling-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack img {
    height: 210px;
  }
}
