*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --black: #070808;
  --ink: #0d0f12;
  --panel: #15181d;
  --panel-2: #20242b;
  --line: rgba(244, 243, 239, 0.12);
  --line-gold: rgba(200, 169, 110, 0.28);
  --white: #f4f3ef;
  --muted: rgba(244, 243, 239, 0.68);
  --faint: rgba(244, 243, 239, 0.42);
  --gold: #c8a96e;
  --gold-light: #e2c98a;
  --safety: #d9772f;
  --radius: 6px;
  --container: 1180px;
  --header-height: 112px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(200, 169, 110, 0.08), transparent 34rem),
    linear-gradient(180deg, #070808 0%, #0a0b0d 44%, #070808 100%);
  color: var(--white);
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button, input, select, textarea {
  font: inherit;
}

main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 112px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3rem;
  background: rgba(7, 8, 8, 0.88);
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  gap: 0;
  min-width: 0;
  width: 100vw;
  margin-left: -3rem;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  max-width: none;
  height: 104px;
  object-fit: none;
  object-position: left center;
  filter: drop-shadow(0 0 12px rgba(200, 169, 110, 0.12));
}

.site-nav,
.site-header > .nav-cta,
.menu-button {
  z-index: 2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.site-nav a {
  color: rgba(244, 243, 239, 0.68);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.btn-primary,
.btn-ghost,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary,
.nav-cta {
  border: 1px solid transparent;
  background: var(--gold);
  color: #080909;
  padding: 0.85rem 1.35rem;
}

.btn-primary {
  padding-inline: 1.9rem;
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(244, 243, 239, 0.24);
  background: transparent;
  color: var(--white);
  padding: 0.85rem 1.9rem;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 243, 239, 0.18);
  border-radius: var(--radius);
  background: rgba(244, 243, 239, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button {
  gap: 4px;
  flex-direction: column;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

#hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 169, 110, 0.16);
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.99) 0%, rgba(7, 8, 8, 0.96) 23%, rgba(7, 8, 8, 0.74) 36%, rgba(7, 8, 8, 0.38) 58%, rgba(7, 8, 8, 0.08) 100%),
    repeating-linear-gradient(90deg, rgba(244, 243, 239, 0.026) 0 1px, transparent 1px 86px);
  pointer-events: none;
  z-index: 1;
}

#hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 8, 0.88));
  pointer-events: none;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 6rem 3rem;
  max-width: 650px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: auto;
  background: url("photos/hero-rope-access-glass.png") center right / cover no-repeat;
}

.building-diagram {
  display: none;
}

.hero-eyebrow,
.page-eyebrow,
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.page-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
}

.section-eyebrow {
  margin-bottom: 0.72rem;
}

h1.hero-title,
.page-title,
.section-title,
.about-title,
.service-name,
.contact-details-title,
.form-section-title,
.case-title,
.comp-title,
.footer-logo,
.stat-num,
.value-name,
.person-name,
.irata-level,
.role-level,
.map-label,
.cta-strip h2,
.cta-banner h2,
.join-strip h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

h1.hero-title {
  margin: 1.15rem 0 1.45rem;
  font-size: clamp(4rem, 7.6vw, 7.9rem);
  line-height: 0.88;
  text-transform: uppercase;
}

h1.hero-title span,
.page-title span,
.about-title span,
.section-title span,
.cta-strip h2 span,
.cta-banner h2 span,
.join-strip h2 span,
.comp-title span {
  color: var(--gold);
}

.hero-sub,
.page-sub {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.hero-sub {
  margin: 0 0 2.2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 590px);
  margin-top: 2.2rem;
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 8, 8, 0.36);
  backdrop-filter: blur(12px);
}

.hstat {
  padding: 1.1rem 1.2rem;
  border-right: 1px solid rgba(200, 169, 110, 0.18);
}

.hstat:last-child {
  border-right: 0;
}

