:root {
  --bg: #e7e4df;
  --bg-deep: #ddd8d1;
  --bg-flat: #e3e0db;
  --bg-flat-rgb: 227, 224, 219;
  --text: #0a0a0a;
  --muted: #5c5c5c;
  --line: rgba(10, 10, 10, 0.14);
  --line-strong: rgba(10, 10, 10, 0.25);
  --panel: rgba(255, 255, 255, 0.5);
  --panel-strong: rgba(255, 255, 255, 0.72);
  --black: #070707;
  --radius: 26px;
  --radius-sm: 18px;
  --max-width: 1480px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 18px 34px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
  --header-height: 74px;
  --header-height-sm: 66px;
  --focus-ring: 2px solid rgba(10, 10, 10, 0.8);
  --focus-offset: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--bg-flat);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.service-row:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

/* Sticky header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 0;
  background: rgba(var(--bg-flat-rgb), 0.96);
  transform: translateY(0);
  will-change: transform;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.12s linear;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: none;
}

.header-shell {
  position: relative;
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px 0;
  background: transparent;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(10, 10, 10, 0.08);
  transition:
    left 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-revealing .topbar::after {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
}

.brand {
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.88);
}

.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--text);
  transition: width var(--transition);
}

.desktop-nav a:not(.nav-cta):hover::after,
.desktop-nav a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

/* Header CTA (desktop) */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;

  background: var(--text);        /* black */
  color: var(--bg-flat) !important;
  border: 1px solid var(--text);

  font-size: 0.95rem;
  font-weight: 700;

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--text);
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(10, 10, 10, 0.26);
}

.menu-toggle__text {
  font-weight: 800;
}

.menu-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle__icon span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  position: relative;
  padding: 8px 0 14px;
  background: transparent;
}

.mobile-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(10, 10, 10, 0.08);
  transition:
    left 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-revealing .mobile-menu::after {
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
}

.mobile-menu.active {
  display: grid;
  gap: 0;
}

