@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("./fonts/Fraunces-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("./fonts/Fraunces-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("./fonts/Fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1b1b1b;
  --soft-ink: #262626;
  --muted: #8f8f8f;
  --red: #990000;
  --red-strong: #bf0000;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: rgba(27, 27, 27, 0.14);
  --line-soft: rgba(27, 27, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1440px, calc(100% - 64px));
  min-height: 84px;
  margin: 0 auto;
}

.brand-logo img {
  width: 214px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--soft-ink);
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  color: var(--red);
  border-color: var(--red);
}

.nav-links .nav-button {
  padding: 12px 20px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 0;
}

.nav-links .nav-button:hover {
  color: var(--white);
  background: var(--red-strong);
  border-color: var(--red-strong);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(32px, 1fr) minmax(0, 1380px) minmax(32px, 1fr);
  min-height: 680px;
  overflow: hidden;
  background: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 244, 239, 0.98), rgba(246, 244, 239, 0.78) 42%, rgba(246, 244, 239, 0.06) 78%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  left: 36%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: grid;
  align-items: center;
  width: min(760px, 58%);
  padding: 92px 0 86px;
}

.kicker {
  margin: 0 0 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
h2.section-title,
.editorial-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: 5.7rem;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 1.32rem;
  color: var(--soft-ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary:hover {
  background: var(--red);
  border-color: var(--red);
}

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

.button.secondary:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.wrap {
  width: min(1260px, calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

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

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.section-title {
  font-size: 4.2rem;
  color: var(--ink);
}

.section-intro {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.field {
  position: relative;
  min-height: 360px;
  padding: 88px 42px 42px;
  background: var(--white);
}

.field-number {
  position: absolute;
  top: 22px;
  left: 34px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 5.2rem;
  line-height: 1;
  color: rgba(153, 0, 0, 0.16);
}

.field h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--ink);
}

.field p {
  margin: 24px 0 0;
  color: var(--soft-ink);
  font-size: 1rem;
}

.editorial-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.editorial-row.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.editorial-row.reverse .editorial-text {
  order: 2;
}

.editorial-row.reverse .editorial-image {
  order: 1;
}

.editorial-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.editorial-title {
  margin-bottom: 26px;
  font-size: 3.4rem;
}

.editorial-text p {
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: var(--soft-ink);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-card {
  display: grid;
  min-height: 500px;
  color: var(--ink);
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.brand-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.brand-image {
  height: 225px;
  background: var(--paper);
  overflow: hidden;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.brand-card:hover .brand-image img {
  transform: scale(1.03);
}

.brand-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 32px;
}

.brand-logo-line {
  display: flex;
  align-items: center;
  min-height: 52px;
}

.brand-logo-line img {
  max-width: 210px;
  max-height: 54px;
  object-fit: contain;
}

.aediso-word {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
}

.kia-panel {
  display: grid;
  place-items: center;
  height: 225px;
  padding: 42px;
  background: var(--ink);
}

.kia-panel img {
  width: min(240px, 78%);
  height: auto;
}

.brand-card h3 {
  margin-top: 18px;
  font-size: 1.55rem;
  font-weight: 700;
}

.role {
  margin: 16px 0 0;
  color: var(--red);
  font-weight: 700;
}

.brand-copy {
  margin: 10px 0 0;
  color: var(--soft-ink);
}

.network-list,
.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.text-block {
  padding-top: 28px;
  border-top: 2px solid var(--red);
}

.text-block h3 {
  font-size: 1.32rem;
  font-weight: 800;
}

.text-block p {
  margin: 16px 0 0;
  color: var(--soft-ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.gallery figure {
  margin: 0;
  background: var(--white);
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(4),
.gallery figure:nth-child(2),
.gallery figure:nth-child(3),
.gallery figure:nth-child(5),
.gallery figure:nth-child(6) {
  grid-column: span 2;
}

.gallery img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 15px 0 0;
  font-weight: 700;
  color: var(--soft-ink);
}

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

.number {
  min-height: 210px;
  padding: 34px;
  background: var(--white);
}

.number strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--red);
}

.number span {
  display: block;
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--soft-ink);
}

.region {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 72px;
  align-items: center;
}

.region img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.region h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 4rem;
  font-weight: 500;
}

.region p {
  margin: 26px 0;
  font-size: 1.2rem;
  color: var(--soft-ink);
}

.places {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.places li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
}

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

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 64px;
  align-items: center;
}

.cta h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.4rem;
  font-weight: 500;
}

.contact-list {
  display: grid;
  gap: 12px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 600;
}

.cta .button {
  width: fit-content;
  margin-top: 30px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  padding: 42px 0;
  color: var(--white);
  background: var(--soft-ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-weight: 700;
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(32px, 1fr) minmax(0, 1260px) minmax(32px, 1fr);
  min-height: 500px;
  overflow: hidden;
  background: var(--paper);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 244, 239, 0.98), rgba(246, 244, 239, 0.82) 44%, rgba(246, 244, 239, 0.08) 82%);
  pointer-events: none;
}

