* {
  box-sizing: border-box;
}

:root {
  --olive: #465332;
  --olive-dark: #273022;
  --sage: #748061;
  --gold: #d1a45b;
  --clay: #9a5d46;
  --blue: #516f78;
  --ink: #20231f;
  --paper: #fffdf4;
  --mist: #eceee4;
  --white: #ffffff;
  --line: rgba(70, 83, 50, .16);
  --line-dark: rgba(255, 253, 244, .18);
  --text-soft: rgba(32, 35, 31, .70);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 244, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 188px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav a,
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 15px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.main-nav a:hover {
  background: rgba(70, 83, 50, .08);
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(70, 83, 50, .16);
  border-radius: 6px;
  color: var(--olive);
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn {
  width: fit-content;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--olive);
  color: var(--paper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.btn-secondary {
  border-color: rgba(255, 253, 244, .55);
  background: rgba(255, 253, 244, .10);
  color: var(--paper);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--paper);
  color: var(--olive-dark);
}

:focus-visible {
  outline: 3px solid rgba(209, 164, 91, .72);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 556px;
  min-height: calc(100svh - 164px);
  display: flex;
  align-items: center;
  padding: 86px 0 72px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(21, 26, 20, .92) 0%, rgba(39, 48, 34, .82) 42%, rgba(39, 48, 34, .38) 76%, rgba(39, 48, 34, .18) 100%),
    linear-gradient(0deg, rgba(21, 26, 20, .30), rgba(21, 26, 20, .08)),
    url("images/hero-studio.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 253, 244, .18);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.photo-credit,
.media-tile::before,
.wide-photo::before {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  width: fit-content;
  border: 1px solid rgba(255, 253, 244, .22);
  border-radius: 6px;
  background: rgba(14, 18, 13, .58);
  color: rgba(255, 253, 244, .82);
  padding: 7px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateY(4px);
}

.hero-photo-credit {
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 22px;
}

.hero:hover .photo-credit,
.hero:focus-within .photo-credit,
.media-tile:hover::before,
.media-tile:focus-within::before,
.wide-photo:hover::before,
.wide-photo:focus-within::before {
  opacity: 1;
  transform: translateY(0);
}

.kicker {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .24em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: 78px;
  line-height: .92;
}

h2 {
  max-width: 820px;
  color: var(--olive);
  font-size: 52px;
  line-height: 1;
}

h3 {
  margin: 0;
  color: var(--olive);
  font-size: 19px;
  line-height: 1.2;
}

.hero-slogan {
  margin: 12px 0 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .24em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 253, 244, .82);
  font-size: 18px;
  line-height: 1.62;
}

.hero-lede strong {
  color: var(--paper);
}

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

.hero-proof {
  max-width: 700px;
  margin-top: 42px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255, 253, 244, .24);
}

.hero-proof span {
  color: rgba(255, 253, 244, .82);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-proof .proof-highlight {
  width: fit-content;
  border: 1px solid rgba(209, 164, 91, .45);
  border-radius: 6px;
  background: rgba(209, 164, 91, .16);
  color: var(--paper);
  padding: 9px 10px;
  transform: translateY(-9px);
}

.intro-strip {
  background: var(--ink);
  color: rgba(255, 253, 244, .72);
  border-bottom: 1px solid rgba(255, 253, 244, .12);
}

.intro-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 26px 0;
}

.intro-row p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.intro-row b {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
}

.section {
  padding: 82px 0;
}

.section-muted {
  background: var(--paper);
}

.split,
.location-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: start;
}

.section-copy,
.section-head {
  max-width: 780px;
}

.section-head {
  margin-bottom: 32px;
}

.section-actions {
  margin-top: 22px;
}

.section-head.compact {
  margin-bottom: 24px;
}

.section-head.with-meta {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.sub {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.68;
}

.studio-notes {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.studio-notes p {
  margin: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: rgba(32, 35, 31, .76);
  font-size: 14px;
  line-height: 1.5;
}

.studio-notes span,
.process-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
}

.media-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.media-tile {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.media-tile::before,
.wide-photo::before {
  content: "Foto: Matthias Schultner";
  top: 14px;
  bottom: auto;
}

.media-tile-large {
  grid-row: span 2;
}

.media-tile img,
.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.media-tile:hover img,
.wide-photo:hover img {
  transform: scale(1.025);
}

.media-tile::after,
.wide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 35, 31, 0) 42%, rgba(32, 35, 31, .76) 100%);
  pointer-events: none;
}

figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--paper);
}

