@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../fonts/SpaceMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --night: #24112f;
  --night-soft: #4a3154;
  --porcelain: #faf7fb;
  --white: #ffffff;
  --bloom: #d7266d;
  --bloom-soft: #f3aec9;
  --periwinkle: #9caaff;
  --mauve: #d6c8e1;
  --desert: #f3d4bd;
  --cactus: #2f6654;
  --line: rgba(36, 17, 47, 0.22);
  --line-light: rgba(255, 255, 255, 0.25);
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "Space Mono", Consolas, monospace;
  --shell: min(1240px, calc(100vw - 64px));
  --shadow: 0 30px 80px rgba(36, 17, 47, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--night);
  background: var(--porcelain);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--porcelain);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--night);
}

::selection {
  color: var(--white);
  background: var(--bloom);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--night);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.kicker {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: 0.67rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.2rem, 9.7vw, 9.8rem);
  font-weight: 620;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.page-display {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.8rem);
  font-weight: 630;
  line-height: 0.84;
  letter-spacing: -0.072em;
}

.section-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  font-weight: 610;
  line-height: 0.91;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--night-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-light {
  color: var(--night);
  background: var(--white);
}

.button-light:hover {
  background: var(--periwinkle);
}

.button-bloom {
  color: var(--night);
  background: var(--bloom-soft);
}

.button-bloom:hover {
  background: var(--periwinkle);
}

.button-night {
  color: var(--white);
  background: var(--night);
}

.button-night:hover {
  background: var(--cactus);
}

.button-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.button-outline:hover {
  color: var(--night);
  background: var(--periwinkle);
  border-color: var(--periwinkle);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.space-top {
  margin-top: 2rem;
}

.round-link {
  display: inline-grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.round-link:hover {
  color: var(--night);
  background: var(--periwinkle);
  transform: rotate(8deg);
}

/* Header and bottom-sheet navigation */
.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--night);
  background: var(--porcelain);
}

.header-inner {
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  gap: 0.85rem;
  text-decoration: none;
}

.wordmark-main {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 710;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.wordmark-main em {
  color: var(--bloom);
  font-style: normal;
}

.wordmark-sub {
  max-width: 8rem;
  font-family: var(--mono);
  font-size: 0.52rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--night);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--white);
  background: var(--night);
}

.menu-button {
  min-width: 7.3rem;
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--night);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.menu-button:hover {
  background: var(--bloom);
}

.menu-button svg {
  width: 1rem;
  height: 1rem;
}

.fallback-nav {
  border-top: 1px solid var(--line);
}

.fallback-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.75rem 0;
}

.fallback-nav a {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.js .fallback-nav {
  display: none;
}

.menu-layer[hidden] {
  display: none;
}

.menu-layer {
  position: fixed;
  z-index: 200;
  inset: 0;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 27, 0.68);
  opacity: 0;
  transition: opacity 220ms ease;
}

.menu-sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: min(86vh, 760px);
  overflow-y: auto;
  border-radius: 2.75rem 2.75rem 0 0;
  color: var(--night);
  background: var(--mauve);
  transform: translateY(102%);
  transition: transform 240ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-layer.is-open .menu-backdrop {
  opacity: 1;
}

.menu-layer.is-open .menu-sheet {
  transform: translateY(0);
}

.menu-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--night);
}

.menu-sheet-head span {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.menu-close {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--night);
  border-radius: 50%;
  color: var(--night);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.sheet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) 3rem;
}

.sheet-nav {
  display: grid;
}

.sheet-nav a {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(36, 17, 47, 0.28);
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  font-weight: 630;
  line-height: 1;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.sheet-nav a span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0;
}

.sheet-nav a:hover,
.sheet-nav a[aria-current="page"] {
  color: var(--bloom);
}

.sheet-contact {
  align-self: end;
  display: grid;
  gap: 0.9rem;
}

.sheet-contact p {
  margin: 0 0 0.5rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.sheet-contact a,
.sheet-contact address {
  overflow-wrap: anywhere;
  font-style: normal;
  font-weight: 620;
  text-decoration: none;
}

/* Homepage */
.dusk-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.dusk-sun {
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: min(54vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bloom);
}

.dusk-sun::after {
  position: absolute;
  right: 13%;
  bottom: 13%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: var(--periwinkle);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.32fr);
  align-items: end;
  gap: 4rem;
  padding: 7rem 0 5rem;
}

.hero-copy .kicker {
  color: var(--bloom-soft);
}

.hero-copy .lead {
  max-width: 620px;
  margin-top: 2rem;
  color: #eee6f3;
}

.hero-copy .button-row {
  margin-top: 2rem;
}

