:root {
  --coral: #ff624f;
  --coral-dark: #e24e3d;
  --teal: #007c83;
  --teal-dark: #00656b;
  --navy: #132c3b;
  --navy-deep: #0d212c;
  --white: #ffffff;
  --offwhite: #f7f4ee;
  --muted: rgba(19, 44, 59, 0.68);
  --line: rgba(19, 44, 59, 0.12);
  --line-strong: rgba(19, 44, 59, 0.22);
  --max: 1140px;
  --header: 4.5rem;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Public Sans", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: Sora, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  top: 1rem;
}

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

.article a {
  color: var(--teal);
  font-weight: 600;
}

.contact-aside h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: block;
  color: var(--coral);
  font-family: Sora, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
}

.lede.wide {
  max-width: 42rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--white) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--navy);
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.1rem;
  height: 1.5px;
  background: var(--navy);
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a:not(.btn):hover,
.site-nav a.is-active {
  color: var(--teal);
}

.site-nav .btn {
  margin-left: 0.4rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: Sora, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-coral {
  background: var(--coral);
  color: var(--white);
}

.btn-coral:hover {
  background: var(--coral-dark);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  text-transform: uppercase;
  font-family: Sora, sans-serif;
}

.text-link:hover .arrow {
  transform: translateX(4px);
}

.arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

/* Hero */

.hero {
  position: relative;
  background: var(--offwhite);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shot {
  position: absolute;
  inset: -4%;
  overflow: hidden;
  opacity: 0;
  animation: hero-cycle 40s ease-in-out infinite;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  will-change: transform, opacity;
  filter: saturate(1.06) contrast(1.03);
}

.hero-shot-place {
  z-index: 1;
  opacity: 0.68;
  animation-delay: 0s;
}

.hero-shot-place img {
  object-position: 52% 28%;
  animation: hero-drift-place 36s ease-in-out infinite alternate;
}

.hero-photo-credit {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  z-index: 7;
  margin: 0;
  max-width: min(28rem, calc(100% - 2rem));
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(19, 44, 59, 0.52);
  text-align: right;
}

.hero-photo-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-photo-credit a:hover {
  color: var(--navy);
}

.hero-shot-crowd {
  z-index: 2;
  animation-delay: -8s;
}

.hero-shot-crowd img {
  object-position: center 40%;
  animation: hero-drift-b 28s ease-in-out infinite alternate;
}

.hero-shot-arena {
  z-index: 3;
  animation-delay: -16s;
}

.hero-shot-arena img {
  object-position: center 30%;
  animation: hero-drift-c 42s ease-in-out infinite alternate;
}

.hero-shot-cheer {
  z-index: 4;
  animation-delay: -24s;
}

.hero-shot-cheer img {
  object-position: center 28%;
  animation: hero-drift-a 32s ease-in-out infinite alternate;
}

.hero-shot-stpete {
  z-index: 5;
  animation-delay: -32s;
}

.hero-shot-stpete img {
  object-position: center 45%;
  animation: hero-drift-b 38s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 6;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.92) 30%, rgba(247, 244, 238, 0.55) 54%, rgba(247, 244, 238, 0.12) 72%, transparent 82%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.28) 0%, transparent 30%, transparent 68%, rgba(19, 44, 59, 0.1) 100%),
    linear-gradient(135deg, transparent 55%, rgba(0, 124, 131, 0.1) 100%);
  pointer-events: none;
}

.hero-path {
  position: absolute;
  z-index: 1;
  width: 70%;
  height: 180%;
  right: -18%;
  top: -40%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 98, 79, 0.08) 42.2%, rgba(255, 98, 79, 0.08) 52%, transparent 52.2%);
  pointer-events: none;
  animation: hero-path-shift 18s ease-in-out infinite alternate;
}

@keyframes hero-cycle {
  0%,
  16% {
    opacity: 0.68;
  }
  24%,
  92% {
    opacity: 0;
  }
  100% {
    opacity: 0.68;
  }
}