.page-hero .hero-media {
  position: absolute;
  inset: 0;
  left: 42%;
  background: var(--paper);
}

.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-media.logo-panel {
  display: grid;
  place-items: center;
  left: 48%;
  padding: 64px;
  background: var(--ink);
}

.page-hero .hero-media.logo-panel img {
  width: min(360px, 70%);
  height: auto;
  object-fit: contain;
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: grid;
  align-content: center;
  width: min(780px, 58%);
  padding: 82px 0 78px;
}

.page-title {
  max-width: 860px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.7rem;
  font-weight: 500;
  line-height: 1.02;
}

.page-copy {
  max-width: 690px;
  margin-top: 26px;
  color: var(--soft-ink);
  font-size: 1.22rem;
}

.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 72px;
  align-items: start;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
}

.content-main {
  max-width: 900px;
}

.content-main h2,
.legal-shell h2 {
  margin: 42px 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 500;
}

.content-main h2:first-child,
.legal-shell h2:first-child {
  margin-top: 0;
}

.lead,
.lead-block {
  color: var(--soft-ink);
  font-size: 1.22rem;
}

.content-main p,
.prose p,
.legal-shell p,
.side-card p {
  color: var(--soft-ink);
}

.content-main p + p,
.prose p + p,
.legal-shell p + p {
  margin-top: 18px;
}

.logo-block {
  display: flex;
  align-items: center;
  min-height: 58px;
  margin-bottom: 24px;
}

.logo-block img {
  max-width: 260px;
  max-height: 58px;
  object-fit: contain;
}

.side-card {
  position: sticky;
  top: 116px;
  padding: 32px;
  background: var(--white);
  border-top: 2px solid var(--red);
}

.side-card h3 {
  margin-bottom: 18px;
  font-size: 1.34rem;
  font-weight: 800;
}

.meta-line {
  display: grid;
  gap: 5px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}

.meta-line span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.meta-line strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.site-note {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-weight: 800;
}

.domain-note {
  display: block;
  margin-top: 4px;
  color: var(--soft-ink);
  font-weight: 700;
}

.text-link,
.card-go {
  color: var(--red);
  font-weight: 800;
}

.side-card .text-link {
  display: inline-flex;
  margin-top: 20px;
}

.card-grid,
.step-grid,
.gallery-grid,
.value-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card-grid,
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.info-card,
.step-card,
.value-card,
.gallery-card {
  background: var(--white);
}

.info-card,
.step-card,
.value-card {
  min-height: 230px;
  padding: 32px;
}

.info-card h3,
.step-card h3,
.value-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.18;
}

.info-card p,
.step-card p,
.value-card p {
  color: var(--soft-ink);
}

.info-link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}

.info-link:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.step-no,
.value-no,
.net-no {
  display: block;
  margin-bottom: 22px;
  color: rgba(153, 0, 0, 0.36);
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.6rem;
  line-height: 1;
}

