:root {
  color-scheme: dark;
  --bg: #090909;
  --panel: #101010;
  --ink: #f1f0e8;
  --muted: #a3a39b;
  --line: #2b2b29;
  --red: #ef5645;
  --yellow: #efd76d;
  --mono: "IBM Plex Mono", monospace;
  --display: "Space Grotesk", sans-serif;
  --body: "DM Sans", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  background: none;
  border: 0;
}
button:disabled {
  cursor: default;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
}
h2 {
  font-size: clamp(36px, 4.2vw, 64px);
}
h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
}
p {
  color: var(--muted);
}
strong {
  color: var(--ink);
  font-weight: 500;
}
::selection {
  background: var(--yellow);
  color: #090909;
}
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 5px;
}
main:focus {
  outline: none;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.eyebrow {
  font: 10px/1.65 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-index {
  color: var(--yellow);
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.text-link {
  font-size: 13px;
  display: inline-flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #62625c;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.text-link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #51514b;
  white-space: nowrap;
  line-height: 1.4;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.button-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.button-primary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}
.button-primary span {
  color: var(--red);
  font-size: 20px;
  line-height: 1;
}
.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  display: inline-grid;
  place-items: center;
  font-size: 18px;
}
.icon-button:hover:not(:disabled) {
  border-color: var(--yellow);
  color: var(--yellow);
}
.icon-button:disabled {
  opacity: 0.3;
}
.small {
  font-size: 12px;
  line-height: 1.7;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 200;
  background: var(--yellow);
  color: #000;
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
/* Shared navigation remains visible on every page. */
.site-header {
  height: 92px;
  padding: 0 4%;
  display: flex;
  align-items: center;
  gap: 38px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.96);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: 600;
  line-height: 1.2;
}
.brand small {
  display: block;
  font: 7px/1.5 var(--mono);
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 5px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-size: 13px;
}
.primary-nav a {
  padding: 10px 0;
  position: relative;
}
.primary-nav a:hover,
.primary-nav a[aria-current] {
  color: var(--yellow);
}
.primary-nav a[aria-current]::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--red);
  left: -12px;
  top: 19px;
}
.header-book {
  padding: 12px 18px;
  gap: 26px;
}
.header-book span {
  color: var(--yellow);
}
.header-book:hover span {
  color: var(--bg);
}
.menu-toggle {
  display: none;
}
/* The opening is black until the arc draws across the full hero. */
.hero {
  min-height: calc(100svh - 92px);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-art canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-word {
  display: block;
  text-shadow:
    0 2px 28px #090909,
    0 0 8px #090909;
}
.hero-enter .hero-word {
  animation: hero-reveal 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-enter .hero-word:nth-child(1) {
  animation-delay: 0.72s;
}
.hero-enter .hero-word:nth-child(2) {
  animation-delay: 0.84s;
}
.hero-enter .hero-word:nth-child(3) {
  animation-delay: 0.96s;
}
.hero-enter .hero-word:nth-child(4) {
  animation-delay: 1.08s;
}
.hero-enter .hero-top {
  animation: hero-reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.25s both;
}
.hero-enter .hero-bottom {
  animation: hero-reveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.35s both;
}
.hero-enter .hero-foot {
  animation: hero-reveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.48s both;
}
body[data-page="home"] .site-header {
  animation: header-reveal 0.7s ease-out 1.4s both;
}
@keyframes header-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-bottom > p {
  text-shadow:
    0 0 8px #090909,
    0 0 20px #090909;
}
@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.hero-edition {
  font: 10px var(--mono);
  color: var(--muted);
}
.hero-body {
  position: relative;
  flex: 1;
  padding-top: 52px;
  padding-bottom: 34px;
  pointer-events: none;
}
.hero-label {
  font: 9px var(--mono);
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(64px, 7.65vw, 122px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.072em;
  max-width: 60%;
  position: relative;
}
.hero h1 > span:not(.red-period) {
  color: var(--ink);
}
.hero .red-period {
  color: var(--red);
}
.hero-side-note {
  position: absolute;
  right: 2%;
  bottom: 34px;
  font: 9px/1.7 var(--mono);
  letter-spacing: 0.12em;
}
.hero-bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 42px;
  padding-bottom: 40px;
}
.hero-bottom > p {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.65;
  color: #c0c0b6;
}
.hero-bottom > .button {
  flex-shrink: 0;
}
.replay {
  margin-left: auto;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 20px;
}
.replay span {
  font: 8px var(--mono);
  letter-spacing: 0.1em;
}
.replay:hover {
  color: var(--yellow);
}
.hero-foot {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-block: 19px;
  border-top: 1px solid var(--line);
  font: 8px var(--mono);
  letter-spacing: 0.14em;
  color: var(--muted);
}
.hero-foot > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-foot a:hover {
  color: var(--yellow);
}
.red-pixel {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--red);
}
.section {
  padding-block: 100px;
}
.section + .section {
  border-top: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 38px;
}
.section-head > .text-link {
  font-size: 12px;
}
.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 48px;
}
.split-heading > p {
  max-width: 350px;
  font-size: 14px;
}
.section-intro {
  max-width: 560px;
  font-size: 15px;
  margin: 24px 0 48px;
}
.service-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-preview > a {
  position: relative;
  min-width: 0;
  padding: 26px 25px 40px;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.service-preview > a:first-child {
  padding-left: 0;
}
.service-preview > a:last-child {
  border: 0;
}
.service-preview > a:hover {
  background: #141412;
}
.service-number {
  font: 10px var(--mono);
  color: var(--muted);
}
.service-symbol {
  display: block;
  font-size: 46px;
  color: var(--yellow);
  height: 100px;
  line-height: 100px;
}
.service-preview h3 {
  font-size: 23px;
  max-width: 225px;
  line-height: 1.2;
}
.service-preview p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 210px;
}
.service-arrow {
  display: block;
  margin-top: 32px;
  font-size: 20px;
  color: var(--red);
}
/* Actual site captures, quiet browser chrome, and accessible project dialogs. */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 32px;
}
.project-card {
  min-width: 0;
}
.project-image {
  padding: 0;
  width: 100%;
  display: block;
  text-align: left;
  overflow: hidden;
  border: 1px solid #383831;
  position: relative;
  background: #161616;
}
.project-image img {
  width: 100%;
  aspect-ratio: 1.44;
  object-fit: cover;
  object-position: top;
  transition:
    transform 0.6s,
    opacity 0.3s;
}
.project-image:hover img {
  transform: scale(1.025);
  opacity: 0.75;
}
.browser-bar {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #191919;
  padding: 0 12px;
  color: #b5b5ad;
  border-bottom: 1px solid #32322d;
  position: relative;
  z-index: 1;
}
.browser-bar i {
  height: 4px;
  width: 4px;
  background: #65655f;
  border-radius: 50%;
}
.browser-bar > span {
  font: 8px var(--mono);
  margin-left: 12px;
  letter-spacing: 0.04em;
}
.browser-bar b {
  margin-left: auto;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 400;
}
.image-cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: #090909;
  padding: 10px 15px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.2s;
}
.project-image:hover .image-cta,
.project-image:focus-visible .image-cta {
  opacity: 1;
  transform: none;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  font: 8px/1.5 var(--mono);
  letter-spacing: 0.08em;
  margin: 23px 0 10px;
  color: var(--muted);
}
.project-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.project-title h3 {
  font-size: 27px;
}
.project-title button {
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  padding: 0;
}
.project-title button:hover {
  color: var(--yellow);
}
.project-status {
  font: 8px/1.5 var(--mono);
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 7px;
  white-space: nowrap;
}
.project-card > p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 530px;
}
.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
  margin-bottom: 40px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filters button {
  padding: 9px 17px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: #090909;
  border-color: var(--ink);
}
.filters button:hover {
  border-color: var(--yellow);
}
.archive-invite {
  margin-top: 80px;
  border-block: 1px solid var(--line);
  padding-block: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.archive-invite p {
  font-size: 14px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-card {
  padding: 28px 24px;
  min-width: 0;
  border-right: 1px solid var(--line);
}
.partner-card:first-child {
  padding-left: 0;
}
.partner-card:last-child {
  border: 0;
}
.partner-card > .eyebrow {
  font-size: 8px;
  letter-spacing: 0.06em;
  min-height: 28px;
}
.partner-wordmark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 100px;
  font: 600 25px var(--display);
  letter-spacing: -0.06em;
}
.partner-wordmark > span {
  font: 14px var(--body);
  color: var(--yellow);
}
.partner-wordmark.deepsky {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
}
.partner-wordmark.brink {
  font-size: 38px;
  letter-spacing: -0.07em;
}
.partner-wordmark.expansion {
  font-size: 23px;
}
.partner-wordmark.box {
  font: 16px/1.4 var(--mono);
  letter-spacing: -0.06em;
}
.partner-card h3 {
  font: 11px/1.6 var(--body);
  letter-spacing: 0;
  color: var(--muted);
}
.partner-ratings {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 10px;
  color: var(--muted);
}
.partner-ratings a > span,
.partner-ratings b {
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--yellow);
  font-weight: 400;
  margin-right: 5px;
}
.partner-ratings a:hover {
  color: var(--ink);
}
.partner-card .rating-note {
  font-size: 9px;
  color: #919189;
  line-height: 1.6;
  margin-top: 12px;
}
.partner-grid-long {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.partner-grid-long .partner-card {
  padding: 34px;
  border-bottom: 1px solid var(--line);
}
.partner-grid-long .partner-card:nth-child(2n) {
  border-right: 0;
}
.partner-grid-long .partner-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.partner-grid-long .partner-card > p:not(.eyebrow):not(.rating-note) {
  font-size: 14px;
  margin-top: 16px;
  max-width: 480px;
}
.partner-grid-long .partner-wordmark {
  min-height: 78px;
}
.partner-grid-long h3 {
  color: var(--ink);
  font-size: 13px;
}
/* Crestone: softly morphing triangular mesh, deliberately sparse. */
.landscape {
  position: relative;
  min-height: 560px;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #0b0c0c;
}
.landscape canvas {
  position: absolute;
  inset: 0 0 0 auto;
  width: 78%;
  height: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 35%);
}
.landscape-content {
  position: relative;
  padding-top: 80px;
  padding-bottom: 70px;
  pointer-events: none;
}
.landscape h2 {
  margin: 35px 0 25px;
}
.landscape p:not(.eyebrow) {
  font-size: 14px;
  max-width: 440px;
  color: #b7b7ad;
}
.landscape-caption {
  display: block;
  font: 8px var(--mono);
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 85px;
}
.closing {
  padding-block: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.closing .eyebrow {
  margin-bottom: 24px;
}
.closing h2 {
  font-size: clamp(35px, 4.5vw, 64px);
}
.closing .button {
  flex-shrink: 0;
}
.site-footer {
  border-top: 1px solid var(--line);
}
.footer-top {
  padding-block: 48px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.footer-top > p {
  font-size: 12px;
}
.footer-top > .text-link {
  margin-left: auto;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 23px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font: 9px/1.6 var(--mono);
  color: var(--muted);
}
.footer-bottom button {
  font: inherit;
  color: inherit;
  padding: 5px 0;
}
.footer-bottom a:hover,
.footer-bottom button:hover {
  color: var(--yellow);
}
/* Inner pages share the same hierarchy and visual language. */
.page-head {
  padding-block: 85px 70px;
}
.page-head h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  margin-top: 30px;
  line-height: 1.03;
  letter-spacing: -0.065em;
}
.page-intro {
  font-size: 17px;
  max-width: 630px;
  margin-top: 30px;
  line-height: 1.75;
}
.page-head > .button,
.page-head > .text-link {
  margin-top: 32px;
}
.service-detail {
  display: grid;
  grid-template-columns: 80px 1.3fr 1fr;
  gap: 45px;
  padding-block: 55px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 105px;
}
.service-detail-no {
  font: 30px var(--mono);
  color: var(--yellow);
}
.service-detail-no span {
  font-size: 14px;
  color: var(--muted);
  margin-left: 15px;
}
.service-detail h2 {
  font-size: 34px;
  letter-spacing: -0.04em;
  margin: 15px 0 22px;
}
.service-detail p:not(.eyebrow):not(.service-expertise) {
  font-size: 15px;
  max-width: 560px;
}
.service-detail .eyebrow {
  font-size: 9px;
}
.service-expertise {
  font: 8px/1.8 var(--mono);
  color: var(--muted);
  margin-top: 25px;
  max-width: 470px;
}
.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  font-size: 14px;
  color: #cecec4;
}
.service-detail li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail li:before {
  content: "+";
  color: var(--red);
  margin-right: 15px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  gap: 36px;
}
.process-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.process-grid h3 {
  margin: 25px 0 18px;
}
.process-grid p {
  font-size: 14px;
}
.about-manifesto {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1.15fr 1fr;
  gap: 40px;
  padding-block: 50px;
  align-items: start;
}
.manifesto-mark {
  font-size: 65px;
  line-height: 1;
  color: var(--red);
}
.about-manifesto h2 {
  font-size: 36px;
}
.about-manifesto p {
  font-size: 14px;
}
.about-manifesto p + p {
  margin-top: 20px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 50px;
}
.team-monogram {
  height: 195px;
  background: #121312;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  padding: 30px;
}
.team-monogram > span {
  font: 60px var(--serif);
  color: var(--ink);
  z-index: 1;
}
.team-monogram > i {
  position: absolute;
  right: 20px;
  top: 16px;
  font: 9px var(--mono);
  color: var(--yellow);
  font-style: normal;
}
.team-monogram svg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  stroke: #848477;
  stroke-width: 0.6;
  fill: none;
}
.team-card:nth-child(2) .team-monogram svg {
  transform: rotate(180deg);
}
.team-card:nth-child(3) .team-monogram svg {
  transform: scaleX(-1);
}
.team-role {
  font-size: 12px;
  color: var(--yellow);
  margin-top: 13px;
}
.team-affiliation {
  font: 10px var(--mono);
  color: var(--muted);
  display: inline-block;
  margin: 12px 0 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}
