:root {
  --ink: #11131a;
  --ink-2: #20232c;
  --paper: #f5f2eb;
  --white: #ffffff;
  --muted: #62656e;
  --line: rgba(17, 19, 26, 0.13);
  --cyan: #00a9d6;
  --magenta: #e00072;
  --yellow: #ffd20a;
  --black: #11131a;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(10, 12, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: "DM Sans", Arial, sans-serif;
}

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

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

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

h1,
h2,
h3,
.brand__name strong {
  font-family: "Manrope", "DM Sans", Arial, sans-serif;
}

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

.section {
  padding: 118px 0;
}

.cmyk-rail {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 5px;
}

.cmyk-rail i:nth-child(1) {
  background: var(--cyan);
}

.cmyk-rail i:nth-child(2) {
  background: var(--magenta);
}

.cmyk-rail i:nth-child(3) {
  background: var(--yellow);
}

.cmyk-rail i:nth-child(4) {
  background: var(--black);
}

.topline {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 5px;
  font-size: 12px;
  letter-spacing: 0.055em;
}

.topline__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline p {
  margin: 0;
}

.topline p span {
  color: var(--yellow);
  margin: 0 8px;
}

.topline__inner > div {
  display: flex;
  gap: 25px;
}

.topline a:hover {
  color: var(--white);
}

.header {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 19, 26, 0.08);
}

.header__inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand__mark {
  position: relative;
  width: 46px;
  height: 46px;
}

.brand__mark i,
.brand__mark b {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.brand__mark .c {
  top: 0;
  left: 0;
  background: var(--cyan);
}

.brand__mark .m {
  top: 0;
  right: 0;
  background: var(--magenta);
}

.brand__mark .y {
  left: 10px;
  bottom: 0;
  background: var(--yellow);
}

.brand__mark b {
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font: 700 9px/1 "Manrope", sans-serif;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.brand__name small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--magenta);
  transition: right 180ms ease;
}

.nav a:hover::after {
  right: 0;
}

.header__phone {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  line-height: 1.15;
}

.header__phone span {
  color: var(--muted);
  font-size: 11px;
}

.header__phone strong {
  margin-top: 5px;
  font: 800 19px/1 "Manrope", sans-serif;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}

.hero__photo,
.hero__shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero__photo {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 18, 0.96) 0%, rgba(10, 12, 18, 0.84) 35%, rgba(10, 12, 18, 0.28) 65%, rgba(10, 12, 18, 0.06) 100%),
    linear-gradient(0deg, rgba(10, 12, 18, 0.4), transparent 50%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 690px) 300px;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 88px;
  padding-bottom: 70px;
}

