/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  align-items: center;
  min-height: 100vh;
  padding: 60px 48px;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,98,28,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* LEFT */
.hero-left { text-align: right; }

.hero-name {
  font-family: var(--oswald);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-name span {
  display: block;
  color: var(--amber);
}

.hero-role {
  margin-top: 14px;
  font-family: var(--oswald);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-tagline {
  margin-top: 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.8;
  font-style: italic;
  font-weight: 300;
  max-width: 360px;
  margin-left: auto;
  border-right: 2px solid var(--amber);
  padding-right: 20px;
}

/* PHOTO */
.hero-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-ring {
  position: relative;
  width: 260px; height: 260px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(from 0deg, var(--amber), var(--bg3), var(--amber2), var(--bg3), var(--amber));
  animation: spin 12s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.photo-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
  animation: spin 12s linear infinite reverse;
}

.photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.05);
  display: block;
}

.amber-dot {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--amber);
}

/* RIGHT */
.hero-right {}

.contact-list { list-style: none; }
.contact-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--text); opacity: 0.85;
}
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--amber-glow);
  border: 1px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
  font-size: 13px;
}

.blurred-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* CTA */
.cta-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--amber);
  background: rgba(200,98,28,0.08);
  color: var(--amber);
  font-family: var(--oswald);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
  background: rgba(200,98,28,0.18);
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-left { text-align: center; }
  .hero-tagline {
    margin: 28px auto 0;
    border-right: none;
    border-left: 2px solid var(--amber);
    padding-right: 0;
    padding-left: 20px;
  }
}