.hero-aside {
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line-light);
}

.hero-aside p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.67rem;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero-aside strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--bloom-soft);
  font-size: 1rem;
  font-weight: 500;
}

.triptych-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--desert);
}

.triptych-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.triptych-head p:last-child {
  max-width: 400px;
  margin: 0;
  color: var(--night-soft);
}

.triptych {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.9fr;
  align-items: start;
  gap: 1rem;
}

.triptych figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}

.triptych figure:nth-child(1) {
  margin-top: 5rem;
  border-radius: 12rem 12rem 1.25rem 1.25rem;
}

.triptych figure:nth-child(2) {
  border-radius: 1.25rem 1.25rem 12rem 12rem;
}

.triptych figure:nth-child(3) {
  margin-top: 8rem;
  border-radius: 1.25rem;
}

.triptych img {
  height: clamp(420px, 52vw, 720px);
  object-fit: cover;
}

.triptych figure:nth-child(1) img {
  object-position: 66% 50%;
}

.triptych figure:nth-child(2) img {
  object-position: 48% 50%;
}

.triptych figure:nth-child(3) img {
  object-position: 35% 50%;
}

.triptych figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 999px;
  color: var(--night);
  background: rgba(250, 247, 251, 0.9);
  font-family: var(--mono);
  font-size: 0.56rem;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.statement {
  padding: clamp(6rem, 12vw, 12rem) 0;
  background: var(--porcelain);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.statement-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.statement h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  font-weight: 580;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.statement p {
  max-width: 720px;
  margin: 2rem 0 0;
  color: var(--night-soft);
  font-size: 1.1rem;
}

.service-bays {
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--white);
  background: var(--night);
}

.bays-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 4rem;
}

.bays-head .kicker {
  color: var(--bloom-soft);
}

.bays-head p:last-child {
  margin: 0;
  color: #e4d9e8;
}

.bays-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.bay {
  min-width: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 999px 999px 1.25rem 1.25rem;
  color: var(--night);
}

.bay:nth-child(1) {
  background: var(--bloom-soft);
}

.bay:nth-child(2) {
  background: var(--periwinkle);
}

.bay:nth-child(3) {
  background: var(--desert);
}

.bay:nth-child(4) {
  background: var(--mauve);
}

.bay h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.bay p {
  margin: 1rem 0 0;
  color: var(--night-soft);
  font-size: 0.9rem;
}

.bays-action {
  margin-top: 2.5rem;
  text-align: center;
}

.location-pulse {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  min-height: 590px;
  background: var(--periwinkle);
}

.location-picture {
  margin: 0;
  overflow: hidden;
}

.location-picture img {
  height: 100%;
  object-fit: cover;
}

.location-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.location-copy::before {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 4rem;
  aspect-ratio: 1;
  border: 1px solid var(--night);
  border-radius: 50%;
  content: "";
}

.location-copy h2 {
  max-width: 8ch;
}

.location-copy address {
  margin: 2rem 0 0;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 600;
}

.location-copy .button-row {
  margin-top: 2rem;
}

/* Interior page foundations */
.page-hero {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--mauve);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: 5rem;
}

.page-hero .lead {
  align-self: end;
}

.question-band {
  color: var(--white);
  background: var(--night);
}

.question-band-inner {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.question-band p {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  text-transform: uppercase;
}

.question-band span {
  color: var(--bloom-soft);
}

.wide-image {
  margin: 0;
  background: var(--night);
}

.wide-image img {
  height: clamp(420px, 55vw, 760px);
  object-fit: cover;
}

.wide-image figcaption,
.image-caption {
  padding: 0.8rem var(--shell-gap, 2rem);
  color: #eee6f3;
  background: var(--night);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.service-pair-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.service-pair-section.alt {
  background: var(--desert);
}

.service-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.service-pair-title span {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.service-pair-title h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 620;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.service-pair-copy {
  max-width: 720px;
}

.service-pair-copy > p {
  margin: 0;
  color: var(--night-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.fact-lines {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--night);
  list-style: none;
}

.fact-lines li {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.fact-lines strong {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 400;
  text-transform: uppercase;
}

.fact-lines span {
  color: var(--night-soft);
}

.arch-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 690px;
  color: var(--night);
  background: var(--bloom-soft);
}

.arch-feature-media {
  margin: 0;
  padding: 2rem 0 2rem 2rem;
}

.arch-feature-media img {
  height: 100%;
  object-fit: cover;
  border-radius: 999px 999px 1.5rem 1.5rem;
}

.arch-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
}

.arch-feature-copy p:not(.kicker) {
  max-width: 570px;
  margin: 1.5rem 0 0;
  color: var(--night-soft);
}

.arch-feature-copy .button-row {
  margin-top: 2rem;
}

.plain-questions {
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--white);
  background: var(--night);
}

.plain-questions-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.plain-questions-head p {
  max-width: 620px;
  margin: 0;
  color: #e4d9e8;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.question-tile {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--night);
}

.question-tile h3 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.04em;
}

.two-photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  background: var(--night);
}