.hero__copy {
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #6a6d74;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0 33%, var(--magenta) 33% 66%, var(--yellow) 66%);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.66);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  color: #fff;
  background: linear-gradient(90deg, #ffffff 0%, #d7eaf0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions,
.location__actions,
.final__actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  min-width: 238px;
  flex-direction: column;
  align-items: flex-start;
  background: var(--magenta);
  color: white;
  box-shadow: 0 14px 34px rgba(224, 0, 114, 0.28);
}

.button--primary span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button--primary strong {
  font: 800 21px/1 "Manrope", sans-serif;
}

.button--glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero__micro {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.hero__card {
  padding: 27px 28px 25px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero__card > p {
  margin-bottom: 5px;
  color: var(--magenta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__card > strong {
  display: block;
  margin-bottom: 15px;
  font: 800 24px/1.2 "Manrope", sans-serif;
}

.hero__card address {
  margin-bottom: 20px;
  color: var(--muted);
  font-style: normal;
}

.hero__card > div {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.hero__card > div b {
  margin-top: 2px;
  color: var(--ink);
  font-size: 15px;
}

.hero__card > a {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-weight: 800;
}

.trust {
  position: relative;
  z-index: 3;
  background: white;
  box-shadow: 0 12px 30px rgba(17, 19, 26, 0.05);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust__grid > div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 22px;
  border-right: 1px solid var(--line);
}

.trust__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust__dot {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(17, 19, 26, 0.04);
}

.trust__dot--c {
  background: var(--cyan);
}

.trust__dot--m {
  background: var(--magenta);
}

.trust__dot--y {
  background: var(--yellow);
}

.trust__dot--k {
  background: var(--black);
}

.trust p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.trust strong {
  font-size: 14px;
}

.trust small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.section-head {
  max-width: 770px;
  margin-bottom: 55px;
}

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.section-head h2,
.process h2,
.location h2,
.faq h2,
.final h2,
.service h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-head > p:last-child,
.section-head--split > p,
.location__lead,
.faq__intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.story {
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 169, 214, 0.08), transparent 26%),
    var(--paper);
}

.story__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.story__photo {
  position: relative;
  margin: 0;
  min-height: 650px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(10, 12, 18, 0.76));
}

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

.story__photo figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  color: white;
}

.story__photo figcaption span {
  font: 800 25px/1.2 "Manrope", sans-serif;
}

.story__photo figcaption strong {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story__needs article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.story__needs article:first-child {
  border-top: 1px solid var(--line);
}

.story__needs article > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story__needs h3 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.story__needs p {
  margin-bottom: 10px;
  color: var(--muted);
}

.story__needs small {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  margin-top: 28px;
  color: var(--magenta);
  font-weight: 800;
}

.ink-section {
  color: white;
  background:
    radial-gradient(circle at 85% 18%, rgba(224, 0, 114, 0.2), transparent 24%),
    radial-gradient(circle at 15% 90%, rgba(0, 169, 214, 0.18), transparent 24%),
    var(--ink);
}

.ink-section .section-head > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.solutions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.solution {
  position: relative;
  min-height: 330px;
  padding: 30px 24px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.solution:not(:first-child) {
  padding-left: 24px;
}

.solution:last-child {
  border-right: 0;
}

.solution__index {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 800;
}

.solution i {
  display: block;
  width: 46px;
  height: 46px;
  margin: 48px 0 31px;
  border-radius: 50%;
  box-shadow: 18px 12px 0 rgba(255, 255, 255, 0.05);
}

.solution--cyan i {
  background: var(--cyan);
}

.solution--magenta i {
  background: var(--magenta);
}

.solution--yellow i {
  background: var(--yellow);
}

.solution--black i {
  background: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution h3 {
  margin-bottom: 13px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.solution p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.ink-section__callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
}

.ink-section__callout p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.ink-section__callout p span {
  color: rgba(255, 255, 255, 0.56);
}

.button--white {
  background: white;
  color: var(--ink);
}

.brands-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 169, 214, 0.1), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(224, 0, 114, 0.08), transparent 24%),
    #f8f6f0;
}

.brands-section::before {
  content: "HP · CANON · EPSON · BROTHER";
  position: absolute;
  top: 35px;
  right: -14px;
  color: rgba(17, 19, 26, 0.035);
  font: 800 clamp(54px, 8vw, 118px)/1 "Manrope", sans-serif;
  letter-spacing: -0.065em;
  white-space: nowrap;
  pointer-events: none;
}

.brands-section > .shell {
  position: relative;
  z-index: 1;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(17, 19, 26, 0.07);
}

.brand-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.brand-card:last-child {
  border-right: 0;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--ink);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 220ms ease;
}

.brand-card:hover::after {
  transform: scaleX(1);
}

.brand-card--hp::after {
  background: var(--cyan);
}

.brand-card--canon::after {
  background: var(--magenta);
}

.brand-card--epson::after {
  background: #5967e8;
}

.brand-card--brother::after {
  background: var(--yellow);
}

.brand-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 52px;
}

.brand-card__mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  box-shadow: 0 12px 25px rgba(17, 19, 26, 0.08);
  font: 800 18px/1 "Manrope", sans-serif;
}

.brand-card--hp .brand-card__mark {
  color: #0086c9;
}

.brand-card--canon .brand-card__mark {
  color: #d00055;
}

.brand-card--epson .brand-card__mark {
  color: #3449be;
}

.brand-card__top small {
  color: #9a9ca1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.brand-card > strong {
  min-height: 38px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.brand-card > p {
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.brand-card__phrase {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.brands-guide {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.25fr;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: white;
}

.brands-guide > div,
.brands-guide > a {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.brands-guide > a {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  border-right: 0;
  background: var(--ink);
  color: white;
  font-size: 12px;
}

.brands-guide > a strong {
  color: var(--yellow);
  font-size: 14px;
}

.brands-guide__number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper);
  color: var(--magenta);
  font-size: 10px;
  font-weight: 800;
}

.brands-guide p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.brands-guide p strong {
  font-size: 14px;
}

.brands-guide p small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.process {
  background: white;
}

.process__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 85px;
  align-items: center;
}

.process__copy h2 {
  margin-bottom: 42px;
}

.process ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.process li:last-child {
  border-bottom: 1px solid var(--line);
}

.process li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.process li strong {
  font: 800 17px/1.3 "Manrope", sans-serif;
}

.process li p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.process__photo {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}

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

.process__photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(390px, 80%);
  padding: 26px 28px;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
}

