@font-face {
  font-family: "ITC Avant Garde Gothic Pro";
  src:
    url("./assets/fonts/ITCAvantGardePro-Bold.otf") format("opentype"),
    local("ITC Avant Garde Gothic Pro"),
    local("ITC Avant Garde Gothic Std"),
    local("ITCAvantGardePro-Bold");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #fffc52;
  --yellow-deep: #d6d02d;
  --ink: #1c1b14;
  --charcoal: #303030;
  --charcoal-soft: #3d3d3a;
  --paper: #f6f6f3;
  --paper-soft: #ecece8;
  --paper-muted: #e3e3df;
  --muted: #7b775f;
  --line-soft: rgba(28, 27, 20, 0.1);
  --shadow-hard: 8px 8px 0 rgba(28, 27, 20, 0.98);
  --shadow-soft: 0 30px 60px rgba(28, 27, 20, 0.12);
  --font-brand:
    "ITC Avant Garde Gothic Pro",
    "ITC Avant Garde Gothic",
    "Avant Garde Gothic ITC",
    "Century Gothic",
    "Futura",
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-brand);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

button:hover,
a:hover {
  transform: translateY(-1px);
}

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

.site-shell {
  min-height: 0;
}

.container {
  width: min(calc(100% - 3rem), 78rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(28, 27, 20, 0.06);
  background: rgba(246, 246, 243, 0.88);
}

body.page-home .site-header {
  background: rgba(255, 252, 82, 0.9);
}

.site-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 1.5rem;
}