.two-photo-band figure {
  margin: 0;
  min-width: 0;
}

.two-photo-band img {
  height: clamp(380px, 42vw, 620px);
  object-fit: cover;
}

.two-photo-band figure:first-child img {
  object-position: 65% 50%;
}

.two-photo-band figcaption {
  padding: 0.75rem 1rem;
  color: #eee6f3;
  background: var(--night);
  font-family: var(--mono);
  font-size: 0.56rem;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

/* Tucson page */
.tucson-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 0;
  color: var(--white);
  background: var(--night);
}

.tucson-title-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  align-items: end;
  gap: 4rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.tucson-title-row .lead {
  color: #eee6f3;
}

.tucson-orbit {
  position: absolute;
  top: -8rem;
  right: 8vw;
  width: min(42vw, 570px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.tucson-orbit::before,
.tucson-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.tucson-orbit::before {
  width: 42%;
  height: 42%;
  right: 5%;
  bottom: 10%;
  background: var(--bloom);
}

.tucson-orbit::after {
  width: 1rem;
  height: 1rem;
  bottom: 5%;
  left: 12%;
  background: var(--periwinkle);
}

.tucson-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 18rem 18rem 0 0;
  overflow: hidden;
}

.tucson-photo img {
  height: clamp(420px, 52vw, 720px);
  object-fit: cover;
  object-position: 58% 50%;
}

.address-stage {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--periwinkle);
}

.address-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.address-stage address {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-style: normal;
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.address-stage-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--night-soft);
  font-size: 1.12rem;
}

.address-stage-copy .button-row {
  margin-top: 2rem;
}

.arrival-list {
  margin-top: 3rem;
  border-top: 1px solid var(--night);
}

.arrival-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(36, 17, 47, 0.32);
}

.arrival-list strong {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
}

/* Company */
.company-open {
  padding: clamp(6rem, 12vw, 11rem) 0;
  background: var(--porcelain);
}

.company-open-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1.62fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.company-open .lead {
  max-width: 760px;
  font-size: clamp(1.5rem, 3.2vw, 2.65rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.company-photo {
  margin: 0;
}

.company-photo img {
  height: clamp(480px, 61vw, 820px);
  object-fit: cover;
}

.work-inquiry {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bloom-soft);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.work-grid .section-title {
  max-width: 10ch;
}

.work-copy > p {
  margin: 0;
  color: var(--night-soft);
  font-size: 1.1rem;
}

.work-points {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--night);
  list-style: none;
}

.work-points li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid rgba(36, 17, 47, 0.32);
}

.work-points li::before {
  position: absolute;
  top: 1.45rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  content: "";
  background: var(--night);
}

.privacy-box {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--night);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.36);
}

.privacy-box p {
  margin: 0;
  font-size: 0.87rem;
}

/* Contact */
.contact-intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--white);
  background: var(--night);
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 5rem;
}

.contact-intro .kicker {
  color: var(--bloom-soft);
}

.contact-list {
  border-top: 1px solid var(--line-light);
}

.contact-line {
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.contact-line span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--mauve);
  font-family: var(--mono);
  font-size: 0.59rem;
  text-transform: uppercase;
}

.contact-line strong,
.contact-line address {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 560;
}

a.contact-line:hover strong,
a.contact-line:hover address {
  color: var(--bloom-soft);
}