.team-card > p:last-child {
  font-size: 14px;
}
.archive > section {
  margin: 20px 0 75px;
}
.archive .section-head h2 {
  font-size: 29px;
}
.archive details {
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.archive summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--display);
  font-size: 19px;
  list-style: none;
}
.archive summary::-webkit-details-marker {
  display: none;
}
.archive summary small {
  display: block;
  color: var(--muted);
  font: 12px var(--body);
  margin-top: 7px;
}
.archive summary > span:last-child {
  color: var(--yellow);
}
.archive-body {
  max-width: 900px;
  padding-bottom: 30px;
}
.archive-body p {
  margin-bottom: 18px;
  font-size: 14px;
}
.archive-body .eyebrow {
  font-size: 9px;
}
.archive-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
/* Booking request: honest availability, a clear review step, email handoff. */
.booking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  margin-bottom: 110px;
  align-items: start;
}
.booking-info {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  position: sticky;
  top: 124px;
}
.mini-mark {
  font-size: 50px;
  color: var(--yellow);
  display: block;
  line-height: 1;
  margin-bottom: 30px;
}
.booking-info h2 {
  font-size: 36px;
  margin-top: 20px;
}
.booking-info > p {
  font-size: 14px;
  max-width: 380px;
  margin-top: 25px;
}
.booking-info > .small {
  font-size: 12px;
}
.booking-info .text-link {
  margin-top: 25px;
}
.call-facts {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  border-block: 1px solid var(--line);
}
.call-facts li {
  padding: 12px 0;
  font-size: 13px;
}
.call-facts span {
  font: 9px var(--mono);
  color: var(--yellow);
  margin-right: 16px;
}
.booking-panel {
  background: #101110;
  border: 1px solid var(--line);
  padding: 34px;
}
.booking-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font: 9px/1.7 var(--mono);
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 22px;
}
.timezone-tag {
  color: var(--muted);
  font-size: 8px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 10px;
}
.calendar-head h2 {
  font-size: 23px;
  letter-spacing: -0.035em;
}
.calendar-head > div {
  display: flex;
  gap: 7px;
}
.weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}
.weekdays {
  font: 10px var(--mono);
  color: var(--muted);
  text-align: center;
  margin-bottom: 15px;
}
.calendar-days > button {
  aspect-ratio: 1.15;
  border: 1px solid #454539;
  font: 13px var(--mono);
  background: #1d1e18;
  color: var(--ink);
}
.calendar-days > button:disabled {
  background: transparent;
  border-color: transparent;
  color: #707168;
}
.calendar-days > button:not(:disabled):hover,
.calendar-days > button[aria-pressed="true"] {
  background: var(--yellow);
  color: #090909;
  border-color: var(--yellow);
}
.calendar-days > button[aria-current="date"] {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.calendar-note {
  margin-top: 18px;
  margin-bottom: 32px;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 32px;
}
.time-slots button {
  border: 1px solid #454539;
  font: 11px var(--mono);
  padding: 12px 4px;
}
.time-slots button:hover,
.time-slots button[aria-pressed="true"] {
  border-color: var(--yellow);
  color: var(--yellow);
  background: #26251a;
}
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 12px;
  margin-bottom: 20px;
  color: var(--ink);
}
input,
textarea {
  display: block;
  width: 100%;
  padding: 13px 14px;
  background: #090909;
  border: 1px solid #454540;
  border-radius: 0;
  color: var(--ink);
  font-size: 14px;
  margin-top: 8px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: #84847c;
  font-size: 12px;
}
.optional {
  color: var(--muted);
  font-size: 11px;
}
.full-width {
  width: 100%;
  margin-top: 16px;
}
.form-error {
  font-size: 13px;
  color: #ffa390;
}
.form-error:not(:empty) {
  margin-top: 15px;
}
.booking-panel #booking-review {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--yellow);
}
#booking-review h2 {
  font-size: 32px;
  margin: 18px 0;
}
#booking-review > p {
  font-size: 14px;
  margin: 15px 0;
}
#booking-review textarea {
  font: 12px/1.6 var(--mono);
  min-height: 200px;
}
#booking-review .text-link {
  margin-top: 12px;
}
dialog {
  color: var(--ink);
  background: #111210;
  border: 1px solid #45453c;
  padding: 30px 44px 44px;
  width: min(900px, calc(100% - 40px));
  max-height: 90svh;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}
