
:root {
  --night: #151713;
  --forest: #24291f;
  --olive: #6d7357;
  --sand: #d3c1a1;
  --cream: #e8dfd0;
  --bronze: #b68a4a;
  --white: #f5f1e9;
  --ink: #1a1a18;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1440px;
  --section-space: clamp(76px, 10vw, 168px);
  --gutter: clamp(20px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 940px;
  font-size: clamp(4rem, 10vw, 10.5rem);
}

h2 {
  max-width: 860px;
  font-size: clamp(3rem, 6.8vw, 7.5rem);
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
}

p {
  margin: 0;
}

.eyebrow {
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px var(--gutter);
  background: color-mix(in srgb, var(--night) 56%, transparent);
  border-bottom: 1px solid rgb(245 241 233 / 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: clamp(58px, 5.4vw, 78px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgb(0 0 0 / 0.34));
}

.brand strong {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  color: rgb(245 241 233 / 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--bronze);
  transition: transform 0.35s ease;
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid var(--bronze);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--bronze);
  transition: transform 0.42s ease;
}

.button.solid::before,
.button:hover::before {
  transform: scaleX(1);
}

.button:hover span:last-child {
  transform: translateX(4px);
}

.button span:last-child {
  transition: transform 0.25s ease;
}

.button.ghost {
  border-color: rgb(245 241 233 / 0.45);
}

.menu-toggle,
.hamburger,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px var(--gutter) 94px;
  overflow: hidden;
  background: var(--bg) center / cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 960px;
  gap: 24px;
  animation: revealUp 1s ease both;
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.55);
}

.hero__content p:not(.eyebrow) {
  max-width: 720px;
  color: rgb(245 241 233 / 0.86);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.hero__promise {
  position: absolute;
  right: var(--gutter);
  bottom: 46px;
  color: rgb(245 241 233 / 0.56);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  font-style: italic;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 1px;
  height: 64px;
  background: rgb(245 241 233 / 0.25);
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: var(--bronze);
  animation: scrollCue 1.6s ease-in-out infinite;
}

.button-row,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}

.split-section,
.hunt-feature,
.system-section,
.planning-section,
.downloads,
.gallery-section,
.story-section,
.species-packages,
.faq-section,
.contact-section,
.final-cta {
  padding: var(--section-space) var(--gutter);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
}

.light {
  background: var(--white);
  color: var(--ink);
}

.split-section > div,
.story-copy,
.section-intro {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.split-section p,
.section-intro p,
.story-copy p,
.system-section p,
.planning-section p,
.downloads p,
.faq-section p {
  color: color-mix(in srgb, currentColor 74%, transparent);
}

.split-section strong {
  color: var(--bronze);
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-left: 1px solid var(--bronze);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgb(182 138 74 / 0.4);
}

.image-frame img,
.masonry img,
.gallery-item img,
.layered-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.image-frame:hover img,
.masonry img:hover,
.gallery-item:hover img {
  transform: scale(1.04);
}

.image-frame.tall {
  aspect-ratio: 0.78;
}

.pillar-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--forest);
  border-block: 1px solid rgb(211 193 161 / 0.14);
}

.pillar-strip article {
  position: relative;
  min-height: 310px;
  padding: clamp(34px, 4vw, 62px);
  overflow: hidden;
  border-right: 1px solid rgb(211 193 161 / 0.12);
}

.pillar-strip span,
.journey span {
  color: rgb(182 138 74 / 0.38);
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 10rem);
  line-height: 0.8;
}

.pillar-strip h3 {
  margin-top: -18px;
}

.pillar-strip p {
  max-width: 290px;
  margin-top: 18px;
  color: rgb(245 241 233 / 0.7);
}

.dark {
  background: var(--night);
  color: var(--white);
}

.hunt-feature,
.species-packages {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.75fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: center;
}

.hunt-feature > div:last-child,
.species-packages > div:first-child {
  display: grid;
  gap: 22px;
}

.hunt-feature p,
.species-packages p,
.gallery-section p,
.story-section p {
  color: rgb(245 241 233 / 0.72);
}

.layered-images {
  position: relative;
  min-height: 660px;
}

.layered-images img:first-child {
  position: absolute;
  inset: 0 auto auto 0;
  width: 72%;
  height: 82%;
}

.layered-images img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 48%;
  border: 12px solid var(--night);
}

.scroll-landscape {
  min-height: 120svh;
  display: grid;
  place-items: center;
  padding: var(--section-space) var(--gutter);
  background:
    linear-gradient(rgb(21 23 19 / 0.28), rgb(21 23 19 / 0.82)),
    var(--bg) center / cover fixed;
}

.scroll-landscape div {
  display: grid;
  gap: clamp(18px, 4vw, 42px);
}

.scroll-landscape p {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 9rem);
  line-height: 0.9;
  text-align: center;
  text-wrap: balance;
}

.portrait-section {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.9fr);
  background: var(--cream);
  color: var(--ink);
}

.portrait {
  min-height: 700px;
}

.lodge-section {
  background: var(--forest);
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: stretch;
}

