:root {
  --orange: #ff8c42;
  --orange-deep: #e77229;
  --white: #ffffff;
  --off-white: #f6f3ef;
  --ink: #171717;
  --gray: #666666;
  --border: rgba(23, 23, 23, 0.12);
  --surface: rgba(255, 255, 255, 0.74);
  --shadow: 0 18px 48px rgba(23, 23, 23, 0.08);
  --header-height: 88px;
  --max-width: 1180px;
  --ease: 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: background-color var(--ease), backdrop-filter var(--ease), border-color var(--ease),
    box-shadow var(--ease);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.header-shell {
  width: min(calc(100% - 40px), 1280px);
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: transform var(--ease), border-color var(--ease), color var(--ease),
    background-color var(--ease);
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 140, 66, 0.7);
  background: rgba(255, 140, 66, 0.12);
  color: var(--orange);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link path,
.social-link rect,
.social-link circle {
  vector-effect: non-scaling-stroke;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-logo {
  width: clamp(76px, 8vw, 112px);
  height: auto;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 42px;
  color: inherit;
}

.nav-socials {
  display: none;
}

.site-nav a,
.menu-toggle {
  position: relative;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.menu-toggle:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease), background-color var(--ease);
}

body.menu-open .menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--ease), background-color var(--ease), color var(--ease),
    border-color var(--ease), box-shadow var(--ease);
}

.header-cta,
.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255, 140, 66, 0.26);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: var(--orange-deep);
  box-shadow: 0 14px 30px rgba(255, 140, 66, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.section-light .button-secondary,
.final-cta .button-secondary,
.page-hero .button-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover,
.section-light .button-secondary:hover,
.final-cta .button-secondary:hover,
.page-hero .button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  color: var(--orange-deep);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(140deg, #1f1f1f 0%, #101010 46%, #262626 100%);
}

.hero-video-shell {
  position: absolute;
  inset: -12vh -6vw;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 140, 66, 0.18), rgba(255, 140, 66, 0.02)),
    linear-gradient(180deg, transparent, rgba(23, 23, 23, 0.36));
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 213.33vh;
  min-height: 120vh;
  border: 0;
  transform: translate(-50%, -50%) scale(1.18);
  pointer-events: none;
  backface-visibility: hidden;
  will-change: transform;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.orbit-one {
  width: 52vw;
  height: 52vw;
  min-width: 540px;
  min-height: 540px;
  top: -12vw;
  right: -10vw;
}

.orbit-two {
  width: 34vw;
  height: 34vw;
  min-width: 360px;
  min-height: 360px;
  bottom: -10vw;
  left: -6vw;
}

.hero-overlay {
  background: linear-gradient(
    120deg,
    rgba(255, 140, 66, 0.58),
    rgba(255, 140, 66, 0.28) 42%,
    rgba(12, 12, 12, 0.5)
  );
}

.hero-content,
.page-hero-inner,
.section-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 52px) 0 72px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.95rem, 4vw, 3.65rem);
  max-width: 15ch;
}

.hero-logo-mark {
  display: block;
  width: min(88vw, 980px);
  height: auto;
}

.eyebrow {
  margin: 0 0 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.8vw, 5.1rem);
  max-width: 10.5ch;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
  max-width: 12ch;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
}

.hero-copy,
.section-intro p:last-child,
.city-copy p:last-child,
.contact-copy > p {
  max-width: 40rem;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 92px) 0 72px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 140, 66, 0.16), transparent 28%),
    linear-gradient(180deg, #fcf8f4, #ffffff);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.48), transparent);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(2.05rem, 3.8vw, 3.7rem);
  max-width: 12ch;
}

.page-hero .hero-copy {
  color: var(--gray);
}

body[data-page="about"] .page-hero,
body[data-page="services"] .page-hero,
body[data-page="team"] .page-hero,
body[data-page="contact"] .page-hero {
  overflow: clip;
  color: var(--white);
  background: #111111;
}

body[data-page="about"] .page-hero::before,
body[data-page="services"] .page-hero::before,
body[data-page="team"] .page-hero::before,
body[data-page="contact"] .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.96;
}

body[data-page="about"] .page-hero::before {
  background-image:
    linear-gradient(110deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58)),
    linear-gradient(120deg, rgba(255, 140, 66, 0.22), rgba(255, 140, 66, 0.05)),
    url("https://images.pexels.com/photos/7495196/pexels-photo-7495196.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1600");
}

