:root {
  --ink: #211A22;
  --ink-soft: #4B3E4B;
  --paper: #EDE7DA;
  --paper-soft: #E3DBC7;
  --plum: #4A2545;
  --plum-deep: #341A31;
  --plum-soft: #6E3F68;
  --brass: #9A7A38;
  --brass-soft: #C9AE72;
  --line: #C9BEA2;
  --white: #F8F5EE;

  --serif: 'Bodoni Moda', serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --mono: 'Space Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.page {
  width: 100%;
  min-height: 100vh;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

/* ---------- Shared ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--plum);
}
.section {
  padding: 64px 48px;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.section-note { font-size: 13px; color: var(--ink-soft); }
.tag {
  font-size: 11px;
  border: 1px solid var(--line);
  padding: 4px 9px;
  border-radius: 20px;
  color: var(--ink-soft);
}
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.mono-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- Interaction ---------- */
.nav-link { position: relative; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 1px;
  background: var(--ink);
  transition: right .25s ease;
}
.nav-link:hover::after { right: 0; }

.cta-primary {
  background: var(--plum);
  color: var(--white);
  border-radius: 2px;
  transition: background .2s ease, color .2s ease;
}
.cta-primary:hover { background: var(--plum-deep); }

.cta-ghost {
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .2s ease, opacity .2s ease;
}
.cta-ghost:hover { border-color: var(--ink); }

.work-card { transition: transform .25s ease, box-shadow .25s ease; }
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px -22px rgba(33, 26, 34, .45);
}

.studio-link {
  border-bottom: 1px solid var(--brass-soft);
  transition: border-color .2s ease, color .2s ease;
}
.studio-link:hover { border-color: var(--white); color: var(--white); }
.studio-link--plum { color: var(--plum); border-color: var(--plum); }

.fade-up { animation: fadeUp .7s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(237, 231, 218, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .02em;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-contact { padding: 9px 18px; }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 48px 64px;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 40px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow { margin-bottom: 18px; }
.hero-name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 96px;
  line-height: .94;
  letter-spacing: -.01em;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 10px;
}
.hero-lede {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas a { padding: 13px 24px; font-size: 14px; font-weight: 500; }

/* ---------- Two worlds ---------- */
.worlds .eyebrow { margin-bottom: 28px; }
.worlds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.world {
  background: var(--paper);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.world--plum { background: var(--plum); color: var(--white); }
.world h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
}
.world p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
}
.world--plum p { color: #E7D9E4; }
.world .mono-link { margin-top: auto; align-self: flex-start; }

/* ---------- Experience ---------- */
.experience .section-head { margin-bottom: 36px; }
.exp-list { display: flex; flex-direction: column; }
.exp-row {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.exp-row:last-child { border-bottom: 1px solid var(--line); }
.exp-dates {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  padding-top: 3px;
}
.exp-row h4 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
}
.exp-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}
.exp-place { font-size: 12px; color: var(--brass); text-align: right; }
.exp-foot {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.exp-foot .tags { max-width: 78ch; }

/* ---------- Projects ---------- */
.projects .section-head { margin-bottom: 32px; }
.feature {
  background: var(--white);
  border: 1px solid var(--plum);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.feature-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--plum);
}
.feature h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}
.feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 64ch;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-num { font-family: var(--mono); font-size: 12px; color: var(--brass); }
.card h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}
.card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Studio ---------- */
.studio { background: var(--ink); color: var(--white); }
.studio .eyebrow { color: var(--brass-soft); margin-bottom: 32px; }
.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
}
.studio-col { display: flex; flex-direction: column; gap: 18px; }
.studio-col--divided { border-left: 1px solid #4B3E4B; padding-left: 48px; }
.studio-col h3 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
}
.studio-col p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #D8CFDB;
  max-width: 48ch;
}
.studio-col--divided p { max-width: 44ch; }
.studio-col .mono-link { align-self: flex-start; }
.swatches { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.swatches span { width: 64px; height: 64px; }

/* ---------- Journal ---------- */
.journal {
  padding: 72px 48px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.journal-inner {
  max-width: 60ch;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.journal-quote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.5;
  color: var(--ink);
}
.journal-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.journal-aside {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Contact / footer ---------- */
.contact { padding: 72px 48px 40px; background: var(--paper-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.contact h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
}
.contact-email {
  display: inline-block;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 500;
}
.elsewhere {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.elsewhere .eyebrow { font-size: 12px; letter-spacing: .1em; margin-bottom: 6px; }
.elsewhere a { width: fit-content; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.footer-signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Motion & responsive ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { animation: none; }
  .work-card, .cta-primary, .cta-ghost, .studio-link, .nav-link::after { transition: none; }
}

@media (max-width: 760px) {
  .hide-mobile { display: none !important; }
  .hero-grid,
  .worlds-grid,
  .work-grid,
  .studio-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .exp-row { grid-template-columns: 1fr; gap: 6px; }
  .exp-dates { order: -1; }
  .hero-name { font-size: 15vw; }

  .studio-grid { gap: 32px; }
  .studio-col--divided {
    border-left: none;
    padding-left: 0;
    padding-top: 32px;
    border-top: 1px solid #4B3E4B;
  }

  .nav { padding: 16px 20px; }
  .nav-links { gap: 18px; font-size: 11px; }
  .nav-contact { padding: 8px 14px; }
}

@media (max-width: 400px) {
  .nav-brand { font-size: 16px; }
  .nav-links { gap: 12px; }
}