figcaption b {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

figcaption span {
  color: rgba(255, 253, 244, .74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.team-panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.team-panel > div,
.team-panel article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 244, .70);
  padding: 24px;
}

.team-panel h2 {
  font-size: 34px;
}

.team-panel h3 {
  margin-bottom: 10px;
}

.team-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.package-card,
.process-grid article,
.form-panel,
.recommendation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.package-card {
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-card.featured {
  border-color: rgba(209, 164, 91, .64);
  background: linear-gradient(180deg, #fffdf4, #fff8e8);
}

.package-card.live-card {
  border-color: rgba(81, 111, 120, .36);
  background: linear-gradient(180deg, #ffffff, #f4f7f4);
}

.package-label {
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.package-price,
.result-price {
  margin: 0;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
}

.package-subprice {
  margin: -6px 0 2px;
  color: rgba(32, 35, 31, .48);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.live-card .package-price {
  font-size: 27px;
}

.package-card p:not(.package-label):not(.package-price):not(.package-subprice),
.package-card li,
.process-grid p,
.recommendation-panel p,
.legal-note {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.62;
}

.package-card ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.process-section {
  background: var(--olive-dark);
  color: var(--paper);
}

.process-section h2 {
  color: var(--paper);
}

.process-section .sub {
  color: rgba(255, 253, 244, .72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  padding: 24px;
  background: rgba(255, 253, 244, .06);
  border-color: var(--line-dark);
}

.process-grid h3 {
  margin-top: 14px;
  color: var(--paper);
}

.process-grid p {
  margin: 10px 0 0;
  color: rgba(255, 253, 244, .72);
}

.offer-section {
  background: var(--mist);
}

.live-section {
  background: #f7f8f1;
}

.live-notes p {
  border-top-color: rgba(81, 111, 120, .22);
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.form-panel,
.recommendation-panel {
  padding: 26px;
}

.recommendation-panel {
  position: sticky;
  top: 112px;
  background: var(--paper);
}

.result-badge {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(209, 164, 91, .16);
  color: #865f25;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.recommendation-panel h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.recommendation-panel .small {
  color: rgba(32, 35, 31, .56);
  font-size: 11px;
}

.field {
  margin: 0 0 18px;
}

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

label,
legend {
  display: block;
  margin: 0 0 8px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .17em;
  line-height: 1.35;
  text-transform: uppercase;
}

fieldset {
  padding: 0;
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(70, 83, 50, .24);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  padding: 12px 13px;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.choice {
  position: relative;
  min-height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  border: 1px solid rgba(70, 83, 50, .20);
  border-radius: 6px;
  background: var(--white);
  color: var(--olive);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice span {
  width: 100%;
  padding: 12px 13px 12px 38px;
}

.choice span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(70, 83, 50, .45);
  border-radius: 4px;
  transform: translateY(-50%);
}

.choice input:checked + span {
  background: rgba(209, 164, 91, .16);
}

.choice input:checked + span::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--white);
}

.hidden-field {
  display: none;
}

.legal-note {
  margin: 0 0 18px;
}

.legal-note a {
  color: var(--olive);
  font-weight: 800;
}

.location-section {
  background: var(--paper);
}

.location-wrap {
  align-items: stretch;
}

.location-wrap > div {
  align-self: center;
}

.location-info {
  margin: 28px 0 0;
  display: grid;
  gap: 20px;
}

.location-info div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.location-info dt {
  margin: 0 0 4px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-info dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.68;
}

.wide-photo {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.wide-photo::after {
  background: linear-gradient(90deg, rgba(32, 35, 31, .78), rgba(32, 35, 31, .08));
}

.tour-count {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter {
  min-height: 38px;
  border: 1.5px solid rgba(70, 83, 50, .22);
  border-radius: 999px;
  background: transparent;
  color: var(--sage);
  padding: 0 15px;
  font-size: 12px;
  font-weight: 850;
}

.filter.active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--paper);
}

.table-head,
.gig {
  display: grid;
  grid-template-columns: 108px minmax(170px, 210px) 1fr 140px 118px;
}

.table-head {
  padding: 11px 18px;
  border-radius: 8px 8px 0 0;
  background: var(--ink);
  color: rgba(255, 253, 244, .52);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.gig-list {
  display: grid;
  gap: 4px;
}

.gig {
  border-left: 3px solid transparent;
  background: var(--white);
  transition: border-color .2s ease, background-color .2s ease;
}

.gig:hover {
  border-left-color: var(--gold);
  background: #fffaf0;
}

.cell {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(70, 83, 50, .07);
  padding: 15px 17px;
}

.cell:last-child {
  border-right: 0;
}

.date-day {
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.date-rest {
  margin-top: 4px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(70, 83, 50, .08);
  color: var(--olive);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 850;
}

.dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--gold);
}

.loc {
  font-size: 14px;
  font-weight: 850;
}

.country {
  margin-left: 6px;
  color: var(--clay);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}

.venue {
  margin-top: 4px;
  color: var(--sage);
  font-size: 11px;
  line-height: 1.35;
}

.role {
  color: var(--olive);
  font-size: 12px;
  font-weight: 850;
}

.ticket,
.free,
.soon {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.ticket {
  background: var(--olive);
  color: var(--paper);
}

.ticket:hover {
  background: var(--gold);
  color: var(--ink);
}

.free {
  color: var(--sage);
}

.soon {
  background: rgba(209, 164, 91, .16);
  color: #865f25;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 253, 244, .48);
  padding: 32px 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  gap: 14px;
}

.page-hero {
  padding: 70px 0;
  background: var(--olive-dark);
  color: var(--paper);
}

.page-hero h1 {
  color: var(--paper);
  font-size: 64px;
}

.content-page {
  padding: 64px 0;
  background: var(--paper);
}

.legal-page {
  background: linear-gradient(180deg, var(--paper), var(--mist));
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-aside,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-aside {
  position: sticky;
  top: 120px;
  padding: 22px;
}

.legal-aside h2 {
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 28px;
}

.legal-aside p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.legal-aside a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.legal-aside a:last-child {
  padding-bottom: 0;
}

.legal-card {
  max-width: none;
  padding: 34px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 34px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 8px;
  border-top: 1px solid rgba(70, 83, 50, .12);
  padding-top: 18px;
  color: var(--olive);
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: rgba(32, 35, 31, .74);
  font-size: 14px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 8px 0 16px 20px;
}

.notice {
  width: fit-content;
  margin: 0 0 24px;
  border-left: 3px solid var(--gold);
  background: rgba(209, 164, 91, .13);
  color: #865f25;
  padding: 12px 14px;
  font-weight: 760;
}

.thanks-panel {
  max-width: 720px;
}

.thanks-panel .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 1120px) {
  h1 {
    font-size: 94px;
  }
}

@media (max-width: 920px) {
  .split,
  .location-wrap,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .recommendation-panel {
    position: static;
  }

  .package-grid,
  .process-grid,
  .team-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-panel > div {
    grid-column: 1 / -1;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .media-tile,
  .media-tile-large {
    min-height: 300px;
    grid-row: auto;
  }

  .section-head.with-meta {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 128px;
  }

  .wrap {
    width: min(100% - 32px, 1120px);
  }

  .header-inner {
    min-height: 112px;
    grid-template-columns: 1fr auto auto;
    gap: 8px 12px;
    padding: 10px 0 9px;
  }

  .brand img {
    width: 154px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .main-nav a {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 11px;
    border: 1px solid rgba(70, 83, 50, .14);
    font-size: 10px;
  }

  .hero {
    min-height: 560px;
    min-height: calc(100svh - 220px);
    align-items: flex-start;
    padding: 48px 0 42px;
    background:
      linear-gradient(180deg, rgba(21, 26, 20, .92) 0%, rgba(39, 48, 34, .84) 56%, rgba(39, 48, 34, .52) 100%),
      url("images/hero-studio.jpg") center / cover no-repeat;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    margin-top: 30px;
  }

  .intro-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .sub {
    font-size: 15px;
  }

  .studio-notes p {
    grid-template-columns: 36px 1fr;
  }

  .media-tile,
  .media-tile-large,
  .wide-photo {
    min-height: 270px;
  }

  .package-card,
  .process-grid article,
  .form-panel,
  .recommendation-panel {
    padding: 21px;
  }

  .package-grid,
  .process-grid,
  .team-panel {
    grid-template-columns: 1fr;
  }

  .team-panel > div {
    grid-column: auto;
  }

  .form-row,
  .choice-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .choice-grid {
    gap: 9px;
  }

  .table-head {
    display: none;
  }

  .gig {
    grid-template-columns: 1fr;
    border-left: 0;
    border-radius: 8px;
    overflow: hidden;
  }

  .cell {
    border-right: 0;
    border-bottom: 1px solid rgba(70, 83, 50, .08);
    padding: 12px 15px;
  }

  .cell:last-child {
    border-bottom: 0;
  }

  .cell::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: rgba(70, 83, 50, .46);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .page-hero {
    padding: 48px 0;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .content-page {
    padding: 48px 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

  .legal-card {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (hover: none) {
  .photo-credit,
  .media-tile::before,
  .wide-photo::before {
    opacity: .78;
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
