:root {
  --bg: #fffafa;
  --text: #261f24;
  --muted: #6f6269;
  --pink: #f7cddd;
  --pink-strong: #d986a4;
  --pink-soft: #fff1f6;
  --line: #f1dce5;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(83, 45, 60, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7vw;
  background: rgba(255, 250, 250, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo { font-weight: 800; letter-spacing: -0.04em; }
.nav nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
.nav nav a:hover { color: var(--pink-strong); }

.section { padding: 90px 7vw; max-width: 1280px; margin: 0 auto; }
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -0.05em; }
h1 { font-size: clamp(44px, 7vw, 86px); max-width: 900px; }
h2 { font-size: clamp(34px, 4vw, 58px); margin-bottom: 28px; }
h3 { font-size: 22px; margin-bottom: 12px; }
p { color: var(--muted); font-size: 17px; }
.hero-text { max-width: 720px; margin: 28px 0 34px; font-size: 20px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all .2s ease;
}
.primary { background: var(--text); color: white; }
.secondary { background: var(--pink-soft); border: 1px solid var(--line); color: var(--text); }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-image-card {
  border-radius: 36px;
  overflow: hidden;
  background: var(--pink);
  box-shadow: var(--shadow);
  max-height: 720px;
}
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.intro { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; border-top: 1px solid var(--line); }
.cards { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card, .timeline-item, .feature, .personal, .contact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(83, 45, 60, 0.05);
}
.card p, .timeline-item p { margin-bottom: 0; font-size: 15px; }
.feature { display: grid; grid-template-columns: 1fr; }
.text-link { display: inline-block; margin-top: 10px; color: var(--pink-strong); font-weight: 800; }
.timeline { display: grid; gap: 18px; }
.timeline-item span { color: var(--pink-strong); font-size: 13px; font-weight: 800; }
.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tags span {
  background: var(--pink-soft);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}
.personal p { max-width: 900px; font-size: 22px; color: var(--text); }
.contact { text-align: center; }
.contact p { max-width: 680px; margin: 0 auto 26px; }
.center { justify-content: center; }
footer { padding: 36px 7vw; text-align: center; border-top: 1px solid var(--line); }
footer p { font-size: 14px; }

@media (max-width: 900px) {
  .nav { align-items: flex-start; gap: 14px; }
  .nav nav { display: none; }
  .hero, .intro { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 6vw; }
}