.brand,
.footer-brand {
  font-size: clamp(1.2rem, 0.9rem + 0.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.brand,
.footer-brand {
  justify-self: start;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
  padding-bottom: 0.22rem;
  border-bottom: 0.18rem solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.62;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  opacity: 1;
  border-color: var(--yellow);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.2rem;
  min-height: 2.65rem;
  padding: 0 1.1rem;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 rgba(28, 27, 20, 0.95);
  white-space: nowrap;
}

.header-cta-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-cta-plus {
  display: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.section-yellow {
  background: var(--yellow);
}

.display-title,
.section-title,
.branch-name,
.social-link,
.contact-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button,
.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  min-height: 2.8rem;
  padding: 0 1.15rem;
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--yellow);
  color: var(--ink);
}

.button-bright {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}

.button-bright:hover,
.button-bright:focus-visible {
  background: white;
}

.button-outline {
  border: 0.2rem solid var(--ink);
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.text-link,
.inline-link {
  padding-bottom: 0.3rem;
  border-bottom: 0.22rem solid currentColor;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem 1.45rem;
}

.footer-brand {
  color: var(--yellow);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 1;
}

.footer-links .instagram-link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.footer-copy {
  margin: 0;
  justify-self: end;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.home-hero {
  padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(3.8rem, 10vw, 7rem);
}

.home-hero .display-title {
  max-width: 11ch;
  font-size: clamp(3.5rem, 10vw, 8.8rem);
}

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

.home-copy-tile,
.home-art-tile {
  min-height: clamp(13rem, 33vw, 22rem);
}

.home-copy-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: clamp(1.25rem, 4vw, 3rem);
  background: var(--paper);
}

.home-copy-tile.muted {
  background: var(--paper-soft);
}

.home-copy-tile .section-title {
  max-width: 8ch;
  font-size: clamp(2.1rem, 5vw, 4.15rem);
  line-height: 0.92;
}

.home-copy-tile p {
  margin: -0.7rem 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-art-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #deded8;
}

.phone-stage {
  position: relative;
  width: min(19rem, 54vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 0.4rem;
  background: linear-gradient(180deg, #dadad5 0%, #cfcfca 100%);
  transform: rotate(-3.5deg);
}

.phone-shadow {
  position: absolute;
  width: 46%;
  height: 72%;
  background: rgba(28, 27, 20, 0.18);
  filter: blur(36px);
  transform: translate(10%, 12%) rotate(-3deg);
}

.phone {
  position: relative;
  width: 42%;
  height: 78%;
  border: 0.13rem solid rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  background: linear-gradient(180deg, #1a1a1a, #2b2b2b);
  box-shadow:
    inset 0 0 0 0.08rem rgba(255, 255, 255, 0.1),
    0 22px 40px rgba(18, 18, 18, 0.28);
  transform: rotate(-4deg);
}

.phone-notch {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 2.15rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 2.3rem 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.phone-kicker {
  margin: 0;
  font-size: 0.44rem;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.phone-orb {
  width: 4.2rem;
  height: 4.2rem;
  margin-top: 3rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, white, #dbdbdb);
}

.phone-dock {
  margin-top: auto;
  display: flex;
  gap: 0.34rem;
}

.phone-dock span {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.landscape-stage {
  position: relative;
  width: min(20rem, 56vw);
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f5f5f2, #ededea);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.landscape-column {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  width: 16%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(216, 216, 216, 0.66));
}

.landscape-column.left {
  left: 2.6rem;
}

.landscape-column.center {
  left: 50%;
  transform: translateX(-50%);
}

.landscape-column.right {
  right: 2.6rem;
}

.landscape-frame {
  position: absolute;
  inset: 1.7rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 244, 244, 0.75) 42%, rgba(180, 180, 180, 0.35) 100%),
    linear-gradient(140deg, transparent 0 24%, rgba(165, 165, 165, 0.62) 25% 43%, transparent 44%),
    linear-gradient(214deg, transparent 0 18%, rgba(116, 116, 116, 0.7) 19% 47%, transparent 48%),
    linear-gradient(180deg, #f7f7f7 0%, #d7d7d3 55%, #c7c7c3 100%);
  filter: grayscale(1);
}

.landscape-frame::before,
.landscape-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.landscape-frame::before {
  bottom: 0;
  height: 38%;
  background:
    linear-gradient(140deg, transparent 0 24%, rgba(120, 120, 120, 0.78) 25% 47%, transparent 48%),
    linear-gradient(220deg, transparent 0 20%, rgba(90, 90, 90, 0.9) 21% 50%, transparent 51%);
  opacity: 0.68;
}

.landscape-frame::after {
  bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0), rgba(255, 255, 255, 0.95));
}

.branches-banner {
  display: grid;
  place-items: center;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--charcoal);
  color: var(--yellow);
}

.branches-banner-link {
  color: inherit;
  text-decoration: none;
}

.branches-banner-link:hover,
.branches-banner-link:focus-visible {
  color: var(--paper);
}

.branches-banner .display-title {
  font-size: clamp(3.8rem, 14vw, 9rem);
}

.social-section {
  background: var(--paper);
}

.social-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.social-copy {
  max-width: 32rem;
}

.social-copy .eyebrow {
  margin-bottom: 0.7rem;
  transform: translateY(-0.3rem);
}

.social-copy .section-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.social-link {
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-decoration: underline;
  text-decoration-thickness: 0.3rem;
  text-underline-offset: 0.35rem;
  letter-spacing: -0.035em;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--muted);
}

.page-hero {
  padding: clamp(3.2rem, 7vw, 6rem) 0;
}

.page-hero.team-hero,
.page-hero.branches-hero {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.page-hero.team-hero::before,
.page-hero.branches-hero::before,
.recruit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(28, 27, 20, 0.18) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero .display-title {
  font-size: clamp(4rem, 10vw, 8.5rem);
}

.hero-meta-row {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-meta-row p {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1rem, 1rem + 1vw, 1.55rem);
  line-height: 1.15;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 1rem;
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-roster {
  padding: 2rem 0 2.6rem;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 17rem;
  padding: 1.6rem;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
  background: var(--paper);
}

.team-card.large {
  grid-column: span 8;
  min-height: 22rem;
}

.team-card.medium {
  grid-column: span 4;
}

.team-card.small {
  grid-column: span 4;
  min-height: 13rem;
}

.team-card.dark {
  background: var(--charcoal);
  color: var(--yellow);
}

.team-card.yellow {
  background: var(--yellow);
}

.team-card.gray {
  background: var(--paper-muted);
}

.team-card.black {
  background: var(--ink);
  color: var(--yellow);
}

.team-card-title {
  margin: 0.65rem 0 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.team-card.large .team-card-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.team-card p {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(28, 27, 20, 0.68);
  line-height: 1.25;
}

.team-card.dark p,
.team-card.black p {
  color: rgba(255, 255, 255, 0.74);
}

.team-card-foot {
  margin-top: 2rem;
}

.team-note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.2;
}

.recruit-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--ink);
  color: var(--paper);
}

.recruit-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.recruit-copy {
  max-width: 38rem;
}

.recruit-copy .display-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.recruit-copy .display-title span {
  color: var(--yellow);
}

.recruit-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.branches-list {
  padding: 2rem 0 1rem;
}

.branch-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.branch-row {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 2rem;
}

.branch-row.reverse .branch-media {
  order: 2;
}

.branch-row.reverse .branch-copy {
  order: 1;
}

.branch-media {
  display: grid;
  place-items: center;
  min-height: 16rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-hard);
  background: var(--ink);
  color: var(--yellow);
  --icon-detail: var(--paper);
}

.branch-media.yellow {
  background: var(--yellow);
  color: var(--ink);
  --icon-detail: var(--ink);
}

.branch-media.charcoal {
  background: var(--charcoal);
  color: var(--yellow);
  --icon-detail: var(--paper);
}

.branch-media.light {
  background: var(--paper-soft);
  color: var(--ink);
  border: 3px solid var(--ink);
  --icon-detail: var(--paper);
}

.branch-icon {
  width: 7rem;
  height: 7rem;
}

.branch-artwork {
  width: min(19rem, 98%);
  max-height: 100%;
  object-fit: contain;
}

.branch-copy .branch-name {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.branch-copy .branch-name-long {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.025em;
}

.branch-copy p {
  margin: 1rem 0 1.6rem;
  max-width: 33rem;
  color: rgba(28, 27, 20, 0.68);
  line-height: 1.3;
}

.branch-copy {
  min-width: 0;
}

.branch-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.app-store-button {
  display: inline-grid;
  place-items: center;
  width: 2.68rem;
  height: 2.68rem;
  min-width: 2.68rem;
  min-height: 2.68rem;
  padding: 0;
  line-height: 1;
  flex: 0 0 2.68rem;
  box-shadow: var(--shadow-hard);
}

.app-store-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(18rem, 0.42fr);
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4.5rem) 0 0;
}

.contact-title {
  font-size: clamp(4rem, 11vw, 8.5rem);
}

.contact-highlight {
  width: min(100%, 28rem);
  margin: 1.6rem 0 1.75rem;
  padding: 1.2rem 1.3rem;
  background: var(--yellow);
  box-shadow: 0 0 0 1px rgba(28, 27, 20, 0.02);
}

.contact-highlight p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-form {
  width: min(100%, 29rem);
}

.field-group {
  margin-bottom: 1.65rem;
}

.field-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-input {
  width: 100%;
  padding: 0.65rem 0 0.85rem;
  border: 0;
  border-bottom: 3px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  text-transform: uppercase;
  outline: none;
  resize: none;
}

.contact-input::placeholder {
  color: rgba(28, 27, 20, 0.25);
}

.contact-input:focus {
  border-color: var(--yellow-deep);
}

.contact-submit {
  margin-top: 0.3rem;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.outreach-card {
  padding: 1.4rem;
  background: var(--charcoal);
  color: var(--yellow);
}

.outreach-title {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.outreach-person + .outreach-person {
  margin-top: 1.2rem;
}

.outreach-person strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.outreach-person a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.contact-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 11.5rem;
  padding: 1.25rem;
  background: var(--paper-soft);
}

.tile-icon {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--ink);
}

.contact-tile p {
  margin: 0;
}

.contact-tile .tile-label {
  margin-bottom: 0.35rem;
  color: rgba(28, 27, 20, 0.42);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-tile .tile-value {
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.ticker {
  margin-top: 2.3rem;
  background: var(--ink);
  color: rgba(255, 252, 82, 0.28);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  padding: 1.1rem 0;
  animation: ticker-move 24s linear infinite;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.09em;
}

.page-contact .ticker-track {
  gap: 3rem;
  font-size: clamp(1.7rem, 3.2vw, 3.35rem);
  letter-spacing: -0.015em;
}

@keyframes ticker-move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .hero-meta-row,
  .recruit-inner,
  .social-inner,
  .contact-layout {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .team-card.large,
  .team-card.medium,
  .team-card.small {
    grid-column: span 12;
  }

  .branch-row,
  .branch-row.reverse {
    grid-template-columns: 1fr;
  }

  .branch-row.reverse .branch-media,
  .branch-row.reverse .branch-copy {
    order: initial;
  }

  .branch-media {
    min-height: 14rem;
  }
}

@media (max-width: 860px) {
  .site-header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1.5rem;
    right: 1.5rem;
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    padding: 1rem;
    background: rgba(246, 246, 243, 0.97);
    border: 1px solid rgba(28, 27, 20, 0.1);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  body.page-home .site-nav {
    background: rgba(255, 252, 82, 0.98);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-self: center;
    width: fit-content;
    font-size: 0.9rem;
  }

  .header-cta {
    min-width: 2rem;
    min-height: 2rem;
    padding: 0;
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    box-shadow: none;
    border-radius: 999px;
  }

  .header-cta-label {
    display: none;
  }

  .header-cta-plus {
    display: inline;
  }

  .home-hero {
    padding-top: 2.2rem;
  }

  .home-hero .display-title {
    max-width: 8ch;
  }

  .site-footer-inner {
    gap: 1.1rem;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.4rem), 78rem);
  }

  .site-header-inner,
  .site-footer-inner {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

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

  .home-copy-tile,
  .home-art-tile {
    min-height: 8.6rem;
  }

  .home-copy-tile {
    gap: 0.95rem;
    padding: 0.8rem;
  }

  .home-copy-tile .section-title {
    font-size: clamp(1.55rem, 6vw, 2.15rem);
  }

  .home-copy-tile p,
  .button,
  .text-link,
  .inline-link {
    font-size: 0.42rem;
  }

  .phone-stage,
  .landscape-stage {
    width: min(9.5rem, calc(50vw - 0.9rem));
  }

  .phone-orb {
    width: 3.2rem;
    height: 3.2rem;
    margin-top: 2rem;
  }

  .phone-screen {
    padding-top: 1.7rem;
  }

  .branches-banner .display-title {
    font-size: clamp(3.4rem, 15vw, 4.8rem);
  }

  .social-inner {
    gap: 1rem;
  }

  .social-link {
    text-decoration-thickness: 0.18rem;
  }

  .contact-highlight {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  .contact-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .contact-tile {
    min-height: 9rem;
    padding: 0.9rem;
  }

  .branch-media {
    min-height: 11rem;
  }
}

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

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