:root {
  --ink: #0a0d0b;
  --white: #f7f8f3;
  --silver: #cfd8d3;
  --green: #35f29a;
  --green-deep: #0f5d42;
  --clay: #b96943;
  --terracotta: #d88a55;
  --sand: #efe2c8;
  --fig: #371d2f;
  --max: 1180px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(53, 242, 154, 0.18), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 20;
  mix-blend-mode: screen;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(8, 10, 9, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(53, 242, 154, 0.9), rgba(247, 248, 243, 0.82) 45%, rgba(216, 138, 85, 0.92)),
    #0d120f;
  color: #07100b;
  clip-path: polygon(29% 0, 71% 0, 100% 29%, 100% 71%, 71% 100%, 29% 100%, 0 71%, 0 29%);
  box-shadow: 0 12px 34px rgba(53, 242, 154, 0.22);
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(7, 16, 11, 0.32);
  clip-path: inherit;
}

.crown {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 2px;
  transform: translateX(-50%);
}

.crown span {
  display: block;
  width: 6px;
  height: 8px;
  background: #07100b;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.crown span:nth-child(2) {
  height: 11px;
}

.crest-monogram {
  position: absolute;
  z-index: 2;
  top: 21px;
  left: 50%;
  color: #07100b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-50%);
}

.crest-monogram::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 18px;
  height: 1px;
  background: rgba(7, 16, 11, 0.72);
  transform: translateX(-50%);
}

.brand strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  min-width: 0;
}

.site-nav nav a {
  white-space: nowrap;
  color: rgba(247, 248, 243, 0.76);
  font-size: 0.92rem;
  transition: color 220ms ease;
}

.site-nav nav a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
}

.split-landing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 100vh;
  min-height: 100svh;
}

.landing-title {
  position: absolute;
  top: clamp(86px, 10vw, 118px);
  left: 50%;
  z-index: 6;
  width: min(780px, calc(100% - 36px));
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.landing-banner {
  padding: clamp(16px, 2.4vw, 26px) clamp(22px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.76), rgba(8, 10, 9, 0.42)),
    linear-gradient(90deg, rgba(53, 242, 154, 0.12), rgba(255, 208, 139, 0.1));
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.landing-title h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 5.9rem, 5.9rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.76);
}

