/* ============================================
   Page Layout
   ============================================ */

/* --- Hero --- */

.hero {
  position: relative;
  height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  background-color: var(--color-surface-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 180%;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 148, 95, 0.03) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--champagne-400);
  margin-bottom: var(--space-5);
}

.hero__name {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  color: var(--color-text-on-dark);
  line-height: 1.05;
  margin-bottom: var(--space-3);
}

.hero__postnominals {
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wider);
  color: var(--champagne-400);
  margin-bottom: var(--space-8);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--midnight-200);
  margin-bottom: var(--space-8);
  line-height: var(--leading-snug);
}

.hero__desc {
  font-size: var(--text-sm);
  color: var(--midnight-300);
  max-width: 48ch;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  font-weight: var(--weight-light);
}

.hero__actions {
  display: flex;
  gap: var(--space-3);
}

.hero__image-heart {
  width: 340px;
  height: 400px;
  position: relative;
  border-radius: 62% 38% 42% 58% / 55% 60% 40% 45%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(184, 148, 95, 0.15);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-block: var(--space-24) var(--space-16);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__desc { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__image-heart {
    width: 240px;
    height: 300px;
    margin-inline: auto;
    order: -1;
  }
}

/* --- ACC Strip --- */

.acc-strip {
  background-color: var(--midnight-950);
  border-top: 1px solid rgba(184, 148, 95, 0.1);
  padding-block: var(--space-4);
}

.acc-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.acc-strip__badge {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--champagne-400);
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(184, 148, 95, 0.2);
}

.acc-strip__text {
  font-size: var(--text-sm);
  color: var(--midnight-300);
  font-weight: var(--weight-light);
}

/* --- Research --- */

.research__header {
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.research__stats {
  display: flex;
  gap: var(--space-10);
}

.research__body {
  max-width: 70ch;
}

.research__lede {
  font-size: var(--text-lg);
  color: var(--midnight-200);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  vertical-align: middle;
}

.dot--green { background-color: var(--green-400); }
.dot--amber { background-color: var(--amber-400); }
.dot--red { background-color: var(--red-400); }


.research__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  margin-top: var(--space-10);
}

.research__columns .research__col h3 {
  font-size: var(--text-2xl);
}

.research__columns .research__col p {
  font-size: var(--text-sm);
  color: var(--midnight-300);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
}

.research__columns .research__col p + p {
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .research__columns {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .research__header {
  padding-top: var(--space-6);
    flex-direction: column;
    align-items: flex-start;
  }
  .research__stats {
    gap: var(--space-6);
  }
}

/* --- About --- */

.about__grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: var(--space-16);
  align-items: start;
}

.about__narrative {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  font-weight: var(--weight-light);
}

.about__narrative p + p {
  margin-top: var(--space-5);
}

.about__narrative strong {
  color: var(--color-text-primary);
  font-weight: var(--weight-regular);
}

.about__credentials {
  padding: var(--space-8);
  background-color: var(--color-surface-muted);
  border-left: 2px solid var(--color-brand-accent);
  position: sticky;
  top: var(--space-20);
}

.about__credentials h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.about__cred {
  padding-block: var(--space-3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.about__cred:last-child { border-bottom: none; }

.about__cred-label {
  font-size: 0.6875rem;
  color: var(--color-text-tertiary);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.about__cred-value {
  font-size: var(--text-sm);
  font-weight: var(--weight-light);
}

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__credentials { position: static; }
}

/* --- Publications --- */

.publications__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-8);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.publications__header h2 {
  font-size: var(--text-3xl);
}

/* --- Practice --- */

.practice__content {
  max-width: 50ch;
}

.practice__content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
  margin-top: var(--space-4);
}

.practice__areas {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
}

/* --- Contact --- */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contact__text {
  font-size: var(--text-base);
  color: var(--midnight-300);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
}

.contact__text p + p {
  margin-top: var(--space-5);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
}
