:root {
  --ink: #2b2118;
  --muted: #745f49;
  --paper: #fff8ec;
  --paper-strong: #f7e8ca;
  --honey: #d88a1d;
  --honey-dark: #a15f0b;
  --cream: #fffdf7;
  --line: rgba(77, 49, 20, 0.16);
  --shadow: 0 24px 60px rgba(60, 38, 12, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 0%, #fff3d8, transparent 35%), var(--paper);
  line-height: 1.6;
}

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

a { color: inherit; }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--honey);
  color: white;
}

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

.nav a {
  text-decoration: none;
}

.nav a:hover { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 108px) clamp(20px, 5vw, 72px) 42px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--honey-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.primary {
  background: var(--honey);
  color: white;
  box-shadow: 0 14px 30px rgba(216, 138, 29, 0.28);
}

.primary:hover { background: var(--honey-dark); }

.secondary {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--line);
}

.secondary:hover { background: white; }

.full { width: 100%; }

.trust-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.intro, .origin, .purchase {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 { margin: 0 0 10px; font-size: 1.15rem; }

.product-card, .order-box {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 40px rgba(62, 40, 14, 0.08);
}

.product-size {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--honey-dark);
  font-weight: 900;
  text-decoration: none;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px clamp(20px, 5vw, 72px) 24px;
}

.features article {
  padding: 26px;
  border-radius: 24px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.features p { margin-bottom: 0; color: var(--muted); }

.origin {
  grid-template-columns: 0.95fr 1.05fr;
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-stack img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  width: 78%;
  justify-self: end;
  margin-top: -56px;
  border: 8px solid var(--paper);
}

.note {
  padding: 18px 20px;
  background: rgba(216, 138, 29, 0.12);
  border-left: 4px solid var(--honey);
  border-radius: 14px;
  font-weight: 700;
}

.purchase {
  margin-top: 20px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(247, 232, 202, 0.8));
}

.order-box p {
  color: var(--muted);
  font-weight: 700;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 40px;
}

details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p { color: var(--muted); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #2b2118;
  color: #fff8ec;
}

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

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  color: #fff8ec;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 840px) {
  .site-header { align-items: flex-start; }
  .nav { display: none; }
  .hero, .intro, .origin, .purchase, .faq { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
  .hero-card { transform: none; }
  .features { grid-template-columns: 1fr; }
  .image-stack img:nth-child(2) { width: 88%; margin-top: -28px; }
  .site-footer { flex-direction: column; }
}