body[data-page="services"] .page-hero::before {
  background-image:
    linear-gradient(110deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.58)),
    linear-gradient(120deg, rgba(255, 140, 66, 0.24), rgba(255, 140, 66, 0.06)),
    url("https://images.pexels.com/photos/15635393/pexels-photo-15635393.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1600");
}

body[data-page="team"] .page-hero::before {
  background-image:
    linear-gradient(110deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.52)),
    linear-gradient(120deg, rgba(255, 140, 66, 0.2), rgba(255, 140, 66, 0.05)),
    url("https://images.pexels.com/photos/7988215/pexels-photo-7988215.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1600");
}

body[data-page="contact"] .page-hero::before {
  background-image:
    linear-gradient(110deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.56)),
    linear-gradient(120deg, rgba(255, 140, 66, 0.18), rgba(255, 140, 66, 0.04)),
    url("https://images.pexels.com/photos/5325055/pexels-photo-5325055.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1600");
}

body[data-page="about"] .page-hero .hero-copy,
body[data-page="services"] .page-hero .hero-copy,
body[data-page="team"] .page-hero .hero-copy,
body[data-page="contact"] .page-hero .hero-copy,
body[data-page="about"] .page-hero .eyebrow,
body[data-page="services"] .page-hero .eyebrow,
body[data-page="team"] .page-hero .eyebrow,
body[data-page="contact"] .page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.section {
  position: relative;
  padding: clamp(78px, 10vw, 128px) 0;
  overflow: clip;
}

.section-light {
  background: var(--white);
}

.about-chicago-section {
  background: #111111;
}

.about-chicago-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.62)),
    linear-gradient(120deg, rgba(255, 140, 66, 0.14), rgba(255, 140, 66, 0.04)),
    url("https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1600");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.92;
}

.about-chicago-section .section-inner,
.about-chicago-section .section-stripe {
  position: relative;
  z-index: 1;
}

.section-accent {
  background:
    linear-gradient(180deg, #fdf8f4, #fff5eb);
}

.section-dark {
  background: #111111;
  color: var(--white);
}

.city-section-home {
  background: #0f0f0f;
}

.city-section-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.46)),
    linear-gradient(120deg, rgba(255, 140, 66, 0.1), rgba(255, 140, 66, 0.03)),
    url("bottom.jpg") center center / cover no-repeat;
  opacity: 0.96;
}

.city-section-home .section-inner,
.city-section-home .section-stripe {
  position: relative;
  z-index: 1;
}

.contact-expect-section {
  background: #0f0f0f;
}

.contact-expect-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.46)),
    linear-gradient(120deg, rgba(255, 140, 66, 0.1), rgba(255, 140, 66, 0.03)),
    url("bottom.jpg") center center / cover no-repeat;
  opacity: 0.96;
}

.contact-expect-section .section-inner,
.contact-expect-section .section-stripe {
  position: relative;
  z-index: 1;
}

.section-dark .city-copy p:last-child,
.section-dark .detail-row p,
.section-dark .service-points p,
.section-dark li {
  color: rgba(255, 255, 255, 0.8);
}

.about-chicago-section .city-panel li {
  color: var(--white);
}

.city-section-home .city-panel li {
  color: var(--white);
}

.section-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: min(38vw, 460px);
  height: 6px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 140, 66, 0));
  transform-origin: left;
}

.split,
.city-focus,
.contact-layout,
.service-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.strategy-intro {
  display: grid;
  gap: 26px;
}

.strategy-intro h2 {
  font-size: clamp(1.25rem, 1.9vw, 1.8rem);
  max-width: 24ch;
}

.strategy-image {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow);
  background: #e9e3dc;
  min-height: 300px;
}

.strategy-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.strategy-list,
.detail-stack,
.contact-steps {
  display: grid;
  gap: 18px;
}

.contact-form-shell {
  display: block;
}

.team-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.about-media-card {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--shadow);
  background: #ebe4dc;
}

.about-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media-card-tall {
  min-height: 340px;
}

.about-media-card-wide {
  min-height: 280px;
  margin: 34px 0 18px;
}

