:root {
  --ink: #15171a;
  --muted: #5f6670;
  --soft: #f4f6f8;
  --paper: #ffffff;
  --line: #dfe3e6;
  --accent: #59636e;
  --accent-dark: #2f3943;
  --dark: #202225;
  --shadow: 0 18px 48px rgba(24, 23, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f4f6f8;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.prototype-header {
  position: sticky;
  top: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}

.brand img {
  display: block;
  width: min(190px, 44vw);
  max-height: 58px;
  object-fit: contain;
}

.prototype-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.prototype-header nav a {
  color: var(--dark);
  text-decoration: none;
}

.prototype-header nav a:hover,
.prototype-header nav a:focus {
  color: var(--accent-dark);
}

[id] {
  scroll-margin-top: 112px;
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.quick-hero {
  position: relative;
  display: grid;
  align-items: end;
  width: 100vw;
  min-height: clamp(560px, 78vh, 760px);
  margin: 0 calc(50% - 50vw) clamp(30px, 5vw, 56px);
  padding: clamp(44px, 8vw, 96px) clamp(22px, 8vw, 112px);
  overflow: hidden;
  color: #fff;
  background: #20252a;
  border-radius: 0;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.quick-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 18, 22, 0.7) 0%, rgba(15, 18, 22, 0.44) 44%, rgba(15, 18, 22, 0.12) 100%),
    linear-gradient(180deg, rgba(15, 18, 22, 0.02), rgba(15, 18, 22, 0.28));
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 780px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-hero .eyebrow {
  color: #d8e0e7;
}

.hero-title,
.content-hero h1 {
  margin: 0;
  max-width: 880px;
  color: #111;
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
}

.quick-hero .hero-title {
  color: #fff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.36);
}

.hero-summary {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
}

.quick-hero .hero-summary {
  color: #edf1f4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  background: #e4e8eb;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.08) contrast(1.08) saturate(1.03);
  transform: scale(1.01);
}

.hero-actions,
.titleBtns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.button,
.top-cta,
.titleBtns button,
.titleBtns .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: 800 0.9rem/1 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
}

.button.primary,
.top-cta,
.titleBtns button,
.titleBtns .btn {
  color: #fff;
  background: var(--accent-dark);
  box-shadow: 0 10px 24px rgba(98, 65, 36, 0.18);
}

.button.secondary {
  color: var(--dark);
  background: #fff;
  border-color: var(--line);
}

.top-cta {
  min-height: 42px;
  padding: 11px 15px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 38px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fafb, #eef2f5);
  border: 1px solid rgba(47, 57, 67, 0.08);
  border-radius: 10px;
}

.trust-strip div {
  position: relative;
  min-height: 118px;
  padding: 24px 24px 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f8fafb);
  border: 1px solid rgba(47, 57, 67, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31, 38, 45, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.trust-strip div::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  background: #7d8790;
  border-radius: 999px;
}

.trust-strip div::after {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(47, 57, 67, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.trust-strip div:nth-child(1)::after {
  content: "01";
}

.trust-strip div:nth-child(2)::after {
  content: "02";
}

.trust-strip div:nth-child(3)::after {
  content: "03";
}

.trust-strip div:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 57, 67, 0.14);
  box-shadow: 0 18px 42px rgba(31, 38, 45, 0.1);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 10px;
  color: #1f252b;
  font-size: 1.12rem;
  font-weight: 650;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.source-content {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  padding-bottom: 48px;
}

#sideMenu {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}

#sideMenu .menu1,
#sideMenu .menu2 {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(24, 23, 21, 0.06);
}

#sideMenu ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

#sideMenu li {
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

#sideMenu a {
  display: flex;
  align-items: baseline;
  min-height: 30px;
  color: inherit;
  text-decoration: none;
  border-radius: 6px;
}

#sideMenu a:hover,
#sideMenu a:focus {
  color: var(--accent-dark);
  outline: none;
}

#sideMenu a:focus-visible {
  box-shadow: 0 0 0 3px rgba(151, 103, 58, 0.18);
}

#sideMenu .b,
.b {
  font-weight: 800;
}

.liNum {
  display: inline-block;
  min-width: 28px;
  color: var(--accent-dark);
}

.redesigned-content {
  min-width: 0;
}

