@font-face {
  font-family: "BarlowCustom";
  src: url("assets/fonts/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BarlowCustom";
  src: url("assets/fonts/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BarlowCustom";
  src: url("assets/fonts/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BarlowCustom";
  src: url("assets/fonts/Barlow-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-primary: #f5a116;
  --brand-primary-700: #d28a13;
  --brand-secondary: #162b47;
  --brand-secondary-600: #384a61;
  --brand-secondary-200: #bcc3ca;
  --brand-secondary-100: #dee1e5;
  --paper: #f8fafc;
  --card: #ffffff;
  --text-main: #162b47;
  --text-soft: #4f6178;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: min(1180px, 92vw);
  --shadow-soft: 0 16px 34px rgba(22, 43, 71, 0.09);
  --shadow-strong: 0 20px 44px rgba(12, 25, 40, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 20% 10%, #fff8eb 0, #f7f9fc 45%, #f5f8fb 100%);
}

img {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "BarlowCustom", "Manrope", sans-serif;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.scene__orb {
  position: absolute;
  filter: blur(2px);
  opacity: 0.65;
  border-radius: 999px;
}

.scene__orb--one {
  width: 34rem;
  height: 34rem;
  top: -8rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(245, 161, 22, 0.45), rgba(245, 161, 22, 0));
  animation: float-a 12s ease-in-out infinite;
}

.scene__orb--two {
  width: 28rem;
  height: 28rem;
  bottom: -8rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(22, 43, 71, 0.22), rgba(22, 43, 71, 0));
  animation: float-b 14s ease-in-out infinite;
}

.scene__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(22, 43, 71, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 43, 71, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(22, 43, 71, 0.08);
}

.topbar__inner {
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.brand__mark {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.72rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-700));
  color: var(--brand-secondary);
  display: grid;
  place-items: center;
  font-family: "BarlowCustom", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(245, 161, 22, 0.4);
}

.brand__text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-secondary);
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-secondary-600);
}

.topbar__nav a:hover {
  color: var(--brand-secondary);
}

.hero {
  padding: 6.4rem 0 4.4rem;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2.1rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(22, 43, 71, 0.07);
  color: var(--brand-secondary-600);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.8vw, 4rem);
  line-height: 0.95;
  max-width: 14ch;
  color: var(--brand-secondary);
}

.hero__lead {
  margin-top: 1.4rem;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.74;
}

.hero__actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.1rem;
  border-radius: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-700));
  color: var(--brand-secondary);
  box-shadow: 0 14px 30px rgba(245, 161, 22, 0.3);
}

.btn--ghost {
  border: 1px solid rgba(22, 43, 71, 0.24);
  color: var(--brand-secondary);
  background: rgba(255, 255, 255, 0.86);
}

.hero__chips {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.hero__chips li {
  padding: 0.5rem 0.76rem;
  background: var(--card);
  border: 1px solid rgba(22, 43, 71, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-secondary-600);
}

.hero__profile {
  display: grid;
  gap: 1rem;
}

.profile-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.65rem;
  border: 1px solid rgba(22, 43, 71, 0.18);
  box-shadow: var(--shadow-strong);
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 31, 52, 0.68) 0%, rgba(16, 31, 52, 0) 42%);
}