.lodge-copy {
  align-content: center;
  max-width: 680px;
}

.lodge-section h2 {
  max-width: 580px;
  font-size: clamp(2.65rem, 4.45vw, 5.1rem);
}

.lodge-section .section-actions {
  margin-top: 4px;
}

.lodge-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 8px 0 2px;
  overflow: hidden;
  border: 1px solid rgb(211 193 161 / 0.18);
}

.lodge-highlights span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgb(245 241 233 / 0.045);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.lodge-gallery {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(420px, 38vw, 600px);
  align-self: stretch;
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgb(211 193 161 / 0.18);
  background:
    linear-gradient(135deg, rgb(245 241 233 / 0.075), transparent 48%),
    radial-gradient(circle at 80% 20%, rgb(193 143 70 / 0.16), transparent 32%),
    rgb(0 0 0 / 0.18);
}

.lodge-gallery::before,
.lodge-gallery::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lodge-gallery::before {
  inset: 18px;
  border: 1px solid rgb(211 193 161 / 0.12);
}

.lodge-gallery::after {
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 58px);
  width: clamp(90px, 14vw, 180px);
  height: 1px;
  background: rgb(211 193 161 / 0.4);
}

.lodge-coming-soon {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.lodge-coming-soon p {
  max-width: 11ch;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5.3vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-wrap: balance;
}

.masonry {
  columns: 3 210px;
  column-gap: 18px;
}

.masonry img,
.gallery-item {
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
}

.masonry.small img:nth-child(2) {
  aspect-ratio: 0.76;
}

.masonry.small img:nth-child(1),
.masonry.small img:nth-child(3) {
  aspect-ratio: 1.16;
}

.section-intro {
  margin-inline: auto;
  text-align: center;
}

.editable-grid,
.download-grid,
.values,
.schema-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--container);
  margin: clamp(44px, 6vw, 76px) auto 0;
  background: rgb(26 26 24 / 0.14);
  border: 1px solid rgb(26 26 24 / 0.12);
}

.editable-grid article,
.download-grid article,
.values article,
.schema-panels article {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 48px);
  background: color-mix(in srgb, var(--white) 95%, var(--sand));
}

.editable-grid .button {
  color: var(--ink);
  width: max-content;
}

.gallery-grid {
  max-width: var(--container);
  margin: clamp(44px, 6vw, 76px) auto 0;
}

.gallery-item {
  position: relative;
  display: block;
}

.gallery-item:nth-child(odd) img {
  aspect-ratio: 0.78;
}

.gallery-item:nth-child(even) img {
  aspect-ratio: 1.32;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 72px var(--gutter);
  background: rgb(6 7 5 / 0.94);
}

.lightbox:target {
  display: grid;
}

.lightbox img {
  max-height: 82svh;
  width: min(1100px, 88vw);
  object-fit: contain;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox__close {
  top: 24px;
  right: 28px;
}

.lightbox__nav {
  top: 50%;
  font-size: 4rem;
}

.lightbox__nav.prev {
  left: 28px;
}

.lightbox__nav.next {
  right: 28px;
}

.centered {
  justify-content: center;
}

.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--container);
  margin: clamp(44px, 6vw, 76px) auto 0;
  border-top: 1px solid rgb(211 193 161 / 0.26);
}

.journey article {
  padding: 34px 22px;
  border-right: 1px solid rgb(211 193 161 / 0.16);
}

.journey h3 {
  margin-top: -16px;
}