.landing-title p {
  margin: 12px 0 0;
  color: rgba(247, 248, 243, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.35;
  text-shadow: 0 14px 50px rgba(0, 0, 0, 0.74);
}

.sneaky-monkey {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(20px, 5vw, 64px);
  z-index: 7;
  width: 76px;
  height: 66px;
  opacity: 0.42;
  transform: rotate(-8deg);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sneaky-monkey:hover,
.sneaky-monkey.is-chatting {
  opacity: 0.9;
  transform: rotate(-3deg) translateY(-3px);
}

.sneaky-monkey__button {
  position: relative;
  width: 58px;
  height: 52px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sneaky-monkey__ear {
  position: absolute;
  top: 15px;
  width: 20px;
  height: 23px;
  border-radius: 50%;
  background: #9b5c38;
  box-shadow: inset 0 0 0 6px rgba(255, 208, 139, 0.68);
}

.sneaky-monkey__ear.left {
  left: 0;
}

.sneaky-monkey__ear.right {
  right: 0;
}

.sneaky-monkey__face {
  position: absolute;
  left: 50%;
  top: 4px;
  width: 44px;
  height: 43px;
  border: 1px solid rgba(255, 247, 235, 0.28);
  border-radius: 46% 46% 52% 52%;
  background: linear-gradient(180deg, #704123, #2d1a12 72%);
  transform: translateX(-50%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.sneaky-monkey__eye {
  position: absolute;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.sneaky-monkey__eye.left {
  left: 12px;
}

.sneaky-monkey__eye.right {
  right: 12px;
}

.sneaky-monkey__brow {
  position: absolute;
  top: 12px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 247, 235, 0.78);
}

.sneaky-monkey__brow.left {
  left: 9px;
  transform: rotate(-16deg);
}

.sneaky-monkey__brow.right {
  right: 9px;
  transform: rotate(16deg);
}

.sneaky-monkey__muzzle {
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 23px;
  height: 14px;
  border-radius: 50% 50% 46% 46%;
  background: rgba(255, 208, 139, 0.82);
  transform: translateX(-50%);
}

.sneaky-monkey__smile {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid rgba(45, 26, 18, 0.88);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.sneaky-monkey__bubble {
  position: absolute;
  right: 52px;
  bottom: 42px;
  width: 190px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 9, 0.88);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(14px);
}

.sneaky-monkey__bubble::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 12px;
  width: 12px;
  height: 12px;
  background: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-45deg);
}

.sneaky-monkey.is-chatting .sneaky-monkey__bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.world {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(92px, 12vw, 150px) clamp(24px, 5vw, 72px) clamp(42px, 8vw, 90px);
  overflow: hidden;
  isolation: isolate;
}

.world::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: background 500ms ease, opacity 500ms ease;
}

.world__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.1, 1), filter 900ms ease;
}

.world:hover .world__media {
  transform: scale(1.09);
  filter: saturate(1.14) contrast(1.08);
}

.world-portfolio .world__media {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

.world-portfolio::after {
  background: linear-gradient(120deg, rgba(5, 8, 7, 0.96), rgba(8, 17, 13, 0.78) 48%, rgba(14, 68, 49, 0.32));
}

.world-gallery .world__media {
  background-image: url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1600&q=80");
}

.world-gallery::after {
  background: linear-gradient(120deg, rgba(55, 29, 47, 0.78), rgba(145, 76, 42, 0.54), rgba(239, 226, 200, 0.22));
}

.world__content {
  width: min(560px, 100%);
  min-height: 320px;
  display: grid;
  grid-template-rows: auto minmax(2.7em, auto) minmax(5.2em, auto) auto;
  align-content: end;
  transform: translateY(0);
  transition: transform 400ms ease;
}

.world:hover .world__content {
  transform: translateY(-12px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.world-gallery .eyebrow,
.gallery-section .eyebrow {
  color: #ffd08b;
}

.world h1,
.portfolio-hero h2,
.gallery-hero h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(3rem, 7.5rem, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.world p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(247, 248, 243, 0.78);
  font-size: 1.12rem;
  line-height: 1.6;
}

.world__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--white);
  font-weight: 800;
}

.world__cta::after {
  content: "";
  width: 54px;
  height: 1px;
  margin-left: 14px;
  background: currentColor;
  transition: width 260ms ease;
}

.world:hover .world__cta::after {
  width: 88px;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.portfolio-section {
  background:
    linear-gradient(180deg, #080b09 0%, #111714 48%, #050605 100%);
  padding: clamp(90px, 12vw, 150px) 0;
}

.portfolio-hero {
  min-height: 52vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.portfolio-hero h2 {
  background: linear-gradient(90deg, var(--white), #aefbd2 60%, #6d7b75);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.portfolio-copy {
  max-width: 920px;
}

.portrait-card {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: clamp(460px, 58vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111714;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 46%, rgba(5, 6, 5, 0.84)),
    radial-gradient(circle at 50% 22%, rgba(53, 242, 154, 0.18), transparent 42%);
  pointer-events: none;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 700ms ease, filter 700ms ease;
}

.portrait-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.08);
}

.portrait-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: rgba(247, 248, 243, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.role {
  margin: 18px 0 0;
  color: var(--green);
  font-weight: 800;
  font-size: 1.35rem;
}

.statement,
.gallery-hero p,
.contact-section p,
.vision p,
.panel p,
.project-grid p,
.timeline-card p {
  color: rgba(247, 248, 243, 0.72);
  font-size: 1.03rem;
  line-height: 1.75;
}

.statement {
  max-width: 760px;
  font-size: 1.28rem;
}

.hero-actions,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(53, 242, 154, 0.48);
  background: var(--green);
  color: #04120b;
  font-weight: 900;
}

.button.ghost {
  color: rgba(247, 248, 243, 0.84);
}

.brand-metrics,
.portfolio-grid,
.project-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-metrics {
  margin-bottom: 18px;
}

.brand-metrics div,
.panel,
.timeline,
.skills,
.projects,
.vision,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.brand-metrics div {
  padding: 26px;
}

.brand-metrics strong {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 4rem, 4rem);
  line-height: 1;
}

.brand-metrics span {
  color: rgba(247, 248, 243, 0.72);
}

.portfolio-grid {
  grid-template-columns: 1.45fr 0.8fr;
}

.panel,
.timeline,
.skills,
.projects,
.vision {
  padding: clamp(24px, 4vw, 42px);
}

.panel h3,
.section-heading h3,
.vision h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3rem, 3rem);
  line-height: 1;
}

.timeline,
.skills,
.projects,
.vision {
  margin-top: 18px;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 18px;
}

.timeline-item,
.category-tabs button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.timeline-item:hover,
.category-tabs button:hover {
  transform: translateY(-2px);
}

.timeline-item.is-active,
.category-tabs button.is-active {
  background: var(--green);
  color: #04120b;
  font-weight: 900;
}

.timeline-item span {
  margin-right: 8px;
  opacity: 0.72;
}

.timeline-card {
  min-height: 190px;
  padding: 26px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-card h4 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5rem, 2.5rem);
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.skill-cloud span {
  padding: 12px 16px;
  border: 1px solid rgba(53, 242, 154, 0.28);
  border-radius: 999px;
  background: rgba(53, 242, 154, 0.08);
}

.project-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d120f;
  transition: transform 240ms ease, border-color 240ms ease;
}

