@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #1c2426;
  --ink-soft: rgba(28, 36, 38, 0.68);
  --bone: #f7f3ec;
  --porcelain: #fcfbf7;
  --mist: #e8eef0;
  --mineral: #2f7f92;
  --marine: #1e5e76;
  --clay: #b98572;
  --moss: #788973;
  --white: #ffffff;
  --shadow: 0 24px 70px -36px rgba(21, 45, 52, 0.35);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  background: rgba(47, 127, 146, 0.22);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.13;
  mix-blend-mode: multiply;
  background-image: radial-gradient(rgba(28, 36, 38, 0.18) 0.55px, transparent 0.55px);
  background-size: 4px 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--mineral), var(--clay));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding-top: 12px;
}

.nav-shell {
  width: min(1180px, calc(100% - 24px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(252, 251, 247, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--porcelain);
  color: var(--bone);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.45);
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(30, 94, 118, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  border-radius: 999px;
  padding: 11px 16px;
  color: rgba(28, 36, 38, 0.64);
  font-size: 14px;
  font-weight: 700;
  transition: background 280ms var(--spring), color 280ms var(--spring), transform 280ms var(--spring);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: var(--ink);
  color: var(--white);
}

.desktop-nav a:active,
.magnetic-button:active,
.glass-button:active,
.menu-button:active {
  transform: translateY(1px) scale(0.99);
}

.magnetic-button,
.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 300ms var(--spring), background 300ms var(--spring), border 300ms var(--spring);
}

.magnetic-button {
  background: var(--mineral);
  color: var(--white);
  padding: 0 18px 0 24px;
  box-shadow: var(--shadow);
}

.magnetic-button:hover {
  background: var(--marine);
}

.magnetic-button svg,
.glass-button svg {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.glass-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0 16px 0 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.menu-button,
.menu-close {
  display: none;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-button {
  width: 46px;
  height: 46px;
  place-items: center;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 99px;
  background: currentColor;
}

.mobile-panel {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  opacity: 0;
  background: rgba(28, 36, 38, 0.26);
  backdrop-filter: blur(8px);
  transition: opacity 260ms var(--spring);
}

.mobile-panel.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-panel__surface {
  width: min(390px, calc(100% - 28px));
  height: 100%;
  margin-left: auto;
  padding: 20px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 360ms var(--spring);
}

.mobile-panel.is-open .mobile-panel__surface {
  transform: translateX(0);
}

.mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.menu-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(28, 36, 38, 0.08);
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a,
.mobile-contact {
  border: 1px solid rgba(28, 36, 38, 0.08);
  border-radius: 8px;
  background: var(--white);
  padding: 15px 16px;
  font-weight: 800;
}

.mobile-contact {
  margin-top: 18px;
  background: var(--ink);
  color: var(--white);
}

.mobile-contact p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-contact strong {
  font-size: 15px;
  line-height: 1.5;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 25, 28, 0.94), rgba(16, 25, 28, 0.6) 47%, rgba(16, 25, 28, 0.18)),
    linear-gradient(0deg, var(--bone), rgba(247, 243, 236, 0) 28%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 42px;
  min-height: 100dvh;
  padding-top: 120px;
  padding-bottom: 112px;
}

.hero__copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--mineral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.62;
}

.hero .eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero .eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-top: 34px;
  font-size: clamp(5rem, 8vw, 8.3rem);
  font-weight: 600;
  line-height: 0.9;
}

.hero__lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__status {
  align-self: end;
  display: grid;
  gap: 12px;
  width: min(420px, 100%);
  margin-left: auto;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.glass-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.glass-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
}

.glass-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.hero__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__mini-grid .glass-card strong {
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
}

.section {
  padding: 108px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 58px;
  margin-bottom: 50px;
}

.section-head h2,
.centre-copy h2,
.contact-copy h2 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(3.5rem, 5vw, 5.8rem);
  font-weight: 600;
  line-height: 0.96;
}

.section-head p,
.centre-copy p,
.contact-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.service-grid {
  display: grid;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
  padding: 22px;
  color: var(--white);
}

.service-card--large {
  grid-column: span 3;
  grid-row: span 2;
}

.service-card:nth-child(2) {
  grid-column: span 3;
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--spring), filter 900ms var(--spring);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 21, 24, 0.05), rgba(10, 21, 24, 0.8));
}

.service-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.04);
}

.service-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-card h3 {
  max-width: 440px;
  margin-top: min(16vh, 122px);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 0.98;
}

.service-card--large h3 {
  margin-top: 230px;
  font-size: 42px;
}

.service-card p {
  max-width: 440px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 800;
}

