/* Minimal static rebuild for stellamanns.com
   Files: index.html, styles.css, script.js, images/hero.jpg
*/

:root{
  --brand: #5a8ea0; /* muted blue like the original */
  --text: #1a1a1a;
  --muted: #7b7b7b;
  --border: #e6e6e6;
}

*{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
}

/* HERO */
.hero{
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero__bg{
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__brand{
  position: absolute;
  left: clamp(20px, 5vw, 70px);
  bottom: clamp(40px, 8vh, 70px);
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__title{
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.05;
}

.hero__subtitle{
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.95;
}

.hero__down{
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(3px);
}

.hero__down svg path{
  fill: currentColor;
}

.hero__down:hover{
  background: rgba(0,0,0,0.25);
}

/* CONTENT SECTION */
.section{
  border-top: 1px solid var(--border);
}

.section__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 28px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.kicker{
  font-size: 14px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #111;
}

.meta{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta__edit{
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted rgba(0,0,0,0.25);
}

.meta__edit:hover{
  color: #333;
  border-bottom-color: rgba(0,0,0,0.5);
}

.post__title{
  margin: 18px 0 0 0;
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 44px);
  line-height: 1.18;
}

.post__text{
  margin: 18px 0 0 0;
  font-size: 18px;
  color: #333;
  max-width: 54ch;
}

/* RESPONSIVE */
@media (max-width: 840px){
  .hero__down{
    right: 18px;
  }
  .section__inner{
    grid-template-columns: 1fr;
    padding: 80px 22px;
    gap: 24px;
  }
}

@media (max-width: 420px){
  .hero__subtitle{
    font-size: 16px;
  }
}
