:root{
  --bg:#e9eaee;
  --text:#121212;
  --muted:#2a2a2a;
  --line:#111;
  --btn:#1f6fb2;
  --btnText:#fff;
  --wrap:1200px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; background:var(--bg); color:var(--text); }
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 32px; }

.header{ padding:26px 0 6px; }
.header__logoRow{ display:flex; align-items:center; justify-content:center; }
.brandLogo{ width:280px; height:auto; display:block; }

.navRow{
  display:flex;
  justify-content:center;
  gap:60px;
  padding:14px 0 10px;
  font-size:18px;
}
.navRow a{ padding:6px 2px; }
.navRow a:hover{ text-decoration:underline; }

.divider{
  height:4px;
  background:var(--line);
  box-shadow: 0 6px 10px rgba(0,0,0,.25);
}

.hero{ padding:58px 0 64px; }
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:48px;
  align-items:start;
}
.heroTitle{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight:600;
  font-size:56px;
  letter-spacing:-0.02em;
  margin:0;
  line-height:1.05;
}
.heroCopy{
  font-size:18px;
  line-height:1.65;
  margin-top:10px;
  max-width:68ch;
}
.heroCTA{ display:flex; justify-content:center; margin-top:46px; }
.btn{
  background:var(--btn);
  color:var(--btnText);
  border:none;
  padding:18px 86px;
  font-size:16px;
  border-radius:0;
  cursor:pointer;
}
.btn:hover{ filter:brightness(.95); }

.section{ padding:40px 0; }

.productsTitle{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size:30px;
  margin:0 0 18px;
}
.productCard{
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:24px;
  padding:18px 0;
  border-top:1px solid rgba(0,0,0,.18);
}
.productCard img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}
.productCard h3{ margin:0 0 8px; font-size:24px; }
.productCard p{ margin:0 0 14px; line-height:1.6; }

.productActions{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.linkBtn{
  display:inline-block;
  padding:10px 14px;
  border:2px solid #111;
  color:#111;
}
.linkBtn:hover{ background:rgba(0,0,0,.05); }

.fine{ color:var(--muted); font-size:13px; line-height:1.55; }

.detailsBlock details{
  border:1px solid rgba(0,0,0,.18);
  padding:10px 12px;
  margin:10px 0;
  background:rgba(255,255,255,.25);
}
.detailsBlock summary{ cursor:pointer; font-weight:700; }

.footer{
  padding:26px 0;
  border-top:1px solid rgba(0,0,0,.18);
  font-size:14px;
}

@media (max-width: 960px){
  .wrap{ padding:0 18px; }
  .brandLogo{ width:240px; }
  .navRow{ gap:26px; }
  .heroGrid{ grid-template-columns: 1fr; }
  .heroTitle{ font-size:40px; }
  .productCard{ grid-template-columns: 1fr; }
}