.process__photo figcaption strong {
  font: 800 20px/1.2 "Manrope", sans-serif;
}

.process__photo figcaption span {
  margin-top: 5px;
  font-size: 13px;
}

.service {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--ink);
}

.service__photo {
  min-height: 610px;
  overflow: hidden;
}

.service__photo img {
  height: 100%;
  object-fit: cover;
}

.service__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(40px, 7vw, 120px);
  color: white;
}

.service__copy h2 {
  margin-bottom: 26px;
  font-size: clamp(36px, 3.7vw, 54px);
}

.service__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.service__copy > a {
  width: fit-content;
  display: flex;
  gap: 35px;
  margin-top: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--cyan);
  font-weight: 800;
}

.location {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 210, 10, 0.22), transparent 23%),
    #efebe1;
}

.location::after {
  content: "POZNAŃ";
  position: absolute;
  right: -0.05em;
  bottom: -0.24em;
  color: rgba(17, 19, 26, 0.035);
  font: 800 clamp(140px, 22vw, 330px)/1 "Manrope", sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.location__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.location__lead {
  margin-top: 26px;
}

.location__address {
  display: flex;
  flex-direction: column;
  margin: 44px 0 30px;
  padding-left: 22px;
  border-left: 5px solid var(--magenta);
}

.location__address span {
  color: var(--muted);
  font-size: 12px;
}

.location__address strong {
  margin: 4px 0;
  font: 800 27px/1.2 "Manrope", sans-serif;
}

.location__address p {
  margin: 0;
  color: var(--muted);
}

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

.button--outline {
  border-color: var(--ink);
}

.routes {
  background: rgba(255, 255, 255, 0.8);
  padding: 34px 38px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.routes > p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.routes article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.routes article > span {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 800;
}

.routes article div {
  display: flex;
  flex-direction: column;
}

.routes article small {
  margin-top: 3px;
  color: var(--muted);
}

.routes__nearby {
  padding-top: 22px;
}

.routes__nearby p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.ecosystem {
  padding: 105px 0;
  background: white;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.ecosystem__grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.ecosystem__grid a:last-child {
  border-right: 0;
}

.ecosystem__grid a:hover {
  background: var(--ink);
  color: white;
}

.ecosystem__grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem__grid strong {
  margin-top: 24px;
  font: 800 20px/1.35 "Manrope", sans-serif;
}

.ecosystem__grid span {
  margin-top: auto;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 800;
}

.faq {
  background: var(--paper);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 40px;
}

.faq__intro h2 {
  margin-bottom: 25px;
}

.faq__intro a {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--magenta);
  font-weight: 800;
}

.faq__list details {
  border-top: 1px solid var(--line);
}

.faq__list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  min-height: 84px;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  font: 700 17px/1.35 "Manrope", sans-serif;
}

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

.faq__list summary > span {
  color: var(--magenta);
  font: 800 10px/1 "DM Sans", sans-serif;
}

.faq__list summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq__list summary i::before,
.faq__list summary i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--ink);
}

.faq__list summary i::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq__list details[open] summary i::after {
  transform: rotate(0);
}

.faq__list details > p {
  margin: -5px 38px 28px 58px;
  color: var(--muted);
}

.final {
  padding: 90px 0;
  background:
    linear-gradient(120deg, rgba(0, 169, 214, 0.13), transparent 34%),
    linear-gradient(300deg, rgba(224, 0, 114, 0.15), transparent 35%),
    var(--ink);
  color: white;
}

.final__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.final h2 {
  margin-bottom: 20px;
}

.final__inner > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.final__actions {
  justify-content: flex-end;
}

.footer {
  padding: 65px 0 25px;
  background: #0b0c10;
  color: white;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 60px;
}

.brand--footer {
  color: white;
}

.brand--footer .brand__name small {
  color: rgba(255, 255, 255, 0.45);
}

.footer__grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__grid > div:first-child p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer__grid > div > strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__grid > div > a,
.footer__grid > div > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer__grid a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.mobile-contact {
  display: none;
}