.gallery-card {
  display: block;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.gallery-card figure {
  margin: 0;
}

.gallery-card img,
.gallery-grid figure > img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.gallery-card figcaption {
  display: grid;
  gap: 5px;
  padding: 18px 0 0;
}

.gallery-card figcaption span {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-card figcaption strong,
.gallery-grid figcaption {
  color: var(--soft-ink);
  font-weight: 800;
}

.gallery-grid figure {
  margin: 0;
  padding: 0 0 18px;
  background: var(--white);
}

.gallery-grid figcaption {
  padding: 16px 18px 0;
}

.prose {
  max-width: 900px;
  font-size: 1.12rem;
}

.faq {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-item summary::marker {
  color: var(--red);
}

.faq-item p {
  max-width: 860px;
  margin: 0;
  padding: 0 0 26px;
  color: var(--soft-ink);
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-strip a,
.brand-strip li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.brand-card .brand-strip,
.info-card .brand-strip,
.content-main .card-grid,
.content-main .step-grid {
  margin-top: 24px;
}

.side-card .button {
  margin-top: 18px;
}

.side-card + .side-card {
  margin-top: 22px;
}

.contact-grid aside {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-grid .side-card {
  position: static;
}

.section.network {
  color: var(--white);
  background: var(--soft-ink);
}

.network .section-title,
.network h3 {
  color: var(--white);
}

.network .section-intro,
.network p {
  color: rgba(255, 255, 255, 0.78);
}

.network .info-card {
  background: rgba(255, 255, 255, 0.06);
}

.network .brand-strip a {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 34px;
  background: var(--white);
  border-top: 2px solid var(--red);
}

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

.contact-form .field {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  cursor: pointer;
}

.form-note {
  color: var(--soft-ink);
  font-size: 0.94rem;
}

.form-note a {
  color: var(--red);
  text-decoration: underline;
}

.legal {
  padding: 112px 0;
  background: var(--paper);
}

.legal-shell {
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
  padding: 56px;
  background: var(--white);
}

.legal-callout {
  margin: 30px 0;
  padding: 22px;
  border-left: 3px solid var(--red);
  background: var(--paper);
}

.legal-shell a {
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .nav {
    width: min(100% - 40px, 980px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }

  h1 {
    font-size: 4.6rem;
  }

  .hero-inner,
  .page-hero .hero-content {
    width: min(760px, 72%);
  }

  .page-title {
    font-size: 3.9rem;
  }

  .section-header,
  .editorial-row,
  .editorial-row.reverse,
  .region,
  .cta-inner,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .editorial-row.reverse .editorial-text,
  .editorial-row.reverse .editorial-image {
    order: initial;
  }

  .fields,
  .brand-grid,
  .network-list,
  .why-list,
  .numbers,
  .card-grid,
  .step-grid,
  .gallery-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .wrap,
  .nav {
    width: min(100% - 28px, 680px);
  }

  .brand-logo img {
    width: 186px;
  }

  .nav-links {
    font-size: 0.88rem;
  }

  .hero {
    grid-template-columns: 14px 1fr 14px;
    min-height: 650px;
  }

  .hero-media {
    left: 0;
    top: 48%;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(246, 244, 239, 0.99), rgba(246, 244, 239, 0.92) 55%, rgba(246, 244, 239, 0.18));
  }

  .hero-inner {
    width: 100%;
    align-items: start;
    padding: 54px 0 260px;
  }

  h1 {
    font-size: 3.28rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .page-hero {
    grid-template-columns: 14px 1fr 14px;
    min-height: 450px;
  }

  .page-hero .hero-media {
    left: 0;
    top: 52%;
  }

  .page-hero .hero-media.logo-panel {
    left: 0;
    top: 58%;
    padding: 34px;
  }

  .page-hero::after {
    background: linear-gradient(180deg, rgba(246, 244, 239, 0.99), rgba(246, 244, 239, 0.94) 58%, rgba(246, 244, 239, 0.2));
  }

  .page-hero .hero-content {
    width: 100%;
    align-content: start;
    padding: 48px 0 190px;
  }

  .page-title {
    font-size: 2.8rem;
  }

  .page-copy,
  .lead,
  .lead-block {
    font-size: 1.04rem;
  }

  .section,
  .legal {
    padding: 76px 0;
  }

  .section-title,
  .region h2,
  .cta h2 {
    font-size: 2.72rem;
  }

  .fields,
  .brand-grid,
  .network-list,
  .why-list,
  .numbers,
  .card-grid,
  .step-grid,
  .gallery-grid,
  .value-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .field {
    min-height: 300px;
    padding: 78px 28px 32px;
  }

  .editorial-row {
    gap: 34px;
    padding: 66px 0;
  }

  .editorial-title {
    font-size: 2.45rem;
  }

  .editorial-image img,
  .region img {
    min-height: 340px;
  }

  .brand-card {
    min-height: auto;
  }

  .brand-content {
    padding: 26px;
  }

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

  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(4),
  .gallery figure:nth-child(5),
  .gallery figure:nth-child(6) {
    grid-column: auto;
  }

  .gallery img,
  .gallery-card img,
  .gallery-grid figure > img {
    height: 250px;
  }

  .number {
    min-height: 170px;
  }

  .info-card,
  .step-card,
  .value-card,
  .side-card,
  .contact-form {
    padding: 26px;
  }

  .content-main h2,
  .legal-shell h2 {
    font-size: 2rem;
  }

  .legal-shell {
    width: min(100% - 28px, 680px);
    padding: 28px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}