@keyframes hero-cycle-mobile {
  0%,
  16% {
    opacity: 0.94;
  }
  24%,
  92% {
    opacity: 0;
  }
  100% {
    opacity: 0.94;
  }
}

@keyframes hero-drift-a {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-2.5%, 1.5%, 0); }
}

@keyframes hero-drift-place {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-2.2%, -1.6%, 0); }
}

@keyframes hero-drift-b {
  from { transform: scale(1.1) translate3d(1%, 0, 0); }
  to { transform: scale(1.18) translate3d(-2%, -1.5%, 0); }
}

@keyframes hero-drift-c {
  from { transform: scale(1.08) translate3d(0, 1%, 0); }
  to { transform: scale(1.16) translate3d(2%, -1%, 0); }
}

@keyframes hero-path-shift {
  from { transform: translate3d(0, 0, 0); opacity: 0.85; }
  to { transform: translate3d(-2%, 1%, 0); opacity: 1; }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(0, 124, 131, 0.2) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 60% 45%, #000 15%, rgba(0, 0, 0, 0.65) 50%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 85% at 60% 45%, #000 15%, rgba(0, 0, 0, 0.65) 50%, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 46rem);
  gap: 1.8rem;
  align-items: center;
  min-height: calc(100svh - var(--header));
  padding: 3.5rem 0 4rem;
}

.hero-copy {
  position: relative;
  max-width: 46rem;
  container-type: inline-size;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.55rem);
  max-width: none;
  margin-bottom: 1.15rem;
  color: var(--navy);
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero .lede {
  margin-bottom: 0;
  max-width: 38rem;
  color: rgba(19, 44, 59, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn-outline {
  background: var(--white);
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 1px 3px rgba(19, 44, 59, 0.12);
}

.hero .btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* Stats */

.stats {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 1.85rem 1.2rem;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: Sora, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--coral);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat span {
  color: var(--navy);
  font-size: 0.92rem;
}

/* Sections */

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.6rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.page-hero h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  margin-bottom: 0.9rem;
}

.band-navy {
  background:
    linear-gradient(180deg, rgba(255, 98, 79, 0.08), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--white);
}

.band-navy .lede,
.band-navy .muted {
  color: rgba(255, 255, 255, 0.74);
}

.band-teal {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 4.2rem 0;
}

.band-teal h2 {
  margin-bottom: 1.3rem;
}

.band-off {
  background: var(--offwhite);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split:has(.about-art-stack) {
  align-items: start;
}

/* Expertise cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 1.4rem 1.35rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  box-shadow: 0 8px 22px rgba(13, 33, 44, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 124, 131, 0.34);
  box-shadow: 0 14px 30px rgba(13, 33, 44, 0.12);
}

.icon-tile {
  width: 4.4rem;
  height: 4.4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
}

.icon-tile svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile-teal {
  background: var(--teal);
}

.tile-coral {
  background: var(--coral);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.card:hover h3 {
  color: var(--teal);
}

.card p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  flex: 1;
}

/* PromoTix panel */

.promo-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.1rem 1.85rem;
}

.promo-panel .icon-tile {
  width: 3.5rem;
  height: 3.5rem;
}

.promo-panel h3 {
  font-size: 1.7rem;
  margin: 0.2rem 0 0.75rem;
}

.promo-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.2rem;
}

.pt-logo {
  display: block;
  width: min(100%, 20.5rem);
  height: auto;
  margin-bottom: 1.15rem;
}

.pt-logo-sm {
  width: min(100%, 15.5rem);
  margin-bottom: 0.85rem;
}

h2.pt-heading a {
  display: inline-block;
  text-decoration: none;
}

p a,
.lede a,
.owner-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

p a:hover,
.lede a:hover,
.owner-note a:hover {
  text-decoration: underline;
}

.band-navy p a,
.band-navy .lede a,
.band-navy .owner-note a {
  color: #8ed4d7;
}