@media (max-width: 1050px) {
  .nav {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 650px) 260px;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid > div {
    border-bottom: 1px solid var(--line);
  }

  .story__layout,
  .process__layout,
  .location__layout,
  .faq__layout {
    gap: 55px;
  }

  .solutions,
  .ecosystem__grid,
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution:nth-child(2),
  .ecosystem__grid a:nth-child(2),
  .brand-card:nth-child(2) {
    border-right: 0;
  }

  .solution:nth-child(-n + 2),
  .ecosystem__grid a:nth-child(-n + 2),
  .brand-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ecosystem__grid a:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .brand-card:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .brand-card:nth-child(4) {
    border-right: 0;
  }

  .brands-guide {
    grid-template-columns: 1fr 1fr;
  }

  .brands-guide > div:nth-child(2) {
    border-right: 0;
  }

  .brands-guide > a {
    grid-column: 1 / -1;
  }

  .footer__grid {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .topline__inner > div a:last-child,
  .header__phone span {
    display: none;
  }

  .header__phone {
    padding-left: 18px;
  }

  .hero {
    min-height: 770px;
  }

  .hero__photo {
    object-position: 64% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(10, 12, 18, 0.93) 0%, rgba(10, 12, 18, 0.75) 60%, rgba(10, 12, 18, 0.28));
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero__card {
    display: none;
  }

  .hero__copy {
    max-width: 620px;
  }

  .section-head--split,
  .story__layout,
  .process__layout,
  .location__layout,
  .faq__layout,
  .final__inner {
    grid-template-columns: 1fr;
  }

  .section-head--split {
    gap: 24px;
  }

  .story__photo,
  .process__photo {
    min-height: 530px;
  }

  .process__photo {
    order: -1;
  }

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

  .service__photo {
    min-height: 440px;
  }

  .service__copy {
    padding: 70px max(24px, calc((100% - 680px) / 2));
  }

  .faq__intro {
    position: static;
  }

  .final__actions {
    justify-content: flex-start;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  body {
    padding-bottom: 64px;
  }

  .topline {
    display: none;
  }

  .header__inner {
    height: 75px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand__mark i,
  .brand__mark b {
    width: 22px;
    height: 22px;
  }

  .brand__name strong {
    font-size: 17px;
  }

  .brand__name small {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .hero {
    min-height: 735px;
  }

  .hero__photo {
    object-position: 69% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(10, 12, 18, 0.97) 0%, rgba(10, 12, 18, 0.72) 66%, rgba(10, 12, 18, 0.22) 100%),
      linear-gradient(90deg, rgba(10, 12, 18, 0.6), rgba(10, 12, 18, 0.12));
  }

  .hero__inner {
    align-items: end;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(41px, 13vw, 56px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions,
  .location__actions,
  .final__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .button--primary {
    align-items: center;
  }

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

  .trust__grid > div {
    min-height: 82px;
  }

  .section-head h2,
  .process h2,
  .location h2,
  .faq h2,
  .final h2 {
    font-size: 37px;
  }

  .story__photo,
  .process__photo {
    min-height: 450px;
  }

  .story__layout {
    gap: 42px;
  }

  .solutions,
  .ecosystem__grid,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .solution,
  .solution:not(:first-child) {
    min-height: 250px;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .solution i {
    margin: 30px 0 20px;
  }

  .ink-section__callout {
    align-items: stretch;
    flex-direction: column;
  }

  .service__photo {
    min-height: 360px;
  }

  .service__copy {
    padding: 60px 20px;
  }

  .routes {
    padding: 27px 22px;
  }

  .ecosystem__grid a {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .brand-card,
  .brand-card:nth-child(2),
  .brand-card:nth-child(4) {
    min-height: 365px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-card:last-child {
    border-bottom: 0;
  }

  .brands-guide {
    grid-template-columns: 1fr;
  }

  .brands-guide > div,
  .brands-guide > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brands-guide > a {
    grid-column: auto;
  }

  .faq__list summary {
    grid-template-columns: 30px 1fr 20px;
    font-size: 15px;
  }

  .faq__list details > p {
    margin-left: 44px;
  }

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

  .footer__bottom {
    gap: 18px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 80;
    inset: auto 0 0;
    height: 64px;
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    background: white;
    box-shadow: 0 -10px 25px rgba(17, 19, 26, 0.15);
  }

  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }

  .mobile-contact a:last-child {
    flex-direction: column;
    background: var(--magenta);
    color: white;
    line-height: 1.15;
  }

  .mobile-contact a:last-child strong {
    font-size: 16px;
  }
}

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

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

/* ==========================================================
   Local acquisition layer — version 3.0
   ========================================================== */

:where(section[id]) { scroll-margin-top: 104px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero--local-hub .hero__inner,
.hero--locality .hero__inner {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(54px, 8vw, 110px);
}

.hero--local-hub .hero__copy,
.hero--locality .hero__copy { max-width: 820px; }

.hero--local-hub h1,
.hero--locality h1 {
  max-width: 860px;
  font-size: clamp(48px, 5.75vw, 86px);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero--local-hub h1 span {
  display: block;
  color: var(--yellow);
}

.hero__card--areas {
  align-self: center;
  padding: 29px 30px 25px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.hero__card--areas > strong {
  margin-bottom: 14px;
  font-size: 33px;
  letter-spacing: -.05em;
}

.hero__card--areas ul {
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero__card--areas li { border-bottom: 1px solid var(--line); }

.hero__card--areas li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  font-weight: 700;
  transition: padding 160ms ease, color 160ms ease;
}

.hero__card--areas li a span { color: var(--magenta); }
.hero__card--areas li a:hover { padding-left: 7px; color: var(--magenta); }
.hero__card--areas > small { display: block; color: var(--muted); font-size: 12px; line-height: 1.5; }

.areas { background: #fbfaf7; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.area-card {
  position: relative;
  min-height: 278px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.area-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg,var(--cyan) 0 25%,var(--magenta) 25% 50%,var(--yellow) 50% 75%,var(--ink) 75%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.area-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(17,19,26,.12);
  background: #fff;
}

.area-card:hover::after { transform: scaleX(1); }
.area-card__number { color: var(--magenta); font: 700 12px/1 "Manrope",sans-serif; letter-spacing: .14em; }
.area-card h3 { margin: 0 0 11px; font-size: 29px; letter-spacing: -.045em; }
.area-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }
.area-card small { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .095em; text-transform: uppercase; }
.area-card > b { position: absolute; top: 29px; right: 29px; font-size: 25px; font-weight: 400; }

.story__needs article a {
  display: inline-block;
  margin-top: 9px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
}

.story__needs article a:hover { text-decoration: underline; }
.solutions--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.solutions--three .solution:last-child { grid-column: auto; }
.routes--towns a { color: inherit; }
.routes--towns article { transition: background 180ms ease, color 180ms ease; }
.routes--towns article:hover { background: var(--ink); color: #fff; }
.routes--towns article:hover small { color: rgba(255,255,255,.7); }

.ecosystem--two { background: #fff; }
.ecosystem__grid--two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.ecosystem__grid--two a:last-child { border-left: 1px solid var(--line); }

/* Model-first contact */
.lead-section {
  position: relative;
  background: #ece8df;
  overflow: hidden;
}

.lead-section::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -190px;
  top: -280px;
  border-radius: 50%;
  background: rgba(0,169,214,.1);
}

.lead-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px,.82fr) minmax(0,1.35fr);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.lead-card__intro {
  padding: clamp(42px,5vw,70px);
  background:
    radial-gradient(circle at 15% 105%,rgba(224,0,114,.34),transparent 46%),
    radial-gradient(circle at 95% 5%,rgba(0,169,214,.22),transparent 38%),
    var(--ink);
  border-right: 1px solid rgba(255,255,255,.12);
}

.lead-card__intro h2 {
  margin: 0 0 22px;
  font-size: clamp(35px,4vw,55px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.lead-card__intro > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.lead-card__direct { margin-top: 42px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.17); }
.lead-card__direct span { display: block; color: rgba(255,255,255,.54); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lead-card__direct a { display: inline-block; margin-top: 6px; font: 800 27px/1.1 "Manrope",sans-serif; color: var(--yellow); }

.lead-form { padding: clamp(38px,5vw,66px); background: #fff; color: var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 19px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--wide { grid-column: 1/-1; }
.form-field > span { color: #42454e; font-size: 12px; font-weight: 800; letter-spacing: .035em; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(17,19,26,.17);
  border-radius: 0;
  outline: none;
  background: #faf9f6;
  color: var(--ink);
  font: 500 15px/1.4 "DM Sans",sans-serif;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.form-field textarea { min-height: 112px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--cyan); background: #fff; box-shadow: 0 0 0 3px rgba(0,169,214,.12); }
.form-consent { display: flex; gap: 11px; margin-top: 18px; color: var(--muted); font-size: 12px; line-height: 1.5; cursor: pointer; }
.form-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--magenta); }
.form-hp { position: absolute !important; left: -9999px !important; }
.lead-form__bottom { margin-top: 28px; display: flex; align-items: center; gap: 24px; }
.lead-form__bottom small { max-width: 280px; color: var(--muted); font-size: 11px; }
.button--submit { border: 0; cursor: pointer; flex: 0 0 auto; }
.form-message { grid-column: 1/-1; margin-bottom: 20px; padding: 14px 16px; font-size: 13px; font-weight: 700; }
.form-message--success { background: #e6f7ef; color: #17623f; }
.form-message--error { background: #fff0f0; color: #9b2c2c; }

/* Locality pages */
.hero--locality .hero__inner { min-height: 670px; }
.hero--locality h1 { font-size: clamp(44px,5.2vw,78px); }
.breadcrumb { display: flex; gap: 9px; align-items: center; margin-bottom: 22px; color: var(--muted); font-size: 12px; }
.breadcrumb--light { color: rgba(255,255,255,.62); }
.breadcrumb a:hover { color: var(--yellow); }

.hero__card--locality {
  padding: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.hero__card--locality > strong { margin-bottom: 22px; font-size: 39px; letter-spacing: -.055em; }
.hero__card--locality > div { display: block; padding: 14px 0; border-top: 1px solid var(--line); }
.hero__card--locality > div span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero__card--locality > div b { display: block; margin-top: 5px; font-size: 13px; }
.hero__card--locality > a { margin-top: 8px; }

.local-intro { background: #fff; }
.local-intro__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(65px,9vw,130px); align-items: start; }
.local-intro h2 { margin: 0; font-size: clamp(38px,4.4vw,63px); line-height: 1.06; letter-spacing: -.055em; }
.local-intro__text { padding-top: 6px; }
.local-intro__text p { color: var(--muted); font-size: 18px; line-height: 1.78; }
.local-intro__text p:first-child { color: var(--ink); font-weight: 600; }
.local-intro__text .text-link { margin-top: 26px; }

.local-services { background: var(--ink); color: #fff; }
.local-services .section-head--split > p { color: rgba(255,255,255,.62); }
.local-service-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 54px; border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.local-service-card { position: relative; min-height: 385px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); overflow: hidden; }
.local-service-card > span { color: rgba(255,255,255,.45); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.local-service-card > i { width: 38px; height: 38px; margin: 46px 0 25px; border-radius: 50%; }
.local-service-card--cyan > i { background: var(--cyan); box-shadow: 0 0 0 11px rgba(0,169,214,.12); }
.local-service-card--magenta > i { background: var(--magenta); box-shadow: 0 0 0 11px rgba(224,0,114,.12); }
.local-service-card--yellow > i { background: var(--yellow); box-shadow: 0 0 0 11px rgba(255,210,10,.12); }
.local-service-card h3 { margin: 0 0 13px; font-size: 28px; letter-spacing: -.04em; }
.local-service-card p { margin: 0; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.68; }
.local-service-card a { margin-top: auto; padding-top: 24px; color: #fff; font-size: 12px; font-weight: 800; border-top: 1px solid rgba(255,255,255,.12); }
.local-service-card a b { float: right; color: var(--yellow); }
.local-service-card a:hover { color: var(--yellow); }

.local-scenario { background: #f7f4ed; }
.local-scenario__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(60px,8vw,115px); }
.local-scenario__photo { position: relative; min-height: 620px; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.local-scenario__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(17,19,26,.78)); }
.local-scenario__photo img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.local-scenario__photo figcaption { position: absolute; z-index: 2; left: 35px; right: 35px; bottom: 31px; display: flex; justify-content: space-between; align-items: end; color: #fff; }
.local-scenario__photo figcaption strong { font: 800 28px/1 "Manrope",sans-serif; }
.local-scenario__photo figcaption span { color: rgba(255,255,255,.7); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.local-scenario__copy h2 { margin: 0 0 23px; font-size: clamp(38px,4.5vw,61px); line-height: 1.06; letter-spacing: -.055em; }
.local-scenario__copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.75; }
.local-note { display: grid; grid-template-columns: 42px 1fr; gap: 16px; margin: 30px 0 32px; padding: 23px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.local-note > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-weight: 900; }
.local-note p { margin: 0; color: var(--ink); font-weight: 600; }

.local-route { background: #fff; }
.local-route__grid { display: grid; grid-template-columns: 1fr 430px; gap: clamp(65px,9vw,125px); align-items: start; }
.local-route h2 { margin: 0 0 20px; font-size: clamp(38px,4.5vw,62px); line-height: 1.06; letter-spacing: -.055em; }
.local-route__lead { max-width: 680px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.local-route .location__address { margin-top: 37px; }
.local-route__panel { padding: 35px; background: var(--paper); border-top: 5px solid var(--magenta); box-shadow: 0 20px 50px rgba(17,19,26,.08); }
.local-route__panel > small { display: block; margin-bottom: 18px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.local-route__panel ol { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.local-route__panel li { display: grid; grid-template-columns: 34px 1fr; gap: 13px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.local-route__panel li span { color: var(--magenta); font-size: 10px; font-weight: 900; }
.local-route__panel li strong { font-size: 13px; }
.local-route__panel > a { display: flex; justify-content: space-between; margin-top: 23px; font-size: 12px; font-weight: 800; }
.local-route__panel > a span { color: var(--magenta); }

.nearby { background: #f7f4ed; }
.nearby__grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin-top: 50px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.nearby__grid a { position: relative; min-height: 220px; padding: 25px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: transform 180ms ease, box-shadow 180ms ease; }
.nearby__grid a:hover { z-index: 1; transform: translateY(-6px); box-shadow: 0 18px 42px rgba(17,19,26,.1); }
.nearby__grid a > span { color: var(--magenta); font-size: 10px; font-weight: 900; }
.nearby__grid strong { margin-top: 31px; font: 800 23px/1.1 "Manrope",sans-serif; letter-spacing: -.04em; }
.nearby__grid small { margin-top: 11px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.nearby__grid b { position: absolute; right: 22px; bottom: 19px; }

/* Editorial templates */
.content-hero { padding: 90px 0 74px; background: var(--ink); color: #fff; }
.content-hero--compact { padding-bottom: 55px; }
.content-hero h1 { max-width: 900px; margin: 0; font-size: clamp(44px,6vw,79px); line-height: 1; letter-spacing: -.06em; }
.content-hero__description { max-width: 760px; margin-top: 20px; color: rgba(255,255,255,.66); font-size: 18px; }
.content-shell { padding: 90px 0 120px; }
.posts-section { background: #f7f4ed; }
.posts-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; }
.post-card { background: #fff; box-shadow: 0 16px 40px rgba(17,19,26,.07); }
.post-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.post-card__image img { height: 100%; object-fit: cover; transition: transform 260ms ease; }
.post-card:hover .post-card__image img { transform: scale(1.035); }
.post-card__copy { padding: 27px; }
.post-card__copy > small { color: var(--magenta); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.post-card__copy h2 { margin: 12px 0; font-size: 25px; line-height: 1.17; letter-spacing: -.04em; }
.post-card__copy p { color: var(--muted); font-size: 14px; }
.post-card__link { font-size: 12px; font-weight: 800; }
.post-card__link span { color: var(--magenta); }
.shell--article { max-width: 880px; }
.content-article { padding: 75px 0 120px; background: #fff; }
.content-article__header { margin-bottom: 34px; }
.content-article__header h1 { margin: 14px 0 17px; font-size: clamp(42px,6vw,72px); line-height: 1.04; letter-spacing: -.06em; }
.content-article__lead { color: var(--muted); font-size: 20px; }
.content-article__image { margin: 0 0 45px; }
.content-article__body { font-size: 18px; line-height: 1.78; }
.content-article__body h2 { margin: 55px 0 15px; font-size: 36px; line-height: 1.15; letter-spacing: -.04em; }
.content-article__body h3 { margin: 38px 0 12px; font-size: 27px; }
.content-article__body a { color: var(--magenta); text-decoration: underline; }
.article-cta { margin-top: 55px; padding: 33px; background: var(--paper); border-left: 5px solid var(--cyan); }
.article-cta h2 { margin: 0 0 11px; font-size: 28px; }
.pagination { margin-top: 45px; display: flex; justify-content: center; gap: 7px; }
.pagination .page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); }
.pagination .current { background: var(--ink); color: #fff; }
.empty-state { padding: 45px; background: #fff; }
.error-page { min-height: 70vh; display: grid; place-items: center; padding: 90px 0; background: var(--ink); color: #fff; }
.error-page__inner { max-width: 720px; text-align: center; }
.error-page__inner > span { color: var(--yellow); font: 900 13px/1 "Manrope",sans-serif; letter-spacing: .18em; }
.error-page h1 { margin: 18px 0; font-size: clamp(48px,8vw,88px); line-height: .98; letter-spacing: -.07em; }
.error-page p { margin: 0 auto 30px; max-width: 580px; color: rgba(255,255,255,.66); }

.footer__grid--local { grid-template-columns: 1.45fr .75fr .9fr .95fr; }

@media (max-width: 1050px) {
  .hero--local-hub .hero__inner,
  .hero--locality .hero__inner { grid-template-columns: minmax(0,1fr) 300px; gap: 42px; }
  .hero--local-hub h1,
  .hero--locality h1 { font-size: clamp(48px,7vw,70px); }
  .areas-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .lead-card { grid-template-columns: .78fr 1.22fr; }
  .local-route__grid { grid-template-columns: 1fr 360px; gap: 55px; }
  .nearby__grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .posts-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer__grid--local { grid-template-columns: 1.3fr repeat(3,1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; margin-left: auto; }
  .header__phone { display: none; }
  .header__inner { height: 76px; position: relative; }
  .nav {
    position: absolute;
    inset: 76px 0 auto;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px 20px 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(17,19,26,.12);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .hero--local-hub .hero__inner,
  .hero--locality .hero__inner { display: block; min-height: 0; padding-top: 90px; padding-bottom: 78px; }
  .hero--local-hub h1,
  .hero--locality h1 { font-size: clamp(43px,10vw,66px); }
  .hero__card--areas,
  .hero__card--locality { display: none; }
  .areas-grid { margin-top: 38px; }
  .solutions--three { grid-template-columns: 1fr; }
  .solutions--three .solution { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .ecosystem__grid--two { grid-template-columns: 1fr; }
  .ecosystem__grid--two a:last-child { border-left: 0; border-top: 1px solid var(--line); }
  .lead-card { grid-template-columns: 1fr; }
  .lead-card__intro { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .local-intro__grid,
  .local-scenario__grid,
  .local-route__grid { grid-template-columns: 1fr; gap: 45px; }
  .local-intro__text p { font-size: 16px; }
  .local-service-grid { grid-template-columns: 1fr; }
  .local-service-card { min-height: 310px; }
  .local-scenario__photo { min-height: 520px; }
  .local-scenario__copy { order: -1; }
  .nearby__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .posts-grid { grid-template-columns: 1fr; }
  .footer__grid--local { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 32px,1180px); }
  .topline__inner > div { display: none; }
  .topline__inner { justify-content: center; text-align: center; min-height: 40px; }
  .topline p { font-size: 9px; line-height: 1.35; }
  .brand__name strong { font-size: 17px; }
  .brand__name small { font-size: 8px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__mark i,.brand__mark b { width: 22px; height: 22px; }
  .hero--local-hub .hero__inner,
  .hero--locality .hero__inner { padding-top: 68px; padding-bottom: 68px; }
  .hero--local-hub h1,
  .hero--locality h1 { font-size: clamp(38px,12.5vw,55px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { align-items: stretch; }
  .hero__actions .button { width: 100%; justify-content: center; }
  .hero__micro { font-size: 11px; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-card { min-height: 240px; }
  .solutions--three { margin-top: 35px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .lead-card__intro,
  .lead-form { padding: 34px 25px; }
  .lead-card__intro h2 { font-size: 36px; }
  .lead-form__bottom { align-items: stretch; flex-direction: column; }
  .button--submit { width: 100%; justify-content: center; }
  .local-scenario__photo { min-height: 390px; }
  .local-scenario__photo figcaption { display: block; left: 23px; right: 23px; }
  .local-scenario__photo figcaption span { display: block; margin-top: 7px; }
  .local-route__panel { padding: 27px; }
  .nearby__grid { grid-template-columns: 1fr; }
  .nearby__grid a { min-height: 180px; }
  .content-hero { padding: 68px 0 58px; }
  .content-article { padding-top: 55px; }
  .content-article__body { font-size: 17px; }
  .footer__grid--local { grid-template-columns: 1fr; }
}