.project-grid article:hover {
  border-color: rgba(53, 242, 154, 0.55);
  transform: translateY(-6px);
}

.project-grid span {
  color: var(--green);
  font-weight: 900;
}

.project-grid h4 {
  margin: 18px 0 8px;
  font-size: 1.35rem;
}

.gallery-section {
  padding: clamp(90px, 12vw, 150px) 0;
  background:
    linear-gradient(180deg, #251423 0%, #6d3c2f 52%, #211313 100%);
  color: #fff7eb;
}

.gallery-hero {
  max-width: 900px;
  margin-bottom: 34px;
}

.gallery-hero h2,
.contact-section h2 {
  font-size: clamp(2.8rem, 6.5rem, 6.5rem);
}

.instagram-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.instagram-routes a,
.gallery-note {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 247, 235, 0.08);
}

.instagram-routes a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff7eb;
  font-weight: 800;
}

.gallery-note {
  margin-bottom: 24px;
  padding: 16px 18px;
  color: rgba(255, 247, 235, 0.76);
  line-height: 1.6;
}

.fashion-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
}

.fashion-board + .fashion-board {
  margin-top: clamp(54px, 9vw, 110px);
}

.fashion-board--reverse {
  grid-template-columns: minmax(280px, 0.7fr) minmax(280px, 0.95fr);
}

.fashion-board--reverse .fashion-board__image {
  order: 2;
}

.fashion-board--reverse .fashion-board__copy {
  order: 1;
}

.fashion-board__image {
  max-height: 82vh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #f8f5ee;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
  scrollbar-width: thin;
}

.fashion-board__image img {
  display: block;
  width: 100%;
  height: auto;
}

.fashion-board__copy {
  position: sticky;
  top: 104px;
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 247, 235, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.fashion-board__copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5.4rem, 5.4rem);
  line-height: 0.96;
}

.fashion-board__copy p {
  color: rgba(255, 247, 235, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.fashion-board__copy dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.fashion-board__copy div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 247, 235, 0.16);
}

.fashion-board__copy dt {
  color: #ffd08b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.fashion-board__copy dd {
  margin: 6px 0 0;
  color: rgba(255, 247, 235, 0.68);
  line-height: 1.55;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-tabs button.is-active {
  background: #ffd08b;
  color: #2b1714;
}

.post-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.post-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 247, 235, 0.08);
  color: #fff7eb;
  cursor: pointer;
  break-inside: avoid;
  text-align: left;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.post-card:hover {
  border-color: rgba(255, 208, 139, 0.74);
  background: rgba(255, 247, 235, 0.13);
  transform: translateY(-7px);
}

