:root {
  --deep-teal: #0d3d3b;
  --teal: #154f4c;
  --gold: #d4ad55;
  --pearl: #fffdf8;
  --ink: #17302f;
  --muted: #5d6b68;
  --line: rgba(13, 61, 59, 0.17);
  --wash: #f4f0e7;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 74rem;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--deep-teal);
}

.page-shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--gold);
  color: var(--deep-teal);
  padding: 0.7rem 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.95);
}

@supports (backdrop-filter: blur(1rem)) {
  .site-header {
    background: rgba(255, 253, 248, 0.86);
    backdrop-filter: blur(1rem);
  }
}

.header-inner {
  display: flex;
  width: min(calc(100% - 2rem), var(--shell));
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  gap: 1rem;
}

.identity {
  display: inline-flex;
  flex-direction: column;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.identity small {
  margin-top: 0.24rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(0.75rem, 3vw, 1.65rem);
}

nav a {
  color: var(--deep-teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

nav a:hover,
.identity:hover {
  color: var(--teal);
}

.hero {
  overflow: hidden;
  background: var(--deep-teal);
  color: var(--pearl);
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - 4.75rem);
  align-items: center;
  gap: 3rem;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 8ch;
  margin-bottom: 1.5rem;
  color: var(--pearl);
  font-size: clamp(4rem, 18vw, 7rem);
  letter-spacing: -0.055em;
  line-height: 0.83;
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  color: var(--deep-teal);
  font-size: clamp(2.45rem, 10vw, 4.75rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--deep-teal);
  font-size: clamp(1.75rem, 7vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.hero-statement {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  color: var(--pearl);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 7vw, 3.25rem);
  line-height: 1.04;
}

.hero-statement span {
  color: var(--gold);
  font-style: italic;
}

.hero-intro {
  max-width: 36rem;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

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

.button-gold {
  background: var(--gold);
  color: var(--deep-teal);
}

.button-gold:hover {
  background: var(--pearl);
  color: var(--deep-teal);
}

.text-link {
  color: var(--pearl);
  font-weight: 800;
}

.text-link:hover {
  color: var(--gold);
}

.hero-paths {
  display: grid;
  border-top: 1px solid rgba(255, 253, 248, 0.24);
}

.hero-path {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.45rem 1rem;
  padding: 1.4rem 0.25rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.24);
  color: var(--pearl);
  text-decoration: none;
  transition: color var(--transition), padding-inline var(--transition);
}

.hero-path:hover {
  padding-inline: 0.75rem;
  color: var(--gold);
}

.path-number {
  grid-row: 1 / span 4;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.path-label {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-path strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.hero-path > span:not(.path-number, .path-label, .path-action) {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.9rem;
}

.path-action {
  font-size: 0.77rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.section {
  padding-block: clamp(4.5rem, 12vw, 8rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.75rem;
}

.section-heading > p:last-child {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.worlds {
  background: var(--pearl);
}

.world-grid {
  display: grid;
  gap: 1.25rem;
}

.world-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.brand-art {
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.brand-art img {
  width: 100%;
  height: auto;
}

.world-card-copy {
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

.world-type {
  margin-bottom: 1.5rem;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.world-card-copy > p:not(.world-type) {
  max-width: 34rem;
  color: var(--muted);
}

.world-card-copy a {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--deep-teal);
  font-weight: 900;
}

.world-card-copy a:hover {
  color: var(--teal);
}

.current-work {
  border-block: 1px solid var(--line);
  background: var(--wash);
}

.work-list {
  border-top: 1px solid var(--line);
}

.work-list a {
  display: grid;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep-teal);
  text-decoration: none;
  transition: padding-inline var(--transition), background-color var(--transition);
}

.work-list a:hover {
  padding-inline: 0.75rem;
  background: rgba(255, 253, 248, 0.65);
}

.work-list span,
.work-list small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-list strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.about-grid {
  display: grid;
  gap: 1.25rem;
}

.about-copy {
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.about-copy p:first-child::first-letter {
  float: left;
  margin: 0.11em 0.12em 0 0;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: 3.4em;
  line-height: 0.76;
}

.create {
  background: var(--teal);
  color: var(--pearl);
}

.create .eyebrow {
  color: var(--gold);
}

.create h2 {
  color: var(--pearl);
}

.create .section-heading > p:last-child {
  color: rgba(255, 253, 248, 0.76);
}

.intent-grid {
  display: grid;
  border-top: 1px solid rgba(255, 253, 248, 0.24);
}

.intent-grid a {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.24);
  color: var(--pearl);
  text-decoration: none;
  transition: padding-inline var(--transition), background-color var(--transition);
}

.intent-grid a:hover {
  padding-inline: 0.75rem;
  background: rgba(255, 253, 248, 0.07);
}

.intent-grid span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intent-grid strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.intent-grid small {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.contact {
  padding-block: clamp(4.5rem, 12vw, 8rem);
  background: var(--deep-teal);
  color: var(--pearl);
}

.contact-grid {
  display: grid;
  gap: 2.75rem;
}

.contact h2 {
  max-width: 10ch;
  color: var(--pearl);
}

.contact p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.72);
}

.eyebrow-light {
  color: var(--gold);
}

.contact-actions {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.contact-actions a:not(.button) {
  width: fit-content;
  color: var(--pearl);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 800;
}

.contact-actions a:not(.button):hover {
  color: var(--gold);
}

footer {
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  background: var(--deep-teal);
  color: rgba(255, 253, 248, 0.65);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-block: 1.5rem;
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  width: fit-content;
}

.footer-inner a:hover {
  color: var(--gold);
}

@media (min-width: 44rem) {
  .page-shell,
  .header-inner {
    width: min(calc(100% - 3.5rem), var(--shell));
  }

  .identity {
    font-size: 1.1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .world-grid,
  .intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intent-grid a:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 253, 248, 0.24);
  }

  .intent-grid a:nth-child(even) {
    padding-left: 1.5rem;
  }

  .intent-grid a:nth-child(odd):hover {
    padding-left: 0.75rem;
  }

  .intent-grid a:nth-child(even):hover {
    padding-left: 2.25rem;
    padding-right: 0.75rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
    gap: clamp(4rem, 9vw, 8rem);
  }

  .section-heading {
    margin-bottom: 4rem;
  }

  .world-grid {
    gap: 1.75rem;
  }

  .work-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
    gap: clamp(4rem, 10vw, 9rem);
  }

  .work-grid .section-heading,
  .about-grid h2 {
    margin-bottom: 0;
  }

  .contact-actions {
    padding-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
