/* Salon 80 West — DNA v2 "The Gallery" (2026-08-17): clean black-on-white from the real logo + the real space.
   Paper/ink, keyline boxes, the degree mark, velvet green + sun gold micro-accents. */
:root {
  --paper: #faf9f6;
  --white: #ffffff;
  --ink: #131313;
  --concrete: #edeae4;
  --stone: #7e786e;
  --velvet: #37503f;
  --sun: #d9a23f;
  --line: rgba(19, 19, 19, 0.16);
  --line-soft: rgba(19, 19, 19, 0.1);
  --disp: "Montserrat", sans-serif;
  --serif: "Playfair Display", serif;
  --body: "Figtree", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
.plate > img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}

/* wordmark (interim text lockup until real logo file lands) */
.wordmark {
  font-family: var(--disp);
  font-weight: 600;
  letter-spacing: 0.34em;
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5em;
  letter-spacing: 0.02em;
  vertical-align: -0.08em;
  padding: 0 0.08em;
}
.wordmark sup {
  font-size: 0.5em;
  vertical-align: 0.7em;
}

/* degree divider device */
.deg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
}
.deg::before,
.deg::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--ink);
}
.band-dark .deg {
  color: var(--paper);
}
.band-dark .deg::before,
.band-dark .deg::after {
  background: var(--paper);
}

.eyebrow {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--ink);
}
.band-dark .eyebrow {
  color: rgba(250, 249, 246, 0.72);
}
.band-dark .eyebrow::before {
  background: var(--sun);
}

h1,
h2,
h3 {
  font-family: var(--disp);
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.08em;
  font-weight: 600;
}
h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  letter-spacing: 0.06em;
}
h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  margin: 18px 0 20px;
}
h3 {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}
.serif-i {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}
h1 .serif-i,
h2 .serif-i {
  font-size: 1.18em;
  color: var(--velvet);
}
.band-dark h2 .serif-i {
  color: var(--sun);
}
h1 .hline,
h2 .hline {
  display: block;
  white-space: nowrap;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: #46423a;
  max-width: 56ch;
}
.band-dark .lead {
  color: rgba(250, 249, 246, 0.82);
}

.wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}
section {
  padding: clamp(58px, 6.4vw, 96px) 0;
  position: relative;
}
.band-dark {
  background: var(--ink);
  color: var(--paper);
}
.band-concrete {
  background: var(--concrete);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-in {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a:not(.btn) {
  font-family: var(--disp);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links a:not(.btn):hover {
  color: var(--velvet);
}
.btn {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  transition:
    background 0.25s,
    color 0.25s;
}
.btn:hover {
  background: transparent;
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.band-dark .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.band-dark .btn:hover {
  background: transparent;
  color: var(--paper);
}
.band-dark .btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250, 249, 246, 0.55);
}
.band-dark .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ---------- hero: THE BADGE (logo structure at page scale) ---------- */
.hero {
  height: 100svh;
  min-height: 560px;
  display: flex;
  padding: 80px clamp(14px, 2.4vw, 30px) clamp(14px, 2.4vw, 30px);
}
.badge {
  flex: 1;
  border: 2px solid var(--ink);
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.badge-rail {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 40px);
  padding: clamp(10px, 1.5vh, 18px) clamp(16px, 2.6vw, 40px);
  flex: 0 0 auto;
}
.badge-rail-top {
  border-bottom: 1px solid var(--line);
}
.badge-rail-bottom {
  border-top: 1px solid var(--line);
}
.rail-mark {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.35rem);
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: auto;
}
.rail-meta {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}
.rail-meta b {
  color: var(--ink);
}
.badge-stage {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(16px, 2.4vh, 34px) clamp(16px, 2.6vw, 40px);
  position: relative;
}
.badge-deg {
  position: absolute;
  left: 46%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--serif);
  font-size: clamp(13rem, 62vh, 34rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(19, 19, 19, 0.16);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.badge-copy {
  position: relative;
  z-index: 2;
  max-width: 34ch;
  align-self: center;
}
.hero h1 {
  font-size: clamp(1.9rem, 3.9vw, 3.5rem);
  letter-spacing: 0.045em;
  line-height: 1.06;
  margin-bottom: clamp(12px, 1.8vh, 22px);
}
.hero .lead {
  margin-bottom: clamp(16px, 2.4vh, 28px);
  max-width: 40ch;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.badge-plates {
  position: relative;
  height: 100%;
  min-height: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 1;
}
.badge-plate {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  width: auto;
  max-width: 100%;
  aspect-ratio: 3 / 3.72;
  margin-right: clamp(0px, 3vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 10px 8px;
  box-shadow: 0 20px 46px rgba(19, 19, 19, 0.14);
  display: flex;
  flex-direction: column;
}
.badge-plate img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  display: block;
}
.badge-plate figcaption {
  padding-top: 8px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}
.badge-plate figcaption i {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  font-size: 1.35em;
  letter-spacing: 0;
  color: var(--ink);
  margin-right: 8px;
}
.badge-plate-2 {
  position: absolute;
  z-index: 1;
  right: 76%;
  bottom: 4%;
  height: 62%;
  width: auto;
  aspect-ratio: 4 / 4.6;
  margin-right: 0;
}


/* ---------- shared plate: every image wears a frame ---------- */
.plate {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 10px 8px;
  box-shadow: 0 16px 38px rgba(19, 19, 19, 0.12);
  display: flex;
  flex-direction: column;
  margin: 0;
}
.plate img {
  width: 100%;
  display: block;
}
.plate figcaption {
  padding-top: 8px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.plate figcaption i {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  font-size: 1.35em;
  letter-spacing: 0;
  color: var(--ink);
  margin-right: 8px;
}
.band-dark .plate {
  background: var(--paper);
  border-color: rgba(250, 249, 246, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink);
  overflow: hidden;
  padding: 15px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 36s linear infinite;
}
.marquee span {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
  padding: 0 26px;
}
.marquee span::after {
  content: "°";
  font-family: var(--serif);
  color: var(--sun);
  margin-left: 52px;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}

/* ---------- awards ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 38px;
}
.award {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 12px 10px;
  box-shadow: 0 16px 38px rgba(19, 19, 19, 0.1);
}
.award img {
  width: 100%;
  aspect-ratio: 700 / 920;
  object-fit: contain;
  background: #000;
}
.award figcaption {
  padding: 15px 6px 5px;
  font-family: var(--disp);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.award figcaption b {
  color: var(--ink);
}

.fineprint {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 62ch;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--stone);
}

/* ---------- split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(32px, 4.6vw, 68px);
  align-items: center;
}
.about-photos {
  position: relative;
}
.about-photos .ph-main {
  width: 84%;
}
.about-photos .ph-float {
  position: absolute;
  right: 0;
  bottom: -34px;
  width: 44%;
  box-shadow: 0 24px 50px rgba(19, 19, 19, 0.2);
}
.about-copy p {
  margin-bottom: 18px;
  color: #46423a;
  max-width: 58ch;
}
.about-copy p b {
  color: var(--ink);
  font-weight: 600;
}
.ig-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--velvet);
  border-bottom: 1px solid var(--velvet);
  padding-bottom: 6px;
}
.ig-line:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ---------- services ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 54px;
}
.menu-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px 32px;
}
.menu-card h3 {
  margin-bottom: 6px;
}
.menu-card .cat-note {
  font-size: 12.5px;
  color: var(--stone);
  margin-bottom: 18px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.menu-item:first-of-type {
  border-top: 2px solid var(--ink);
}
.menu-item em {
  font-style: normal;
  color: #46423a;
}
.menu-item .price {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--velvet);
}
.menu-foot {
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.menu-foot p {
  max-width: 52ch;
  color: #46423a;
  font-size: 15px;
}


/* ---------- services: numbered editorial index ---------- */
.svc-index {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
}
.svc-row {
  border-bottom: 1px solid var(--line);
}
.svc-link {
  display: grid;
  grid-template-columns: auto 1.05fr 1.5fr auto auto;
  align-items: baseline;
  gap: clamp(14px, 2.4vw, 34px);
  padding: clamp(18px, 2.4vw, 26px) clamp(6px, 1.2vw, 16px);
  transition: background 0.25s ease, padding 0.25s ease;
}
.svc-row:hover .svc-link {
  background: var(--concrete);
}
.svc-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1;
  color: var(--stone);
}
.svc-row:hover .svc-num {
  color: var(--velvet);
}
.svc-name {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.svc-desc {
  font-size: 14.5px;
  color: #46423a;
}
.svc-price {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--velvet);
  white-space: nowrap;
  justify-self: end;
}
.svc-arrow {
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.svc-row:hover .svc-arrow {
  opacity: 1;
  transform: none;
}

/* ---------- work gallery (dark band) ---------- */
.work {
  padding-bottom: clamp(34px, 3.4vw, 52px);
}
.work-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.work-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 34px 4vw 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--sun) var(--ink);
}
.work-strip a {
  flex: 0 0 clamp(226px, 24vw, 300px);
  scroll-snap-align: start;
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(250, 249, 246, 0.28);
  padding: 9px 9px 7px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.work-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.work-strip a::after {
  content: "View On Instagram";
  position: absolute;
  inset: auto 9px 7px 9px;
  padding: 10px;
  font-family: var(--disp);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  background: linear-gradient(180deg, transparent, rgba(19, 19, 19, 0.9));
  opacity: 0;
  transition: opacity 0.25s;
}
.work-strip a:hover::after {
  opacity: 1;
}

/* ---------- team ---------- */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
}
.team-card {
  flex: 1 1 calc((100% - 56px) / 3);
  max-width: 420px;
  min-width: 258px;
  background: transparent;
}
.team-card .plate {
  padding: 10px;
}
.team-card .plate img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.team-body {
  padding: 20px 2px 0;
}
.ig-inline {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--velvet);
  border-bottom: 1px solid var(--velvet);
}
.team-body .role {
  font-family: var(--disp);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--velvet);
  margin: 6px 0 14px;
}
.team-body p {
  font-size: 14.5px;
  color: #46423a;
}

