:root {
  --ink: #101010;
  --paper: #f2eee4;
  --chalk: #fff7df;
  --clay: #bb5f38;
  --acid: #c5ff41;
  --blue: #2444b8;
  --graphite: #242424;
  --line: #d4c7b5;
  --soft: #e6dac8;
  --shadow: #4b2f22;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(242, 238, 228, 0.94);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 0.9;
  text-transform: uppercase;
}

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

.site-nav a,
.theme-mobile-nav a {
  padding: 12px 18px;
  border: 2px solid transparent;
  font-weight: 900;
}

.site-nav a:hover,
.theme-mobile-nav a:hover {
  border-color: var(--ink);
  background: var(--acid);
}

.menu-toggle {
  display: none;
  min-width: 46px;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--chalk);
  font: inherit;
  font-weight: 900;
}

.theme-mobile-nav[hidden],
.theme-mobile-nav[aria-hidden="true"],
.theme-mobile-nav[data-menu-open="false"] {
  display: none;
}

.theme-mobile-nav[data-menu-open="true"] {
  position: fixed;
  inset: 76px 14px auto 14px;
  z-index: 30;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: var(--chalk);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--clay);
}

.route {
  min-height: 100vh;
}

.opening {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(38px, 6vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--chalk);
}

.opening-copy {
  max-width: 760px;
}

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

h1,
h2 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  line-height: 0.94;
  letter-spacing: 0;
}

.opening h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 8.4vw, 9.5rem);
  max-width: 7.6ch;
}

.opening p {
  max-width: 660px;
  color: var(--soft);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.opening-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--clay);
}

.button-ghost {
  border-color: var(--chalk);
  color: var(--chalk);
}

.opening-media {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  grid-template-rows: 240px 300px;
  gap: 18px;
}

.opening-media img {
  width: 100%;
  height: 100%;
  border: 3px solid var(--chalk);
}

.opening-media img:first-child {
  grid-row: span 2;
}

.opening-media img:nth-child(2) {
  transform: translateY(32px);
}

.opening-media img:nth-child(3) {
  border-radius: 0 90px 0 0;
}

.work-index {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1.15fr) minmax(240px, 0.9fr);
  gap: 22px;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--clay);
}

.feature-card {
  display: grid;
  grid-template-rows: 320px auto;
  min-height: 520px;
  background: var(--chalk);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.feature-card-wide {
  margin-top: 58px;
}

.feature-card img {
  width: 100%;
  height: 100%;
}

.feature-card div {
  padding: 22px;
}

.feature-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
}

.feature-card p {
  color: var(--graphite);
}

.booking-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: clamp(30px, 5vw, 54px) clamp(18px, 5vw, 72px);
  background: var(--acid);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.studio-method {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 50px);
  padding: clamp(34px, 6vw, 74px) clamp(18px, 5vw, 72px);
  background: var(--chalk);
  border-top: 3px solid var(--ink);
}

.studio-method h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
}

.studio-method div {
  display: grid;
  gap: 12px;
}

.studio-method p {
  margin-bottom: 0;
  padding: 18px 0;
  border-top: 2px solid var(--ink);
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.output-menu {
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.output-menu h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.output-menu div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.output-menu article {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  background: var(--ink);
  color: var(--chalk);
  border-radius: 28px 28px 0 28px;
}

.output-menu p {
  margin-bottom: 0;
  color: var(--acid);
  font-weight: 900;
}

.output-menu h3 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 0.95;
}

.booking-path p {
  margin-bottom: 0;
  max-width: 850px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1;
}

.work-shell {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.work-controls {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--ink);
  color: var(--chalk);
  border-radius: 28px 28px 0 28px;
}

.work-controls h1 {
  margin-bottom: 4px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--chalk);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

select option {
  background-color: var(--chalk);
  color: var(--ink);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
}

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

.project-card {
  display: grid;
  gap: 18px;
  padding: 16px;
  background: var(--chalk);
  border: 3px solid var(--ink);
}

.project-card[hidden] {
  display: none;
}

.project-card img {
  width: 100%;
  height: 360px;
}

.project-card-tall {
  margin-top: 64px;
}

.project-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.55rem);
}

.direction-note {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 26px;
  padding: clamp(32px, 5vw, 70px) clamp(18px, 5vw, 72px);
  background: var(--blue);
  color: var(--chalk);
}