.about-media-card-plain {
  border: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.about-media-card-dark {
  min-height: 220px;
  margin-bottom: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.about-media-card-dark img {
  filter: brightness(0.78) saturate(0.88);
}

.strategy-item,
.detail-row,
.service-card,
.value-block,
.contact-form,
.city-panel {
  position: relative;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}

.section-dark .city-panel,
.section-dark .detail-row {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.strategy-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.strategy-link {
  margin-top: 18px;
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.8rem;
}

.strategy-number,
.service-tag,
.value-block span {
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.services-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.team-lead {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 42px;
  margin-bottom: 32px;
  padding: 28px;
  border: 1px solid rgba(255, 140, 66, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.team-section-title {
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  max-width: 18ch;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 140, 66, 0.18);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.team-headshot {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8d1c9;
}

.team-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-headshot-lead {
  border-radius: 28px;
}

.team-lead-copy .team-role {
  margin: 0 0 12px;
}

.team-lead-copy h3,
.team-lead-copy p:last-child {
  margin-left: 0;
  margin-right: 0;
}

.team-lead-copy h3 {
  max-width: 18ch;
  margin-bottom: 14px;
}

.team-lead-copy p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--gray);
}

.team-role {
  margin: 22px 28px 10px;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.team-card h3,
.team-card p:last-child {
  margin-left: 28px;
  margin-right: 28px;
}

.team-card h3 {
  margin-bottom: 12px;
}

.team-card p:last-child {
  margin-bottom: 28px;
  color: var(--gray);
}

.service-card {
  padding: 28px;
  border: 1px solid rgba(255, 140, 66, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.service-inline-media {
  margin: 0 0 18px;
}

.service-card p:last-child,
.value-block p,
.detail-row p,
.strategy-item p,
.service-points p,
.city-panel li {
  color: var(--gray);
}

.city-panel {
  padding-top: 24px;
}

.city-panel p {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-panel ul,
.service-points {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.service-points p {
  margin-bottom: 0;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  font-size: 1.02rem;
}

.section-dark .service-points p {
  border-top-color: rgba(255, 255, 255, 0.18);
}


.final-cta {
  padding-bottom: clamp(88px, 10vw, 124px);
}

.final-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.final-shell .eyebrow,
.final-shell h2 {
  text-align: center;
}

.final-shell h2 {
  max-width: 24ch;
}

.final-shell .hero-actions {
  justify-content: center;
}

.site-footer {
  background:
    linear-gradient(180deg, #161616, #0f0f0f);
  color: var(--white);
  padding: 36px 0 42px;
}

.footer-shell {
  width: min(calc(100% - 40px), 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: clamp(96px, 10vw, 138px);
  height: auto;
}

.footer-copy p {
  margin-bottom: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-nav {
  display: inline-flex;
  align-items: center;
  gap: 42px;
}

.footer-nav a {
  position: relative;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.contact-form {
  padding: 28px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.contact-form-wide {
  width: min(100%, 880px);
  margin: 0 auto;
}

.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color var(--ease), transform var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  transform: translateY(-1px);
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--orange-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact-steps p {
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 140, 66, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-line {
  transform: scaleX(0);
  transition: transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible,
.page-hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line.is-visible {
  transform: scaleX(1);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 960px) {
  .header-shell {
    position: relative;
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    order: 4;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 24px));
    display: grid;
    gap: 18px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }

  .header-socials {
    display: none;
  }

  .nav-socials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-actions {
    order: 3;
  }

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

  .split,
  .city-focus,
  .contact-layout,
  .service-detail,
  .team-detail-grid,
  .services-grid,
  .team-lead,
  .team-grid,
  .values-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    align-items: start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero-content {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 80px;
  }

  .header-shell {
    width: min(calc(100% - 24px), 1280px);
    grid-template-columns: auto 1fr auto auto;
  }

  .brand-copy {
    display: none;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .header-actions {
    justify-self: end;
    gap: 10px;
  }

  .hero-content,
  .page-hero-inner,
  .section-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero-content {
    min-height: 100vh;
    padding-bottom: 42px;
  }

  .hero-logo-mark {
    width: min(90vw, 620px);
  }

  .brand-badge {
    padding: 0;
  }

  .brand-logo {
    width: 72px;
  }

  h1 {
    max-width: 9ch;
  }

  .strategy-item {
    grid-template-columns: 1fr;
  }

  .service-card,
  .contact-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-line {
    opacity: 1;
    transform: none;
  }
}
