:root {
  --background: #fff8ef;
  --surface: rgba(255, 255, 255, 0.76);
  --text: #342217;
  --muted: #705644;
  --accent: #c96d3c;
  --accent-dark: #954a22;
  --line: rgba(52, 34, 23, 0.12);
  --shadow: 0 22px 60px rgba(117, 72, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 199, 133, 0.45), transparent 30%),
    radial-gradient(circle at right, rgba(255, 225, 186, 0.85), transparent 28%),
    linear-gradient(180deg, #fff7ee 0%, #fff3e1 100%);
}

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

.site-header,
.hero,
.section,
.site-footer {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.brand,
h1,
h2,
h3 {
  font-family: "Fraunces", serif;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
}

.hero-text,
.section p,
.site-footer p,
.hero-card li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 42rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fffaf4;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.hero-card,
.product-card,
.note-card,
.order-section {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.6rem;
  border-radius: 28px;
}

.card-label {
  margin-top: 0;
  font-weight: 700;
}

.hero-card ul {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.section {
  padding: 3rem 0;
}

.section-heading {
  margin-bottom: 1.5rem;
}

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

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

.product-card,
.note-card,
.order-section {
  border-radius: 24px;
  padding: 1.4rem;
}

.product-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.section-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.order-section {
  text-align: center;
  padding: 2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2.25rem;
  color: var(--muted);
}

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

  .hero,
  .section-split,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}
