/* Standard content sections: intro, stats, services, features, work, notes, testimonials. */

.intro {
  text-align: center;
}

.intro-text,
.section-intro {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--muted);
}

/* Intro offerings */
.intro-offerings {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 0;
  padding: 0;
}

.intro-offerings li {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-width: 0;
  min-height: 220px;
  padding: 32px 20px;
}

.intro-offerings li + li {
  border-left: 0;
}

.offering-icon {
  display: grid;
  width: 132px;
  height: 106px;
  place-items: center;
}

.offering-icon svg {
  width: 100%;
  overflow: visible;
  filter: drop-shadow(0 10px 8px rgba(26, 23, 16, 0.16));
}

.intro-offerings li:nth-child(1) .offering-icon svg {
  transform: rotate(-2deg);
}

.intro-offerings li:nth-child(2) .offering-icon svg {
  transform: rotate(1.5deg);
}

.intro-offerings li:nth-child(3) .offering-icon svg {
  transform: rotate(-1deg);
}

.icon-paper {
  fill: var(--paper);
}

.icon-gold {
  fill: var(--gold);
}

.icon-red {
  fill: var(--red);
}

.icon-black {
  fill: var(--black);
}

.icon-soft {
  fill: #d9cebb;
}

.icon-outline {
  stroke: var(--black);
  stroke-width: 2;
  stroke-linejoin: round;
}

.icon-check {
  fill: none;
  stroke: var(--black);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-bag-handle {
  fill: none;
  stroke: var(--black);
  stroke-width: 4;
  stroke-linecap: round;
}

.icon-cart-handle {
  fill: none;
  stroke: var(--black);
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.intro-offerings h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.1;
}

/* Showrunner */
.showrunner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.showrunner-copy .eyebrow {
  text-align: left;
}

.showrunner-points {
  margin: 20px 0 28px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.showrunner-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.showrunner-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--paper);
}

.showrunner-shot {
  margin: 0;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 9px 9px 0 rgba(26, 23, 16, 0.12);
}

.showrunner-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 2px solid var(--black);
}

