:root {
  --ink: #111210;
  --ink-soft: #282924;
  --paper: #f4f0e8;
  --paper-bright: #fffdf8;
  --sand: #d6a56c;
  --sand-light: #ead4b8;
  --muted: #746f66;
  --line: rgba(17, 18, 16, 0.2);
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 0.98;
}

em {
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

.preview-bar {
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.preview-bar p {
  display: flex;
  justify-content: space-between;
  width: var(--shell);
  margin: 0 auto;
  padding: 9px 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.preview-bar strong {
  color: var(--sand);
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-number {
  font-size: 2.45rem;
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.8;
}

.brand-name {
  padding-left: 10px;
  border-left: 1px solid currentColor;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.12;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 11px 18px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.nav-contact:hover {
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) 0 clamp(80px, 10vw, 145px);
}

.hero::before {
  position: absolute;
  top: -320px;
  left: 48%;
  width: 680px;
  height: 680px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  position: relative;
  align-items: center;
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
  gap: clamp(50px, 8vw, 112px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--sand);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: clamp(4rem, 7.5vw, 7.25rem);
  font-weight: 900;
  letter-spacing: -0.075em;
}

.hero h1 em {
  display: inline-block;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 38px;
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.button span {
  font-size: 1rem;
}

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

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

.button-outline {
  background: transparent;
}

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

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 9px;
}

.hero-proof {
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-proof span {
  padding: 0 7px;
  color: var(--sand);
}

.hero-visual {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 22px;
  right: -22px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--ink);
  content: "";
}

.hero-visual img {
  width: 100%;
  border: 1px solid var(--ink);
}

.orbit-note {
  position: absolute;
  margin: 0;
  padding: 8px 12px;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.orbit-note-top {
  top: -14px;
  right: 28px;
}

.orbit-note-bottom {
  bottom: -14px;
  left: 28px;
}

.orbit-card {
  position: absolute;
  top: 50%;
  left: -44px;
  width: 138px;
  padding: 17px 18px 19px;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  transform: translateY(-50%);
}

.orbit-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.orbit-card strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-transform: uppercase;
}

.statement {
  background: var(--sand);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.statement-inner {
  display: grid;
  align-items: baseline;
  padding: 55px 0;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
}

.section-index {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement-copy {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

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

.services {
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  display: grid;
  align-items: start;
  margin-bottom: 68px;
  grid-template-columns: 0.8fr 2.1fr 1fr;
  gap: clamp(30px, 5vw, 75px);
}

.section-heading h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 5.6rem);
  letter-spacing: -0.065em;
}

.section-heading > p:last-child {
  margin: 5px 0 0;
  color: #c3bdb2;
}

.section-heading-light .eyebrow > span {
  background: var(--sand);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid var(--paper-bright);
}

.service-card-accent {
  background: var(--sand);
  border-color: var(--sand);
}

.card-number {
  margin-bottom: 76px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-card h3 {
  max-width: 470px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.055em;
}

.service-card > p:not(.card-number) {
  max-width: 500px;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.channels {
  padding: clamp(90px, 12vw, 170px) 0;
  background: var(--paper-bright);
}

.channels-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
}

.channels-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.channels-intro h2 {
  margin: 30px 0;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  letter-spacing: -0.07em;
}

.channels-intro p:last-child {
  max-width: 430px;
  color: var(--muted);
  font-size: 1.08rem;
}

.channel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.channel-list li {
  display: grid;
  min-height: 132px;
  align-items: center;
  padding: 15px 4px;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
}

.channel-list span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.channel-list strong {
  font-size: clamp(2.2rem, 4.4vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.channel-list i {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1.1rem;
  font-style: normal;
}

.about {
  padding: clamp(90px, 12vw, 170px) 0;
  background: var(--sand-light);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 11vw, 165px);
}

.about-kicker {
  margin: 55px 0 28px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-title h2 {
  margin: 0;
  font-size: clamp(4.3rem, 8.5vw, 8.8rem);
  letter-spacing: -0.085em;
}

.lead-copy {
  margin-bottom: 28px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.about-copy > p:nth-child(2) {
  color: #4e4a43;
  font-size: 1.03rem;
}

.fact-list {
  margin: 55px 0 42px;
  border-top: 1px solid var(--ink);
}

.fact-list div {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 120px 1fr;
  gap: 22px;
}

.fact-list dt {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  font-size: 0.92rem;
}

.why-section {
  padding: clamp(80px, 10vw, 135px) 0;
  color: var(--paper-bright);
  background: var(--ink);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 10vw, 150px);
}

.why-grid > div:first-child h2 {
  max-width: 430px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.why-points article {
  display: grid;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  grid-template-columns: 45px 0.8fr 1.2fr;
  gap: 24px;
}

.why-points article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.why-points span {
  color: var(--sand);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.why-points h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.why-points p {
  margin: 0;
  color: #c3bdb2;
  font-size: 0.93rem;
}

.questions {
  padding: clamp(90px, 12vw, 165px) 0;
  background: var(--paper);
}

.question-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 150px);
}

.question-intro h2 {
  max-width: 500px;
  margin: 28px 0 0;
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  letter-spacing: -0.07em;
}

.accordion-list {
  border-top: 1px solid var(--ink);
}

.accordion-list details {
  border-bottom: 1px solid var(--ink);
}

.accordion-list summary {
  display: grid;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion-list details[open] summary span {
  transform: rotate(45deg);
}

.accordion-list details p {
  max-width: 560px;
  padding: 0 55px 28px 0;
  color: var(--muted);
}

.contact-band {
  padding: clamp(80px, 10vw, 125px) 0;
  background: var(--sand);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact-band-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 10vw, 145px);
}

.contact-band h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  letter-spacing: -0.075em;
}

.contact-actions {
  border-top: 1px solid var(--ink);
}

.contact-actions a,
.direct-contact a {
  display: grid;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
}

.contact-actions a:hover strong,
.direct-contact a:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-actions span,
.direct-contact a span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions strong,
.direct-contact a strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.contact-actions i,
.direct-contact a i {
  font-size: 1.1rem;
  font-style: normal;
}

.site-footer {
  padding: 72px 0 24px;
  color: var(--paper-bright);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  padding-bottom: 65px;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.brand-footer {
  margin-bottom: 25px;
  color: var(--paper-bright);
}

.footer-grid > div:first-child > p {
  max-width: 310px;
  margin: 0;
  color: #aaa399;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links p {
  margin-bottom: 9px;
  color: var(--sand);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  color: #ded9d0;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: #8f8a82;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom strong {
  color: var(--sand);
}

.footer-bottom span {
  margin-left: 10px;
}

/* Contact page */
.contact-hero {
  padding: clamp(80px, 10vw, 138px) 0;
}

.contact-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 11vw, 165px);
}

.contact-heading h1 {
  margin-bottom: 32px;
  font-size: clamp(4.5rem, 9.5vw, 9.5rem);
  letter-spacing: -0.085em;
}

.contact-heading > p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}

.direct-contact {
  padding: clamp(28px, 4vw, 48px);
  background: var(--sand);
  border: 1px solid var(--ink);
  box-shadow: 18px 18px 0 var(--ink);
}

.contact-card-label {
  margin-bottom: 45px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact h2 {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.055em;
}

.direct-contact > p:nth-child(3) {
  margin-bottom: 38px;
}

.concept-form-section {
  padding: clamp(90px, 11vw, 155px) 0;
  color: var(--paper-bright);
  background: var(--ink);
}

.concept-form-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 11vw, 165px);
}

.form-intro h2 {
  max-width: 450px;
  margin: 28px 0;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  letter-spacing: -0.07em;
}

.form-intro p:last-child {
  max-width: 480px;
  color: #bdb7ad;
}

.preview-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper-bright);
}

.preview-form h3 {
  margin-bottom: 42px;
  font-size: 1.5rem;
}

.field-row {
  margin-bottom: 28px;
}

.field-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field-row input {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  font: inherit;
  opacity: 1;
}

.field-row input::placeholder {
  color: #77736b;
  opacity: 1;
}

.preview-form button {
  width: 100%;
  min-height: 52px;
  margin-top: 10px;
  color: var(--ink);
  background: var(--sand-light);
  border: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 1;
}

.preview-form > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-return {
  padding: 65px 0;
  background: var(--sand);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact-return-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-return p {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.2;
}

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

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(86%, 540px);
    margin: 15px auto 0;
  }

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

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .about-grid,
  .why-grid,
  .question-grid,
  .contact-band-grid,
  .contact-hero-grid,
  .concept-form-grid {
    grid-template-columns: 1fr;
  }

  .about-title h2 {
    font-size: clamp(4.3rem, 16vw, 8rem);
  }

  .about-copy,
  .why-points,
  .accordion-list,
  .contact-actions,
  .direct-contact,
  .preview-form {
    max-width: 720px;
    width: 100%;
    margin-left: auto;
  }

  .contact-heading {
    max-width: 800px;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .preview-bar p {
    justify-content: center;
    text-align: center;
  }

  .preview-bar span {
    display: none;
  }

  .header-inner {
    min-height: 134px;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
  }

  .primary-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .primary-nav a {
    font-size: 0.61rem;
  }

  .nav-contact {
    padding: 8px 12px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 6.3rem);
  }

  .hero-grid {
    gap: 70px;
  }

  .orbit-card {
    left: -12px;
  }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading,
  .service-grid,
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

  .section-heading h2 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .service-card {
    min-height: 390px;
  }

  .card-number {
    margin-bottom: 55px;
  }

  .channels-grid {
    gap: 55px;
  }

  .channels-intro {
    position: static;
  }

  .channel-list li {
    min-height: 100px;
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
  }

  .channel-list strong {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .channel-list i {
    width: 36px;
    height: 36px;
  }

  .why-points article {
    grid-template-columns: 36px 1fr;
  }

  .why-points article p {
    grid-column: 2;
  }

  .contact-band h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .contact-actions a,
  .direct-contact a {
    grid-template-columns: 62px 1fr auto;
    gap: 10px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom span {
    display: block;
    margin: 5px 0 0;
  }

  .contact-heading h1 {
    font-size: clamp(4.2rem, 20vw, 7.5rem);
  }

  .direct-contact {
    box-shadow: 10px 10px 0 var(--ink);
  }

  .contact-return-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .primary-nav a {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .nav-contact {
    padding: 7px 8px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.7rem);
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-visual {
    width: calc(100% - 18px);
  }

  .hero-visual::before {
    right: -12px;
    top: 12px;
  }

  .orbit-card {
    width: 116px;
    padding: 12px;
  }

  .orbit-card strong {
    font-size: 0.62rem;
  }

  .service-card h3 {
    font-size: 2.15rem;
  }

  .about-title h2 {
    font-size: 4.4rem;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-actions a,
  .direct-contact a {
    grid-template-columns: 1fr auto;
  }

  .contact-actions a span,
  .direct-contact a span {
    grid-column: 1 / -1;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

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

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