.request-link {
  justify-self: start;
  padding: 10px 14px;
  border: 1px solid rgb(26 26 24 / 0.24);
  color: var(--ink);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.request-link:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.photo-safari {
  background: var(--sand);
  color: var(--ink);
}

.wide {
  min-height: 460px;
  aspect-ratio: 1.2;
}

.story-section {
  display: grid;
  gap: 52px;
}

.story-copy {
  margin-inline: auto;
  text-align: center;
}

.values {
  grid-template-columns: repeat(5, 1fr);
  background: rgb(245 241 233 / 0.12);
  border-color: rgb(245 241 233 / 0.12);
}

.values article,
.schema-panels article {
  background: rgb(245 241 233 / 0.06);
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.facility-list span {
  padding: 10px 14px;
  border: 1px solid rgb(26 26 24 / 0.16);
  color: rgb(26 26 24 / 0.72);
}

.facility-list strong {
  color: var(--ink);
}

.species-packages {
  background:
    linear-gradient(rgb(21 23 19 / 0.88), rgb(21 23 19 / 0.94)),
    var(--bg) center / cover;
}

.schema-panels {
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.faq-list {
  max-width: 980px;
  margin: 48px auto 0;
  border-top: 1px solid rgb(26 26 24 / 0.16);
}

details {
  border-bottom: 1px solid rgb(26 26 24 / 0.16);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(40px, 7vw, 112px);
  background: var(--night);
}

.contact-section > div {
  display: grid;
  align-content: start;
  gap: 22px;
}

address {
  display: grid;
  gap: 10px;
  color: rgb(245 241 233 / 0.78);
  font-style: normal;
}

.enquiry-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 54px);
  background: rgb(245 241 233 / 0.07);
  border: 1px solid rgb(245 241 233 / 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  color: rgb(245 241 233 / 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

fieldset {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border: 1px solid rgb(245 241 233 / 0.14);
  padding: 18px;
}

legend {
  padding: 0 8px;
  color: var(--sand);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgb(245 241 233 / 0.18);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--white);
  background: rgb(6 7 5 / 0.32);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  color: rgb(245 241 233 / 0.5);
  font-size: 0.82rem;
}

.final-cta {
  min-height: 78svh;
  display: grid;
  align-content: center;
  gap: 24px;
  background:
    linear-gradient(90deg, rgb(21 23 19 / 0.85), rgb(21 23 19 / 0.45)),
    var(--bg) center / cover;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgb(245 241 233 / 0.78);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  padding: 10px 13px;
  border: 1px solid rgb(245 241 233 / 0.18);
  background: rgb(36 41 31 / 0.82);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 34px;
  padding: 70px var(--gutter) 34px;
  background: #0c0d0b;
  color: var(--white);
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.footer-logo {
  width: min(168px, 46vw);
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 18px 34px rgb(0 0 0 / 0.32));
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgb(245 241 233 / 0.12);
  color: rgb(245 241 233 / 0.52);
  font-size: 0.84rem;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .site-header > .button {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hamburger {
    display: grid;
    gap: 7px;
    width: 46px;
    cursor: pointer;
  }

  .hamburger span {
    height: 2px;
    background: var(--white);
  }

  .menu-toggle {
    position: absolute;
    opacity: 0;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 49;
    display: grid;
    align-content: space-between;
    min-height: 100svh;
    max-height: 100dvh;
    overflow-y: auto;
    padding: 100px var(--gutter) 38px;
    background: var(--night);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    visibility: hidden;
  }

  .mobile-menu::before {
    content: "SAFARI";
    position: absolute;
    right: -4vw;
    top: 20svh;
    color: rgb(245 241 233 / 0.04);
    font-family: var(--font-display);
    font-size: 24vw;
    line-height: 1;
  }

  .mobile-menu nav {
    position: relative;
    display: grid;
    gap: 12px;
  }

  .mobile-menu nav a {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 11vw, 5.5rem);
    line-height: 0.95;
  }

  .menu-toggle:checked ~ .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .pillar-strip,
  .journey,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .hunt-feature,
  .species-packages,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: clamp(56px, 14vw, 92px);
    --gutter: clamp(16px, 5vw, 24px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
    line-height: 0.88;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .brand strong {
    display: none;
  }

  .site-header {
    padding-block: 12px;
  }

  .brand img {
    width: 54px;
  }

  .mobile-menu {
    padding-top: 88px;
  }

  .mobile-menu nav a {
    font-size: clamp(2.1rem, 13vw, 3.6rem);
  }

  .hero {
    min-height: 100dvh;
    padding: 112px var(--gutter) 68px;
    background-position: 58% center;
  }

  .hero__content {
    max-width: 100%;
    gap: 18px;
  }

  .hero__content p:not(.eyebrow),
  .final-cta p,
  .contact-section p {
    font-size: 1rem;
  }

  .hero__promise {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    margin-top: 36px;
  }

  .button-row,
  .section-actions {
    align-items: stretch;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    white-space: normal;
  }

  .split-section,
  .portrait-section {
    grid-template-columns: 1fr;
  }

  .lodge-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lodge-section h2 {
    font-size: clamp(2.45rem, 12vw, 4.25rem);
  }

  .lodge-highlights {
    grid-template-columns: 1fr;
  }

  .lodge-highlights span {
    min-height: 52px;
  }

  .lodge-gallery {
    min-height: 310px;
    padding: 34px 28px;
  }

  .lodge-coming-soon p {
    max-width: 10ch;
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .image-frame,
  .portrait,
  .layered-images {
    min-height: 320px;
  }

  .image-frame::after {
    inset: 12px -12px -12px 12px;
  }

  .pillar-strip,
  .journey,
  .editable-grid,
  .download-grid,
  .values,
  .schema-panels,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .scroll-landscape {
    background-attachment: scroll;
  }

  .layered-images img:first-child,
  .layered-images img:last-child {
    position: absolute;
  }

  .layered-images img:last-child {
    border-width: 8px;
  }

  .masonry {
    columns: 1;
  }

  .gallery-grid {
    columns: 1;
  }

  .lightbox {
    padding: 64px 14px;
  }

  .lightbox img {
    width: 100%;
    max-height: 78dvh;
  }

  .lightbox__close {
    top: 16px;
    right: 16px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 16px;
    font-size: 3rem;
  }

  .lightbox__nav.prev {
    left: 24px;
  }

  .lightbox__nav.next {
    right: 24px;
  }

  .facility-list span {
    width: 100%;
  }

  .whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero {
    background-position: 62% center;
  }

  .pillar-strip article,
  .editable-grid article,
  .download-grid article,
  .values article,
  .schema-panels article {
    padding: 24px 18px;
  }

  .contact-section address,
  .site-footer address {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