.service-card a::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 12px 2px no-repeat,
    var(--white);
  transition: transform 280ms var(--spring);
}

.service-card:hover a::after {
  transform: translateX(4px);
}

.centre-section {
  background: var(--porcelain);
}

.centre-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 68px;
}

.centre-copy p,
.contact-copy p {
  margin-top: 26px;
}

.info-stack,
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.info-stack div,
.contact-lines div {
  border: 1px solid rgba(28, 36, 38, 0.08);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 18px 54px -42px rgba(21, 45, 52, 0.5);
}

.info-stack small {
  display: block;
  margin-bottom: 7px;
  color: var(--mineral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.info-stack strong {
  font-size: 16px;
  line-height: 1.5;
}

.centre-visual {
  position: relative;
  min-height: 560px;
}

.centre-visual img {
  position: absolute;
  inset: 0 7% auto auto;
  width: 76%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.placeholder-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(360px, 70%);
  border: 1px solid rgba(28, 36, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.placeholder-note p {
  margin: 0 0 8px;
  color: var(--mineral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.placeholder-note strong {
  line-height: 1.5;
}

.protocol-list {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 16px;
}

.protocol-card {
  border: 1px solid rgba(28, 36, 38, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 28px;
  box-shadow: var(--shadow);
}

.protocol-card span {
  color: var(--mineral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.protocol-card h3 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.protocol-card p,
.protocol-card li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.protocol-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.reviews-section {
  overflow: hidden;
  background: var(--porcelain);
}

.review-rail {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: 16px;
  animation: review-marquee 42s linear infinite;
}

.review-rail:hover {
  animation-play-state: paused;
}

.review-rail article {
  width: min(360px, calc(100vw - 46px));
  min-height: 210px;
  border: 1px solid rgba(28, 36, 38, 0.08);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-rail strong {
  display: block;
  font-size: 18px;
}

.review-rail small {
  display: block;
  margin-top: 5px;
  color: var(--mineral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-rail p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.contact-copy h2,
.contact-copy p,
.contact-copy .eyebrow {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-lines div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
}

.contact-lines svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.form-status {
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(120, 137, 115, 0.18);
  color: var(--white);
  line-height: 1.5;
}

.form-status.is-error {
  background: rgba(185, 133, 114, 0.2);
}

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

.contact-form span {
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
  padding: 14px 15px;
  transition: border 260ms var(--spring), box-shadow 260ms var(--spring);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter input:focus {
  border-color: var(--mineral);
  box-shadow: 0 0 0 4px rgba(47, 127, 146, 0.14);
}

.contact-form small {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.contact-form label.is-invalid input,
.contact-form label.is-invalid select {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(185, 133, 114, 0.14);
}

.contact-form label.is-invalid small {
  color: #f0c7bb;
  font-weight: 800;
}

.site-footer {
  background: #111719;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1fr;
  gap: 46px;
  padding: 68px 0;
}

.brand--footer strong {
  color: var(--white);
}

.site-footer p,
.site-footer span,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.site-footer p {
  margin: 24px 0 0;
}

.site-footer h3 {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}

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

.newsletter {
  display: flex;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.newsletter input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.newsletter button {
  border: 0;
  background: var(--mineral);
  color: var(--white);
  cursor: pointer;
  padding: 0 18px;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #1f8f64;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 260ms var(--spring);
}

.floating-contact:hover {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--spring), transform 760ms var(--spring);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

@keyframes review-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}

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

  .menu-button {
    display: grid;
  }

  .hero__grid,
  .section-head,
  .centre-grid,
  .contact-grid,
  .protocol-list {
    grid-template-columns: 1fr;
  }

  .hero__status {
    display: none;
  }

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

  .service-card,
  .service-card:nth-child(2),
  .service-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card--large h3,
  .service-card h3 {
    margin-top: 94px;
    font-size: 34px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-shell {
    padding: 8px 10px;
  }

  .brand strong,
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .hero {
    min-height: 920px;
  }

  .hero__grid {
    min-height: 920px;
    padding-top: 132px;
    padding-bottom: 110px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 5.6rem);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .magnetic-button,
  .glass-button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .section-head h2,
  .centre-copy h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .service-grid {
    grid-auto-rows: 260px;
    grid-template-columns: 1fr;
  }

  .service-card h3,
  .service-card--large h3 {
    margin-top: 92px;
    font-size: 32px;
  }

  .centre-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .centre-visual img,
  .placeholder-note {
    position: static;
    width: 100%;
  }

  .centre-visual img {
    height: 360px;
  }

  .review-rail {
    animation-duration: 52s;
  }

  .contact-form {
    padding: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 54px 0;
  }

  .footer-bottom .container {
    flex-direction: column;
  }
}