.hstat-num {
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.hstat-label,
.stat-label,
.pstat-label,
.case-meta-label {
  color: var(--faint);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 1.15rem 3rem;
  background: #111419;
  border-bottom: 1px solid rgba(244, 243, 239, 0.08);
}

.trust-label {
  color: var(--faint);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(244, 243, 239, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

#services,
.services-section,
.story-section,
.people-section,
.cases-section,
.testimonials-section,
.hs-section,
.roles-section,
.faq-section {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 6rem 3rem;
}

.page-hero {
  position: relative;
  padding: 6.5rem 3rem 5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 243, 239, 0.08);
}

.page-hero.photo-hero {
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-services .page-hero.photo-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 8, 8, 1) 0%, rgba(7, 8, 8, 1) 66%, rgba(7, 8, 8, 0.94) 73%, rgba(7, 8, 8, 0.58) 84%, rgba(7, 8, 8, 0.16) 94%, transparent 100%),
    url("photos/Apaintbest.jpeg");
  background-position: center center, right 45%;
  background-size: 100% 100%, auto 120%;
}

.page-health-safety .page-hero.photo-hero {
  background-image: url("photos/A&Nhangar.jpeg");
  background-position: 85% center;
  background-size: auto 100%;
}

.page-work-with-us .page-hero.photo-hero {
  background-image:
    linear-gradient(90deg, rgba(7, 8, 8, 1) 0%, rgba(7, 8, 8, 1) 45%, rgba(7, 8, 8, 0.9) 54%, rgba(7, 8, 8, 0.54) 66%, rgba(7, 8, 8, 0.16) 80%, transparent 100%),
    url("photos/A&Caa.jpeg");
  background-position: center center, 94% center;
  background-size: 100% 100%, auto 100%;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 243, 239, 0.035), transparent 58%);
  pointer-events: none;
}

.page-hero.photo-hero::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.99) 0%, rgba(7, 8, 8, 0.96) 23%, rgba(7, 8, 8, 0.74) 36%, rgba(7, 8, 8, 0.38) 58%, rgba(7, 8, 8, 0.08) 100%),
    repeating-linear-gradient(90deg, rgba(244, 243, 239, 0.026) 0 1px, transparent 1px 86px);
}

.page-services .page-hero.photo-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.9) 48%, rgba(7, 8, 8, 0.62) 62%, rgba(7, 8, 8, 0.26) 78%, rgba(7, 8, 8, 0.06) 100%),
    repeating-linear-gradient(90deg, rgba(244, 243, 239, 0.026) 0 1px, transparent 1px 86px);
}

.page-health-safety .page-hero.photo-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 1) 0%, rgba(7, 8, 8, 0.97) 23%, rgba(7, 8, 8, 0.72) 32%, rgba(7, 8, 8, 0.28) 48%, rgba(7, 8, 8, 0.08) 100%),
    repeating-linear-gradient(90deg, rgba(244, 243, 239, 0.026) 0 1px, transparent 1px 86px);
}

.page-work-with-us .page-hero.photo-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.96) 0%, rgba(7, 8, 8, 0.92) 38%, rgba(7, 8, 8, 0.64) 52%, rgba(7, 8, 8, 0.24) 70%, rgba(7, 8, 8, 0.06) 100%),
    repeating-linear-gradient(90deg, rgba(244, 243, 239, 0.026) 0 1px, transparent 1px 86px);
}

.page-hero.photo-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 8, 0.88));
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin-left: auto;
  margin-right: auto;
}

.page-title {
  margin: 1rem auto 1.3rem;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  line-height: 0.9;
}

.section-title {
  margin: 0 0 2.4rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.94;
}

.services-grid,
.values-grid,
.cases-grid,
.testimonials-grid,
.hs-pillars,
.docs-grid,
.perks-grid,
.roles-grid,
.faq-grid,
.irata-grid,
.founders-grid,
.comparison-grid,
.stats-strip {
  display: grid;
  gap: 1px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.service-card,
.value-card,
.case-card,
.tcard,
.hs-pillar,
.doc-card,
.perk,
.role-card,
.faq-item,
.irata-card,
.person-card,
.comp-card,
.about-card,
.response-note,
.story-visual {
  background: rgba(16, 18, 22, 0.96);
  border: 1px solid rgba(200, 169, 110, 0.13);
  border-radius: var(--radius);
}

.services-grid .service-card {
  border: 1px solid rgba(200, 169, 110, 0.13);
  border-radius: var(--radius);
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.services-grid .service-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(180px, 0.92fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 1.4rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  padding: 2.3rem 1.8rem;
}

.service-card::after,
.case-card::after,
.tcard::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover::after,
.case-card:hover::after,
.tcard:hover::after {
  transform: scaleX(1);
}

.services-grid .service-card::after {
  transform: none;
}

.service-icon,
.contact-icon,
.doc-icon,
.hs-pillar-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 169, 110, 0.32);
  border-radius: var(--radius);
  background: rgba(200, 169, 110, 0.06);
  color: var(--gold);
}