.direction-note h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.direction-note p {
  max-width: 720px;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.journal-lead {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(22px, 4vw, 48px);
  background: var(--chalk);
}

.journal-lead h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.journal-lead p {
  max-width: 760px;
  color: var(--graphite);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  padding: clamp(26px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background: var(--chalk);
}

.journal-entries {
  display: grid;
  gap: 16px;
}

.journal-entries article {
  padding: clamp(20px, 3vw, 32px);
  border: 2px solid var(--ink);
  background: var(--paper);
}

.journal-entries h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.8vw, 3.2rem);
}

.media-strip {
  display: grid;
  gap: 18px;
}

.media-strip img {
  width: 100%;
  height: 330px;
  border: 3px solid var(--ink);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(38px, 6vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--chalk);
}

.booking-brief {
  display: grid;
  align-content: start;
  gap: 22px;
}

.booking-brief h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 7.4rem);
}

.booking-brief p {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(1.12rem, 1.75vw, 1.5rem);
}

.booking-brief img {
  width: min(100%, 640px);
  height: 360px;
  border: 3px solid var(--chalk);
}

.booking-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: clamp(20px, 3vw, 34px);
  background: var(--chalk);
  color: var(--ink);
  border-radius: 28px;
  box-shadow: 10px 10px 0 var(--clay);
}

.booking-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5em;
  margin-bottom: 0;
  font-weight: 900;
}

.booking-details {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: var(--clay);
}

.booking-details h2 {
  font-size: clamp(2.1rem, 3.6vw, 4rem);
}

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

.booking-details p {
  margin: 0;
  padding: 18px;
  min-height: 96px;
  display: grid;
  place-items: center;
  background: var(--chalk);
  border: 2px solid var(--ink);
  font-weight: 900;
  text-align: center;
}

paazaa-form .pa-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  background: var(--chalk);
  color: var(--ink);
  border-radius: 28px;
}

paazaa-form .pa-field,
paazaa-form label,
paazaa-form .pa-field label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

paazaa-form input,
paazaa-form select,
paazaa-form textarea {
  width: 100%;
  min-height: 52px;
  border: 2px solid var(--ink);
  background: var(--chalk);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

paazaa-form button,
paazaa-form .pa-btn {
  min-height: 54px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .opening,
  .work-shell,
  .direction-note,
  .studio-method,
  .journal-layout,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .opening {
    min-height: auto;
  }

  .opening h1,
  .booking-brief h1,
  .journal-lead h1 {
    max-width: 11ch;
  }

  .opening-media {
    grid-template-rows: 220px 240px;
  }

  .work-index,
  .gallery,
  .output-menu div,
  .booking-details div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-controls {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 70px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .opening h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .opening-media,
  .work-index,
  .gallery,
  .output-menu div,
  .booking-details div {
    grid-template-columns: 1fr;
  }

  .opening-media {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 180px;
  }

  .opening-media img:first-child {
    grid-row: auto;
  }

  .opening-media img:nth-child(2) {
    transform: none;
  }

  .feature-card,
  .feature-card-wide,
  .project-card-tall {
    margin-top: 0;
  }

  .booking-path {
    grid-template-columns: 1fr;
  }

  .project-card img,
  .media-strip img,
  .booking-brief img {
    height: 260px;
  }
}


.theme-site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  width: 100%;
  max-width: 100vw;
}

.theme-site-nav,
.theme-footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  min-width: 0;
}

.theme-site-nav {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.theme-site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  width: 100%;
  max-width: 100vw;
}

.theme-footer-nav {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.theme-footer-nav a,
.theme-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .theme-site-header,
  .theme-site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .theme-site-nav,
  .theme-footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .theme-site-header .site-nav,
  .theme-site-header .theme-site-nav {
    display: none;
  }

  .theme-site-header .menu-toggle,
  .theme-site-header [data-theme-menu-toggle] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    justify-self: end;
    cursor: pointer;
  }

  .theme-site-header .theme-mobile-nav,
  .theme-site-header [data-theme-mobile-nav] {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .theme-site-header .theme-mobile-nav[data-menu-open="true"],
  .theme-site-header [data-theme-mobile-nav][data-menu-open="true"] {
    display: grid;
    gap: 10px;
  }
}