:root {
  --ink: #132437;
  --ink-soft: #243b55;
  --sea: #1f6f8b;
  --copper: #c4784a;
  --copper-bright: #d99263;
  --sand: #f3efe8;
  --mist: #e7eef4;
  --white: #ffffff;
  --muted: #5d6b7a;
  --max: 1080px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--sea);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 1.25rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--copper-bright);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-links .btn-primary {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(196, 120, 74, 0.28), transparent 34%),
    radial-gradient(circle at 82% 30%, rgba(31, 111, 139, 0.35), transparent 40%),
    linear-gradient(155deg, #0f2033 0%, #16324f 48%, #1a4660 100%);
}

.hero-glow {
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 55%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
  animation: drift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.5rem;
  max-width: 40rem;
  animation: rise 0.9s ease both;
}

.hero-photo {
  width: min(10.5rem, 42vw);
  height: min(10.5rem, 42vw);
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  margin: 0 0 1.35rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  animation: rise 0.9s ease both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-bright);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  animation: rise 1s ease both 0.08s;
}

.role {
  margin: 1rem 0 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
  animation: rise 1s ease both 0.16s;
}

.about,
.focus,
.connect {
  padding: 5rem 0;
}

.about {
  background:
    linear-gradient(180deg, #f7f3ed 0%, var(--sand) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem 3rem;
  align-items: start;
}

.about h2,
.focus h2,
.connect h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.focus {
  background:
    radial-gradient(circle at top left, rgba(31, 111, 139, 0.08), transparent 40%),
    var(--mist);
}

.section-head {
  max-width: 34rem;
  margin-bottom: 2.2rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.focus-grid h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-soft);
}

.focus-grid p {
  margin: 0;
  color: var(--muted);
}

.connect {
  background: var(--sand);
}

.connect-panel {
  text-align: center;
  max-width: 36rem;
  animation: rise 0.8s ease both;
}

.connect-panel p {
  margin: 0.9rem auto 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.35rem 0;
  font-size: 0.92rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--copper-bright);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-4%, -3%, 0);
  }
}

@media (max-width: 820px) {
  .about-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 6.5rem;
  }
}

@media (max-width: 600px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }

  .about,
  .focus,
  .connect {
    padding: 3.6rem 0;
  }
}