.profile-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-card__meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.profile-card__name {
  color: white;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.profile-card__role {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  margin-top: 0.2rem;
}

.quote {
  padding: 1rem 1.1rem;
  background: white;
  border: 1px solid rgba(22, 43, 71, 0.11);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.quote p {
  font-family: "Fraunces", serif;
  color: var(--brand-secondary);
  line-height: 1.5;
}

.section {
  padding: 5rem 0;
}

.section__intro {
  max-width: 56rem;
}

.section__intro h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.06;
}

.section--split {
  padding-top: 2.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.1rem;
}

.panel {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(22, 43, 71, 0.12);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.panel__label {
  color: var(--brand-primary-700);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 0.9rem;
}

.panel h2 {
  font-size: clamp(1.56rem, 2.7vw, 2.3rem);
  line-height: 1.08;
}

.panel p {
  margin-top: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.panel--dark {
  color: white;
  background:
    linear-gradient(165deg, rgba(22, 43, 71, 0.97), rgba(33, 58, 88, 0.95)),
    url("assets/images/pattern.png");
  background-size: cover;
  border-color: rgba(255, 255, 255, 0.18);
}

.panel--dark .panel__label {
  color: #ffd487;
}

.focus-list {
  list-style: none;
  margin: 0.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.focus-list li {
  padding: 0.72rem 0.82rem;
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.92rem;
  line-height: 1.48;
}

.metrics {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.15rem;
  border: 1px solid rgba(22, 43, 71, 0.12);
  box-shadow: var(--shadow-soft);
  min-height: 10.8rem;
}

.metric:nth-child(1),
.metric:nth-child(4) {
  background: linear-gradient(165deg, rgba(22, 43, 71, 0.99), rgba(39, 65, 95, 0.96));
}

.metric:nth-child(1) .metric__number,
.metric:nth-child(1) .metric__label,
.metric:nth-child(4) .metric__number,
.metric:nth-child(4) .metric__label {
  color: white;
}

.metric__number {
  font-family: "BarlowCustom", sans-serif;
  font-size: clamp(1.7rem, 3.7vw, 2.4rem);
  line-height: 1;
  color: var(--brand-secondary);
  font-weight: 700;
}

.metric__label {
  margin-top: 0.66rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.section--experience {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.94));
}

.timeline {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  padding: 1.22rem 1.2rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(22, 43, 71, 0.13);
  box-shadow: var(--shadow-soft);
}

.timeline-item__date {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary-700);
  margin-bottom: 0.62rem;
}

.timeline-item h3 {
  font-size: 1.25rem;
  line-height: 1.14;
}

.timeline-item p {
  margin-top: 0.64rem;
  color: var(--text-soft);
  line-height: 1.62;
}

.work-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.work-card {
  padding: 1.28rem;
  border-radius: 1rem;
  border: 1px solid rgba(22, 43, 71, 0.12);
  background: white;
  box-shadow: var(--shadow-soft);
}

.work-card__tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary-600);
}

.work-card h3 {
  margin-top: 0.54rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.work-card p {
  margin-top: 0.6rem;
  line-height: 1.6;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section--accent {
  background: linear-gradient(175deg, rgba(22, 43, 71, 0.96), rgba(33, 58, 88, 0.94));
  color: white;
  position: relative;
  overflow: hidden;
}

.section--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/pattern.png");
  background-size: 380px;
  background-position: center;
  opacity: 0.1;
}

.thought {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.thesis-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.86rem;
}

.thesis-list article {
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.thesis-list h3 {
  font-size: 1.2rem;
}

.thesis-list p {
  margin-top: 0.42rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.58;
}

.thought__badge {
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(245, 161, 22, 0.95), rgba(210, 138, 19, 0.95));
  color: #172c47;
  padding: 1.2rem;
  box-shadow: 0 18px 34px rgba(245, 161, 22, 0.35);
}

.thought__badge-label {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.thought__badge h3 {
  margin-top: 0.5rem;
  font-size: 1.75rem;
  line-height: 1.02;
}

.thought__badge p {
  margin-top: 0.54rem;
  line-height: 1.48;
  font-weight: 600;
}

.section--contact {
  text-align: center;
}

.contact {
  max-width: 52rem;
}

.contact h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.contact p {
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.68;
}

.contact__links {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.calendly-wrap {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(22, 43, 71, 0.12);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 760px;
}

.footer {
  border-top: 1px solid rgba(22, 43, 71, 0.12);
  padding: 1.2rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.84);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-a {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(20px) translateX(-16px);
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(16px);
  }
}

@media (max-width: 1040px) {
  .topbar__nav {
    display: none;
  }

  .hero__layout,
  .split,
  .timeline,
  .thought {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 5.4rem;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 3.6rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .panel,
  .metric,
  .timeline-item,
  .work-card {
    padding: 1rem;
  }

  .work-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .calendly-inline-widget {
    min-width: 100%;
    height: 700px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