.service-icon svg,
.contact-icon svg,
.doc-icon svg,
.hs-pillar-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-image img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: invert(72%) sepia(29%) saturate(560%) hue-rotate(5deg) brightness(92%) contrast(92%);
}

.hs-pillar-icon.is-image,
.doc-icon.is-image {
  background: #f7f5ef;
  border-color: rgba(200, 169, 110, 0.22);
  color: #070808;
}

.hs-pillar-icon.is-image img,
.doc-icon.is-image img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: none;
}

.services-grid .service-icon {
  width: 100%;
  height: 116px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: var(--radius);
  background: #f7f5ef;
}

.services-grid .service-card-wide .service-icon {
  grid-row: 1 / span 2;
  height: 100%;
  min-height: 170px;
  margin-bottom: 0;
}

.services-grid .service-icon-image img {
  width: 150px;
  height: 92px;
  object-fit: contain;
  filter: none;
}

.service-name {
  margin: 1rem 0 0.7rem;
  font-size: 1.55rem;
  line-height: 1;
}

.services-grid .service-name {
  margin: 0 0 0.65rem;
}

.services-grid .service-card-wide .service-name,
.services-grid .service-card-wide .service-desc {
  grid-column: 2;
}

.services-grid .service-card-wide .service-name {
  align-self: end;
}

.service-callout {
  grid-column: span 2;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1rem 1.5rem 0.2rem;
  background: transparent;
}

.service-callout-title {
  max-width: 450px;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.95;
}

.service-callout p {
  max-width: 470px;
  margin: 0;
  color: rgba(244, 243, 239, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.service-desc,
.service-body,
.story-body,
.about-body,
.value-desc,
.case-desc,
.tcard-text,
.hs-body,
.hs-pillar-desc,
.doc-desc,
.culture-body,
.role-desc,
.faq-a,
.comp-item-text,
.person-bio,
.irata-desc,
.response-note,
.form-section-sub,
.footer-tagline,
.pillar-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

#about,
.values-section,
.why-rope,
.hs-process,
.hs-docs,
.culture-section,
.apply-section,
.map-section {
  background: #12151a;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
  border-bottom: 1px solid rgba(200, 169, 110, 0.09);
}

#about,
.story-section,
.culture-section,
.apply-section,
.contact-section,
.hs-intro,
.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 5rem;
}

#about {
  width: 100%;
  margin-inline: 0;
  padding: 6rem max(3rem, calc((100vw - var(--container)) / 2 + 3rem));
}

.about-title {
  margin: 0 0 1.35rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  border-left: 2px solid var(--gold);
  padding: 0.45rem 0 0.45rem 1rem;
}

.pillar-name,
.contact-item-label,
.footer-col-title,
.case-tag,
.role-type,
.role-badge,
.person-role,
.tag,
.doc-name,
.hs-pillar-name,
.perk-name,
.value-num,
.story-attr,
.tcard-role,
.irata-name {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-right {
  display: grid;
  gap: 1rem;
}

.about-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  padding: 1.55rem;
}

.about-card-num {
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.site-photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: var(--radius);
  background: #0c0e11;
}

.site-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-photo::after,
.service-visual.is-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 8, 8, 0.24));
  pointer-events: none;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.about-photo-large,
.culture-photo {
  min-height: 340px;
}

.culture-photo {
  margin-bottom: 1.5rem;
}

