
*,*::before,*::after{box-sizing:border-box}
:root{
  --primary:#1f2c3d;
  --accent:#a07f3a;
  --bg:#fbf8f3;
  --surface:#fff;
  --text:#1a1a1a;
  --muted:#6b6b6b;
  --line:#e7e1d4;
  --max:1240px;
}
body{margin:0;font-family:'Inter',system-ui,sans-serif;color:var(--text);background:var(--bg);line-height:1.65;font-size:16.5px}
a{color:var(--primary);text-decoration:none}
a:hover{color:var(--accent)}

/* nav */
header.site-head{background:var(--surface);border-bottom:1px solid var(--line);padding:1rem 1.5rem;position:sticky;top:0;z-index:50}
.head-inner{max-width:var(--max);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem}
.brand{font-family:'Playfair Display',Georgia,serif;font-size:1.4rem;font-weight:700;color:var(--primary)}
.brand small{font-family:'Inter',sans-serif;font-size:0.7rem;color:var(--muted);text-transform:uppercase;letter-spacing:0.14em;margin-left:0.5rem;font-weight:400}
nav.main{display:flex;gap:1.75rem;font-size:0.92rem}
nav.main a{color:var(--text)}

/* hero */
.hero{padding:4rem 1.5rem 3.5rem;text-align:center;background:linear-gradient(180deg,var(--bg) 0%,#f5efe2 100%);border-bottom:1px solid var(--line)}
.hero-inner{max-width:780px;margin:0 auto}
.hero-eyebrow{color:var(--accent);font-size:0.75rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;margin-bottom:0.75rem}
.hero h1{font-family:'Playfair Display',Georgia,serif;font-size:clamp(2rem,4.5vw,3.25rem);font-weight:700;line-height:1.15;margin:0 0 1rem;color:var(--primary);letter-spacing:-0.012em}
.hero p{font-size:1.1rem;color:var(--muted);margin:0 auto;max-width:620px}

/* sections */
section{max-width:var(--max);margin:0 auto;padding:3.5rem 1.5rem}
section h2{font-family:'Playfair Display',Georgia,serif;font-size:2rem;font-weight:700;margin:0 0 0.5rem;color:var(--primary)}
section h2 + p.sub{color:var(--muted);margin:0 0 2.5rem;font-size:1.05rem}

/* editorial block */
.editorial{background:var(--surface);border:1px solid var(--line);padding:2.5rem;margin:0 0 3rem;border-radius:2px}
.editorial p{font-size:1.05rem;margin:0 0 1rem}
.editorial p:last-child{margin-bottom:0}
.editorial h3{font-family:'Playfair Display',serif;font-size:1.3rem;margin:1.5rem 0 0.75rem;color:var(--primary)}

/* grid */
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.5rem}
.card{background:var(--surface);border:1px solid var(--line);transition:all 0.18s;display:flex;flex-direction:column;text-decoration:none;color:inherit}
.card:hover{border-color:var(--accent);transform:translateY(-3px);box-shadow:0 12px 28px rgba(0,0,0,0.07)}
.card-img{aspect-ratio:1;background:var(--bg);overflow:hidden}
.card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s}
.card:hover img{transform:scale(1.04)}
.card-body{padding:1.1rem 1.25rem 1.25rem}
.card-title{font-size:0.95rem;font-weight:500;margin:0 0 0.5rem;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.card-price{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:700;color:var(--primary)}
.card-meta{font-size:0.8rem;color:var(--muted);margin-top:0.5rem}

/* store list */
.store-list{display:grid;gap:1rem}
.store-row{display:flex;gap:1.5rem;padding:1.5rem;background:var(--surface);border:1px solid var(--line);border-radius:2px;transition:border-color 0.15s}
.store-row:hover{border-color:var(--accent)}
.store-row-img{width:160px;flex-shrink:0;aspect-ratio:4/3;background:var(--bg);overflow:hidden}
.store-row-img img{width:100%;height:100%;object-fit:cover}
.store-row-body{flex:1}
.store-row h3{font-family:'Playfair Display',serif;font-size:1.25rem;margin:0 0 0.4rem;color:var(--primary)}
.store-row h3 a{color:inherit}
.store-row .meta{color:var(--muted);font-size:0.88rem;margin:0 0 0.6rem}
.store-row .badges{display:flex;gap:0.5rem;margin-top:0.75rem;flex-wrap:wrap}
.badge{display:inline-block;padding:0.3rem 0.75rem;font-size:0.75rem;background:var(--bg);border:1px solid var(--line);border-radius:999px;color:var(--muted)}
.badge.score{background:var(--primary);color:#fff;border-color:var(--primary)}

/* footer */
footer.site-foot{background:var(--primary);color:#fff;padding:3rem 1.5rem 2rem;margin-top:5rem;text-align:center}
footer p{margin:0.5rem 0;opacity:0.75;font-size:0.9rem}
footer a{color:#fff;border-bottom:1px solid rgba(255,255,255,0.3)}

/* responsive */
@media (max-width:780px){
  nav.main{display:none}
  .hero{padding:2.5rem 1.5rem 2rem}
  section{padding:2.5rem 1rem}
  .store-row{flex-direction:column}
  .store-row-img{width:100%;aspect-ratio:16/9}
  .editorial{padding:1.5rem}
}
