* {
  box-sizing: border-box;
}

:root {
  --green: #1f4f2a;
  --deep-green: #10351c;
  --gold: #c99b36;
  --cream: #fff8ec;
  --warm: #f5ead7;
  --text: #1b1b1b;
  --muted: #666;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(23, 39, 27, 0.14);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--cream), #fff);
}

.site-header {
  background:
    radial-gradient(circle at 75% 20%, rgba(201, 155, 54, 0.22), transparent 32%),
    linear-gradient(135deg, #fff9ef, #f2e5cf);
  padding: 24px;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--deep-green);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
}

.nav-links {
  display: flex;
  gap: 24px;
}

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

.hero {
  max-width: 1180px;
  margin: 56px auto 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1, h2 {
  font-family: Cinzel, Georgia, serif;
  color: var(--deep-green);
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.intro {
  max-width: 620px;
  color: #333;
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.primary-btn, .secondary-btn, button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.secondary-btn {
  border: 2px solid var(--gold);
  color: var(--deep-green);
  background: rgba(255,255,255,0.65);
}

.hero-logo-panel {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(201,155,54,0.35);
  border-radius: 34px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-logo-panel img {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.trust-strip {
  max-width: 1180px;
  margin: 30px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-strip div {
  background: white;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 6px;
}

.shop-section {
  max-width: 1180px;
  margin: 70px auto;
  padding: 0 24px;
}

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

.section-heading input {
  width: min(100%, 330px);
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 1rem;
}

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

.product-card {
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-image-wrap {
  position: relative;
  background: var(--warm);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(16,53,28,0.92);
  color: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-info h3 {
  margin: 0;
  color: var(--deep-green);
  font-size: 1.2rem;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-size {
  color: var(--gold) !important;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.price-row strong {
  font-size: 1.3rem;
}

.price-row button {
  padding: 10px 15px;
}

.basket {
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 24px;
  background: var(--deep-green);
  color: white;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.basket h2 {
  color: white;
  font-size: 1.6rem;
}

.basket ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.checkout-btn {
  background: var(--gold);
  color: #111;
  white-space: nowrap;
}

.story-section {
  max-width: 1180px;
  margin: 70px auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.story-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

footer {
  padding: 32px 24px;
  text-align: center;
  background: #102417;
  color: white;
}

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

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

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

@media (max-width: 620px) {
  .site-header {
    padding: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .product-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .basket {
    align-items: stretch;
    flex-direction: column;
  }
}
