:root {
  --bg: #f6f1e8;
  --panel: #fbf8f1;
  --text: #191817;
  --muted: #6a655e;
  --accent: #456b5f;
  --line: #d4cec3;
  --sticker: #fff9ee;
  --shadow: 0 20px 45px rgba(28, 27, 25, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at 10% 0%, #fefaf2 0%, transparent 44%),
    radial-gradient(circle at 92% 84%, #ece6d9 0%, transparent 52%),
    var(--bg);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(38px);
}

.bg-orb--top {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  right: -8rem;
  background: rgba(69, 107, 95, 0.18);
}

.bg-orb--bottom {
  width: 18rem;
  height: 18rem;
  bottom: -6rem;
  left: -6rem;
  background: rgba(203, 147, 95, 0.16);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(246, 241, 232, 0.86);
  border-bottom: 1px solid rgba(25, 24, 23, 0.08);
}

.site-nav__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0.95rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__brand {
  text-decoration: none;
  color: var(--text);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.site-nav__links {
  display: flex;
  gap: 1.2rem;
}

.site-nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.93rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav__links a:hover {
  color: var(--accent);
}

.site-shell {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2.3rem 1.4rem 5rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 2rem 0 2.5rem;
}

.hero__content {
  max-width: 40rem;
}

.hero h1,
.content-section h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 7.4vw, 4.5rem);
}

.hero h2 {
  margin: 0.7rem 0 1.3rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero p {
  margin: 0.25rem 0;
  max-width: 34rem;
}

.hero__sticker {
  position: absolute;
  top: 0.25rem;
  right: -1rem;
  width: clamp(9rem, 27vw, 13rem);
  margin: 0;
  padding: 0.5rem;
  background: var(--sticker);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  box-shadow: var(--shadow);
  transform: rotate(7deg);
  transform-origin: 30% 30%;
  animation: sticker-float 7s ease-in-out infinite;
}

.hero__sticker::before {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 0.78rem;
  top: -0.36rem;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(240, 232, 215, 0.9);
  border: 1px solid rgba(190, 178, 153, 0.6);
}

.hero__sticker img {
  width: 100%;
  display: block;
  border-radius: 0.14rem;
}

.hero__sticker figcaption {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-section {
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
}

.content-section h2 {
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  margin-bottom: 1.25rem;
}

.reading-column {
  max-width: 40rem;
}

.reading-column p {
  margin: 0 0 0.9rem;
}

.job-item {
  display: grid;
  grid-template-columns: minmax(12rem, 15rem) 1fr;
  gap: 1rem 1.8rem;
  padding: 1.1rem 0;
  border-top: 1px dashed var(--line);
}

.job-item:first-of-type {
  border-top: 1px solid var(--line);
}

.job-item__meta h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.3rem;
}

.job-item__meta p {
  margin: 0.1rem 0;
  color: var(--muted);
}

.job-date {
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-item__body p {
  margin: 0 0 0.35rem;
}

.contact-note {
  margin: 0.4rem 0 1.2rem;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-list a,
.back-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-list a:hover,
.back-link:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-top: 1.25rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: fade-up 0.75s ease forwards;
}

.section-reveal--1 {
  animation-delay: 0.05s;
}

.section-reveal--2 {
  animation-delay: 0.16s;
}

.section-reveal--3 {
  animation-delay: 0.27s;
}

.section-reveal--4 {
  animation-delay: 0.38s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sticker-float {
  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }
  50% {
    transform: rotate(5.4deg) translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__sticker {
    animation: none;
  }
}

.site-nav__links a:focus-visible,
.contact-list a:focus-visible,
.site-nav__brand:focus-visible,
.back-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 760px) {
  .site-nav__inner {
    padding: 0.85rem 1rem;
  }

  .site-shell {
    padding: 1.3rem 1rem 4rem;
  }

  .site-nav__links {
    gap: 0.8rem;
  }

  .site-nav__links a {
    font-size: 0.77rem;
  }

  .hero {
    padding-top: 1.1rem;
  }

  .hero__sticker {
    position: static;
    margin: 1.1rem auto 0;
    transform: rotate(2.5deg);
    animation: none;
  }

  .job-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}
