:root {
  --honey: #e8a13c;
  --honey-dark: #b9761e;
  --brown: #4a2f1c;
  --brown-dark: #2f1d10;
  --cream: #fdf6e8;
  --cream-alt: #f7ecd6;
  --text: #3a2a1a;
  --muted: #6b5640;
  --white: #fffdf9;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(74, 47, 28, 0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--cream);
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--brown-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h2 { font-size: 2rem; }

p { margin: 0 0 1em; }

a { color: var(--honey-dark); }

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }
section.alt {
  background-color: var(--cream-alt);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 232, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(74, 47, 28, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--brown-dark);
}

.brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  text-decoration: none;
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--honey-dark); }

/* Hero */
.hero {
  text-align: center;
  padding: 90px 24px 80px;
  background-image:
    linear-gradient(180deg, rgba(74,47,28,0.06), rgba(74,47,28,0)),
    radial-gradient(circle at 50% -10%, #fff4dc, var(--cream) 60%);
}

.hero-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  border: 1px solid #000;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 0.4em;
}

.hero .tagline {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.15rem;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--honey);
  color: var(--brown-dark);
  box-shadow: 0 8px 20px rgba(232, 161, 60, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--brown-dark);
  border: 2px solid var(--honey);
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.story-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.verse {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--honey-dark);
  font-size: 1.1rem;
  border-left: 3px solid var(--honey);
  padding-left: 16px;
}

/* Section heads */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head p { color: var(--muted); }

/* Products / labels */
.labels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.label-card {
  margin: 0;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 20px;
}

.label-card img {
  max-height: 220px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}

.label-card figcaption {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brown-dark);
}

.label-card figcaption .price {
  color: var(--honey-dark);
  font-weight: 800;
}

.products-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 12px 16px;
  font-weight: 700;
  color: var(--brown-dark);
  font-size: 0.9rem;
}

/* Find us */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
}

.info-card a { text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

/* Footer */
footer {
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.9rem;
}

footer a { color: var(--honey); }
footer p { margin: 0 0 6px; opacity: 0.9; }

/* Responsive */
@media (max-width: 800px) {
  .site-nav { display: none; }
  .story-grid, .find-grid {
    grid-template-columns: 1fr;
  }
  .labels-row { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .label-card { padding: 16px 10px 14px; }
  .label-card img { max-height: 140px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .labels-row { grid-template-columns: 1fr; }
  .label-card img { max-height: 200px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 140px; }
  section { padding: 48px 0; }
}