.content-hero {
  margin: 0 0 18px;
  padding: clamp(26px, 5vw, 50px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 19, 20, 0.84), rgba(18, 19, 20, 0.18)),
    url("../images/processed/hero/home-gym-mirrors-hero-1600.webp") center / cover no-repeat;
  border-radius: 8px;
  min-height: 360px;
  display: flex;
  align-items: end;
  box-shadow: var(--shadow);
}

.content-hero h1 {
  color: #fff;
  max-width: 800px;
}

.introduction {
  margin-bottom: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.prose {
  color: #30343a;
  font-size: 1rem;
}

.prose p {
  margin-top: 0;
}

.prose a,
.linkClass {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article,
#articlefaq,
.answer {
  margin: 0 0 22px;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article > .img {
  margin: -1px -1px 22px;
}

.article > .img img,
.answer img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.article > .img img {
  max-height: 560px;
}

.subTitle,
.article h2,
.article h3,
.article h4,
#articlefaq h2,
#articlefaq h3 {
  color: #15171a;
  letter-spacing: 0;
}

.subTitle {
  margin: 34px 0 14px;
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  font-weight: 850;
}

.article h4 {
  margin-bottom: 8px;
}

.refined-gallery {
  margin: 18px 0 42px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-kicker {
  margin: 0 0 8px;
  color: #d5b48f;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.refined-gallery h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  letter-spacing: 0;
}

.gallery-intro {
  max-width: 720px;
  color: #d8d8d8;
}

.thumbnail-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.gallery-thumb {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding: 0;
  color: #fff;
  background: #2d3034;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
}

.gallery-thumb:hover,
.gallery-thumb:focus {
  outline: 2px solid #d5b48f;
  outline-offset: 3px;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-thumb span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.2;
}

.gallery-lightbox[aria-hidden="true"] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 30px);
  background: rgba(10, 10, 10, 0.86);
}

.lightbox-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "prev image next"
    "caption caption caption";
  align-items: center;
  gap: 14px;
}

.lightbox-image {
  grid-area: image;
  display: block;
  width: 100%;
  max-height: calc(100vh - 138px);
  object-fit: contain;
  background: #111;
  border-radius: 8px;
}

.lightbox-caption {
  grid-area: caption;
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #111;
  background: #fff;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  z-index: 2;
}

.lightbox-nav {
  width: 46px;
  height: 58px;
  border-radius: 6px;
  font-size: 2rem;
}

.lightbox-prev {
  grid-area: prev;
}

.lightbox-next {
  grid-area: next;
}

.prototype-footer {
  margin-top: 44px;
  padding: 34px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
}

.prototype-footer h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.prototype-footer p {
  max-width: 720px;
  color: #ddd;
}

.t3,
.t4,
.t5,
.t6,
.t15 {
  letter-spacing: 0;
}

@media (max-width: 960px) {
  .prototype-header {
    grid-template-columns: 1fr auto;
  }

  .prototype-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .quick-hero {
    min-height: clamp(520px, 72vh, 680px);
  }

  .hero-copy {
    margin-left: 0;
  }

  .source-content {
    grid-template-columns: 1fr;
  }

  #sideMenu {
    position: static;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .prototype-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand img {
    width: min(170px, 58vw);
  }

  .top-cta span {
    display: none;
  }

  .quick-hero {
    min-height: 520px;
    padding: 30px 22px;
  }

  .hero-actions,
  .titleBtns {
    justify-content: center;
  }

  .hero-actions .button,
  .titleBtns button,
  .titleBtns .btn,
  .prototype-footer .button {
    width: 100%;
  }

  .quick-hero::after {
    background:
      linear-gradient(90deg, rgba(15, 18, 22, 0.76), rgba(15, 18, 22, 0.32)),
      linear-gradient(180deg, rgba(15, 18, 22, 0.08), rgba(15, 18, 22, 0.36));
  }

  .hero-media img {
    object-position: center center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  #sideMenu {
    grid-template-columns: 1fr;
  }

  .content-hero {
    min-height: 300px;
    padding: 22px;
  }

  .hero-title,
  .content-hero h1 {
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .thumbnail-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .lightbox-panel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "image image"
      "prev next"
      "caption caption";
  }

  .lightbox-image {
    max-height: calc(100vh - 190px);
  }

  .lightbox-nav {
    width: 100%;
  }

.lightbox-close {
  top: 8px;
  right: 8px;
}
}

.enquiry-modal[aria-hidden="true"] {
  display: none;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(15, 18, 22, 0.72);
}

