.hero{ display:grid; grid-template-columns:1fr; gap:1.2rem; align-items:center; margin:1.2rem auto; width:90%; max-width:var(--container); }
.hero-media{ width:100%; min-height:260px; overflow:hidden; border-radius:14px; box-shadow:var(--shadow); background: var(--white); }
.hero-img{ width:100%; height:100%; display:block; object-fit:cover; object-position:center; min-height:260px; transition: transform 400ms ease; }
.hero-media:hover .hero-img{ transform:scale(1.02); }
.hero-content{ background: var(--white); padding:1.2rem; border-radius:12px; box-shadow:var(--shadow); }
.hero-title{ font-family:"Merriweather", serif; color:var(--contrast); margin:0 0 .5rem 0; font-size:1.6rem; }
.hero-sub{ color:var(--muted); margin:0 0 1rem 0; line-height:1.5; }
.hero-actions{ display:flex; gap:.6rem; flex-wrap:wrap; }

.feature{ display:flex; flex-direction:column; gap:1rem; align-items:center; }
.feature-img{ width:100%; height:260px; object-fit:cover; border-radius:12px; box-shadow:var(--shadow); background: var(--white); }
.feature-body{ max-width:760px; }
.subsection{ padding:1rem 0; border-bottom:1px dashed rgba(156,79,99,0.06); }
.subsection:last-child{ border-bottom:none; }
