:root {
  --ink: #12100f;
  --ink-soft: #1b1716;
  --paper: #f1eadf;
  --paper-muted: #cfc1ad;
  --gold: #c7a76d;
  --gold-deep: #8f7142;
  --mauve: #6f617b;
  --clay: #a4765f;
  --line: rgba(241, 234, 223, 0.16);
  --line-strong: rgba(199, 167, 109, 0.34);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(111, 97, 123, 0.16), transparent 30rem),
    radial-gradient(circle at top right, rgba(199, 167, 109, 0.16), transparent 22rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 68px 68px;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  width: auto;
  max-width: 1180px;
  margin: 0.75rem 0.75rem 0;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 16, 15, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 42px rgba(0, 0, 0, 0.18);
}

.brand-mark,
.nav-cta,
.quick-nav a,
.button {
  min-height: 44px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  font-family: var(--serif);
  font-size: 1rem;
  text-transform: uppercase;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-mark span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.quick-nav {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-pad {
  width: auto;
  max-width: 1180px;
  margin: 0 0.75rem;
  padding: 5rem 0;
}

.cover {
  display: grid;
  gap: 2rem;
  width: auto;
  max-width: 1180px;
  min-height: calc(100svh - 5.2rem);
  margin: 0 0.75rem;
  padding: 3.2rem 0 4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
  overflow-wrap: normal;
}

h1 {
  max-width: 9.8em;
  margin-bottom: 1.2rem;
  font-size: clamp(3.35rem, 15vw, 6.55rem);
}

h1 span {
  display: block;
}

h1 span:nth-child(-n + 2) {
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.8rem, 13vw, 6.2rem);
}

h3 {
  font-size: clamp(1.9rem, 9vw, 3.8rem);
}

.cover-text {
  max-width: 34rem;
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.cover-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.08rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(241, 234, 223, 0.05);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover,
.choice-card:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.button.ghost {
  border-color: rgba(241, 234, 223, 0.4);
}

.cover-art {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34%;
  gap: 0.75rem;
  align-items: end;
}

.cover > *,
.signature-section > *,
.chapter > * {
  min-width: 0;
}

.cover-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.cover-frame::after,
.choice-card::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(18, 16, 15, 0.72));
  pointer-events: none;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-frame {
  aspect-ratio: 4 / 5.25;
}

.side-frame {
  aspect-ratio: 4 / 5;
  transform: translateY(10%);
}

.cover-note {
  position: absolute;
  right: 8%;
  bottom: -1rem;
  width: min(78%, 22rem);
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(18, 16, 15, 0.82);
  backdrop-filter: blur(18px);
}

.cover-note span,
.choice-card span,
.universe-item span {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cover-note strong {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.signature-section,
.chapter {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.signature-media,
.chapter-media {
  overflow: hidden;
  border: 1px solid var(--line);
}

.signature-media img,
.chapter-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.signature-copy p,
.chapter-copy p,
.portfolio-intro p,
.contact-panel p,
.studio-preview p {
  color: var(--paper-muted);
}

.signature-line {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.4rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.portfolio-intro h2 {
  margin-bottom: 0;
}

.choice-grid {
  display: grid;
  gap: 0.8rem;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 15rem;
  overflow: hidden;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease;
}

.choice-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choice-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 14rem;
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 0.98;
}

.choice-card span {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
}

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

.universe-item {
  display: grid;
  gap: 0.45rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.universe-item h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 11vw, 4.9rem);
}

.universe-item p {
  margin-bottom: 0;
  color: var(--paper-muted);
}

.portfolio {
  max-width: 1280px;
}

.portfolio-intro {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.72rem;
}

.gallery-item {
  position: relative;
  min-height: 14rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  min-height: 27rem;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 0.9rem;
  bottom: 0.8rem;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.3rem 0 1.5rem;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  color: var(--paper-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.bride-strip {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 0.65rem;
}

.bride-strip img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  border: 1px solid var(--line);
}

.bride-strip img:first-child {
  grid-row: span 2;
}

.editorial-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--paper-muted);
}

.editorial-list li {
  padding-left: 1rem;
  border-left: 1px solid var(--gold);
}

.credential-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 1.2rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.credential-board span {
  min-height: 6.4rem;
  display: flex;
  align-items: end;
  padding: 1rem;
  background: rgba(27, 23, 22, 0.9);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.studio-preview {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(241, 234, 223, 0.045);
}

.studio-preview video {
  width: 100%;
  max-height: 36rem;
  object-fit: cover;
  background: #000;
}

.studio-preview h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 10vw, 4rem);
}

.contact {
  padding-top: 3rem;
}

.contact-panel {
  padding: clamp(1.2rem, 6vw, 3.4rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(199, 167, 109, 0.16), rgba(111, 97, 123, 0.08)),
    rgba(27, 23, 22, 0.86);
}

.site-footer {
  width: auto;
  max-width: 1180px;
  margin: 0 0.75rem;
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
  color: var(--paper-muted);
  text-align: center;
}

.site-footer img {
  width: 84px;
  height: 84px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  margin-bottom: 0.3rem;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.site-footer span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
}

.site-footer div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

@media (min-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    width: min(1180px, calc(100% - 2rem));
    max-width: none;
    margin: 0.75rem auto 0;
  }

  .quick-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .quick-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0 0.85rem;
    color: var(--paper-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .section-pad,
  .cover,
  .site-footer {
    width: min(1180px, calc(100% - 2rem));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio {
    width: min(1280px, calc(100% - 2rem));
  }

  .cover {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.8rem;
    padding-top: 2rem;
  }

  h1 {
    max-width: 7.3em;
    font-size: clamp(5rem, 8.2vw, 6.7rem);
  }

  .signature-section,
  .chapter {
    grid-template-columns: 0.86fr 1fr;
    gap: 3rem;
  }

  .brides {
    grid-template-columns: 0.82fr 1.18fr;
  }

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

  .choice-card {
    grid-column: span 3;
    min-height: 18rem;
  }

  .choice-card.tall {
    grid-row: span 2;
    grid-column: span 2;
    min-height: 100%;
  }

  .choice-card:nth-child(2),
  .choice-card:nth-child(5) {
    grid-column: span 4;
  }

  .universe-item {
    grid-template-columns: 10rem 1fr minmax(13rem, 24rem);
    align-items: end;
    gap: 1rem;
    padding: 1.75rem 0;
  }

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

  .gallery-item {
    min-height: 18rem;
  }

  .gallery-item.tall {
    grid-row: span 2;
    min-height: 37rem;
  }

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

  .credential-board span {
    min-height: 8.5rem;
    font-size: 1.85rem;
  }

  .studio-preview {
    grid-template-columns: minmax(18rem, 0.8fr) 1fr;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (min-width: 1040px) {
  .section-pad {
    padding: 7rem 0;
  }

  .cover-art {
    gap: 1rem;
  }

  .choice-card {
    padding: 1.3rem;
  }

  .choice-card strong {
    font-size: 2.55rem;
  }

  .portfolio-intro {
    grid-template-columns: 0.95fr 0.8fr;
    align-items: end;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