.about-card-label {
  margin: 0.35rem 0;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-banner,
.cta-strip,
.join-strip {
  position: relative;
  padding: 5.5rem 3rem;
  text-align: center;
}

.cta-banner::before,
.cta-strip::before,
.join-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(200, 169, 110, 0.09), transparent 70%);
  pointer-events: none;
}

.cta-banner > *,
.cta-strip > *,
.join-strip > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2,
.cta-strip h2,
.join-strip h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.cta-banner p,
.cta-strip p,
.join-strip p {
  width: min(100%, 560px);
  margin: 0 auto 2rem;
  color: var(--muted);
  line-height: 1.72;
}

.cta-actions {
  justify-content: center;
}

.story-visual {
  position: relative;
  padding: 3rem;
}

.story-visual::before {
  content: "\"";
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  color: rgba(200, 169, 110, 0.18);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 8rem;
  line-height: 1;
}

.story-visual-photo {
  min-height: 430px;
  padding: 0;
  overflow: hidden;
}

.story-visual-photo::before {
  display: none;
}

.story-visual-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.story-quote {
  position: relative;
  margin: 0 0 1.4rem;
  color: rgba(244, 243, 239, 0.82);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.72;
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  padding: 2rem 1.6rem;
}

.value-num {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  opacity: 0.32;
}

.value-name {
  margin-bottom: 0.6rem;
  color: var(--white);
  font-size: 1.4rem;
}

.stats-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  padding: 0;
  background: rgba(200, 169, 110, 0.1);
  border-top: 1px solid rgba(200, 169, 110, 0.12);
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: #090a0c;
}

.stat-num {
  color: var(--gold);
  font-size: 3.4rem;
  line-height: 1;
}