.post-card img {
  display: block;
  width: 100%;
  aspect-ratio: var(--ratio);
  object-fit: cover;
}

.post-card div {
  padding: 20px;
}

.post-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.3rem, 2.3rem);
  line-height: 1.02;
}

.post-card p {
  margin: 0;
  color: rgba(255, 247, 235, 0.76);
  line-height: 1.65;
}

.post-link-label {
  display: inline-flex;
  margin-top: 16px;
  color: #ffd08b;
  font-size: 0.88rem;
  font-weight: 900;
}

.post-reader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  overflow-y: auto;
  padding: 90px 18px 34px;
  background: rgba(18, 10, 10, 0.9);
  backdrop-filter: blur(20px);
}

.post-reader.is-open {
  display: block;
}

.reader-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  background: #fff7eb;
  color: #251423;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
}

.reader-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #251423;
  color: #fff7eb;
  cursor: pointer;
}

.reader-shell img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.reader-copy {
  padding: clamp(26px, 5vw, 56px);
}

.reader-copy .eyebrow {
  color: #b96943;
}

.reader-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5rem, 5rem);
  line-height: 0.98;
}

#reader-body p {
  color: rgba(37, 20, 35, 0.78);
  font-size: 1.08rem;
  line-height: 1.85;
}

.reader-source {
  color: #8a4428;
  font-weight: 900;
}

.contact-section {
  padding: clamp(90px, 12vw, 140px) 0;
  background: #080b09;
}

