:root {
  --ink: #13283a;
  --paper: #f8f5ef;
  --white: #ffffff;
  --clay: #9b5e3f;
  --moss: #51664d;
  --mist: #dfe6e5;
  --line: rgba(19, 40, 58, 0.15);
  --shadow: 0 24px 80px rgba(19, 40, 58, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 138px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
.button {
  text-decoration: none;
}

.nav-links a.active {
  color: #f3c994;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 23, 34, 0.86) 0%, rgba(8, 23, 34, 0.62) 42%, rgba(8, 23, 34, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 23, 34, 0.28) 0%, rgba(8, 23, 34, 0) 45%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 36vw);
  align-items: start;
  gap: 14px;
  padding: 14px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-one {
  object-position: 50% 50%;
}

.hero-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: start;
  justify-self: end;
  aspect-ratio: 1 / 1;
  width: min(100%, 620px);
  height: auto;
  max-height: calc(100svh - 132px);
  margin-top: clamp(84px, 12vh, 130px);
  gap: 14px;
}

.hero-two,
.hero-three,
.hero-four,
.hero-five {
  object-position: 50% 50%;
}

.hero-two {
  object-position: 48% 45%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 clamp(56px, 10vh, 92px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c994;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.94;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button.outline-dark {
  color: var(--ink);
  background: transparent;
  border-color: rgba(19, 40, 58, 0.32);
}

.intro,
.feature-grid,
.artists,
.home-projects,
.quote-band,
.visit {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(72px, 11vw, 130px) 0;
}

.intro h2,
.feature-card h2,
.section-heading h2,
.visit h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.7rem);
  font-weight: 400;
  line-height: 1.02;
}

.intro p:last-child,
.feature-card p,
.visit p {
  font-size: 1.04rem;
  color: rgba(19, 40, 58, 0.76);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(72px, 10vw, 124px);
}

.feature-card {
  display: grid;
  gap: 20px;
  align-content: start;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card.large {
  grid-column: 1 / -1;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mist);
}

.feature-card.large img {
  aspect-ratio: 16 / 11;
}

.feature-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.artists {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(72px, 10vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.artist-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.artist-list a {
  display: flex;
  min-height: 76px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.home-projects {
  padding: 0 0 clamp(72px, 10vw, 118px);
}

.home-projects .section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.spotlight-card {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  display: grid;
  align-content: end;
  gap: 10px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 23, 34, 0.82) 0%, rgba(8, 23, 34, 0.34) 58%, rgba(8, 23, 34, 0.08) 100%);
}

.spotlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-card span,
.spotlight-card strong {
  position: relative;
  z-index: 1;
}

.spotlight-card span {
  color: #f3c994;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spotlight-card strong {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
}

.quote-band {
  padding: clamp(52px, 8vw, 92px);
  border-radius: 8px;
  color: var(--white);
  background: var(--moss);
}

blockquote {
  max-width: 840px;
  margin: 0;
}

blockquote p {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.08;
}

cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.visit {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding: clamp(72px, 10vw, 118px) 0;
}

.visit p {
  max-width: 620px;
}

.inner-header {
  position: sticky;
  color: var(--ink);
  background: rgba(248, 245, 239, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.inner-header .brand {
  filter: none;
}

.inner-header .nav-links a.active {
  color: var(--clay);
}

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  min-height: 58svh;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0 clamp(42px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: clamp(30px, 6vw, 80px);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.page-hero .lead {
  color: rgba(19, 40, 58, 0.75);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.artists-hero,
.artists-index,
.studio-story,
.studio-gallery,
.artist-body,
.works-section,
.contact-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.artists-hero {
  display: block;
  min-height: auto;
  max-width: 980px;
  text-align: center;
  padding-bottom: clamp(34px, 5vw, 58px);
}

.artists-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(70px, 10vw, 118px);
}

.artist-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 50px rgba(19, 40, 58, 0.08);
}

.artist-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mist);
}

.artist-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
}

.artist-card span:last-child {
  color: rgba(19, 40, 58, 0.68);
}

.artist-card em {
  color: var(--clay);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-number {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.artists-quote {
  margin-bottom: clamp(64px, 10vw, 118px);
}

.studio-story,
.artist-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 7vw, 92px);
  padding-bottom: clamp(64px, 9vw, 108px);
}

.studio-story h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 1.05;
}

.studio-story p,
.artist-copy p {
  font-size: 1.08rem;
  color: rgba(19, 40, 58, 0.74);
}

.studio-gallery,
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: clamp(64px, 9vw, 108px);
}

