
:root{
 --gold:#c28a24; --text:#2c1f15; --bg:#faf7f2;
}
body{margin:0;font-family:Georgia,serif;background:var(--bg);color:var(--text);}
header{background:#fff;border-bottom:1px solid #e5dccf;}
.nav{max-width:1100px;margin:auto;padding:1rem;display:flex;justify-content:space-between;}
.logo{font-weight:700;letter-spacing:.08em;}
.hero{max-width:900px;margin:3rem auto;text-align:center;padding:1rem;}
.hero img{width:180px;height:auto;display:block;margin:0 auto 1.5rem;}
.section{max-width:1100px;margin:3rem auto;padding:2rem;}
.section.alt{background:#fff;border-radius:20px;}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:2rem;}
.card{background:#fff;padding:1rem;border-radius:16px;box-shadow:0 8px 22px rgba(80,60,40,.08);text-align:center;}
.card img{width:100%;height:140px;object-fit:cover;border-radius:12px;}
.button{background:var(--gold);color:#fff;padding:.7rem 1.5rem;border-radius:999px;text-decoration:none;margin-top:1rem;display:inline-block;}
footer{background:#fff;border-top:1px solid #e5dccf;text-align:center;padding:1.5rem;font-size:.9rem;}


/* Oroblend master upgrades */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffffcc;
  backdrop-filter: blur(12px);
}

.nav a {
  text-decoration: none;
  color: var(--text, #2c1f15);
  font-size: 0.95rem;
}
.nav a + a::before {
  content: "·";
  margin: 0 0.4rem;
  color: var(--text-light, #6a5442);
}
.nav a:hover {
  text-decoration: underline;
}

.button {
  cursor: pointer;
}

/* Email capture section */
.newsletter-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, #fdf6ea, #f5e7cf);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(80,60,40,0.15);
  text-align: center;
}
.newsletter-section h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.newsletter-section p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #6a5442;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.newsletter-form input[type="email"] {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e0d4c1;
  min-width: 220px;
}

/* Footer */
.site-footer {
  background:#fff;
  border-top:1px solid #e5dccf;
  text-align:center;
  padding:1.75rem 1rem;
  font-size:0.85rem;
  color:#6a5442;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer .footer-links {
  margin-bottom: 0.5rem;
}

/* Hero responsive tweaks */
@media (max-width: 700px) {
  .hero img {
    width: 140px;
    margin-bottom: 1rem;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .section {
    padding: 1.5rem 1.25rem;
  }
}

/* Ingredient cards lazy-load visuals */
.card img[loading="lazy"] {
  transition: opacity 0.3s ease;
}


/* Hero Banner System */

.hero.hero-img{
  max-width:none;
  margin:0;
  padding:140px 20px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:#fff;
  text-align:center;
}
.hero.hero-img .overlay{
  background: rgba(0,0,0,0.35);
  padding: 40px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.hero.hero-img h1,
.hero.hero-img p{
  color:#fff;
}
.hero.hero-img a.button{ box-shadow: 0 10px 30px rgba(0,0,0,0.18); }

.back-link{
  max-width:1100px;
  margin: 1.25rem auto 0;
  padding: 0 1.25rem;
}
.back-link a{ color: #6a5442; text-decoration: none; }
.back-link a:hover{ text-decoration: underline; }

@media (max-width:700px){
  .hero.hero-img{ padding: 110px 16px; }
  .hero.hero-img .overlay{ padding: 22px; }
}


/* OPTION B — CENTERED 3:2 CROPPED THUMBNAILS */
.card {
    overflow: hidden !important;
    height: auto !important;
}

.card img {
    width: 100%;
    height: 160px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .card img {
        height: 140px !important;
    }
}