.contact-grid {
  grid-template-columns: 1fr 0.82fr;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-card label {
  display: grid;
  gap: 8px;
  color: rgba(247, 248, 243, 0.76);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(53, 242, 154, 0.65);
}

.socials a {
  color: rgba(247, 248, 243, 0.72);
}

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

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

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

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-nav {
    padding: 14px 18px;
    gap: 12px;
  }

  .brand strong {
    display: none;
  }

  .site-nav nav {
    gap: 14px;
    max-width: calc(100vw - 84px);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav nav::-webkit-scrollbar {
    display: none;
  }

  .split-landing {
    display: block;
    min-height: auto;
    padding: 78px 16px 28px;
    background:
      radial-gradient(circle at 18% 12%, rgba(53, 242, 154, 0.16), transparent 32%),
      radial-gradient(circle at 82% 18%, rgba(216, 138, 85, 0.14), transparent 34%),
      #080b09;
  }

  .world {
    min-height: clamp(330px, 48svh, 460px);
    padding: clamp(28px, 8vw, 46px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  }

  .world + .world {
    margin-top: 16px;
  }

  .landing-title {
    position: relative;
    top: auto;
    left: auto;
    width: min(640px, 100%);
    margin: 0 auto 16px;
    transform: none;
  }

  .landing-banner {
    padding: clamp(14px, 4vw, 22px) clamp(18px, 6vw, 34px);
  }

  .landing-title h1 {
    font-size: clamp(2.5rem, 4.7rem, 4.7rem);
  }

  .landing-title p {
    margin-top: 8px;
    font-size: 1.05rem;
  }

  .world__content {
    min-height: auto;
    grid-template-rows: auto;
  }

  .world h1 {
    font-size: clamp(2.25rem, 4rem, 4rem);
    line-height: 0.96;
  }

  .world p:not(.eyebrow) {
    max-width: 36rem;
    margin: 14px 0 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .sneaky-monkey {
    display: none;
  }

  .brand-metrics,
  .portfolio-grid,
  .project-grid,
  .contact-grid,
  .timeline-track {
    grid-template-columns: 1fr;
  }

  .portfolio-hero {
    grid-template-columns: 1fr;
    min-height: 58vh;
    min-height: auto;
  }

  .fashion-board {
    grid-template-columns: 1fr;
  }

  .fashion-board--reverse .fashion-board__image,
  .fashion-board--reverse .fashion-board__copy {
    order: initial;
  }

  .fashion-board__image {
    max-height: none;
  }

  .fashion-board__copy {
    position: static;
    min-height: auto;
  }

  .portrait-card {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    align-items: flex-start;
    padding: 10px 12px 12px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .site-nav nav {
    max-width: calc(100vw - 62px);
    gap: 12px;
  }

  .site-nav nav a {
    font-size: 0.78rem;
  }

  .portfolio-hero h2,
  .gallery-hero h2,
  .contact-section h2 {
    font-size: clamp(2.15rem, 3.55rem, 3.55rem);
    line-height: 0.98;
  }

  .split-landing {
    padding: 72px 12px 22px;
  }

  .landing-title {
    margin-bottom: 12px;
  }

  .landing-banner {
    padding: 13px 16px 15px;
  }

  .landing-title h1 {
    font-size: clamp(2.1rem, 3.55rem, 3.55rem);
    line-height: 0.98;
  }

  .landing-title p {
    font-size: 0.95rem;
  }

  .world h1 {
    font-size: clamp(2rem, 3.1rem, 3.1rem);
    line-height: 1;
  }

  .world {
    min-height: 292px;
    padding: 24px 20px;
  }

  .post-grid {
    columns: 1;
  }

  .portrait-card {
    min-height: 430px;
  }

  .reader-copy {
    padding: 24px 18px 30px;
  }

}

/* 2026 aesthetic refinement: restrained executive portfolio + museum gallery. */
:root {
  --ink: #0d0c0a;
  --caviar: #14120f;
  --charcoal: #201d18;
  --white: #f7f3ea;
  --paper: #f3efe6;
  --paper-deep: #e7dfd0;
  --silver: #cbc3b5;
  --green: #c9a968;
  --green-deep: #7d6634;
  --clay: #9c7442;
  --terracotta: #c9a968;
  --sand: #efe6d7;
  --fig: #211b18;
  --gold: #d7bd79;
  --gold-muted: #9f8650;
  --max: 1180px;
  color-scheme: dark;
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

body {
  background: var(--ink);
  color: var(--white);
  font-feature-settings: "kern" 1, "liga" 1;
}

.cursor-glow {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(215, 189, 121, 0.16), transparent 70%);
  transition: opacity 120ms ease;
}

.site-nav {
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(13, 12, 10, 0.72);
  border-bottom: 1px solid rgba(215, 189, 121, 0.13);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.brand-logo {
  border-color: rgba(215, 189, 121, 0.58);
  background:
    linear-gradient(135deg, #ede2bc, #b89b55 46%, #f5e6ae 72%, #8d7136),
    #15110b;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), inset 0 0 18px rgba(255, 255, 255, 0.18);
}

.brand strong,
.landing-title h1,
.world h1,
.portfolio-hero h2,
.gallery-hero h2,
.contact-section h2,
.panel h3,
.section-heading h3,
.vision h3,
.fashion-board__copy h3,
.timeline-card h4 {
  font-family: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  font-weight: 600;
}

.site-nav nav a {
  color: rgba(247, 243, 234, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 120ms ease, text-shadow 120ms ease;
}

.site-nav nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(215, 189, 121, 0.24);
}

.split-landing {
  background: #0d0c0a;
}

.landing-title {
  top: clamp(82px, 9vw, 126px);
  width: min(860px, calc(100% - 36px));
}

.landing-banner {
  display: grid;
  gap: clamp(8px, 1.2vw, 14px);
  padding: clamp(18px, 2.6vw, 30px) clamp(24px, 5vw, 64px);
  border: 1px solid rgba(215, 189, 121, 0.34);
  background:
    linear-gradient(180deg, rgba(21, 18, 13, 0.88), rgba(9, 9, 8, 0.74)),
    linear-gradient(90deg, rgba(215, 189, 121, 0.16), transparent 22%, transparent 78%, rgba(215, 189, 121, 0.12));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(215, 189, 121, 0.12);
}

.landing-banner::before,
.landing-banner::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 189, 121, 0.62), transparent);
}

.landing-title h1 {
  font-size: clamp(2.75rem, 6.35rem, 6.35rem);
  line-height: 0.88;
}

.landing-title p {
  max-width: 100%;
  margin: 0;
  color: rgba(247, 243, 234, 0.74);
  font-size: 1.02rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.world {
  padding-top: clamp(210px, 24vw, 270px);
}

.world__media {
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), filter 180ms ease;
}

.world:hover .world__media {
  transform: scale(1.045);
  filter: saturate(0.9) contrast(1.08);
}

.world-portfolio::after {
  background:
    linear-gradient(180deg, rgba(13, 12, 10, 0.14), rgba(13, 12, 10, 0.86)),
    linear-gradient(120deg, rgba(7, 7, 6, 0.96), rgba(24, 20, 14, 0.78) 58%, rgba(126, 101, 52, 0.24));
}

.world-gallery::after {
  background:
    linear-gradient(180deg, rgba(243, 239, 230, 0.08), rgba(36, 25, 19, 0.58)),
    linear-gradient(120deg, rgba(32, 24, 20, 0.72), rgba(111, 83, 51, 0.35), rgba(239, 230, 215, 0.22));
}

.world__content {
  border-left: 1px solid rgba(215, 189, 121, 0.34);
  padding-left: clamp(18px, 2vw, 28px);
  transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.world:hover .world__content {
  transform: translateY(-6px);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.world-gallery .eyebrow,
.gallery-section .eyebrow {
  color: #8d6f3d;
}

.world p:not(.eyebrow) {
  color: rgba(247, 243, 234, 0.72);
}

.world__cta::after {
  background: linear-gradient(90deg, currentColor, transparent);
  transition: width 140ms ease;
}

.portfolio-section {
  position: relative;
  background:
    radial-gradient(circle at 16% 8%, rgba(215, 189, 121, 0.09), transparent 30%),
    linear-gradient(180deg, #0d0c0a 0%, #15130f 46%, #090908 100%);
  padding: clamp(92px, 12vw, 156px) 0;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(215, 189, 121, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 189, 121, 0.025) 1px, transparent 1px);
  background-size: 89px 89px, 144px 144px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.portfolio-section .section-shell {
  position: relative;
}

.portfolio-hero {
  grid-template-columns: minmax(0, 1.618fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 84px);
}

.portfolio-hero h2 {
  background: linear-gradient(90deg, #fff8e7, #d7bd79 54%, #7d715c);
  -webkit-background-clip: text;
  background-clip: text;
}

.role {
  color: var(--gold);
  font-size: 1.16rem;
  letter-spacing: 0.04em;
}

.statement,
.gallery-hero p,
.contact-section p,
.vision p,
.panel p,
.project-grid p,
.timeline-card p {
  color: rgba(247, 243, 234, 0.68);
}

.portrait-card {
  border-color: rgba(215, 189, 121, 0.25);
  background: #14120f;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(215, 189, 121, 0.025);
}

.portrait-card::before {
  background:
    linear-gradient(180deg, transparent 44%, rgba(13, 12, 10, 0.88)),
    radial-gradient(circle at 52% 20%, rgba(215, 189, 121, 0.14), transparent 38%);
}

.portrait-card img {
  filter: saturate(0.78) contrast(1.08) sepia(0.08);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 160ms ease;
}

.portrait-card:hover img {
  transform: scale(1.018);
  filter: saturate(0.9) contrast(1.1) sepia(0.08);
}

.button {
  min-height: 44px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.76rem;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.button.primary {
  border-color: rgba(215, 189, 121, 0.82);
  background: linear-gradient(180deg, #e4ca82, #a98b49);
  color: #17120a;
}

.button.ghost {
  border-color: rgba(215, 189, 121, 0.26);
}

.button:hover,
.timeline-item:hover,
.category-tabs button:hover,
.project-grid article:hover,
.instagram-routes a:hover {
  transform: translateY(-2px);
}

.brand-metrics {
  grid-template-columns: 1fr 1.618fr 1fr;
}

.brand-metrics div,
.panel,
.timeline,
.skills,
.projects,
.vision,
.contact-card {
  border-color: rgba(215, 189, 121, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.065), rgba(255, 248, 231, 0.018)),
    rgba(17, 15, 12, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand-metrics div {
  padding: clamp(22px, 3vw, 34px);
}

.brand-metrics strong,
.project-grid span {
  color: var(--gold);
}

.portfolio-grid {
  grid-template-columns: minmax(0, 1.618fr) minmax(260px, 1fr);
  gap: 20px;
}

.panel,
.timeline,
.skills,
.projects,
.vision {
  padding: clamp(26px, 4vw, 48px);
}

.timeline-track {
  gap: 8px;
}

.timeline-item,
.category-tabs button {
  border-radius: 2px;
  border-color: rgba(215, 189, 121, 0.2);
  background: rgba(255, 248, 231, 0.035);
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.8rem;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease, border-color 120ms ease;
}

.timeline-item.is-active,
.category-tabs button.is-active {
  border-color: rgba(215, 189, 121, 0.78);
  background: rgba(215, 189, 121, 0.9);
  color: #15110a;
}

.timeline-card {
  background: rgba(6, 6, 5, 0.32);
  border-color: rgba(215, 189, 121, 0.13);
}

.skill-cloud span {
  border-radius: 2px;
  border-color: rgba(215, 189, 121, 0.28);
  background: rgba(215, 189, 121, 0.07);
  color: rgba(247, 243, 234, 0.82);
}

.project-grid {
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr) minmax(0, 1fr);
}

.project-grid article {
  border-color: rgba(215, 189, 121, 0.14);
  background: #12100d;
  transition: transform 140ms ease, border-color 120ms ease, background 120ms ease;
}

.project-grid article:hover {
  border-color: rgba(215, 189, 121, 0.56);
  background: #17140f;
}

.gallery-section {
  background:
    linear-gradient(180deg, #f5f1e8 0%, #eee7da 48%, #f8f5ee 100%);
  color: #181512;
}

.gallery-section .section-shell {
  width: min(1240px, calc(100% - 36px));
}

.gallery-hero {
  max-width: 820px;
  margin-bottom: clamp(48px, 7vw, 96px);
  padding-left: clamp(0px, 5vw, 86px);
}

.gallery-hero h2 {
  color: #181512;
  font-size: clamp(2.7rem, 6rem, 6rem);
}

.gallery-hero p {
  color: rgba(24, 21, 18, 0.68);
}

.instagram-routes a,
.gallery-note {
  border-color: rgba(24, 21, 18, 0.16);
  background: rgba(255, 255, 255, 0.52);
}

.instagram-routes a {
  border-radius: 2px;
  color: #181512;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.instagram-routes a:hover {
  border-color: rgba(141, 111, 61, 0.58);
  background: #fffaf0;
}

.fashion-board {
  grid-template-columns: minmax(320px, 1.18fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: center;
}

.fashion-board + .fashion-board {
  margin-top: clamp(84px, 13vw, 166px);
}

.fashion-board--reverse {
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.18fr);
}

.fashion-board__image {
  position: relative;
  max-height: 84vh;
  padding: clamp(12px, 1.8vw, 24px);
  overflow: auto;
  border: 1px solid rgba(24, 21, 18, 0.11);
  background:
    linear-gradient(180deg, #fffdf8, #eee8db),
    #f8f5ee;
  box-shadow:
    0 46px 100px rgba(58, 48, 32, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.fashion-board__image::before {
  content: "NO1S / STUDY";
  position: sticky;
  top: 0;
  z-index: 2;
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 9px;
  background: rgba(245, 241, 232, 0.92);
  color: rgba(24, 21, 18, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.fashion-board__image img {
  box-shadow: 0 18px 42px rgba(47, 39, 26, 0.14);
}

.fashion-board__copy {
  top: 96px;
  min-height: 560px;
  padding: clamp(28px, 4vw, 54px);
  border: 0;
  border-left: 1px solid rgba(141, 111, 61, 0.28);
  background: transparent;
  box-shadow: none;
}

.fashion-board__copy h3 {
  color: #181512;
}

.fashion-board__copy p {
  color: rgba(24, 21, 18, 0.64);
}

.fashion-board__copy div {
  border-top-color: rgba(24, 21, 18, 0.12);
}

.fashion-board__copy dt {
  color: #7a5e2f;
}

.fashion-board__copy dd {
  color: rgba(24, 21, 18, 0.58);
}

.contact-section {
  background:
    radial-gradient(circle at 76% 14%, rgba(215, 189, 121, 0.1), transparent 30%),
    #0d0c0a;
}

.contact-card input,
.contact-card textarea {
  border-color: rgba(215, 189, 121, 0.18);
  background: rgba(255, 248, 231, 0.045);
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(215, 189, 121, 0.72);
}

.reveal {
  transform: translateY(14px);
  transition: opacity 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 820px) {
  .split-landing {
    background:
      radial-gradient(circle at 20% 8%, rgba(215, 189, 121, 0.13), transparent 28%),
      #0d0c0a;
  }

  .landing-title {
    width: min(640px, 100%);
  }

  .landing-banner {
    padding: clamp(16px, 4vw, 24px) clamp(18px, 6vw, 36px);
  }

  .landing-title h1 {
    font-size: clamp(2.7rem, 4.6rem, 4.6rem);
  }

  .landing-title p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .world {
    padding-top: clamp(34px, 8vw, 48px);
    border-color: rgba(215, 189, 121, 0.18);
  }

  .world__content {
    border-left: 0;
    padding-left: 0;
  }

  .brand-metrics,
  .portfolio-grid,
  .project-grid,
  .contact-grid,
  .timeline-track,
  .portfolio-hero,
  .fashion-board,
  .fashion-board--reverse {
    grid-template-columns: 1fr;
  }

  .fashion-board__copy {
    border-left: 0;
    border-top: 1px solid rgba(141, 111, 61, 0.24);
    padding-inline: 0;
  }
}

@media (max-width: 560px) {
  .site-nav nav a {
    font-size: 0.66rem;
  }

  .landing-banner {
    gap: 7px;
  }

  .landing-title p {
    letter-spacing: 0.12em;
  }

  .fashion-board__image {
    padding: 10px;
  }
}

.landing-title h1 {
  font-size: clamp(3.25rem, 5.8rem, 5.8rem);
}

.landing-title p {
  font-size: 1rem;
}

.world h1 {
  font-size: clamp(3.3rem, 5.4rem, 5.4rem);
}

.portfolio-hero h2 {
  font-size: clamp(3.4rem, 5.8rem, 5.8rem);
}

.gallery-hero h2,
.contact-section h2 {
  font-size: clamp(3.1rem, 4.9rem, 4.9rem);
}

.role {
  font-size: 1.18rem;
}

.statement {
  font-size: 1.24rem;
}

.brand-metrics strong {
  font-size: clamp(2.6rem, 3.75rem, 3.75rem);
}

.panel h3,
.section-heading h3,
.vision h3 {
  font-size: clamp(2rem, 2.8rem, 2.8rem);
}

.timeline-card h4 {
  font-size: clamp(1.7rem, 2.35rem, 2.35rem);
}

.fashion-board__copy h3 {
  font-size: clamp(3rem, 4.8rem, 4.8rem);
}

.post-card h3 {
  font-size: clamp(1.6rem, 2rem, 2rem);
}

.reader-copy h2 {
  font-size: clamp(2.6rem, 4.3rem, 4.3rem);
}

@media (max-width: 820px) {
  .landing-title h1 {
    font-size: clamp(2.9rem, 4.6rem, 4.6rem);
  }

  .world h1,
  .portfolio-hero h2,
  .gallery-hero h2,
  .contact-section h2 {
    font-size: clamp(2.55rem, 3.8rem, 3.8rem);
  }

  .fashion-board__copy h3 {
    font-size: clamp(2.65rem, 3.9rem, 3.9rem);
  }
}

@media (max-width: 560px) {
  .landing-title h1 {
    font-size: 2.85rem;
  }

  .landing-title p {
    font-size: 0.78rem;
  }

  .world h1,
  .portfolio-hero h2,
  .gallery-hero h2,
  .contact-section h2 {
    font-size: 2.55rem;
  }

  .panel h3,
  .section-heading h3,
  .vision h3,
  .timeline-card h4 {
    font-size: 1.85rem;
  }
}
