.service-detail,
.project-detail,
.secondary-band a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 24px;
  color: inherit;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-copy {
  align-self: end;
}

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

.service-detail::after,
.project-detail::after,
.secondary-band a::after {
  content: "↗";
  transition: transform 180ms ease;
}

.service-detail:hover::after,
.project-detail:hover::after,
.secondary-band a:hover::after {
  transform: translate(3px, -3px);
}

.project-info .project-detail {
  justify-self: end;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
}

.project-info .project-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.project-info .project-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-page {
  background: var(--paper);
  color: var(--black);
}

.seo-page .site-header {
  color: var(--white);
}

.seo-page-main {
  min-height: 100vh;
}

.seo-hero {
  position: relative;
  min-height: 780px;
  padding: calc(var(--header-h) + 84px) 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 36%, rgba(255, 255, 255, 0.12), transparent 27%),
    linear-gradient(135deg, #111 0%, var(--black) 52%, #0a0a0a 100%);
  color: var(--white);
}

.seo-hero::before,
.seo-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.seo-hero::before {
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 100%);
}

.seo-hero::after {
  right: 7vw;
  bottom: -21vw;
  width: min(46vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
}

.seo-hero--reference {
  min-height: 850px;
  background: var(--black);
}

.seo-hero-image,
.seo-hero-shade {
  position: absolute;
  inset: 0;
}

.seo-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(0.25) contrast(1.05);
}

.seo-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.62) 48%, rgba(5, 5, 5, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.88));
}

.seo-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 72px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.55fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}

.seo-kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 9vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.seo-hero h1 em {
  font-weight: 400;
}

.seo-hero-lead {
  max-width: 760px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.75;
}

.seo-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-width: 260px;
  margin-top: 40px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.seo-hero-cta:hover {
  background: var(--white);
  color: var(--black);
}

.seo-facts {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.seo-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.seo-facts dt,
.seo-facts dd {
  margin: 0;
}

.seo-facts dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.seo-facts dd {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.25;
}

.seo-content {
  background: var(--paper);
  color: var(--black);
}

.seo-intro,
.seo-section,
.seo-related,
.seo-faq,
.seo-cta-block {
  width: var(--shell);
  margin-inline: auto;
}

.seo-intro {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 170px);
  padding: 130px 0 118px;
  border-bottom: 1px solid var(--line-light);
}

.seo-section-label {
  display: flex;
  gap: 18px;
  align-items: baseline;
  color: rgba(5, 5, 5, 0.45);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seo-section-label span {
  font-family: var(--serif);
  font-size: 1rem;
}

.seo-intro h2,
.seo-section h2,
.seo-related h2,
.seo-faq h2,
.seo-cta-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.2vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.seo-intro-copy > p {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.seo-intro-copy > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  margin-top: 55px;
}

.seo-intro-copy > div p {
  margin: 0;
  color: rgba(5, 5, 5, 0.66);
  line-height: 1.8;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(55px, 9vw, 150px);
  padding: 118px 0;
  border-bottom: 1px solid var(--line-light);
}

.seo-section-head p {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(5, 5, 5, 0.6);
  line-height: 1.75;
}

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

.seo-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.seo-list li > span {
  padding-top: 5px;
  color: rgba(5, 5, 5, 0.4);
  font-family: var(--serif);
  font-size: 0.78rem;
}

.seo-list h3 {
  margin: 0 0 9px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.seo-list p {
  max-width: 760px;
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  line-height: 1.75;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.seo-tags span,
.seo-tags a {
  padding: 13px 15px;
  border: 1px solid var(--line-light);
  color: var(--black);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.seo-related {
  padding: 118px 0;
  border-bottom: 1px solid var(--line-light);
}

.seo-related-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}

.seo-related-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.seo-related-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transition: transform 700ms var(--ease), opacity 300ms ease;
}

.seo-related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(5, 5, 5, 0.92));
}

.seo-related-card:hover img {
  transform: scale(1.035);
  opacity: 0.78;
}

.seo-related-card a {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 46px;
  color: var(--white);
  text-decoration: none;
}

.seo-related-card small {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-related-card strong {
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.seo-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 9vw, 150px);
  padding: 118px 0;
}

.seo-faq-list {
  border-top: 1px solid var(--line-light);
}

.seo-faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.seo-faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  list-style: none;
}

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

.seo-faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
}

.seo-faq-list details[open] summary::after {
  content: "−";
}

.seo-faq-list p {
  max-width: 760px;
  margin: -5px 0 28px;
  color: rgba(5, 5, 5, 0.63);
  line-height: 1.75;
}

.seo-cta-wrap {
  padding: 0;
  background: var(--black);
}

.seo-cta-block {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 50px;
  align-items: end;
  padding: clamp(78px, 9vw, 142px) 0;
  background: transparent;
  color: var(--white);
}

.seo-cta-block p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.seo-cta-block .seo-hero-cta {
  margin: 0;
}

.seo-page .site-footer {
  width: 100%;
  min-height: 220px;
  margin: 0;
  padding: 58px max(32px, calc((100vw - 1560px) / 2));
  background: var(--black);
}

.seo-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 8px 28px;
}

.seo-footer-nav a {
  color: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.seo-footer-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .seo-hero-grid,
  .seo-intro,
  .seo-section,
  .seo-faq {
    grid-template-columns: 1fr;
  }

  .seo-hero-grid {
    gap: 65px;
  }

  .seo-facts {
    max-width: 680px;
  }

  .seo-intro,
  .seo-section,
  .seo-faq {
    gap: 52px;
  }

  .seo-cta-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .project-info .project-detail {
    justify-self: start;
  }

  .seo-hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 58px);
  }

  .seo-hero--reference {
    min-height: 760px;
  }

  .seo-breadcrumbs {
    margin-bottom: 54px;
  }

  .seo-hero h1 {
    font-size: clamp(4rem, 15vw, 7rem);
  }

  .seo-intro,
  .seo-section,
  .seo-related,
  .seo-faq {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .seo-related-card {
    min-height: 520px;
  }

  .site-footer > .seo-footer-nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .seo-hero {
    padding-bottom: 72px;
  }

  .seo-hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.4rem);
    line-height: 0.86;
  }

  .seo-hero-lead {
    margin-top: 30px;
    font-size: 0.95rem;
  }

  .seo-hero-cta {
    min-width: 0;
    width: 100%;
  }

  .seo-facts div {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .seo-intro-copy > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .seo-intro h2,
  .seo-section h2,
  .seo-related h2,
  .seo-faq h2,
  .seo-cta-block h2 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .seo-related-head {
    display: block;
  }

  .seo-related-head .seo-section-label {
    margin-bottom: 22px;
  }

  .seo-related-card {
    min-height: 430px;
  }

  .seo-related-card a {
    padding: 28px;
  }

  .seo-related-card strong {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .seo-cta-block {
    padding: 72px 0;
  }

  .seo-page .site-footer {
    padding: 46px 20px;
  }

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

  .site-footer > .seo-footer-nav {
    grid-column: 1;
  }
}
