:root {
  --bg: #f6f2ee;
  --ink: #0b0b0b;
  --paper: #ffffff;
  --muted: #5d5d5d;
  --accent: #ff2f86;
  --accent-soft: #ffd5e7;
  --line: #1f1f1f;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 8% 14%, #fff 0%, #fdf8fc 32%, var(--bg) 70%);
  color: var(--ink);
  min-height: 100vh;
}

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

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

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(246, 242, 238, 0.92);
  border-bottom: 1px solid rgba(11, 11, 11, 0.14);
}

.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wordmark {
  display: grid;
  gap: 0.26rem;
  line-height: 1.05;
}

.wordmark-name {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.38rem, 2.6vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.wordmark-tag {
  margin-top: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.main {
  padding: 1.5rem 0 3rem;
}

.editorial-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  min-height: min(64vh, 620px);
  background: var(--paper);
  border: 2px solid var(--line);
  box-shadow: 14px 14px 0 0 var(--accent-soft);
  overflow: hidden;
}

.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 420ms ease;
}

.hero-media img.is-fading {
  opacity: 0.22;
}

.hero-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  cursor: pointer;
}

.hero-zone-prev {
  left: 0;
}

.hero-zone-next {
  right: 0;
}

.hero-gallery-nav {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.36rem 0.55rem;
}

.hero-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  cursor: pointer;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active,
.hero-dot[aria-current="true"] {
  background: rgba(255, 255, 255, 0.58);
  transform: scale(1.07);
}

.hero-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-flag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  padding: clamp(1.3rem, 4vw, 2.7rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kicker {
  width: max-content;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.35rem 0.6rem;
}

.display-name {
  margin: 0;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.tagline {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.48rem);
  line-height: 1.35;
  max-width: 26ch;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-support {
  margin: 0;
  max-width: 34ch;
  color: #3b3b3b;
  font-size: 0.95rem;
  line-height: 1.45;
}

.button-link {
  border: 2px solid var(--line);
  background: #fff;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
}

.button-link.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-links .button-link:not(.primary):hover,
.hero-links .button-link:not(.primary):focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--line);
}

body.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.78);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: 10px 10px 0 0 var(--accent-soft);
  padding: 0.7rem;
  display: grid;
  gap: 0.55rem;
}

.video-modal-close {
  justify-self: end;
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 0.35rem 0.55rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.video-modal-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.stamp {
  margin-top: auto;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.section {
  margin-top: 2.25rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.section-head h2,
.section-head h1 {
  margin: 0;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-head p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.eyebrow {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
}

.card-title {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.25;
}

.card-copy {
  margin: 0;
  color: #2c2c2c;
  font-size: 0.92rem;
  line-height: 1.4;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.5rem;
}

.inline-links a {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--accent);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: 10px 10px 0 0 var(--accent-soft);
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.page-hero-copy {
  padding: clamp(1rem, 3.2vw, 2.2rem);
  display: grid;
  align-content: center;
  gap: 0.6rem;
}

.page-hero-copy h1 {
  margin: 0;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 0.95;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
}

.page-hero-copy p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.bio-block p {
  margin: 0 0 0.9rem;
  line-height: 1.6;
  max-width: 70ch;
}

.profile-image {
  border: 2px solid var(--line);
  box-shadow: 10px 10px 0 0 var(--accent-soft);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badges a {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 0.45rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mosaic {
  columns: 3 220px;
  column-gap: 0.75rem;
}

.mosaic img {
  width: 100%;
  border: 1px solid #202020;
  margin-bottom: 0.75rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.media-item {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 0.5rem;
}

.media-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-item h3 {
  margin: 0.55rem 0 0.2rem;
  font-size: 0.95rem;
}

.media-item p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
}

.actions {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.actions a,
.actions button {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.actions .action-primary {
  border-width: 1.5px;
  color: var(--ink);
}

.actions .action-primary:hover,
.actions .action-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.actions .action-secondary {
  border-color: #7b7b7b;
  color: var(--muted);
}

.actions .action-secondary:hover,
.actions .action-secondary:focus-visible {
  background: #f2ede8;
  border-color: var(--line);
  color: var(--ink);
}

.actions .action-primary:focus-visible,
.actions .action-secondary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid #1a1a1a;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meta span {
  border: 1px solid var(--line);
  padding: 0.3rem 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-card {
  border: 1.6px solid var(--line);
  background: #fff;
  padding: 1rem;
}

.contact-card h3 {
  margin: 0 0 0.3rem;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid #2f2f2f;
  padding: 1.1rem 0 1.8rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.footer-links a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.small {
  margin: 0;
  font-size: 0.74rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.65s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) and (min-width: 861px) and (orientation: landscape) {
  .main {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #app.home-main {
    padding: 0 1rem;
  }

  .grid-4,
  .media-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) and (orientation: portrait), (max-width: 860px) {
  .site-header .shell {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .main {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  #app.home-main {
    padding: 0 0.95rem;
  }

  .site-header {
    position: static;
  }

  .header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 0.8rem;
    row-gap: 0.55rem;
    padding: 0.8rem 0;
  }

  .wordmark {
    min-width: 0;
    gap: 0.2rem;
  }

  .wordmark-name {
    font-size: clamp(1.7rem, 6vw, 2.15rem);
  }

  .wordmark-tag {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    line-height: 1.2;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: 0;
    align-self: center;
    width: 42px;
    height: 42px;
    border-color: var(--ink);
    box-shadow: 3px 3px 0 0 var(--accent-soft);
  }

  .menu-toggle span {
    width: 20px;
    height: 2.2px;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    max-height: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid transparent;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease, margin 0.2s ease, padding 0.2s ease;
  }

  .site-header.menu-open .site-nav {
    max-height: 380px;
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top-color: rgba(11, 11, 11, 0.22);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .editorial-hero,
  .page-hero,
  .split {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
    height: clamp(300px, 55vw, 460px);
  }

  .hero-zone {
    display: none;
  }

  .hero-gallery-nav {
    bottom: 0.65rem;
    gap: 0.4rem;
    padding: 0.33rem 0.5rem;
  }

  .hero-dot {
    width: 0.48rem;
    height: 0.48rem;
  }

  .grid-3,
  .grid-4,
  .media-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  body[data-page="about"] .page-hero {
    grid-template-columns: 0.52fr 0.48fr;
    min-height: clamp(280px, 42vh, 460px);
    max-height: 500px;
    overflow: hidden;
  }

  body[data-page="about"] .page-hero img {
    height: 100%;
    min-height: 0;
    object-position: center 18%;
  }

  body[data-page="about"] .page-hero-copy {
    padding: clamp(0.9rem, 2.2vw, 1.45rem);
    gap: 0.45rem;
  }

  body[data-page="about"] .page-hero-copy h1 {
    font-size: clamp(1.8rem, 3.3vw, 2.8rem);
  }

  body[data-page="about"] .page-hero-copy p {
    max-width: 42ch;
  }
}

@media (max-width: 560px) {
  .site-header .shell {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .main {
    padding-top: 1rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  #app.home-main {
    padding: 0 0.8rem;
  }

  .hero-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .hero-links .button-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .hero-support {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: none;
  }

  .grid-3,
  .grid-4,
  .media-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .display-name {
    font-size: clamp(2.1rem, 17vw, 3.6rem);
  }
}
