/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 76px);
  padding: 2rem 4% 2rem 6%;
  gap: clamp(2rem, 4vw, 4.5rem);
  overflow: hidden;
}
.hero-content { flex: 1; max-width: 760px; }
.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.hero-content h1 .highlight { color: #ffffff; }
.hero-content h1 .accent-word { color: var(--accent); }
.hero-content h1 .line-block {
  display: block;
  white-space: nowrap;
  overflow: visible;
}
.hero-content .subheading {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.btn-primary {
  background-color: var(--accent);
  color: #2f343b;
  padding: 1rem 2.2rem;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background-color: #cdb18b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-outline {
  color: var(--text);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 1.5px solid rgba(240,237,230,0.25);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO VISUAL ── */
.hero-visual {
  flex: 0 0 auto;
  position: relative;
  width: min(54vw, 740px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  overflow: visible;
}
.photo-stack { position: relative; width: 105%; }
.photo-main {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  transform: rotate(-4deg);
  box-shadow: 0 36px 90px rgba(0,0,0,0.45);
  border: 10px solid #1a1f26;
}

/* ── ABOUT ── */
.about { background-color: #1a1f26; padding: 6rem 6%; }
.about-header { margin-bottom: 3rem; }
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.about-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.about-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.03em;
}
.about-header h2 .accent-word { color: var(--accent); }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text { display: flex; flex-direction: column; gap: 1.3rem; }
.about-text p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); font-weight: 400; }
.about-text p strong { color: #ffffff; font-weight: 600; }
.about-text .about-cta { margin-top: 0.5rem; }
.about-chart-col { width: 100%; }
.about-chart-col svg { width: 100%; height: auto; }

/* ── CHART ANIMATIONS ── */
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.2s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
.chart-area { opacity: 0; animation: fadeUp 1s ease 1s forwards; }
.chart-dot { opacity: 0; animation: fadeUp 0.4s ease forwards; }
.chart-label { opacity: 0; animation: fadeUp 0.5s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero {
    flex-direction: column-reverse;
    padding: 2.5rem 6%;
    min-height: auto;
    gap: 3rem;
  }
  .hero-visual { width: 100%; max-width: 520px; padding: 0; margin-right: 0; }
  .hero-content { max-width: 100%; }
  .hero-content h1 {
    font-size: clamp(1.9rem, 7vw, 3.2rem);
    line-height: 1.15;
  }
  .hero-content h1 .line-block {
    white-space: normal;
  }
  .about-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .about { padding: 4rem 6%; }
}
