:root {
  --bg: #f4efe7;
  --surface: #ffffff;
  --surface-alt: #efe7db;
  --text: #111111;
  --muted: #5a5a5a;
  --accent: #c46b2a;
  --accent-deep: #9e4f17;
  --dark: #151515;
  --line: rgba(17, 17, 17, 0.08);
  --shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
}

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

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

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(244, 239, 231, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  white-space: nowrap;
}

.hero {
  padding: 120px 0 96px;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.7), rgba(21, 21, 21, 0.42)),
    url("./assets/images/obonjan/obonjan1.jpg") center center / cover no-repeat,
    var(--dark);
  color: #fff;
}

.hero__inner {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-family: "Montserrat", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.lead,
.section-heading p,
.card p,
.project-card p,
.story-block p,
.stat-card p,
.checklist li {
  line-height: 1.75;
}

.lead {
  font-size: 1.12rem;
  max-width: 680px;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  background: #fff;
  color: var(--text);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.button--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 35px rgba(196, 107, 42, 0.28);
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card,
.story-block,
.stat-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(196, 107, 42, 0.12);
  color: var(--accent-deep);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card p,
.project-card p,
.story-block p,
.stat-card p {
  margin: 0;
  color: var(--muted);
}

.project-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.project-card__anchor {
  display: block;
  height: 100%;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card__body {
  padding: 26px 24px 28px;
}

.project-card__body h3,
.story-block h2,
.case-section__intro h2,
.overview-step h3,
.card h3 {
  text-wrap: balance;
}

.project-card--simple {
  display: flex;
  align-items: stretch;
  background: linear-gradient(160deg, #ffffff, #f7f0e6);
}

.project-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent-deep);
}

.project-link--muted {
  color: #7f715f;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 16, 18, 0.86), rgba(15, 16, 18, 0.36)),
    var(--dark);
}

.page-hero--obonjan {
  background:
    linear-gradient(120deg, rgba(15, 16, 18, 0.84), rgba(15, 16, 18, 0.28)),
    url("./assets/images/obonjan/hero.webp") center center / cover no-repeat;
}

.page-hero--bosch {
  background:
    linear-gradient(120deg, rgba(10, 11, 13, 0.9), rgba(10, 11, 13, 0.42)),
    url("./assets/images/bosch/noel.webp") center 38% / cover no-repeat;
}

.page-hero--she {
  background:
    linear-gradient(120deg, rgba(18, 17, 15, 0.88), rgba(18, 17, 15, 0.38)),
    url("./assets/images/shehr/she_digital10_1.webp") center 28% / cover no-repeat;
}

.page-hero--she::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.26)),
    radial-gradient(circle at 80% 24%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.36) 72%);
  pointer-events: none;
}

.page-hero--bosch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 78% 28%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.44) 72%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 148px 0 92px;
}

.page-hero__inner {
  max-width: 720px;
}

.page-hero__inner--aligned {
  margin-left: 0;
}

.page-hero--obonjan .page-hero__inner {
  max-width: 860px;
}

.page-hero--bosch .page-hero__inner {
  max-width: 860px;
}

.page-hero--she .page-hero__inner {
  max-width: 860px;
}

.page-hero--obonjan h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 5.6vw, 4.6rem);
  text-wrap: balance;
}

.page-hero--bosch h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.7vw, 4.7rem);
  text-wrap: balance;
}

.page-hero--she h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.7vw, 4.7rem);
  text-wrap: balance;
}