.studio-gallery img,
.works-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  background: var(--mist);
}

.artist-hero {
  min-height: 62svh;
}

.artist-actions {
  margin-top: 28px;
}

.artist-quote {
  margin: 0;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.artist-quote p {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  line-height: 1.08;
}

.works-section {
  padding-bottom: clamp(50px, 8vw, 90px);
}

.works-section .section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.contact-section {
  padding: clamp(46px, 7vw, 76px) 0 clamp(72px, 10vw, 118px);
  border-top: 1px solid var(--line);
}

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

.contact-list a {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.contact-list span {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

.projects-grid,
.timeline-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: clamp(72px, 10vw, 118px);
}

.project-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 22px;
  align-items: end;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(19, 40, 58, 0.08);
}

.project-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mist);
}

.project-card h2,
.timeline-section h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.04;
}

.project-card p,
.timeline-section p {
  color: rgba(19, 40, 58, 0.72);
}

.timeline-section a {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-detail-hero img {
  aspect-ratio: 5 / 4;
  object-position: 44% 50%;
}

.project-body,
.image-candidates,
.project-sources {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.project-body,
.project-sources {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 78px);
  padding-bottom: clamp(64px, 9vw, 108px);
}

.project-body h2,
.project-sources h2,
.image-candidates h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.project-body p,
.candidate-card p {
  color: rgba(19, 40, 58, 0.74);
}

.image-candidates {
  padding-bottom: clamp(64px, 9vw, 108px);
}

.image-candidates .section-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.candidate-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(19, 40, 58, 0.08);
}

.primary-candidate {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  margin-bottom: 16px;
}

.candidate-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mist);
}

.candidate-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.candidate-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.04;
}

.candidate-card a,
.source-list a {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.source-list a {
  display: flex;
  min-height: 88px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.timeline-section {
  display: grid;
  gap: 12px;
  padding-bottom: clamp(72px, 10vw, 118px);
}

.timeline-section article {
  display: grid;
  grid-template-columns: 0.3fr 0.8fr 1fr;
  gap: 22px;
  align-items: start;
  padding: clamp(22px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}

.timeline-section span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .artists-index,
  .contact-list,
  .projects-grid,
  .spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card,
  .project-card.featured,
  .primary-candidate,
  .project-body,
  .project-sources {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 18px;
  }

  .brand {
    width: 105px;
  }

  .nav-links {
    max-width: calc(100vw - 148px);
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    scrollbar-width: none;
  }

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

  .hero {
    min-height: 92svh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(8, 23, 34, 0.9) 0%, rgba(8, 23, 34, 0.62) 52%, rgba(8, 23, 34, 0.2) 100%);
  }

  .hero-media {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero-stack {
    display: none;
  }

  .hero-one {
    border-radius: 0;
    object-position: 44% 50%;
  }

  .hero-copy {
    width: calc(100% - 36px);
    padding-bottom: 38px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .visit {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

    .intro,
    .feature-card.large,
    .artists,
    .spotlight-grid,
    .visit,
    .page-hero,
    .studio-story,
  .artist-body {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .artist-list,
  .artists-index,
  .studio-gallery,
  .works-grid,
  .contact-list,
  .candidate-grid,
  .source-list,
  .projects-grid,
  .timeline-section article {
    grid-template-columns: 1fr;
  }

    .intro,
    .feature-grid,
    .artists,
    .home-projects,
    .quote-band,
    .visit,
  .page-hero,
  .artists-index,
  .studio-story,
  .studio-gallery,
  .artist-body,
  .works-section,
  .contact-section,
  .project-body,
  .image-candidates,
  .project-sources {
    width: calc(100% - 32px);
  }

  .projects-grid,
  .timeline-section {
    width: calc(100% - 32px);
  }

  .page-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .page-hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .page-hero img {
    aspect-ratio: 4 / 3;
  }

  .intro {
    padding: 58px 0;
  }

  .feature-grid,
  .artists {
    padding-bottom: 64px;
  }

  .quote-band {
    padding: 36px 24px;
  }
}