.mobile-menu a {
  padding: 14px 0;
  font-weight: 700;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.mobile-menu a:first-child {
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.nav-cta-mobile {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--text);
}

/* Hero */
.hero {
  padding: 26px 0 34px;
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 18px;
}

.hero-title {
  margin: 0;
  font-size: clamp(4.2rem, 13.5vw, 11.5rem);
  line-height: 0.9;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-title--single {
  white-space: nowrap;
}

.hero-intro-block {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-intro-text {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: rgba(10, 10, 10, 0.9);
}

.hero-pill {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--text);
  font-size: 1rem;
}

.hero-image-wrap {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.hero-image {
  display: block;
  width: 100%;
  height: min(58vw, 760px);
  object-fit: cover;
}

.service-tag,
.section-label {
  margin: 0 0 14px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 300;
}

/* Statement text */
.statement {
  position: relative;
  height: 260vh;
}

.statement-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statement-line {
  margin: 0 auto;
  max-width: 22ch;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.statement-word {
  display: inline-block;
  opacity: 0.08;
  transform: translateY(24px);
  filter: blur(8px);
  margin: 0 0.12em;
  will-change: opacity, transform, filter;
}

.statement-word.emphasis {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.statement-word.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  border: 1px solid var(--text);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1a1a1a;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.btn-inverted {
  background: var(--bg);
  color: var(--black);
  border: 1px solid var(--bg);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.btn-inverted:hover,
.btn-inverted:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Sections */
.section {
  padding: 72px 0 24px;
}

.section--tight {
  padding-top: 34px;
}

.section-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.section-copy h2,
.about-main h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.section-copy p,
.about-main p,
.contact-copy p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(10, 10, 10, 0.84);
}

.section-copy p {
  margin: 18px 0 0;
  max-width: 60ch;
}

/* Services */
.services-list {
  padding-top: 72px;
}

.services-list .container {
  max-width: 1120px;
}

.services-list-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.services-list-head h2 {
  margin: 0 0 22px;
  max-width: 18ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.services-list-cta {
  margin-top: 0;
}

.services-rows {
  display: grid;
  gap: 0;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.3fr) 48px;
  align-items: center;
  gap: 24px;
  padding: 26px 8px;
  color: #000;
  background: transparent;
  border-radius: 0;
  z-index: 0;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    padding 0.28s ease,
    box-shadow 0.28s ease;
  min-width: 0;
}

.service-row > * {
  min-width: 0;
}

.service-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 1px;
  background: rgba(10, 10, 10, 0.12);
  transition: opacity 0.28s ease;
}

.service-row:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 1px;
  background: rgba(10, 10, 10, 0.12);
}

.service-row__title {
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #000;
  transform: translateX(0);
  transition:
    transform 0.28s ease,
    color 0.28s ease;
}

.service-row__summary {
  font-size: 1.05rem;
  line-height: 1.45;
  color: #000;
  transition: color 0.28s ease;
  min-width: 0;
}

.service-row__arrow {
  justify-self: end;
  font-size: 2rem;
  line-height: 1;
  opacity: 0;
  color: var(--bg);
  transform: translateX(-14px) scale(0.96);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    color 0.32s ease;
}

.services-rows:hover .service-row__title,
.services-rows:hover .service-row__summary {
  color: rgba(10, 10, 10, 0.3);
}

.service-row:hover,
.service-row:focus-visible {
  background-color: #1b0802;
  color: var(--bg);
  border-radius: 28px;
  padding-left: 24px;
  padding-right: 24px;
  transform: none;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.service-row:hover .service-row__title,
.service-row:focus-visible .service-row__title {
  color: var(--bg);
  transform: translateX(10px);
}

.service-row:hover .service-row__summary,
.service-row:focus-visible .service-row__summary {
  color: rgba(231, 228, 223, 0.88);
}

.service-row:hover .service-row__arrow,
.service-row:focus-visible .service-row__arrow {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.service-row:hover::before,
.service-row:focus-visible::before {
  opacity: 0;
}

.service-row:hover + .service-row::before,
.service-row:focus-visible + .service-row::before {
  opacity: 0;
}

/* About Section */

.about-sequence {
  position: relative;
  background: var(--black);
}

.about-sequence__transition {
  position: relative;
  height: 120vh;
  background: #e3e0db;
}

.about-sequence__transition-inner {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-band .container {
  max-width: 1120px;
}

.about-band {
  background: var(--black);
  color: var(--bg);
  overflow: hidden;
  padding: 10px 0 110px;
}

.about-band__marquee {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.about-band__marquee--intro {
  width: 100%;
  opacity: 1;
}

.about-band__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 56px;
  will-change: transform;
}

.about-band__marquee-track span {
  flex: 0 0 auto;
  font-size: clamp(4.8rem, 9vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(10, 10, 10, 0.42);
  text-stroke: 2px rgba(10, 10, 10, 0.42);
  white-space: nowrap;
}

.about-band__content {
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.about-band.is-visible .about-band__content {
  opacity: 1;
  transform: translateY(0);
}

.about-band__eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(231, 228, 223, 0.56);
}

.about-band__title {
  margin: 0;
  max-width: 14ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--bg);
}

.about-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 34px;
  max-width: 980px;
}

.about-band__grid p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(231, 228, 223, 0.82);
}

.about-band__cta {
  margin-top: 22px;
}

.about-band__cta .btn {
  min-height: 50px;
  padding: 0 20px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-item {
  padding: 24px;
  border-top: 2px solid var(--text);
  background: rgba(255, 255, 255, 0.3);
  transition: transform var(--transition), background var(--transition);
}

.process-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.48);
}

.process-item span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--muted);
}

.process-item h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.process-item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.84);
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.about-main {
  padding-right: 14px;
}

.about-main p {
  max-width: 62ch;
  margin: 18px 0 0;
}

.about-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.08);
  border-color: rgba(10, 10, 10, 0.18);
}

.about-card ul {
  margin: 0;
  padding-left: 20px;
}

.about-card li {
  margin-bottom: 12px;
  font-size: 1.04rem;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.84);
}

.about-card li:last-child {
  margin-bottom: 0;
}

/* Contact */
.section--contact {
  background: var(--black);
  color: var(--bg);
  padding: 100px 0 120px;
}

.section--contact .container {
  max-width: 1120px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.38));
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-form {
  display: grid;
  gap: 16px;
}

/* fields */
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  background: #dcd8d2;
  color: #111;

  padding: 18px 20px;
  border-radius: 4px;

  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  outline: none;

  transition:
    transform 0.15s ease,
    background 0.2s ease;
}

/* textarea */
.form-field textarea {
  min-height: 200px;
  resize: vertical;
}

/* placeholder */
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0,0,0,0.5);
}

/* select arrow */
.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* hover + focus */
.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
  transform: translateY(-1px);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  background: #e5e1db;
}