.page-hero--obonjan .page-lead {
  max-width: 660px;
  font-size: 1.02rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.page-hero--bosch .page-lead {
  max-width: 670px;
  font-size: 1.02rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.page-hero--she .page-lead {
  max-width: 680px;
  font-size: 1.02rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.page-hero--obonjan .page-hero__actions {
  max-width: 660px;
  justify-content: flex-start;
}

.page-hero--bosch .page-hero__actions {
  max-width: 670px;
  justify-content: flex-start;
}

.page-hero--she .page-hero__actions {
  max-width: 680px;
  justify-content: flex-start;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-lead {
  margin: 18px 0 0;
  max-width: 680px;
  font-size: 1.14rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.story-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.overview-panel,
.overview-step,
.overview-visual__card {
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.overview-panel {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.overview-panel h2 {
  max-width: 10ch;
  margin-bottom: 18px;
}

.overview-panel__lead {
  margin: 0;
  max-width: 32ch;
  line-height: 1.8;
  color: var(--muted);
}

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

.overview-tags li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(196, 107, 42, 0.1);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.overview-side {
  display: grid;
  gap: 22px;
}

.overview-visual {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.overview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.12), rgba(18, 18, 18, 0.54));
}

.overview-visual__card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.overview-visual__card h3 {
  margin-bottom: 10px;
}

.overview-visual__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.overview-step {
  padding: 24px;
}

.overview-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(196, 107, 42, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
}

.overview-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.overview-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-column {
  display: grid;
  gap: 20px;
}

.story-block--intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 36px 38px;
  height: 100%;
}

.story-block--intro .eyebrow {
  color: var(--text);
  margin-bottom: 16px;
}

.story-block--intro h2 {
  max-width: 15ch;
  margin-bottom: 20px;
  min-height: 2.4em;
}

.story-block--intro p {
  max-width: 34ch;
  text-wrap: pretty;
}

.story-block--intro p + p {
  margin-top: 16px;
}

.checklist {
  margin: 18px 0 0;
  padding-left: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
}

.gallery__primary,
.gallery__stack img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.gallery__stack {
  display: grid;
  gap: 20px;
}

.gallery__stack img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1;
}

.cta-panel {
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(145deg, #171717, #262626);
  color: #fff;
}

.cta-panel p {
  margin: 14px 0 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(145deg, #1a1a1a, #242424);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.contact-panel__intro {
  margin-bottom: 0;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-points p,
.contact-form__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.contact-points a {
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-field select {
  appearance: none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(196, 107, 42, 0.8);
  box-shadow: 0 0 0 4px rgba(196, 107, 42, 0.14);
}

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

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button--contact {
  border: 0;
  cursor: pointer;
}

@media (max-width: 980px) {
  .grid--2,
  .grid--3,
  .story-layout,
  .overview-layout,
  .gallery,
  .stats-grid,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .overview-steps {
    grid-template-columns: 1fr;
  }

  .gallery__primary img {
    min-height: 360px;
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3,
  .stats-grid,
  .case-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card img {
    height: 240px;
  }
}

@media (max-width: 860px) {
  .site-header .shell {
    min-height: auto;
    gap: 10px;
    padding: 14px 0;
  }

  .brand img {
    height: 44px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    font-size: 0.9rem;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(17, 17, 17, 0.06);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 100px 0 74px;
    background-position: center;
  }

  .hero__inner,
  .page-hero__inner {
    max-width: 100%;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero__content {
    padding: 118px 0 72px;
  }

  .page-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .breadcrumb {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .overview-panel,
  .overview-step,
  .overview-visual__card,
  .case-section,
  .story-block,
  .card {
    border-radius: 22px;
  }

  .overview-panel,
  .case-section,
  .story-block,
  .card {
    padding: 24px;
  }

  .overview-panel h2,
  .story-block--intro h2 {
    max-width: none;
    margin-bottom: 14px;
    min-height: auto;
  }

  .overview-panel__lead,
  .story-block--intro p {
    max-width: none;
  }

  .overview-visual {
    min-height: 280px;
  }

  .overview-visual__card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .case-index {
    gap: 18px;
  }

  .project-card img {
    height: 220px;
  }

  .project-card__body {
    padding: 20px 18px 22px;
  }

  .case-section__grid {
    gap: 16px;
  }

  .media-strip {
    gap: 14px;
  }

  .media-strip img {
    height: 220px;
    border-radius: 18px;
  }
}

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

.case-stack {
  display: grid;
  gap: 28px;
}

.case-section {
  padding: 30px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.case-section__intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.case-section__intro p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.case-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 22px;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.media-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 34px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(196, 107, 42, 0.16), transparent 38%),
    #161616;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.site-footer__logo img {
  height: 52px;
  width: auto;
}

.site-footer__brand p,
.site-footer__contact p,
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.site-footer__title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__nav a,
.site-footer__contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: #f1c39f;
}

.site-footer__bottom {
  padding-top: 18px;
}

@media (min-width: 981px) {
  .media-strip__hide-desktop {
    display: none;
  }
}

.source-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.source-note a {
  color: var(--accent-deep);
  font-weight: 700;
}

@media (max-width: 980px) {
  .case-index,
  .case-section__grid,
  .media-strip,
  .site-footer__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(1120px, calc(100% - 22px));
  }

  .site-header .shell {
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }

  .brand img {
    height: 40px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.14rem;
  }

  .eyebrow,
  .page-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .hero__actions,
  .page-hero__actions {
    gap: 10px;
  }

  .hero {
    padding: 92px 0 60px;
  }

  .lead,
  .page-lead,
  .section-heading p,
  .story-block p,
  .project-card p,
  .contact-points p,
  .contact-form__note {
    line-height: 1.65;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .button--ghost {
    background: rgba(255, 255, 255, 0.08);
  }

  .page-hero__content {
    padding: 108px 0 60px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .card,
  .story-block,
  .stat-card,
  .overview-panel,
  .case-section,
  .cta-panel,
  .contact-panel {
    border-radius: 22px;
  }

  .card,
  .story-block,
  .stat-card,
  .overview-panel,
  .case-section {
    padding: 22px 18px;
  }

  .story-block--intro {
    padding: 24px 20px;
  }

  .overview-visual {
    min-height: 240px;
    border-radius: 24px;
  }

  .overview-visual__card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .overview-tags li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .overview-step {
    padding: 20px;
  }

  .project-card img,
  .gallery__primary img,
  .gallery__stack img,
  .media-strip img {
    height: 200px;
  }

  .gallery__primary img {
    min-height: 240px;
  }

  .contact-panel {
    padding: 24px 18px;
  }

  .contact-form__actions {
    align-items: stretch;
  }

  .contact-form__actions .button,
  .contact-form__actions .button--contact {
    width: 100%;
  }

  .site-footer {
    padding: 28px 0 24px;
  }

  .site-footer__content {
    gap: 22px;
    padding-bottom: 20px;
  }

  .site-footer__logo img {
    height: 44px;
  }
}