.showrunner-shot figcaption {
  padding: 12px 16px;
  background: var(--black);
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

/* Services */
.service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.service-row article {
  min-height: 440px;
  display: grid;
  grid-template-rows: 190px 42px 34px auto;
  align-items: start;
  row-gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(26, 23, 16, 0.06);
}

.service-row h3 {
  align-self: center;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.process-step {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.process-graphic {
  display: grid;
  width: 100%;
  min-height: 190px;
  place-items: center;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 55%, rgba(209, 154, 35, 0.17), transparent 68%);
}

.process-graphic svg {
  width: min(100%, 220px);
  overflow: visible;
  filter: drop-shadow(0 12px 10px rgba(26, 23, 16, 0.13));
}

.icon-confetti {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
}

.icon-curtain-fold {
  fill: none;
  stroke: var(--black);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: 0.38;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.feature-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.feature-grid article:nth-child(2n) {
  border-right: 0;
}

.feature-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.feature-grid p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-visual {
  position: relative;
  width: 188px;
  height: 132px;
  margin-bottom: 24px;
}

.browser-stack span {
  position: absolute;
  display: block;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 6px 6px 0 rgba(26, 23, 16, 0.12);
}

.browser-stack span:nth-child(1) {
  width: 112px;
  height: 74px;
  left: 18px;
  top: 18px;
  background: var(--black);
}

.browser-stack span:nth-child(2) {
  width: 116px;
  height: 82px;
  right: 18px;
  top: 42px;
}

.browser-stack span:nth-child(3) {
  width: 86px;
  height: 32px;
  left: 56px;
  bottom: 6px;
  background: var(--gold);
}

.chart-stack {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.chart-stack span {
  width: 24px;
  border: 1px solid var(--black);
  border-radius: 999px 999px 0 0;
  background: var(--red);
}

.chart-stack span:nth-child(1) {
  height: 46px;
}

.chart-stack span:nth-child(2) {
  height: 72px;
  background: var(--gold);
}

.chart-stack span:nth-child(3) {
  height: 98px;
  background: var(--black);
}

.chart-stack span:nth-child(4) {
  height: 58px;
}

.ticket-stack {
  display: grid;
  place-items: center;
}

.ticket-stack span {
  position: absolute;
  width: 154px;
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 800;
}

.ticket-stack span:first-child {
  transform: rotate(-8deg);
}

.ticket-stack span:last-child {
  transform: rotate(8deg) translateY(36px);
  background: var(--red);
  color: var(--warm);
}

.map-stack {
  display: grid;
  place-items: center;
}

.map-stack::before {
  content: "AO";
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--black);
  color: var(--warm);
  font-family: var(--serif);
  font-weight: 800;
}

.map-stack span {
  position: absolute;
  min-width: 72px;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
}

.map-stack span:nth-child(1) {
  top: 8px;
  left: 4px;
}

.map-stack span:nth-child(2) {
  right: 0;
  top: 44px;
}

.map-stack span:nth-child(3) {
  left: 42px;
  bottom: 12px;
}

/* Section headings shared by work / notes / testimonials */
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2,
.section-heading .eyebrow {
  text-align: left;
  margin-inline: 0;
}

/* Work & notes cards */
.work-grid,
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.work-grid article,
.notes-grid article {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.work-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.work-link img {
  transition: transform 0.5s ease, filter 0.4s ease;
}

.work-grid article:hover .work-link img {
  transform: scale(1.03);
  filter: saturate(1);
}

.work-grid h3 {
  transition: color 0.2s ease;
}

.work-grid article:hover .work-link h3 {
  color: var(--red);
}

.work-grid img,
.notes-grid img {
  height: 245px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.86);
}

.work-grid div,
.notes-grid article {
  position: relative;
}

.work-grid div {
  padding: 16px;
}

.work-grid p,
.notes-grid p {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.work-grid h3,
.notes-grid h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.notes-grid article {
  padding-bottom: 16px;
}

.notes-grid .note-link {
  color: inherit;
  text-decoration: none;
}

.notes-grid .note-card-copy {
  display: block;
  min-height: 0;
  padding: 0;
}

.notes-grid .note-category,
.notes-grid .note-title,
.notes-grid .note-date {
  display: block;
  margin-left: 16px;
  margin-right: 16px;
}

.notes-grid .note-category {
  margin-top: 14px;
  margin-bottom: 8px;
}

.notes-grid .note-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.notes-grid .note-date {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.notes-grid p,
.notes-grid h3 {
  margin-left: 16px;
  margin-right: 16px;
}

.notes-grid p {
  margin-top: 14px;
}

/* Testimonials */
.mini-controls {
  display: flex;
  gap: 8px;
}

.mini-controls span {
  width: 34px;
  height: 34px;
  display: block;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

figure {
  margin: 0;
}

.testimonial-row figure {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--warm);
}

.testimonial-row img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.8);
}

.testimonial-row blockquote {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 48px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.05;
}

.testimonial-row figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .work-grid,
  .notes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .notes-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .service-row,
  .feature-grid,
  .work-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .feature-grid article:nth-child(2n),
  .feature-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article:last-child {
    border-bottom: 0;
  }

  .notes-grid article:last-child {
    grid-column: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .testimonial-row {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
  }
}

@media (max-width: 430px) {
  .service-row article {
    min-height: 400px;
    grid-template-rows: 160px 42px 34px auto;
    padding: 22px;
  }

  .process-graphic {
    min-height: 160px;
  }

  .intro-offerings {
    margin-top: 34px;
  }

  .intro-offerings li {
    gap: 12px;
    min-height: 160px;
    padding: 24px 8px;
  }

  .offering-icon {
    width: 88px;
    height: 74px;
  }

  .feature-grid article {
    padding: 24px 16px;
  }

  .feature-visual {
    transform: scale(0.9);
  }
}
