:root{
  --bg:#f7f1e6; /* warm paper */
  --ink:#2a1f1a;
  --muted:#7a6d66;
  --accent:#3a2b24;
  --brand:#3b302a;
  --card:#ffffff;
  --line:#e8e2d8;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--ink);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;line-height:1.6}
a{color:var(--accent);text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 20px}
img{display:block;max-width:100%;height:auto;border-radius:8px}

/* Header */
.site-header{background:var(--bg);position:sticky;top:0;z-index:10;border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand a{font-family:"Playfair Display",serif;font-weight:700;font-size:22px;color:var(--brand)}
.nav a{margin:0 14px;font-weight:500}
.small-link{font-size:14px;color:var(--muted)}

/* Hero */
.hero{padding:64px 0 24px}
.hero-inner{display:grid;grid-template-columns:1.1fr 1fr;gap:32px;align-items:center}
.hero h1{font-family:"Playfair Display",serif;font-size:52px;line-height:1.1;margin:0 0 12px}
.lead{color:var(--muted);max-width:48ch;margin-bottom:18px}
.btn{display:inline-block;background:var(--accent);color:#fff;padding:12px 18px;border-radius:999px;font-weight:600}
.btn-small{padding:10px 14px}
.hero-images{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.hero-images .img{height:320px;object-fit:cover}

/* Favorites */
.favorites{padding:48px 0 24px}
.section-title{text-align:center;font-family:"Playfair Display",serif;font-size:28px;margin-bottom:24px}
.product-row{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.product-card{background:var(--card);border:1px solid var(--line);border-radius:14px;padding:14px;position:relative}
.product-card .badge{position:absolute;top:12px;left:12px;background:#e7d7c6;color:#5a4336;font-size:12px;padding:4px 8px;border-radius:999px}
.product-title{font-size:16px;margin:10px 0 6px}
.product-price{display:flex;gap:8px;font-weight:600}
.product-price .compare{color:var(--muted);text-decoration:line-through;font-weight:400}

/* Promo */
.promo{padding:40px 0}
.promo-inner{display:grid;grid-template-columns:1fr;gap:18px}
.promo-text{display:flex;flex-direction:column;align-items:flex-start;gap:10px}
.eyebrow{letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-size:12px}
.promo-media .img{width:100%;height:420px;object-fit:cover}

/* Story */
.story{padding:40px 0 72px}
.story-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:26px}
.story h3{font-family:"Playfair Display",serif;font-size:28px;margin:10px 0 10px}

/* ===== Footer (Wix-style) ===== */
.site-footer{
  background:#3a2b24;           /* dark brown bar */
  color:#efe9df;
  margin-top:24px;
  padding-top:34px;
  padding-bottom:20px;
}
.footer-main{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.2fr; /* brand | contact | 2 small cols */
  gap:28px;
  align-items:start;
}
.footer-brand{
  font-family:"Playfair Display",serif;
  font-size:32px;
  line-height:1.05;
  letter-spacing:-0.2px;
}
.footer-contact{color:#e8dfd4; line-height:1.7}
.footer-right{
  display:grid;
  grid-template-columns: 1fr 1fr; /* policies | social */
  gap:28px;
}
.footer-col{}
.footer-list{list-style:none; margin:0; padding:0}
.footer-list li{margin:6px 0}
.footer-list a{color:#efe9df; text-decoration:none}
.footer-list a:hover{opacity:.8}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  margin-top:22px;
  padding-top:12px;
}
.footer-copy{
  color:#cfc6be;
  text-align:right;             
  font-size:13px;
}

/* Responsive */
@media (max-width:980px){
  .footer-main{grid-template-columns: 1fr 1fr; gap:22px}
  .footer-right{grid-column: span 2}
}
@media (max-width:640px){
  .footer-main{grid-template-columns: 1fr}
  .footer-right{grid-template-columns: 1fr 1fr}
  .footer-copy{text-align:center}
}


/* Responsive */
@media (max-width:900px){
  .hero-inner,.story-grid{grid-template-columns:1fr}
  .product-row{grid-template-columns:repeat(2,1fr)}
  .hero h1{font-size:40px}
}
@media (max-width:560px){
  .product-row{grid-template-columns:1fr}
  .header-inner{flex-wrap:wrap;gap:8px;height:auto;padding:12px 0}
}

html { scroll-behavior: smooth; }

/* Ensure the anchor isn't hidden under the fixed header */
:root { --header-offset: 96px; } /* adjust if your header/announce bar is taller */
#about { scroll-margin-top: var(--header-offset); }

