:root {
  --forest: #123c32;
  --forest-deep: #082a23;
  --moss: #66855f;
  --cream: #f3eedf;
  --paper: #fffaf0;
  --ink: #17332c;
  --rust: #775f45;
  --sand: #d7c6a5;
  --sand-deep: #c8b28a;
  --gold: #d9b76f;
  --line: rgba(23, 51, 44, 0.2);
  --sans: "DM Sans", sans-serif;
  --serif: "Fraunces", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
}
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
  color: var(--paper);
}
.name-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-family: var(--serif);
  text-decoration: none;
}
nav { display: flex; gap: clamp(1rem, 3vw, 2.25rem); }
nav a { font-size: .95rem; text-decoration: none; opacity: .82; }
nav a:hover, nav a:focus-visible { opacity: 1; }

.hero {
  position: relative;
  min-height: 95svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 8rem clamp(1.25rem, 7vw, 7rem) 5rem;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(8,42,35,.86) 0%, rgba(8,42,35,.64) 57%, rgba(8,42,35,.26) 100%),
    url("jungle-canopy.webp") center / cover no-repeat,
    var(--forest-deep);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; max-width: 68rem; }
.eyebrow, .section-label {
  margin: 0 0 1.35rem;
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin-top: 0; }
h1 { max-width: 64rem; margin-bottom: 1.5rem; font-size: clamp(3rem, 7.4vw, 7.2rem); letter-spacing: -.045em; }
.hero-intro { font-size: clamp(1.05rem, 2vw, 1.35rem); opacity: .78; }
.hero-actions, .contact-links { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.25rem; }
.hero-note { position: absolute; z-index: 2; right: clamp(1.25rem, 4vw, 4rem); bottom: 1.4rem; margin: 0; font-size: .82rem; opacity: .62; }
.button {
  display: inline-block;
  padding: .82rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--paper); color: var(--forest-deep); }
.button-dark { background: var(--forest); color: var(--paper); }
.text-link { font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: .28rem; }
.text-link-light { color: var(--paper); }

.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit-one { width: 37rem; height: 37rem; right: -13rem; top: 6rem; }
.orbit-two { width: 20rem; height: 20rem; right: 5rem; top: 14rem; border-color: rgba(217,183,111,.25); }

.section-pad { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7rem); }
.story { display: grid; grid-template-columns: minmax(13rem, .8fr) 2.2fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.story-aside { max-width: 22rem; }
.portrait-frame { margin: 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--forest); border: 1px solid rgba(23,51,44,.14); border-radius: 1.25rem 4rem 1.25rem 4rem; box-shadow: 0 1.4rem 3.5rem rgba(8,42,35,.14); }
.portrait-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.story-copy { max-width: 58rem; }
.story h2, .section-heading h2, .contact h2 { font-size: clamp(2.35rem, 5vw, 4.8rem); letter-spacing: -.035em; }
.story-copy > p { max-width: 46rem; font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.section-heading { max-width: 58rem; margin-bottom: 4rem; }

.practice { background: var(--paper); }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.practice-card { min-height: 21rem; padding: 2rem; border: 1px solid var(--line); display: flex; flex-direction: column; }
.practice-card:nth-child(2) { background: var(--forest); color: var(--paper); transform: translateY(1.5rem); }
.practice-card h3 { margin: auto 0 1rem; font-size: 2.3rem; }
.practice-card p { margin: 0; }
.card-index { font-size: .78rem; letter-spacing: .1em; opacity: .6; }

.experience { background: var(--cream); }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 1fr 2.15fr; gap: 3rem; padding: 2.25rem 0; border-bottom: 1px solid var(--line); }
.timeline-meta h3 { margin-bottom: .35rem; font-size: 1.65rem; }
.timeline-meta p { margin: 0; font-size: .88rem; opacity: .65; }
.timeline-copy { max-width: 48rem; }
.timeline-copy p { margin-top: 0; }
.role { font-weight: 600; color: var(--rust); }

.music { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(3rem, 6vw, 6rem); align-items: center; min-height: 39rem; color: var(--forest-deep); background: linear-gradient(145deg, var(--sand) 0%, var(--sand-deep) 100%); }
.music-photo { margin: 0; overflow: hidden; aspect-ratio: 8 / 5; background: var(--forest-deep); border: 1px solid rgba(8,42,35,.16); border-radius: 4rem 1.25rem 4rem 1.25rem; box-shadow: 0 1.5rem 4rem rgba(8,42,35,.18); }
.music-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.music-copy { position: relative; z-index: 2; max-width: 48rem; }
.music h2 { margin-bottom: 1.5rem; font-size: clamp(3rem, 6vw, 6rem); }
.music-copy > p:not(.section-label) { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
.music-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(8,42,35,.24); }
.music-future { margin: 0; font-size: .95rem; font-style: italic; opacity: .78; }

.toolkit { background: var(--paper); }
.toolkit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.toolkit-grid h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.toolkit-grid p { margin: 0; }

.contact { text-align: center; background: var(--gold); }
.contact h2 { max-width: 52rem; margin-inline: auto; }
.contact > p:not(.section-label) { max-width: 39rem; margin-inline: auto; font-size: 1.15rem; }
.contact-links { justify-content: center; }

footer { display: flex; justify-content: space-between; gap: 2rem; padding: 2rem clamp(1.25rem, 4vw, 4rem); color: var(--paper); background: var(--forest-deep); font-size: .83rem; }
footer p { margin: 0; opacity: .7; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .site-header { padding-top: 1.1rem; }
  nav { gap: 1rem; }
  nav a { font-size: .85rem; }
  .hero { min-height: 100svh; }
  .hero-note { left: 1.25rem; right: auto; }
  .story, .timeline-item, .music { grid-template-columns: 1fr; }
  .practice-grid, .toolkit-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 16rem; }
  .practice-card:nth-child(2) { transform: none; }
  .timeline-item { gap: 1rem; }
  .story-aside { max-width: 100%; }
  .portrait-frame { max-width: 22rem; }
  .music-photo { aspect-ratio: 16 / 10; }
  .hero-actions, .contact-links { align-items: flex-start; flex-direction: column; }
  .music-actions { align-items: flex-start; flex-direction: column; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Space for the expanded experience and creative practice. */
.experience-examples { margin: 1rem 0 0; padding-left: 1.25rem; }
.experience-examples li + li { margin-top: .75rem; }
.music { align-items: start; }
.music-actions { flex-wrap: wrap; }
.music-actions .button { flex-shrink: 0; }
.interests { background: var(--paper); padding-top: 0; }
.interest-list { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; list-style: none; padding: 1.5rem 0 0; margin: 0; border-top: 1px solid var(--line); }
.interest-list li { padding-left: 1rem; position: relative; }
.interest-list li::before { content: "·"; position: absolute; left: 0; }