.dialog-open {
  overflow: hidden;
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.dialog-top .icon-button {
  flex-shrink: 0;
}
#dialog-title {
  font-size: 48px;
  margin: 15px 0;
}
#dialog-content .project-status {
  display: inline-block;
}
#dialog-content .dialog-lede {
  font-size: 18px;
  color: var(--ink);
  margin: 28px 0;
}
#dialog-content > p {
  margin: 25px 0;
  font-size: 15px;
}
#dialog-content > img {
  border: 1px solid var(--line);
  width: 100%;
  height: auto;
}
.dialog-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (min-width: 1700px) {
  .hero-body {
    padding-top: 70px;
  }
  .hero h1 {
    font-size: 132px;
  }
  .hero-bottom {
    padding-bottom: 55px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero h1 {
    font-size: 9.5vw;
  }
  .hero-body {
    padding-top: 60px;
  }
  .hero-bottom {
    gap: 25px;
  }
  .hero-bottom > p {
    max-width: 400px;
  }
  .service-preview h3 {
    font-size: 20px;
  }
  .service-preview > a {
    padding-inline: 20px;
  }
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-card {
    padding: 25px !important;
  }
  .partner-card:nth-child(2n) {
    border-right: 0;
  }
  .partner-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .partner-wordmark {
    min-height: 70px;
  }
  .service-detail {
    grid-template-columns: 50px 1fr 1fr;
    gap: 30px;
  }
  .about-manifesto {
    grid-template-columns: 1fr 1fr;
  }
  .manifesto-mark {
    display: none;
  }
  .booking-layout {
    gap: 40px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .booking-panel {
    padding: 25px;
  }
  .project-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .team-grid {
    gap: 25px;
  }
  .team-role {
    min-height: 38px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 76px;
    padding-inline: 20px;
    gap: 14px;
  }
  .brand {
    font-size: 15px;
    gap: 9px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .brand small {
    font-size: 6px;
  }
  .header-book {
    margin-left: auto;
    font-size: 11px;
    padding: 10px 12px;
    gap: 12px;
  }
  .menu-toggle {
    display: inline-grid;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #101110;
    border-bottom: 1px solid var(--line);
    padding: 20px 30px;
    gap: 25px;
  }
  .primary-nav.is-open {
    display: flex;
  }
  .primary-nav a {
    flex: 1;
    text-align: center;
  }
  .primary-nav a[aria-current]::before {
    display: none;
  }
  .hero {
    min-height: calc(100svh - 76px);
  }
  .hero-top {
    padding-top: 23px;
  }
  .hero-top .eyebrow {
    font-size: 7px;
    letter-spacing: 0.08em;
    gap: 8px;
  }
  .hero-edition {
    display: none;
  }
  .hero-body {
    padding-top: 38px;
    padding-bottom: 25px;
  }
  .hero-label {
    font-size: 7px;
    max-width: 150px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(58px, 12vw, 90px);
    max-width: 70%;
    letter-spacing: -0.07em;
    line-height: 0.94;
  }
  .hero-side-note {
    display: none;
  }
  .hero-bottom {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
  }
  .hero-bottom > p {
    flex-basis: 100%;
    max-width: 440px;
    font-size: 13px;
  }
  .hero-bottom .button {
    padding: 13px 20px;
  }
  .replay {
    margin-left: auto;
  }
  .replay span {
    font-size: 7px;
  }
  .hero-foot {
    font-size: 6px;
    gap: 15px;
    padding-block: 17px;
    letter-spacing: 0.08em;
  }
  .hero-foot > span {
    gap: 7px;
  }
  .section {
    padding-block: 65px;
  }
  .section-head {
    margin-bottom: 28px;
    gap: 12px;
  }
  .section-head > .text-link {
    font-size: 10px;
  }
  .eyebrow {
    font-size: 8px;
    gap: 9px;
  }
  .split-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }
  .split-heading > p {
    max-width: 450px;
  }
  .service-preview {
    grid-template-columns: 1fr 1fr;
  }
  .service-preview > a {
    padding: 22px 18px !important;
    border-bottom: 1px solid var(--line);
  }
  .service-preview > a:nth-child(2) {
    border-right: 0;
  }
  .service-preview > a:nth-child(3) {
    border-bottom: 0;
  }
  .service-preview h3 {
    font-size: 22px;
  }
  .service-preview p {
    font-size: 12px;
  }
  .service-symbol {
    height: 75px;
    line-height: 75px;
    font-size: 36px;
  }
  .project-grid {
    gap: 40px 22px;
  }
  .project-title h3 {
    font-size: 23px;
  }
  .project-card > p {
    font-size: 13px;
  }
  .project-meta {
    font-size: 7px;
  }
  .project-status {
    font-size: 7px;
  }
  .partner-card {
    padding: 22px 16px !important;
  }
  .partner-wordmark {
    font-size: 22px;
  }
  .partner-wordmark.expansion {
    font-size: 20px;
  }
  .partner-wordmark.box {
    font-size: 13px;
  }
  .partner-card > .eyebrow {
    font-size: 7px;
  }
  .partner-grid-long {
    grid-template-columns: 1fr;
  }
  .partner-grid-long .partner-card {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
    padding: 30px 0 !important;
  }
  .partner-grid-long .partner-card:last-child {
    border-bottom: 0 !important;
  }
  .landscape {
    min-height: 580px;
  }
  .landscape-content {
    padding-top: 55px;
    padding-bottom: 45px;
  }
  .landscape canvas {
    width: 140%;
    height: 65%;
    top: auto;
    bottom: 0;
    right: -25%;
    mask-image: linear-gradient(180deg, transparent, #000 30%);
    opacity: 0.8;
  }
  .landscape-content p:not(.eyebrow) {
    font-size: 13px;
    max-width: 320px;
  }
  .landscape h2 {
    font-size: 48px;
    margin-top: 26px;
  }
  .landscape-caption {
    margin-top: 210px;
    font-size: 7px;
  }
  .closing {
    padding-block: 65px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-top {
    gap: 25px;
    flex-wrap: wrap;
    padding-block: 32px;
  }
  .footer-top > p {
    font-size: 11px;
    flex-basis: 40%;
    margin-left: auto;
  }
  .footer-top > .text-link {
    margin-left: 0;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 15px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 5;
    flex-basis: 100%;
  }
  .page-head {
    padding-block: 55px 48px;
  }
  .page-head h1 {
    font-size: clamp(43px, 8vw, 62px);
    margin-top: 25px;
  }
  .page-intro {
    font-size: 15px;
    margin-top: 24px;
  }
  .service-detail {
    grid-template-columns: 35px 1fr;
    gap: 18px;
    padding-block: 35px;
  }
  .service-detail > div:last-child {
    grid-column: 2;
  }
  .service-detail h2 {
    font-size: 28px;
  }
  .service-detail-no {
    font-size: 18px;
  }
  .service-detail-no span {
    display: none;
  }
  .service-detail ul {
    margin-top: 0;
  }
  .service-detail p:not(.eyebrow):not(.service-expertise) {
    font-size: 14px;
  }
  .service-detail .text-link {
    font-size: 12px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 25px;
  }
  .about-manifesto {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 35px;
  }
  .about-manifesto h2 {
    font-size: 32px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 22px;
    align-items: start;
  }
  .team-monogram {
    grid-column: 1;
    grid-row: 1 / 5;
    height: 100%;
    min-height: 200px;
    margin: 0;
    padding: 22px;
  }
  .team-card h3 {
    grid-column: 2;
    font-size: 26px;
  }
  .team-card > p,
  .team-affiliation {
    grid-column: 2;
  }
  .team-role {
    min-height: 0;
  }
  .team-affiliation {
    font-size: 9px;
    margin-bottom: 15px;
    justify-self: start;
  }
  .team-card > p:last-child {
    font-size: 13px;
  }
  .portfolio-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .filters {
    gap: 6px;
  }
  .filters button {
    padding: 8px 13px;
    font-size: 11px;
  }
  .archive-invite {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 55px;
    padding-block: 22px;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 65px;
  }
  .booking-info {
    position: static;
    padding-top: 25px;
  }
  .booking-info > p {
    max-width: 100%;
  }
  .booking-info h2 {
    font-size: 32px;
  }
  .mini-mark {
    display: none;
  }
  .booking-panel {
    padding: 23px;
  }
  .call-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }
  .call-facts li {
    font-size: 11px;
  }
  .call-facts span {
    margin-right: 7px;
  }
  .booking-info > .eyebrow {
    margin-top: 0;
  }
  .booking-info .small {
    font-size: 11px;
  }
  .booking-info .text-link {
    font-size: 12px;
  }
  .time-slots button {
    font-size: 10px;
  }
  dialog {
    padding: 22px;
    width: calc(100% - 24px);
  }
  #dialog-title {
    font-size: 36px;
  }
  .dialog-actions {
    flex-direction: column;
  }
  .dialog-actions > .button {
    font-size: 12px;
    white-space: normal;
  }
  .archive .section-head h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-title {
    flex-direction: row;
    align-items: center;
  }
  .project-title h3 {
    font-size: 25px;
  }
  .partner-wordmark > span {
    display: none;
  }
  .partner-wordmark.deepsky {
    font-size: 34px;
  }
  .partner-wordmark.brink {
    font-size: 32px;
  }
  .partner-wordmark.expansion {
    font-size: 18px;
  }
  .partner-wordmark.box {
    font-size: 12px;
  }
  .team-card {
    display: block;
  }
  .team-monogram {
    height: 170px;
    min-height: 0;
    margin-bottom: 23px;
  }
  .team-monogram svg {
    width: 65%;
    left: auto;
    right: 0;
  }
  .team-role {
    margin-top: 10px;
  }
  .team-affiliation {
    margin: 10px 0 16px;
  }
  .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .calendar-days {
    gap: 4px;
  }
  .booking-panel {
    padding: 20px;
  }
  .booking-step {
    font-size: 8px;
  }
  .timezone-tag {
    font-size: 7px;
  }
  .hero h1 {
    font-size: clamp(54px, 13vw, 72px);
  }
  .hero-body {
    padding-top: 32px;
  }
  .hero-bottom > p {
    font-size: 12px;
  }
  .hero-label {
    font-size: 6px;
  }
  .hero-foot {
    font-size: 5.5px;
  }
  .footer-top .brand {
    font-size: 14px;
  }
  .call-facts {
    grid-template-columns: 1fr;
  }
  .calendar-head h2 {
    font-size: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .replay {
    display: none;
  }
}