.form-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--porcelain);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.form-aside {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.form-aside p:not(.kicker) {
  margin: 1.5rem 0 0;
  color: var(--night-soft);
}

.form-aside a {
  display: block;
  margin-top: 1.2rem;
  overflow-wrap: anywhere;
  font-weight: 650;
}

.simple-form {
  max-width: 760px;
}

.line-field {
  margin: 0 0 2rem;
}

.line-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.line-field input,
.line-field select,
.line-field textarea {
  display: block;
  width: 100%;
  min-height: 3.3rem;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid var(--night);
  border-radius: 0;
  color: var(--night);
  background: transparent;
  font-size: 1.05rem;
}

.line-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.line-field input::placeholder,
.line-field textarea::placeholder {
  color: #6e5976;
  opacity: 1;
}

.line-field input:focus,
.line-field select:focus,
.line-field textarea:focus {
  border-bottom-width: 3px;
  border-bottom-color: var(--bloom);
  outline: 0;
}

.line-field input[aria-invalid="true"],
.line-field select[aria-invalid="true"] {
  border-bottom-width: 3px;
  border-bottom-color: #a30036;
}

.field-error {
  display: block;
  min-height: 1rem;
  margin-top: 0.3rem;
  color: #7c0029;
  font-size: 0.72rem;
  font-weight: 650;
}

.form-note {
  margin: 1.5rem 0;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--night-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.7rem;
  margin: 1rem 0 0;
  font-size: 0.83rem;
  font-weight: 650;
}

.form-status:empty {
  display: none;
}

/* Footer */
.site-footer {
  text-align: center;
  background: var(--mauve);
}

.footer-stack {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.footer-name {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.footer-name em {
  color: var(--bloom);
  font-style: normal;
}

.footer-stack address {
  margin-top: 2rem;
  font-style: normal;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1rem;
}

.footer-contact a {
  overflow-wrap: anywhere;
  font-weight: 620;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.3rem;
  margin-top: 2.4rem;
}

.footer-nav a {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.footer-note {
  max-width: 760px;
  margin: 2rem auto 0;
  color: var(--night-soft);
  font-size: 0.7rem;
}

.footer-bottom {
  padding: 1rem;
  color: #eee6f3;
  background: var(--night);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 44px, 940px);
  }

  .bays-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bay {
    min-height: 390px;
  }

  .triptych img {
    height: 520px;
  }

  .arch-feature {
    min-height: 580px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .header-inner {
    min-height: 6rem;
  }

  .wordmark-sub,
  .header-phone {
    display: none;
  }

  .menu-button {
    min-width: 3.2rem;
    width: 3.2rem;
    padding: 0;
  }

  .menu-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .menu-sheet {
    max-height: 92vh;
    border-radius: 2rem 2rem 0 0;
  }

  .sheet-grid,
  .hero-inner,
  .statement-grid,
  .bays-head,
  .location-pulse,
  .page-hero-grid,
  .service-pair,
  .arch-feature,
  .plain-questions-head,
  .tucson-title-row,
  .address-stage-grid,
  .company-open-grid,
  .work-grid,
  .contact-intro-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .sheet-grid {
    gap: 2rem;
  }

  .sheet-nav a {
    font-size: clamp(2rem, 11vw, 4rem);
  }

  .dusk-hero,
  .hero-inner {
    min-height: 690px;
  }

  .dusk-sun {
    top: -4rem;
    right: -8rem;
    width: 86vw;
  }

  .hero-inner {
    padding: 8rem 0 3rem;
  }

  .hero-aside {
    max-width: 270px;
  }

  .triptych-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .triptych figure:nth-child(n) {
    margin-top: 0;
  }

  .triptych figure:nth-child(1),
  .triptych figure:nth-child(2) {
    border-radius: 8rem 8rem 1.25rem 1.25rem;
  }

  .triptych img {
    height: min(130vw, 580px);
  }

  .statement-grid,
  .bays-head,
  .page-hero-grid,
  .service-pair,
  .plain-questions-head,
  .tucson-title-row,
  .company-open-grid,
  .work-grid,
  .contact-intro-grid,
  .form-layout {
    gap: 2rem;
  }

  .location-picture {
    min-height: 390px;
  }

  .location-copy {
    min-height: 430px;
  }

  .question-band-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem 0;
  }

  .wide-image img {
    height: min(90vw, 600px);
  }

  .arch-feature-media {
    height: 520px;
    padding: 1rem 1rem 0;
  }

  .arch-feature-copy {
    padding: 3.5rem 1.5rem 4.5rem;
  }

  .two-photo-band {
    grid-template-columns: 1fr;
  }

  .two-photo-band img {
    height: min(76vw, 520px);
  }

  .tucson-photo {
    border-radius: 9rem 9rem 0 0;
  }

  .tucson-photo img {
    height: min(90vw, 590px);
  }

  .company-photo img {
    height: min(90vw, 620px);
  }

  .form-aside {
    position: static;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .display,
  .page-display {
    font-size: clamp(3.45rem, 18vw, 5.4rem);
  }

  .section-title {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .wordmark-main {
    font-size: 2rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .bays-grid,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .bay {
    min-height: 360px;
  }

  .fact-lines li,
  .arrival-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .question-tile {
    min-height: 180px;
  }

  .arch-feature-media {
    height: 430px;
  }

  .address-stage address {
    font-size: 2.55rem;
  }

  .footer-contact,
  .footer-nav {
    align-items: center;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