/* ---------- faq ---------- */
.faq-list {
  margin-top: 38px;
  border-top: 2px solid var(--ink);
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 4px;
  position: relative;
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--velvet);
}
.faq-item[open] summary::after {
  content: "\2013";
}
.faq-item summary:hover {
  color: var(--velvet);
}
.faq-item p {
  padding: 0 40px 22px 4px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #46423a;
  max-width: 78ch;
}

/* ---------- visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 4.4vw, 64px);
}
.hours {
  border: 1px solid var(--line);
  background: var(--white);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.hours-row:first-child {
  border-top: 0;
}
.hours-row .d {
  font-family: var(--disp);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11.5px;
  align-self: center;
  color: var(--stone);
}
.visit-info p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #46423a;
}
.visit-info a.tel {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ink);
  display: inline-block;
  margin-bottom: 8px;
}
.visit-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- footer ---------- */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 54px 0 34px;
}
.foot-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.foot-meta {
  font-size: 12.5px;
  color: rgba(250, 249, 246, 0.6);
  letter-spacing: 0.06em;
  line-height: 2;
}
.foot-meta a:hover {
  color: var(--sun);
}
.lyfework-credit {
  width: 100%;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 249, 246, 0.14);
  display: flex;
  justify-content: center;
}
.lyfework-credit a {
  font-family: var(--disp);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.55);
}
.lyfework-credit a b {
  color: var(--paper);
  font-weight: 600;
}
.lyfework-credit a:hover b {
  color: var(--sun);
}

/* ---------- reveal (fail-safe) ---------- */
.reveal {
  opacity: 1;
  transform: none;
}
html.js-armed .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html.js-armed .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  section {
    text-align: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .eyebrow::before {
    display: none;
  }
  .split,
  .visit-grid,
  .menu-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    flex-basis: 100%;
  }
  .rail-hide {
    display: none;
  }
  .badge-plate-2 {
    display: none;
  }
  .badge-stage {
    grid-template-columns: 1fr 0.8fr;
  }
  .badge-copy {
    max-width: none;
  }
  .svc-link {
    grid-template-columns: auto 1fr auto;
    text-align: left;
  }
  .svc-desc {
    grid-column: 2 / 4;
    grid-row: 2;
  }
  .svc-arrow {
    display: none;
  }
  .about-photos .ph-main {
    width: 100%;
  }
  .about-photos .ph-float {
    display: none;
  }
  .about-copy p,
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .work-head {
    justify-content: center;
    text-align: center;
  }
  .menu-item {
    text-align: left;
  }
  .menu-foot {
    justify-content: center;
    text-align: center;
  }
  .team-grid {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .visit-ctas {
    justify-content: center;
  }
  .foot-in {
    justify-content: center;
    text-align: center;
  }
  .nav-links a:not(.btn) {
    display: none;
  }
}
@media (max-width: 560px) {
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 78px 10px 10px;
  }
  .badge-stage {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }
  .badge-copy {
    order: 2;
  }
  .badge-plate {
    order: 1;
    justify-self: center;
    height: auto;
    width: 54%;
    aspect-ratio: auto;
  }
  .badge-plate img {
    flex: none;
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .badge-plate figcaption {
    white-space: normal;
  }
  .badge-deg {
    font-size: clamp(9rem, 34vh, 15rem);
  }
  .hero h1 {
    font-size: clamp(1.45rem, 6.4vw, 2.2rem);
  }
  .hero-ctas {
    justify-content: center;
  }
  .rail-mark {
    letter-spacing: 0.32em;
    font-size: 0.85rem;
  }
  .hero-wrap {
    padding-top: 88px;
    padding-bottom: 20px;
  }
  .hero-rule {
    margin-bottom: 1.1rem;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .hero-rule span {
    white-space: nowrap;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.6rem);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 8px;
    align-items: start;
  }
  .hero-left {
    order: 2;
    max-width: none;
  }
  .hero-left .lead {
    margin-bottom: 18px;
  }
  .hero-frames {
    order: 1;
    height: auto;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .frame {
    position: static;
  }
  .frame img {
    flex: none;
    height: auto;
  }
  .hero-deg {
    right: 0;
    top: -10%;
    font-size: clamp(6rem, 18vw, 9rem);
  }
  .frame-main {
    height: auto;
    aspect-ratio: auto;
    width: 52%;
    margin-left: 0;
  }
  .frame-main img {
    aspect-ratio: 3 / 4;
  }
  .frame-side {
    display: none;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-meta {
    justify-content: center;
    margin-top: 16px;
  }
  h2 {
    font-size: clamp(1.2rem, 5.6vw, 1.9rem);
  }
  .hero-meta {
    gap: 14px;
    font-size: 9.5px;
  }
  .hero-ctas .btn {
    padding: 14px 22px;
    letter-spacing: 0.2em;
  }
  .work-strip a {
    flex-basis: 240px;
  }
  .menu-card {
    padding: 26px 20px;
  }
  .wordmark {
    letter-spacing: 0.22em;
    font-size: 13px;
  }
}
