:root {
  --ink: #141a17;
  --ink-soft: #28312c;
  --paper: #f3f1e9;
  --paper-deep: #e8e5da;
  --acid: #c1f36b;
  --line: rgba(20, 26, 23, 0.18);
  --line-on-ink: rgba(243, 241, 233, 0.35);
  --muted: #657069;
  --muted-deep: #5a625d;
  --display: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --width: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}
html {
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  font-size: 16px;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.site-frame {
  width: var(--width);
  margin: 0 auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus-visible {
  top: 1rem;
}
.site-header {
  position: relative;
  z-index: 20;
  min-height: 90px;
  color: var(--paper);
  background: var(--ink);
}
.header-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  font: 800 1.5rem/1 var(--display);
  letter-spacing: -0.08em;
  text-decoration: none;
  white-space: nowrap;
}
.brand-dot {
  color: var(--acid);
}
.brand-mark {
  position: relative;
  display: grid;
  width: 25px;
  height: 25px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  transform: rotate(45deg);
}
.brand-mark i {
  display: block;
  background: var(--acid);
}
.brand-mark i:nth-child(2) {
  background: var(--paper);
}
.brand-mark i:nth-child(3) {
  grid-column: 2;
  background: var(--acid);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.92rem;
  font-weight: 650;
}
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-links a:not(.nav-talk):hover {
  color: var(--acid);
}
.nav-talk {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(243, 241, 233, 0.45);
}
.nav-talk:hover {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}
.eyebrow {
  margin: 0 0 1rem;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.065em;
}
h1 {
  max-width: 10.5ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 8.1vw, 7rem);
  font-weight: 850;
  line-height: 0.93;
}
h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4.3vw, 4.5rem);
  font-weight: 800;
  line-height: 0.98;
}
h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 800;
  line-height: 0.98;
}
p,
li {
  line-height: 1.55;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid var(--ink);
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button--acid {
  color: var(--ink);
  background: var(--acid);
}
.button--dark {
  color: var(--paper);
  background: var(--ink);
}
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-weight: 720;
  text-decoration: none;
}
.text-link:hover {
  color: var(--muted);
}