/* Button */
.contact-submit {
  margin-top: 10px;
  height: 60px;

  border: none;
  background: var(--bg);
  color: var(--black);

  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: inherit;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 180px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(10, 10, 10, 0.3);
  box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.06);
}

.form-actions {
  padding-top: 4px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.contact-copy p:last-child {
  margin: 18px 0 0;
  max-width: 54ch;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.contact-meta {
  display: grid;
  gap: 14px;
}

.contact-meta div {
  padding-top: 12px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}

.contact-meta small {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.contact-meta strong {
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  padding: 48px 0 26px;
  background: var(--black);
  color: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(231, 228, 223, 0.14);
}

.footer-brand {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.footer-text {
  margin: 0;
  max-width: 40ch;
  line-height: 1.7;
  color: rgba(231, 228, 223, 0.82);
}

.footer-links {
  display: grid;
  gap: 12px;
  text-align: right;
}

.footer-links a {
  color: rgba(231, 228, 223, 0.86);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  color: rgba(231, 228, 223, 0.7);
  font-size: 0.95rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

/* Responsive */
@media (min-width: 861px) {
  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1120px) {
  .about-layout,
  .contact-panel,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-intro-block {
    padding-top: 0;
  }

  .hero-intro-text {
    max-width: 18ch;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 16px;
  }

  .service-row::before {
    left: 16px;
    right: 16px;
  }

  .service-row:last-child::after {
    left: 16px;
    right: 16px;
  }

  .service-row__title,
  .service-row__summary {
    grid-column: 1;
    max-width: 100%;
    min-width: 0;
  }

  .service-row__summary {
    margin-top: 2px;
  }

  .service-row__arrow {
    grid-column: 1;
    justify-self: start;
    margin-top: 4px;
  }

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

  .section-head {
    grid-template-columns: 1fr;
  }

  .about-main {
    padding-right: 0;
  }

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

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-title {
    font-size: clamp(4.2rem, 18vw, 8rem);
  }

  .statement {
    height: 220vh;
  }

  .statement-line {
    max-width: 18ch;
    font-size: clamp(2.1rem, 7vw, 3.4rem);
  }

  .about-sequence__transition {
    height: 100vh;
  }

  .about-band {
    padding: 10px 0 84px;
  }

  .about-band__marquee-track {
    gap: 34px;
  }

  .about-band__marquee-track span {
    font-size: clamp(3.2rem, 12vw, 5.6rem);
    -webkit-text-stroke: 1.5px rgba(10, 10, 10, 0.42);
    text-stroke: 1.5px rgba(10, 10, 10, 0.42);
  }
}

@media (max-width: 560px) {
  body {
    padding-top: var(--header-height-sm);
  }

  .container {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    min-height: var(--header-height-sm);
    padding: 10px 0;
  }

  .brand {
    font-size: 1.6rem;
  }

  .menu-toggle {
    min-height: 46px;
    padding: 0 14px;
  }

  .hero-top {
    margin-bottom: 14px;
  }

  .hero-intro-block {
    gap: 14px;
  }

  .hero-image-wrap {
    border-radius: 20px;
  }

  .hero-pill {
    min-height: 46px;
    padding: 0 16px;
  }

  .statement {
    height: 200vh;
  }

  .statement-line {
    max-width: 16ch;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.18;
  }

  .services-list-head {
    margin-bottom: 24px;
  }

  .service-row {
    padding: 20px 14px;
  }

  .service-row::before {
    left: 14px;
    right: 14px;
  }

  .service-row:last-child::after {
    left: 14px;
    right: 14px;
  }

  .service-row:hover,
  .service-row:focus-visible {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 18px;
  }

  .service-row__title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .service-row__summary {
    font-size: 1rem;
  }

  .service-row__arrow {
    font-size: 1.7rem;
  }

  .about-band {
    padding-bottom: 72px;
  }

  .about-band__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .about-band__grid {
    gap: 18px;
    margin-top: 24px;
  }

  .about-band__grid p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-card,
  .contact-panel {
    padding: 22px;
  }

  .section {
    padding-top: 58px;
  }

  .section--contact {
    padding-bottom: 56px;
  }
}

/* Accessibility */
@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;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .statement-word,
  .statement-word.visible,
  .about-band__content,
  .about-band.is-visible .about-band__content,
  .about-band__marquee--intro,
  .service-row__title,
  .service-row__arrow,
  .site-header,
  .topbar::after,
  .mobile-menu::after {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
