/* ============================================
   Grinde Grain — White & Gold brand theme
   Colors matched to logo: cream background, deep golden brown
   ============================================ */

:root {
  /* Logo-aligned palette */
  --cream: #f8f6f1;
  --cream-warm: #f5f2eb;
  --gold: #7d5e3c;
  --gold-light: #9a7b52;
  --gold-dark: #5c4529;
  --gold-muted: rgba(125, 94, 60, 0.15);
  --text: #2c2416;
  --text-muted: #5a5248;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--cream);
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-dark);
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
  border-bottom: 1px solid var(--gold-muted);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: block;
  line-height: 0;
}

.logo-img {
  height: 106px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}

.nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-list a.is-active {
  color: var(--gold-dark);
  font-weight: 600;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: var(--cream-warm);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
}

.hero-brand {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #000;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.hero-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.hero-tagline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--gold-muted), transparent);
  pointer-events: none;
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--cream) !important;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--cream) !important;
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold) !important;
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold-muted);
  color: var(--gold-dark) !important;
}

/* ----- Sections ----- */
.section {
  padding: 4rem 1.5rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 1.5rem;
  text-align: center;
}

/* About */
.about {
  background: var(--cream);
}

.about-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.about-content p:last-child {
  margin: 0;
}

/* Bread / product list */
.bread-section {
  background: var(--cream-warm);
}

.bread-section .container {
  max-width: 560px;
}

.bread-intro {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

.price-tier {
  margin-bottom: 2rem;
}

.price-tier:last-child {
  margin-bottom: 0;
}

.price-heading {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--gold);
}

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gold-muted);
  font-size: 1.05rem;
}

.product-item:last-child {
  border-bottom: none;
}

.product-name {
  font-weight: 500;
  color: var(--text);
}

.product-desc {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact */
.contact-content {
  text-align: center;
}

.contact-location {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.contact-content p:nth-child(2) {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* ----- Footer ----- */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--gold-muted);
  background: var(--cream-warm);
}

.footer-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* ----- Responsive ----- */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 50vh;
    padding: 3rem 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }
}