.service-block {
  padding: 4.3rem 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.service-block:last-child {
  border-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-num {
  color: rgba(200, 169, 110, 0.18);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 5.5rem;
  line-height: 0.85;
}

.service-block .service-name {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.service-features,
.comp-list,
.footer-links {
  display: grid;
  gap: 0.65rem;
}

.service-feature,
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(244, 243, 239, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-feature::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.service-visual {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(200, 169, 110, 0.14);
  border-radius: var(--radius);
  background: rgba(16, 18, 22, 0.98);
}

.service-visual.is-photo {
  position: relative;
  min-height: 360px;
  padding: 0;
  place-items: stretch;
  overflow: hidden;
}

.service-visual.is-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-visual-icon {
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 4.6rem;
  letter-spacing: 0.08em;
  opacity: 0.42;
}

.service-visual-icon.is-image {
  width: 100%;
  min-height: 210px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: var(--radius);
  background: #f7f5ef;
  opacity: 1;
}

.service-visual-icon.is-image img {
  width: 180px;
  height: 112px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.service-photo-row {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 0 5.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-photo-row .site-photo {
  min-height: 240px;
}

.why-rope,
.values-section,
.hs-process,
.hs-docs,
.roles-section,
.faq-section,
.testimonials-section,
.cases-section,
.people-section,
.irata-section,
.contact-section {
  padding-left: 3rem;
  padding-right: 3rem;
}

.why-rope,
.hs-process,
.hs-docs,
.values-section,
.irata-section {
  width: 100%;
  margin-inline: 0;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.why-rope > *,
.hs-process > *,
.hs-docs > *,
.values-section > *,
.irata-section > * {
  width: min(100%, var(--container));
  margin-left: auto;
  margin-right: auto;
}

.comparison-grid,
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.comp-card {
  padding: 2rem;
}

.comp-card.highlight {
  border-color: rgba(200, 169, 110, 0.42);
}

.hs-photo-card {
  min-height: 320px;
  margin-top: 1.4rem;
}

.comp-title {
  margin-bottom: 1.2rem;
  font-size: 1.65rem;
}

.comp-tick {
  min-width: 2.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.comp-cross {
  min-width: 2.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(244, 243, 239, 0.34);
}

.cases-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-card {
  position: relative;
  overflow: hidden;
}

.case-card.featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
}

.case-image {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
}

.case-image-icon {
  font-size: 3.5rem;
  opacity: 0.62;
}

.case-image-label {
  margin-top: 0.6rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-content {
  padding: 1.55rem;
}

.case-title {
  margin: 0.6rem 0 0.7rem;
  font-size: 1.65rem;
  line-height: 1;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
}

.case-meta-val {
  margin-top: 0.22rem;
  color: rgba(244, 243, 239, 0.78);
  font-size: 0.84rem;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tcard {
  position: relative;
  padding: 1.8rem;
}

.tcard.featured {
  grid-column: span 2;
}

.tcard-quote-mark {
  color: rgba(200, 169, 110, 0.3);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 4rem;
  line-height: 0.8;
}

.tcard-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.14);
  color: var(--gold);
  font-weight: 700;
}

.tcard-name {
  font-weight: 700;
}

.people-section {
  width: min(100%, var(--container));
}

.founders-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.person-card {
  overflow: hidden;
}

.person-photo {
  min-height: 280px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(200, 169, 110, 0.12), transparent 60%),
    linear-gradient(135deg, #171b22, #0f1115);
}

.person-photo-placeholder {
  text-align: center;
}

.photo-label {
  color: rgba(244, 243, 239, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.person-info {
  padding: 2rem;
}

.person-name {
  margin-bottom: 0.2rem;
  font-size: 2rem;
}

.person-tags,
.person-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.tag {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: var(--radius);
  background: rgba(200, 169, 110, 0.06);
}

.pstat {
  min-width: 90px;
  padding: 0.75rem;
  border: 1px solid rgba(200, 169, 110, 0.14);
  border-radius: var(--radius);
}

.pstat-num {
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.irata-grid,
.hs-pillars,
.docs-grid,
.perks-grid,
.roles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.irata-card,
.hs-pillar,
.doc-card,
.perk {
  padding: 1.7rem;
}

.irata-level {
  color: var(--gold);
  font-size: 2rem;
}

.hs-intro {
  margin-bottom: 3rem;
}

.hs-commitment {
  padding: 2rem;
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 8, 8, 0.42);
}

.hs-commitment-title {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-steps {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-step {
  position: relative;
}

.step-dot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--gold);
  color: #080909;
  font-weight: 800;
}

.step-name {
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.step-desc {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.culture-section,
.apply-section {
  width: 100%;
  margin-inline: 0;
  padding: 5.5rem max(3rem, calc((100vw - var(--container)) / 2 + 3rem));
}

.roles-grid {
  margin-top: 2rem;
}

.role-card {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr auto;
  gap: 1.2rem;
  align-items: start;
  padding: 1.45rem;
}

.role-level {
  color: var(--white);
  font-size: 1.5rem;
}

.role-badge {
  align-self: start;
  padding: 0.45rem 0.62rem;
  border: 1px solid rgba(200, 169, 110, 0.24);
  border-radius: var(--radius);
  background: rgba(200, 169, 110, 0.07);
}

.apply-form,
.enquiry-form {
  display: grid;
  gap: 1.1rem;
}

.contact-section {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 6rem 3rem;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-details {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.contact-details-title,
.form-section-title {
  margin-bottom: 1.4rem;
  font-size: 2rem;
  line-height: 1;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.contact-item-value {
  color: rgba(244, 243, 239, 0.82);
  line-height: 1.55;
}

.contact-item-value a {
  text-decoration: none;
}

.contact-item-value a:hover {
  color: var(--gold);
}

.contact-divider {
  height: 1px;
  margin: 1.8rem 0;
  background: rgba(200, 169, 110, 0.14);
}

.response-note {
  padding: 1.3rem;
}

.response-note strong {
  color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-label {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(244, 243, 239, 0.14);
  border-radius: var(--radius);
  outline: none;
  background: rgba(244, 243, 239, 0.045);
  color: var(--white);
  padding: 0.78rem 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(200, 169, 110, 0.62);
  background: rgba(244, 243, 239, 0.065);
}

.form-select option {
  background: #15181d;
}

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

.check-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.76rem 0.9rem;
  border: 1px solid rgba(244, 243, 239, 0.14);
  border-radius: var(--radius);
  background: rgba(244, 243, 239, 0.045);
  color: rgba(244, 243, 239, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.check-option:hover {
  border-color: rgba(200, 169, 110, 0.42);
  background: rgba(244, 243, 239, 0.065);
}

.check-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.check-option:has(input:checked) {
  border-color: rgba(200, 169, 110, 0.62);
  color: var(--white);
}

.other-service-field[hidden] {
  display: none;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.form-privacy {
  max-width: 330px;
  color: var(--faint);
  font-size: 0.76rem;
  line-height: 1.55;
}

.map-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(200, 169, 110, 0.035) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(-45deg, rgba(244, 243, 239, 0.018) 0 1px, transparent 1px 42px);
}

.photo-map {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.78), rgba(7, 8, 8, 0.18)),
    url("photos/building-wash.jpeg") center center / cover no-repeat;
}

.photo-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 8, 0.42));
  pointer-events: none;
}

.map-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-pin {
  font-size: 2.6rem;
}

.map-label {
  margin-top: 0.55rem;
  color: var(--gold);
  font-size: 1.6rem;
}

.map-sub {
  color: var(--faint);
  font-size: 0.86rem;
}

.faq-item {
  padding: 1.4rem;
}

.faq-q {
  margin-bottom: 0.65rem;
  font-weight: 700;
  line-height: 1.45;
}

footer {
  background: #050606;
  border-top: 1px solid rgba(200, 169, 110, 0.14);
  padding: 3rem;
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto 2.2rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.4rem;
}

.footer-logo {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 1.4rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(244, 243, 239, 0.55);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(244, 243, 239, 0.08);
}

.footer-copy {
  color: rgba(244, 243, 239, 0.34);
  font-size: 0.74rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up-1,
.fade-up-2,
.fade-up-3,
.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-actions,
.hero-stats {
  animation: fadeUp 0.62s ease both;
}

.fade-up-2,
.hero-title {
  animation-delay: 0.12s;
}

.fade-up-3,
.hero-sub {
  animation-delay: 0.22s;
}

.hero-actions {
  animation-delay: 0.3s;
}

.hero-stats {
  animation-delay: 0.38s;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding-inline: 1.5rem;
  }

  .brand {
    width: 100%;
    margin-left: -1.5rem;
  }

  .brand-mark {
    height: 98px;
  }

  .site-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    z-index: 45;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.5rem 1.4rem;
    background: rgba(7, 8, 8, 0.98);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    backdrop-filter: blur(18px);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    padding: 0.85rem 0;
    color: rgba(244, 243, 239, 0.72);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    text-decoration: none;
  }

  .mobile-menu a.active {
    color: var(--gold);
  }

  .mobile-menu .nav-cta {
    width: fit-content;
    margin-top: 0.5rem;
    font-family: "Barlow", Arial, sans-serif;
    font-size: 0.78rem;
  }

  #hero {
    grid-template-columns: 1fr;
  }

  #hero::before {
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.97) 0%, rgba(7, 8, 8, 0.84) 58%, rgba(7, 8, 8, 0.42) 100%),
      repeating-linear-gradient(90deg, rgba(244, 243, 239, 0.026) 0 1px, transparent 1px 86px);
  }

  .hero-text {
    min-height: calc(100vh - var(--header-height));
    padding: 5.2rem 3rem;
  }

  .hero-visual {
    opacity: 0.72;
  }

  .values-grid,
  .services-grid,
  .cases-grid,
  .testimonials-grid,
  .irata-grid,
  .hs-pillars,
  .docs-grid,
  .perks-grid,
  .roles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid .service-card-wide,
  .service-callout {
    grid-column: span 2;
  }

  .service-photo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 3rem 5.5rem;
  }

  .case-card.featured,
  .tcard.featured {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding-inline: 1rem;
  }

  .brand {
    flex: 1 1 auto;
    width: auto;
    max-width: calc(100% - 54px);
    margin-left: -1rem;
  }

  .brand-mark {
    width: 100%;
    max-width: none;
    height: 64px;
    object-fit: cover;
    object-position: left center;
  }

  .menu-button {
    flex: 0 0 44px;
  }

  .site-header > .nav-cta {
    display: none;
  }

  .hero-text {
    padding: 4.2rem 1.2rem 3rem;
  }

  .hero-visual {
    background-position: 66% center;
  }

  h1.hero-title {
    font-size: clamp(2.75rem, 11.6vw, 3.35rem);
    line-height: 0.92;
    overflow-wrap: break-word;
  }

  .hero-eyebrow,
  .page-eyebrow,
  .section-eyebrow {
    align-items: flex-start;
    max-width: 100%;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
    white-space: normal;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hstat {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  }

  .hstat:last-child {
    border-bottom: 0;
  }

  .trust-bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 1.2rem;
    gap: 0.9rem;
  }

  .trust-items {
    gap: 0.75rem 1.2rem;
  }

  #services,
  .services-section,
  .story-section,
  .people-section,
  .cases-section,
  .testimonials-section,
  .hs-section,
  .roles-section,
  .faq-section,
  .contact-section,
  .why-rope,
  .values-section,
  .hs-process,
  .hs-docs,
  .irata-section {
    padding: 3.5rem 1.2rem;
  }

  .page-hero {
    padding: 3.8rem 1.2rem 3rem;
  }

  .page-title {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    line-height: 1.03;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .section-title,
  .about-title,
  .cta-strip h2,
  .cta-banner h2,
  .join-strip h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.05;
    max-width: 100%;
  }

  .hero-sub,
  .page-sub,
  .service-body,
  .service-desc {
    max-width: 100%;
  }

  .hero-text,
  .page-hero > *,
  .service-block > *,
  .culture-section > *,
  .contact-section > *,
  .hs-intro > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero-sub,
  .page-sub,
  .service-body,
  .culture-body,
  .apply-intro,
  .form-section-sub {
    width: 100%;
    max-width: calc(100vw - 2.4rem);
    overflow-wrap: break-word;
  }

  .service-block .service-name {
    max-width: calc(100vw - 2.4rem);
    font-size: clamp(1.85rem, 9.4vw, 2.55rem);
    overflow-wrap: break-word;
  }

  #about,
  .culture-section,
  .apply-section {
    padding: 3.5rem 1.2rem;
  }

  #about,
  .story-section,
  .culture-section,
  .apply-section,
  .contact-section,
  .hs-intro,
  .service-block {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .about-pillars,
  .about-cards-row,
  .comparison-grid,
  .form-row,
  .faq-grid,
  .founders-grid,
  .values-grid,
  .services-grid,
  .cases-grid,
  .testimonials-grid,
  .irata-grid,
  .hs-pillars,
  .docs-grid,
  .perks-grid,
  .roles-grid,
  .process-steps,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card-wide,
  .service-callout {
    grid-column: auto;
  }

  .services-grid .service-card-wide {
    display: flex;
  }

  .services-grid .service-card-wide .service-icon {
    height: 116px;
    min-height: 0;
    margin-bottom: 1.2rem;
  }

  .services-grid .service-card-wide .service-name,
  .services-grid .service-card-wide .service-desc {
    grid-column: auto;
  }

  .service-callout {
    min-height: auto;
    padding: 1.2rem 0.2rem;
  }

  .case-card.featured,
  .tcard.featured {
    grid-column: auto;
    display: block;
  }

  .case-meta {
    grid-template-columns: 1fr;
  }

  .service-block {
    padding: 2.6rem 0;
  }

  .service-block.reverse {
    direction: ltr;
  }

  .service-visual {
    min-height: 180px;
  }

  .service-visual.is-photo,
  .service-visual.is-photo img,
  .story-visual-photo,
  .story-visual-photo img {
    min-height: 240px;
  }

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

  .service-photo-row {
    grid-template-columns: 1fr;
    padding: 0 1.2rem 3.5rem;
  }

  .about-photo-large,
  .culture-photo,
  .hs-photo-card,
  .photo-map {
    min-height: 240px;
  }

  .role-card {
    grid-template-columns: 1fr;
  }

  .contact-details {
    position: static;
  }

  .form-submit-row,
  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-checklist {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-ghost,
  .nav-cta {
    width: 100%;
  }

  footer {
    padding: 2.5rem 1.2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }
}