h2.pt-heading .pt-logo {
  margin-bottom: 1rem;
}

.alpha-logo {
  width: min(100%, 18.5rem);
}

.alpha-heading .alpha-logo {
  margin-bottom: 1rem;
}

.owner-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
}

.band-navy .owner-note {
  color: rgba(247, 244, 238, 0.7);
}

/* About art */

.about-art {
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 3 / 2;
  background: var(--navy);
}

.about-art-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-content: start;
}

.split.operating-history {
  align-items: start;
}

.about-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.office-address {
  font-style: normal;
  font-family: Sora, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0.35rem 0 1.15rem;
}

.experience-intro {
  margin-bottom: 0.4rem;
}

.experience-intro h2 {
  margin-bottom: 0.9rem;
}

.inventory-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: center;
  margin-top: 1.4rem;
  padding: 1.05rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 0.55rem;
}

.inventory-callout b {
  font-family: Sora, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--coral);
}

.inventory-callout span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Page internals */

.page-hero {
  background: var(--offwhite);
  padding: 4.2rem 0 3.4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -40%;
  width: 40%;
  height: 180%;
  background: linear-gradient(118deg, transparent 46%, rgba(0, 124, 131, 0.08) 46.2%, rgba(0, 124, 131, 0.08) 58%, transparent 58.2%);
}

.page-hero .wrap {
  position: relative;
}

.stack {
  display: grid;
  gap: 3.5rem;
}

.service,
.article-tease {
  scroll-margin-top: 5.5rem;
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--line);
}