.hero {
  min-height: 660px;
  padding: 5.2rem 0 3rem;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(410px, 0.86fr);
  align-items: center;
  gap: 2rem;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: 2rem;
}
.hero h1 span {
  color: var(--acid);
}
.hero-intro {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: rgba(243, 241, 233, 0.85);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}
.systems-proof {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line-on-ink);
}
.systems-proof h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.proof-caption {
  color: rgba(243, 241, 233, 0.8);
  font-size: 0.85rem;
}
.proof-route {
  border-left: 2px solid var(--acid);
  margin: 1.5rem 0;
}
.proof-step {
  margin: 0.5rem 0 0.5rem 1rem;
  border: 1px solid var(--line-on-ink);
}
.proof-step summary {
  padding: 0.8rem;
  cursor: pointer;
  font-weight: 700;
}
.proof-index {
  color: var(--acid);
  margin-right: 0.6rem;
}
.proof-step[open] {
  border-color: var(--acid);
}
.proof-step p {
  margin: 0;
  padding: 0 0.8rem 1rem;
  font-size: 0.9rem;
}
.proof-step summary:hover {
  background: var(--ink-soft);
}
@media (prefers-reduced-motion: no-preference) {
  .proof-index {
    animation: proof-flow 5s ease-in-out infinite;
  }
  .proof-step:nth-child(2) .proof-index {
    animation-delay: 1s;
  }
  .proof-step:nth-child(3) .proof-index {
    animation-delay: 2s;
  }
  .proof-step:nth-child(4) .proof-index {
    animation-delay: 3s;
  }
  .proof-step:nth-child(5) .proof-index {
    animation-delay: 4s;
  }
}
@keyframes proof-flow {
  50% {
    opacity: 0.45;
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: 2rem;
}
.section-heading h2 {
  max-width: 19ch;
}
.section-heading p {
  max-width: 28rem;
  margin-bottom: 2.3rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.project-art {
  width: 100%;
  margin: 0;
}
.project-art figcaption {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-window {
  max-width: 480px;
  margin-left: auto;
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(193, 243, 107, 0.65);
}
.booking-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.booking-top span {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
}
.booking-top b {
  margin-left: auto;
}
.booking-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  padding: 1rem 0;
  text-align: center;
}
.booking-days b {
  padding: 0.6rem 0;
  font-size: 0.8rem;
}
.booking-days .active {
  color: var(--paper);
  background: var(--ink);
}
.booking-grid {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  row-gap: 0.55rem;
  font-size: 0.72rem;
}
.booking-grid i {
  min-height: 28px;
  background: #d6dcd1;
}
.booking-grid .booking-slot {
  background: var(--acid);
}
.booking-grid .short {
  width: 56%;
}
.flight-art {
  align-self: end;
}
.flight-art svg {
  width: 100%;
  min-height: 220px;
}
.map-lines {
  fill: none;
  stroke: rgba(20, 26, 23, 0.32);
  stroke-width: 1.5;
}
.flight-route {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-dasharray: 7 8;
}
.flight-art circle {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 2;
}
.plane {
  fill: var(--ink);
}
.flight-art text {
  font: 700 11px var(--body);
  letter-spacing: 0.12em;
}

.offer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.offer-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
}
.big-cta {
  padding: 6.5rem 0;
  background: var(--acid);
}
.big-cta h2 {
  max-width: 18ch;
}
.hero--v2 {
  min-height: auto;
  padding: 6rem 0 4.5rem;
}
.hero--v2 h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.6vw, 4.9rem);
  line-height: 0.94;
}
.hero--v2 h1 span {
  color: var(--acid);
}
.hero-kicker {
  margin-bottom: 1.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-note {
  margin: 1.6rem 0 0;
  color: rgba(243, 241, 233, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.featured-work {
  padding: 7rem 0 1.5rem;
  background: var(--paper);
}
.featured-index {
  margin: 0;
  font: 850 clamp(2.6rem, 4.8vw, 4.4rem) / 0.95 var(--display);
  letter-spacing: -0.06em;
}
.section-aside {
  max-width: 22rem;
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: right;
}
.featured-case {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: 3.5rem 0 7.5rem;
}
.featured-copy h2 {
  max-width: 16ch;
}
.featured-copy > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.offer-rail {
  padding: 5.5rem 0;
  background: var(--paper-deep);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.offer-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 2.2rem 1.8rem 2.6rem 0;
  border-right: 1px solid var(--line);
}
.offer-card + .offer-card {
  padding-left: 1.8rem;
}
.offer-card:last-child {
  border-right: 0;
}
.offer-price {
  font: 800 clamp(2rem, 3.1vw, 3.1rem) / 1 var(--display);
  letter-spacing: -0.05em;
}
.offer-verb {
  justify-self: start;
  padding: 0.28rem 0.6rem;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer-card h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}
.offer-blurb {
  color: var(--muted-deep);
}
.offer-rail .text-link:hover {
  color: var(--muted-deep);
}
.offer-card .text-link {
  margin-top: 0.9rem;
}

.problem-frame {
  padding: 6.5rem 0;
  color: var(--paper);
  background: var(--ink);
}
.problem-frame h2 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
.problem-lead {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(243, 241, 233, 0.82);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}
.friction-list {
  display: grid;
  gap: 0;
  margin: 2.6rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(243, 241, 233, 0.28);
}
.friction-list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 2.4rem;
  border-bottom: 1px solid rgba(243, 241, 233, 0.16);
  font: 750 clamp(1.2rem, 2vw, 1.65rem) / 1.15 var(--display);
  letter-spacing: -0.02em;
}
.friction-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--acid);
}
.problem-punch {
  margin: 2.2rem 0 0;
  color: var(--acid);
  font: 850 clamp(1.6rem, 3vw, 2.7rem) / 1 var(--display);
  letter-spacing: -0.04em;
}

.differentiation {
  padding: 6.5rem 0;
  background: var(--paper);
}
.diff-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.diff-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  font: 750 1.15rem / 1.2 var(--display);
}
.diff-list span {
  color: var(--muted);
  font-weight: 850;
}