.enquiry-modal-open {
  overflow: hidden;
}

.enquiry-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  width: min(100%, 1040px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  background: #fff;
  color: #202326;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.enquiry-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 18, 22, 0.82);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.enquiry-modal__form-wrap {
  padding: clamp(24px, 4vw, 42px);
}

.enquiry-modal__form-wrap h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.enquiry-modal__intro {
  max-width: 620px;
  margin: 12px 0 22px;
  color: #555f68;
}

.enquiry-form,
.modal-form-grid {
  display: grid;
  gap: 18px;
}

.modal-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 16px;
  align-items: start;
}

.modal-form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-weight: 700;
  color: #2a2e32;
}

.modal-form-field.full-width {
  grid-column: 1 / -1;
}

.enquiry-form label {
  font-weight: 700;
  color: #2a2e32;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d0d6;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  color: #202326;
  background: #fff;
}

.modal-form-field.has-error input,
.modal-form-field.has-error select,
.modal-form-field.has-error textarea,
.enquiry-form input.has-error,
.enquiry-form select.has-error,
.enquiry-form textarea.has-error {
  border-color: #a13228;
  box-shadow: 0 0 0 3px rgba(161, 50, 40, 0.14);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 118px;
}

.field-error {
  display: none;
  margin-top: 2px;
  color: #a13228;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.field-error:not(:empty) {
  display: block;
}

.consent-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 600;
  margin: 0;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.enquiry-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.enquiry-form__status {
  display: none;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.enquiry-form__status:not(:empty) {
  display: block;
}

.enquiry-form__status.is-info {
  color: #3f6478;
}

.enquiry-form__status.is-success {
  color: #23643b;
}

.enquiry-form__status.is-error {
  color: #a13228;
}

.enquiry-helper {
  margin: -4px 0 0;
  color: #606a73;
  font-size: 0.95rem;
}

.enquiry-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.enquiry-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.enquiry-modal__side {
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  min-height: 100%;
  background: #202326;
  color: #fff;
}

.enquiry-modal__side img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.enquiry-modal__side div {
  padding: 24px;
}

.enquiry-modal__side strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.enquiry-modal__side ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding-left: 18px;
  color: #f2f4f5;
}

.enquiry-modal__side p {
  margin: 0;
  color: #e4e7e9;
}

.enquiry-modal__side a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 820px) {
  .enquiry-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .enquiry-modal__panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
  }

  .enquiry-modal__side {
    grid-template-rows: auto auto;
  }

  .enquiry-modal__side img {
    max-height: 240px;
  }

  .modal-form-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-submit {
    justify-self: stretch;
  }
}

.commercial-installation-page .quick-hero {
  background: #20252a;
}

.commercial-installation-page .hero-copy p:not(.eyebrow):not(.hero-summary) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.commercial-installation-page .hero-title {
  display: block;
}

.image-placeholder {
  display: grid;
  align-content: stretch;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #dfe6ea;
}

.image-placeholder img,
.content-figure img,
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder figcaption,
.content-figure figcaption {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: #46545d;
  background: rgba(255, 255, 255, 0.82);
}

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

.sector-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sector-card img {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
}

.sector-card h3 {
  margin: 0;
  color: var(--dark);
}

.sector-card p {
  margin: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 22px;
  align-items: start;
}

.content-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2f4;
}

.content-figure img {
  aspect-ratio: 4 / 3;
}

.content-figure.wide img {
  aspect-ratio: 21 / 9;
}

.commercial-gallery .gallery-thumb img {
  background: #e8ecef;
}

.faq-list .question {
  scroll-margin-top: 112px;
}

.final-commercial-cta .button {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .sector-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
}
.landing-footer {
  margin-top: 48px;
  background: #20252a;
  color: #f5f7f8;
}

.landing-footer__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 30px;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.35fr);
  gap: 36px;
}

.landing-footer__brand h2,
.landing-footer__column h3 {
  margin: 0 0 12px;
  color: #fff;
}

.landing-footer__brand p,
.landing-footer__bottom p {
  margin: 0 0 14px;
  color: rgba(245, 247, 248, 0.78);
}

.landing-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.landing-footer__column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-footer__bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .landing-footer__inner,
  .landing-footer__columns {
    grid-template-columns: 1fr;
  }

  .landing-footer__inner {
    gap: 24px;
    padding-top: 34px;
  }
}
