
:root{
  --bg:#fffdfa;
  --text:#1d1d1d;
  --muted:#706d68;
  --accent:#df6b3f;
  --accent-dark:#b94e2b;
  --soft:#f6eee9;
  --card:#ffffff;
  --line:#e5ddd8;
  --dark:#202125;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
img{display:block;width:100%;object-fit:cover}
.container{width:min(1180px,92%);margin:auto}

.topbar{
  background:var(--dark);
  color:#fff;
  text-align:center;
  padding:10px 16px;
  font-size:12px;
  letter-spacing:.5px;
}
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(255,253,250,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:24px;
  font-weight:900;
  letter-spacing:-1px;
}
.brand-mark{
  width:38px;height:38px;border-radius:50%;
  background:var(--accent);
  display:inline-flex;align-items:center;justify-content:center;
  color:#111;font-style:italic;font-size:21px;font-family:Georgia,serif;
  font-weight:900;
}
.menu{display:flex;gap:22px;font-size:14px;font-weight:750}
.menu a:hover{color:var(--accent-dark)}
.actions{display:flex;gap:10px}
.btn{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:999px;
  font-weight:800;
  border:1px solid var(--dark);
}
.btn-dark{background:var(--dark);color:#fff}
.btn-accent{background:var(--accent);border-color:var(--accent);color:#111}
.hero{padding:42px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
}
.hero-copy{
  min-height:580px;
  border-radius:30px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95), transparent 32%),
    linear-gradient(135deg,#f2dfd6,#f8f1ec);
  padding:68px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-img{
  min-height:580px;
  border-radius:30px;
  overflow:hidden;
  background:#ddd;
}
.hero-img img{height:100%}
.eyebrow{
  width:max-content;
  margin-bottom:20px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:8px 12px;
  text-transform:uppercase;
  letter-spacing:.9px;
  font-size:11px;
  font-weight:900;
}
h1{
  margin:0;
  font-size:clamp(46px,6vw,82px);
  line-height:.96;
  letter-spacing:-3.6px;
  max-width:760px;
}
.hero p,.category-copy p{
  color:#57514c;
  line-height:1.75;
  font-size:17px;
}
.hero p{max-width:640px;margin:26px 0 32px}
section{padding:66px 0}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:28px;
}
.section-head h2{
  margin:0;
  font-size:clamp(32px,4vw,50px);
  letter-spacing:-2px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:530px;
  line-height:1.7;
}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:22px;
  overflow:hidden;
  transition:.2s ease;
}
.card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,.07);
}
.card img{height:330px}
.card-body{padding:18px}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted);line-height:1.6;font-size:14px}
.rating{margin-top:12px;font-size:14px}
.rating b{color:#e1a600}
.breadcrumbs{
  padding-top:22px;
  color:var(--muted);
  font-size:13px;
}
.breadcrumbs a{text-decoration:underline;text-underline-offset:3px}

.category-hero{padding:30px 0 22px}
.category-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
}
.category-photo{
  min-height:600px;
  border-radius:28px;
  overflow:hidden;
  background:#eee;
}
.category-photo img{height:100%}
.category-copy{
  min-height:600px;
  border-radius:28px;
  background:var(--soft);
  padding:58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.category-copy h1{font-size:clamp(42px,5vw,68px)}
.category-copy .rating{
  display:inline-flex;
  gap:7px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  width:max-content;
  margin:8px 0 24px;
}
.feature{
  background:var(--soft);
  border-radius:20px;
  padding:26px;
}
.feature h3{margin:0 0 10px}
.feature p{margin:0;color:var(--muted);line-height:1.7}
.promo{
  background:var(--dark);
  color:#fff;
  border-radius:30px;
  padding:52px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
}
.promo h2{
  margin:0 0 12px;
  font-size:clamp(34px,4vw,54px);
  letter-spacing:-2px;
}
.promo p{margin:0;color:#d8d8d8;line-height:1.7}
.promo .btn{background:#fff;color:#111;border-color:#fff}
footer{
  margin-top:60px;
  border-top:1px solid var(--line);
  padding:44px 0;
  color:#6b6762;
  font-size:13px;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer-links{display:flex;gap:18px;flex-wrap:wrap}

@media(max-width:900px){
  .menu{display:none}
  .hero-grid,.category-grid{grid-template-columns:1fr}
  .hero-copy,.category-copy{min-height:auto;padding:44px 30px}
  .hero-img{min-height:440px}
  .category-photo{min-height:480px}
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .promo{grid-template-columns:1fr}
}
@media(max-width:560px){
  .brand{font-size:19px}
  .brand-mark{width:34px;height:34px;font-size:18px}
  .actions .btn:first-child{display:none}
  .hero{padding-top:20px}
  .hero-copy,.hero-img,.category-photo,.category-copy{border-radius:22px}
  .hero-img{min-height:350px}
  .category-photo{min-height:390px}
  .grid-4{grid-template-columns:1fr}
  .card img{height:380px}
  section{padding:48px 0}
  h1{letter-spacing:-2px}
  .promo{padding:32px 24px;border-radius:24px}
}