.closing-cta {
  padding: 6.5rem 0;
  background: var(--acid);
}
.closing-cta h2 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
}
.cta-lead {
  max-width: 34rem;
  margin-bottom: 1.6rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.page-hero {
  padding: 7rem 0 5rem;
  background: var(--paper);
}
.page-hero h1 {
  max-width: 11ch;
}
.secondary-hero h1 {
  max-width: 100%;
  font-size: clamp(2.8rem, 7vw, 6rem);
  overflow-wrap: anywhere;
}
.page-lead {
  max-width: 36rem;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}
.services-hero {
  padding: 7rem 0 5rem;
  background: var(--paper);
}
.services-hero h1 {
  max-width: 13ch;
}
.services-lead {
  margin: 1.5rem 0 0.4rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.services-sub {
  color: var(--muted);
  font-size: 1.05rem;
}
.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
}
.services-jumps {
  display: flex;
  gap: 0.6rem;
  font-weight: 700;
}
.services-jumps span {
  color: var(--muted);
}

.decision-rail {
  padding: 6rem 0;
  color: var(--paper);
  background: var(--ink);
}
.decision-rail-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.decision-rail-head h2 {
  max-width: 14ch;
}
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(243, 241, 233, 0.3);
}
.decision-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 2rem 1.5rem 2rem 0;
  border-right: 1px solid rgba(243, 241, 233, 0.3);
}
.decision-card + .decision-card {
  padding-left: 1.5rem;
}
.decision-card:last-child {
  border-right: 0;
}
.decision-number {
  color: var(--acid);
  font: 850 clamp(2.4rem, 4vw, 3.6rem)/1 var(--display);
  letter-spacing: -0.06em;
}
.decision-price {
  font: 800 clamp(1.7rem, 2.6vw, 2.4rem)/1 var(--display);
  letter-spacing: -0.04em;
}
.decision-tag {
  justify-self: start;
  padding: 0.25rem 0.55rem;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.decision-card h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}
.decision-intro {
  color: rgba(243, 241, 233, 0.85);
}
.decision-best {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: rgba(243, 241, 233, 0.7);
  font-size: 0.95rem;
}

