:root {
  --beige: #c9ada7;
  --tan: #e6ddcb;
  --white: #f2e9e4;
  --black: #22223b;
  --max-width: 1660px;
  --display: "Artifika", Georgia, serif;
  --body: "Libre Baskerville", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

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

.section-beige { background: var(--beige); }
.section-white { background: var(--white); }

.site-header {
  min-height: 190px;
  width: 100%;
  padding: 78px 4vw 48px;
  background: var(--beige);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-title,
.site-header nav a {
  font-family: var(--body);
}

.site-title {
  font-size: 18px;
}

.site-header nav {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.site-header nav a {
  font-size: 14px;
  transition: opacity .2s ease;
}

.site-header nav a:hover { opacity: .55; }

.hero {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0 4vw 72px;
}

.hero-image {
  height: min(585px, 42vw);
  min-height: 420px;
}

.placeholder-image {
  background:
    linear-gradient(135deg, #b8afa5 0%, #ddd4c8 48%, #92887e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.42);
  letter-spacing: .14em;
  font-size: 12px;
  text-align: center;
  overflow: hidden;
}

.work-image,
.hero-image,
.art {
  overflow: hidden;
}

.work-image img,
.hero-image img,
.art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image img {
  object-position: center;
}

.crop-bottom {
  object-position: center bottom;
}

.hero-image {
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0 4vw 72px;
  background: rgba(34, 34, 59, 0.42);
  pointer-events: none;
}

.hero h1 {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1250px, 88%);
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(42px, 3.6vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

.selected-work {
  padding: 20px 6vw 100px;
}

.section-intro {
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}

h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  margin-top: 0;
}

.section-intro h2 {
  font-size: clamp(50px, 5vw, 76px);
  margin-bottom: 18px;
}

.section-intro p {
  font-family: var(--display);
  font-size: clamp(19px, 1.45vw, 27px);
  line-height: 1.2;
  margin: 0 auto;
  max-width: 800px;
}

.work-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 6vw;
  row-gap: 76px;
}

.work-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.work-image {
  width: min(100%, 250px);
  aspect-ratio: 2 / 3;
  margin-bottom: 12px;
}

.work-image span {
  max-width: 80%;
}

.work-card p {
  max-width: 310px;
  margin: 0 auto 9px;
}

.work-card .category {
  font-style: italic;
  margin-bottom: 2px;
}

.pill-button {
  margin-top: 22px;
  min-width: 270px;
  min-height: 81px;
  padding: 24px 32px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 14px;
  text-align: center;
  transition: transform .2s ease, opacity .2s ease;
}

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

.skills {
  padding: 115px 4vw;
  background: var(--white);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5vw;
  align-items: start;
}

.skills-title h2 {
  font-family: var(--display);
  font-size: clamp(44px, 3.4vw, 65px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

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

.skill-card {
  background: var(--beige);
  min-height: 400px;
  padding: 50px 7%;
}

.skill-card h3 {
  font-family: var(--display);
  font-size: clamp(32px, 2.3vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  margin: 0 0 55px;
}

.skill-card ul {
  padding-left: 22px;
  margin: 0;
}

.skill-card li {
  padding-left: 4px;
  margin-bottom: 13px;
}

.beyond {
  padding: 42px 4vw 0;
}

.beyond-heading {
  text-align: center;
}

.beyond-heading h2 {
  font-size: clamp(48px, 4vw, 68px);
  margin-bottom: 24px;
}

.art-grid {
  max-width: 1660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .96fr .96fr 1.05fr;
  grid-template-rows: auto 435px;
  gap: 10px;
}

.art {
  min-height: 0;
}

.art-left {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.beyond-copy {
  grid-column: 2 / span 2;
  grid-row: 1;
  padding: 12px 8% 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.beyond-copy p {
  margin: 0 0 18px;
}

.podcast-button {
  align-self: center;
  min-width: 400px;
  margin-top: 0;
}

.art-right {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.art-bottom-left {
  grid-column: 2;
  grid-row: 2;
}

.art-bottom-right {
  grid-column: 3;
  grid-row: 2;
}

.contact {
  padding: 100px 24px;
  text-align: center;
}

.contact h2 {
  font-size: clamp(48px, 4vw, 68px);
  margin-bottom: 15px;
}

.contact p {
  margin-bottom: 10px;
}

footer {
  background: var(--black);
  color: #fff;
  padding: 30px;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 125px;
    padding: 42px 6vw 30px;
  }

  .hero {
    padding: 0 6vw 48px;
  }

  .hero-image {
    height: 55vw;
    min-height: 350px;
  }

  .hero-overlay {
    inset: 0 6vw 48px;
  }

  .hero h1 {
    width: 85%;
    font-size: clamp(38px, 6vw, 58px);
  }

  .selected-work {
    padding: 15px 6vw 75px;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 65px 5vw;
  }

  .skills {
    grid-template-columns: 1fr;
    padding: 80px 6vw;
  }

  .skills-title h2 {
    text-align: center;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    min-height: auto;
  }

  .art-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 350px 350px;
  }

  .art-left {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .beyond-copy {
  grid-column: 2;
  grid-row: 1;
  padding: 10px 4%;
  position: relative;
  z-index: 2;
  }

  .art-right {
  grid-column: 2;
  grid-row: 2 / span 2;
  transform: translateY(60px);
}

  .art-bottom-left {
  grid-column: 1;
  grid-row: 3;
  transform: translateY(100px);
}

  .art-bottom-right {
  display: none;
  transform: translateY(100px);
}

  .podcast-button {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 600px) {
  body { font-size: 14px; }

  .site-header {
    padding: 30px 6vw 26px;
    align-items: center;
  }

  .site-title {
    font-size: 14px;
    max-width: 180px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 12px;
  }

  .hero {
    padding: 0 4vw 35px;
  }

  .hero-image {
    height: 120vw;
    min-height: 430px;
  }

  .hero-overlay {
    inset: 0 4vw 35px;
  }

  .hero h1 {
    width: 88%;
    font-size: clamp(36px, 10vw, 52px);
  }

  .section-intro h2 {
    font-size: 50px;
  }

  .section-intro p {
    font-size: 18px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .work-image {
    width: min(80%, 300px);
  }

  .pill-button {
    min-width: 245px;
    min-height: 70px;
    padding: 20px 25px;
  }

  .skills {
    padding: 70px 6vw;
  }

  .skill-card {
    padding: 40px 9%;
  }

  .skill-card h3 {
    margin-bottom: 35px;
  }

  .beyond {
    padding: 35px 4vw 0;
  }

  .art-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .beyond-copy {
    order: 1;
    padding: 10px 5% 20px;
  }

  .art-left { order: 2; min-height: 500px; }
  .art-right { order: 3; min-height: 500px; }
  .art-bottom-left { order: 4; min-height: 300px; }
  .art-bottom-right { display: flex; order: 5; min-height: 300px; }

  .contact {
    padding: 75px 24px;
  }
}

/* ===================== */
/* SAMPLE PAGES           */
/* ===================== */

.sample-banner {
  background: #c5c9cb;
  padding: 70px 6vw;
}

.sample-banner h1 {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.15;
}

.sample-back {
  padding: 28px 6vw 0;
  max-width: 1180px;
  margin: 0 auto;
}

.sample-back a {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sample-back a:hover {
  opacity: .65;
}

.sample-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 6vw 100px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 6vw;
  align-items: start;
}

.sample-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: sticky;
  top: 32px;
}

.sample-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sample-text .category {
  font-style: italic;
  margin: 0 0 10px;
}

.sample-text .description {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.4;
  margin: 0 0 28px;
}

.content-warning {
  background: rgba(34, 34, 59, 0.08);
  border-left: 3px solid var(--black);
  padding: 14px 18px;
  font-style: italic;
  margin: 0 0 24px;
}

.script-note {
  font-style: italic;
  opacity: .75;
  margin: 0 0 20px;
}

.script-slug {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  margin: 30px 0 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(34,34,59,.15);
}

.sample-text > .script-slug:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.script-event {
  font-style: italic;
  opacity: .85;
  margin: 0 0 14px;
}

.script-line {
  margin: 0 0 14px;
}

.script-speaker {
  font-weight: 700;
}

.script-choice-label {
  font-weight: 700;
  margin: 26px 0 8px;
}

.script-option {
  font-weight: 700;
  margin: 18px 0 8px;
  padding-left: 18px;
}

.script-branch {
  font-weight: 700;
  font-style: italic;
  margin: 18px 0 8px;
}

.script-return {
  font-style: italic;
  opacity: .6;
  margin: 20px 0 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(34,34,59,.15);
}

@media (max-width: 900px) {
  .sample-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sample-image {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  .sample-banner {
    padding: 45px 6vw;
  }
}

/* ===================== */
/* ABOUT / CONTACT PAGES  */
/* ===================== */

.split-hero {
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}

.split-copy {
  background: var(--tan);
  padding: 8vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h1 {
  font-size: clamp(38px, 3.6vw, 60px);
  line-height: 1.12;
  margin: 0 0 34px;
  max-width: 620px;
}

.split-copy ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
  max-width: 640px;
}

.split-copy li {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  margin-bottom: 22px;
}

.split-copy li:last-child {
  margin-bottom: 0;
}

.split-intro {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 0 34px;
}

.split-image {
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

.form-section-label {
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-form label .required {
  font-weight: 400;
  font-style: italic;
  opacity: .65;
}

.contact-form input {
  font-family: var(--body);
  font-size: 15px;
  padding: 14px 22px;
  margin-bottom: 22px;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  background: transparent;
  color: var(--black);
}

.contact-form textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 16px 22px;
  margin-bottom: 26px;
  border: 1.5px solid var(--black);
  border-radius: 22px;
  background: transparent;
  color: var(--black);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.send-button {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  min-width: 150px;
  min-height: 56px;
  padding: 14px 40px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 900px) {
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-image {
    min-height: 340px;
  }

  .split-copy {
    padding: 60px 6vw;
  }
}