.service:nth-child(even) {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.service:nth-child(even) .about-art {
  order: -1;
}

.service:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-copy {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.service-copy .icon-tile {
  margin-bottom: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.metric {
  padding: 1.3rem 0 0;
  border-top: 2px solid var(--coral);
}

.metric b {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 1.55rem;
  color: var(--teal);
  letter-spacing: -0.03em;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.band-navy .metric span {
  color: rgba(255, 255, 255, 0.72);
}

.band-navy .metric b {
  color: var(--white);
}

.metric-stack {
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

.article-list {
  display: grid;
  gap: 1.25rem;
}

.article-tease {
  display: grid;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.article-tease:hover h3 {
  color: var(--teal);
}

.article-tease h3 {
  font-size: 1.4rem;
}

.article-tease time {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article {
  max-width: 42rem;
}

.article .updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
}

.article .lede {
  margin-bottom: 2rem;
}

.article h2 {
  font-size: 1.45rem;
  margin: 2.2rem 0 0.8rem;
}

.article p + p {
  margin-top: 0.85rem;
}

.article ul {
  padding-left: 1.15rem;
  color: var(--muted);
  margin: 0.85rem 0 1.1rem;
}

.article li + li {
  margin-top: 0.45rem;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  gap: 0.75rem;
  margin-top: 1.6rem;
  padding: 0;
  list-style: none;
}

.client-list li {
  display: flex;
  align-items: center;
  min-height: 4.1rem;
  padding: 0.9rem 1rem 0.9rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
  border-radius: 0.55rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.detail-list {
  grid-template-columns: 1fr;
}

.detail-list li {
  display: block;
  align-items: start;
  min-height: 0;
}

.detail-list .client-name {
  font-weight: 600;
}

.detail-list .client-detail {
  font-weight: 500;
}

.detail-list .client-detail::before {
  content: " — ";
}

/* Forms */

.form {
  display: grid;
  gap: 1rem;
  position: relative;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  width: 100%;
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-success,
.form-error {
  display: none;
  background: var(--offwhite);
  padding: 1rem 1.1rem;
}

.form-success {
  border-left: 3px solid var(--teal);
}

.form-error {
  border-left: 3px solid var(--coral);
  margin-bottom: 1rem;
}

.form.is-sent .form-success {
  display: block;
}

.form.is-error .form-error {
  display: block;
}

.form.is-sent .fields,
.form.is-sent button,
.form.is-sent .form-note {
  display: none;
}

.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.contact-layout {
  max-width: 36rem;
}

.contact-aside {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.contact-aside a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

/* Footer */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.4rem 0 1.4rem;
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(12.5rem, 18rem) minmax(0, 1fr);
  gap: 2rem 2.75rem;
  align-items: start;
}

.footer-brand p {
  margin-top: 0.15rem;
  max-width: 18rem;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1.5rem 1.75rem;
  min-width: 0;
}

.footer-menu > div {
  flex: 0 0 auto;
}

.site-footer .logo img {
  height: 38px;
  margin-bottom: 1rem;
}

.site-footer p {
  max-width: 22rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer ul a {
  white-space: nowrap;
}

.footer-address {
  white-space: nowrap;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.legal {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: 2.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  overflow: visible;
}

.legal-copy {
  justify-self: center;
  text-align: center;
}

.legal-links {
  display: flex;
  justify-self: end;
  gap: 0.55rem;
}

.legal-links a + a::before {
  content: "|";
  margin-right: 0.55rem;
  color: rgba(255, 255, 255, 0.38);
}

.legal-marks {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 0.85rem;
}

.rtpark {
  display: block;
  flex: 0 0 auto;
}

.rtpark img {
  width: 4.4rem;
  height: auto;
  display: block;
  object-fit: contain;
}

.usvi-flag {
  width: 3.35rem;
  height: auto;
  display: block;
  object-fit: contain;
}

.legal-flush {
  margin-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.34s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

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

  .reveal,
  .btn,
  .hero-shot,
  .hero-shot img,
  .hero-path {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-shot {
    opacity: 0;
  }

  .hero-shot-place {
    opacity: 0.68;
  }

  .hero-shot img {
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .card-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .split.operating-history .operating-history-copy {
    order: 1;
  }

  .split.operating-history .about-art-stack {
    order: 2;
  }

  .about-art-stack {
    grid-template-columns: 1fr;
  }

  .client-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero > .wrap.hero-grid {
    width: min(var(--max), calc(100% - 1.6rem));
  }

  .hero-grid {
    min-height: min(88svh, 50rem);
    padding: 1.35rem 0 6.5rem;
    gap: 1.15rem;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy {
    max-width: none;
    width: 100%;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-shot {
    animation-name: hero-cycle-mobile;
  }

  .hero-shot-place {
    opacity: 0.96;
  }

  .hero-wash {
    background:
      linear-gradient(180deg,
        rgba(247, 244, 238, 0.97) 0%,
        rgba(247, 244, 238, 0.92) 19%,
        rgba(247, 244, 238, 0.7) 38%,
        rgba(247, 244, 238, 0.28) 55%,
        transparent 70%),
      linear-gradient(180deg, transparent 78%, rgba(19, 44, 59, 0.2) 100%);
  }

  .hero-path {
    display: none;
  }

  .hero::before {
    opacity: 0.18;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 55%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 55%);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.55rem, 7.35vw, 2.15rem);
    line-height: 1.14;
    letter-spacing: -0.045em;
    margin-bottom: 0.75rem;
  }

  .hero .lede {
    color: rgba(19, 44, 59, 0.92);
  }

  .hero-photo-credit {
    color: rgba(255, 255, 255, 0.82);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .legal {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .legal-copy,
  .legal-links,
  .legal-marks {
    justify-self: center;
  }

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

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

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

  .footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .service {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .service:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service:nth-child(even) .about-art {
    order: 0;
  }

  .service-copy {
    grid-template-columns: 4.4rem 1fr;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(var(--max), calc(100% - 1.6rem));
  }

  .client-list {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.4rem 1.2rem 1.1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .btn {
    margin: 0.9rem 0 0.2rem;
    width: 100%;
  }

  .logo img {
    height: 34px;
  }

  .section {
    padding: 3.6rem 0;
  }

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

  .footer-menu {
    grid-template-columns: 1fr;
  }

  .site-footer ul a,
  .footer-address {
    white-space: normal;
  }
}
