:root {
  color-scheme: light;
  --ink: #18201c;
  --muted: #5d6a62;
  --line: #d9dfd9;
  --paper: #f8f7f2;
  --white: #ffffff;
  --green: #1f6f55;
  --green-dark: #174d3e;
  --gold: #d8a23a;
  --rose: #b85d52;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 56px);
  background: rgba(248, 247, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: 78vh;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 56px);
}

.hero-copy {
  max-width: 650px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-dark);
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green-dark);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
}

.hero-grid figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.hero-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  padding: 0;
}

.hero-grid figure:nth-child(1) {
  background: #fbf7f0;
}

.hero-grid figure:nth-child(2) {
  background: #f2f6fb;
}

.hero-grid figure:nth-child(3) {
  background: #f7f8f5;
}

.hero-grid figure:nth-child(2) {
  transform: translateY(18px);
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.product-list {
  display: grid;
  gap: 18px;
}

.product {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding: clamp(14px, 2vw, 22px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f0f2ee;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.price {
  margin: 4px 0 0;
  color: var(--rose);
  font-size: 1.25rem;
  font-weight: 900;
  white-space: nowrap;
}

.product-body > p {
  max-width: 68ch;
  color: var(--muted);
}

ul {
  margin: 18px 0;
  padding-left: 20px;
  color: var(--ink);
}

li + li {
  margin-top: 6px;
}

.text-link {
  color: var(--green-dark);
  font-weight: 900;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: start;
  background: #eef2eb;
}

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

.order-box {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-label {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-copy {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

footer {
  padding: 28px clamp(18px, 5vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

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

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-grid {
    max-width: 720px;
  }

  .hero-grid figure {
    max-height: none;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-grid figure:nth-child(2) {
    transform: none;
  }

  .product-title-row {
    flex-direction: column;
  }
}