.offer-spec {
  padding: 5rem 0;
  background: var(--paper);
}
.offer-spec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.offer-index {
  font: 850 clamp(1.6rem, 3vw, 2.6rem)/1 var(--display);
  letter-spacing: -0.05em;
}
.offer-price {
  font: 800 clamp(1.5rem, 2.4vw, 2.2rem)/1 var(--display);
  letter-spacing: -0.04em;
}
.offer-spec-body {
  display: grid;
  gap: 2.4rem;
  padding-top: 2.4rem;
}
.offer-block ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}
.offer-scope {
  color: var(--muted);
}
.offer-credit {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.offer-spec .button {
  margin-top: 1rem;
}

.decision-aid {
  padding: 5rem 0;
  background: var(--paper-deep);
}
.decision-aid-lead {
  margin: 0.6rem 0;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

@media (max-width: 820px) {
  .decision-grid {
    grid-template-columns: 1fr;
  }
  .decision-card,
  .decision-card + .decision-card {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(243, 241, 233, 0.3);
  }
  .decision-card:last-child {
    border-bottom: 0;
  }
  .offer-spec-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .services-hero {
    padding: 4.5rem 0 3rem;
  }
  .services-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .services-lead {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }
  .offer-index {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
}
.case-study {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(2rem, 6vw, 8rem);
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid var(--line);
}
.case-study--reverse {
  grid-template-columns: 1.12fr 0.88fr;
}
.case-copy p {
  max-width: 34rem;
  font-size: 1.05rem;
}
.case-note {
  color: var(--muted);
  font-size: 0.9rem !important;
}
.case-study .booking-art {
  padding: 2rem;
  color: var(--paper);
  background: var(--ink-soft);
}
.case-study .flight-art {
  padding: 2rem;
  background: var(--acid);
}
.legal-list {
  max-width: 45rem;
  padding-left: 1.25rem;
}
.workshop {
  padding: 6rem 0;
  color: var(--paper);
  background: var(--ink);
}
.workshop h2 {
  max-width: 13ch;
}
.workshop p:not(.eyebrow) {
  max-width: 34rem;
}
.about-hero {
  color: var(--paper);
  background: var(--ink-soft);
}
.about-story {
  padding: 7rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.about-grid h2 {
  max-width: 10ch;
}
.about-grid > div:last-child {
  font-size: 1.1rem;
}

.contact-stage {
  padding: 6rem 0;
  background: var(--paper);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}
.contact-copy h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
}
.preview-notice {
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--acid);
  background: var(--paper-deep);
  font-weight: 700;
}
.contact-small {
  max-width: 30rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.contact-form {
  padding: clamp(1.25rem, 3vw, 2.4rem);
  background: var(--ink);
  color: var(--paper);
}
.form-shell {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.field,
.form-actions {
  display: grid;
  gap: 0.4rem;
}
.field--wide,
.form-actions {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.9rem;
  font-weight: 700;
}
.field-optional {
  color: rgba(243, 241, 233, 0.6);
  font-size: 0.78rem;
  font-weight: 400;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 0;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
}
.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--acid);
}
.contact-form button {
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 0;
  color: var(--ink);
  background: var(--acid);
  font-weight: 800;
  cursor: pointer;
}
.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}
.inline-error {
  color: #ffc1b8;
}
.error-summary {
  color: #8c2820;
}
.result-card,
.error-summary {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
}
.result-card.success {
  border-color: var(--acid);
}

.site-footer {
  padding: 4.5rem 0 3rem;
  color: var(--paper);
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 0.7fr);
  gap: 2rem;
}
.case-status {
  color: var(--muted-deep);
  font-size: 0.88rem;
}
.case-facts {
  margin: 2rem 0;
}
.case-facts dt {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-weight: 750;
}
.case-facts dd {
  margin: 0.4rem 0 1.25rem;
  color: var(--muted-deep);
}
.case-study--secondary h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.principles {
  margin: 0;
  padding-left: 2rem;
  list-style-type: decimal-leading-zero;
}
.principles li {
  padding: 1rem 0 1rem 0.5rem;
  border-top: 1px solid var(--line);
}
.principles li::marker {
  font-weight: 750;
}
.principles p {
  margin: 0.4rem 0 0;
  color: var(--muted-deep);
}
.contact-guidance {
  margin: 2rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.contact-guidance ul {
  padding-left: 1.25rem;
}
.contact-form {
  align-self: start;
}
.form-intro {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}
.field-hint {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(243, 241, 233, 0.8);
}
#requested-service {
  scroll-margin-top: 2rem;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-grid section > p:not(.eyebrow) {
  max-width: 16rem;
  color: rgba(243, 241, 233, 0.65);
  font-size: 0.88rem;
}
.footer-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-list a {
  text-decoration: none;
}
.footer-list a:hover {
  color: var(--acid);
}
.footer-list small,
.footer-fine {
  color: rgba(243, 241, 233, 0.5);
  font-size: 0.75rem;
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}
@media (max-width: 820px) {
  :root {
    --width: min(100% - 32px, 1240px);
  }
  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    padding: 1rem 0;
  }
  .nav-links {
    gap: 0.8rem 1.1rem;
    font-size: 0.86rem;
  }
  .hero {
    min-height: auto;
    padding-top: 4rem;
  }
  .hero-grid,
  .section-heading,
  .contact-layout,
  .about-grid,
  .case-study,
  .case-study--reverse {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .site-header {
    min-height: 0;
  }
  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0.35rem;
    font-size: 0.76rem;
  }
  .nav-talk {
    justify-content: center;
  }
  h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }
  h2 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }
  .hero {
    padding: 3.3rem 0 2rem;
  }
  .about-story {
    padding: 4.5rem 0 1.5rem;
  }
  .footer-grid,
  .form-shell {
    grid-template-columns: 1fr;
  }
  .case-study {
    gap: 1.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .contact-stage {
    padding: 4rem 0;
  }
  .contact-form {
    padding: 1.15rem;
  }
  .big-cta {
    padding: 4.5rem 0;
  }
}
@media (max-width: 820px) {
  .featured-case {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 5.5rem;
  }
  .section-aside {
    text-align: left;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-card,
  .offer-card + .offer-card {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .offer-card:last-child {
    border-bottom: 0;
  }
  .diff-list {
    grid-template-columns: 1fr;
  }
  .hero--v2 {
    padding-top: 4.5rem;
  }
}
@media (max-width: 520px) {
  .featured-case {
    padding-bottom: 4rem;
  }
  .featured-index {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }
  .hero--v2 h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }
  .offer-price {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
  .problem-frame h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .diff-list li {
    font-size: 1.05rem;
  }
  .closing-cta {
    padding: 4.5rem 0;
  }
}
@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;
  }
}
