* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #2a2a2a;
  background: #fbf7f2;
  animation: fadeinbody 1.2s ease both;
}
@keyframes fadeinbody { from {opacity:0;} to {opacity:1;} }
.fade-in { opacity:0; animation: fadein 1.6s ease forwards; }
@keyframes fadein { to { opacity: 1; transform: none; } }

h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-weight: 600; font-size: clamp(40px, 7vw, 72px); line-height: 1.05; margin: 0 0 14px; }
h2 { font-size: clamp(28px, 4.5vw, 40px); margin: 0 0 12px; }
p { font-size: clamp(16px, 2.5vw, 18px); line-height: 1.7; margin: 10px 0; }

.container { max-width: 1150px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 32px); }

.hero { padding: clamp(40px, 8vw, 80px) 0; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
.tagline { color: #4b4b4b; opacity: .9; }
.actions { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }
.badge {
  display: inline-block;
  background: #e8e6dc;
  color: #1f1f1f;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
}
.cta {
  display: inline-block;
  background: #c3c9a4;
  color: #1f1f1f;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

.portrait {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.15);
  display: block;
  object-fit: cover;
}

.block-welcome {
  background: #b9c097;
  color: #fff;
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.block-welcome h2 { color: #fff; }

.footer {
  background: #e8e6dc;
  text-align: center;
  padding: 20px 24px;
}
.footer a { color: #2a2a2a; text-decoration: none; font-weight: 500; }
.footer a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .portrait { margin-top: 20px; }
}
