:root {
  --black: #181818;
  --text: #1f1f1f;
  --muted: #5f5f5f;
  --line: #d4d0ca;
  --gold: #ffb800;
  --white: #ffffff;
  --soft: #f8f7f5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

.page-transition {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translateY(100%);
}

.page-transition::before,
.page-transition::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateY(100%);
}

.page-transition::before {
  background: var(--black);
}

.page-transition::after {
  background: var(--gold);
  transition-delay: 80ms;
}

.page-transition span {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.3);
}

.page-transition span::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  transform: translateX(-100%);
}

.page-transition.active {
  transform: translateY(0);
}

.page-transition.active::before {
  animation: transitionPanelIn 420ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-transition.active::after {
  animation: transitionPanelIn 420ms cubic-bezier(0.76, 0, 0.24, 1) 70ms forwards;
}

.page-transition.active span {
  animation: transitionLineShow 460ms ease 140ms forwards;
}

.page-transition.active span::before {
  animation: transitionLineMove 620ms ease-in-out 140ms forwards;
}

.page-transition.exit::before {
  transform: translateY(0);
  animation: transitionPanelOut 420ms cubic-bezier(0.76, 0, 0.24, 1) 70ms forwards;
}

.page-transition.exit::after {
  transform: translateY(0);
  animation: transitionPanelOut 420ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.section-focus {
  animation: sectionFocus 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  align-items: center;
  min-height: 86px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eee9e2;
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 210px;
  height: 50px;
  overflow: visible;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transform: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: 1rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #000;
  border-bottom-color: var(--black);
}

.site-nav a.active {
  color: var(--gold);
}

.nav-cta,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 19px;
  color: #090909;
  background: var(--gold);
  border: 0;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta::before,
.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 184, 0, 0.25);
}

.nav-cta:hover::before,
.button:hover::before {
  transform: translateX(120%);
}

.button > *,
.nav-cta > * {
  position: relative;
  z-index: 1;
}

.nav-cta {
  justify-self: end;
}

.button span,
.nav-cta span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.hero-shell {
  padding: 0 20px 62px;
}

.hero {
  position: relative;
  min-height: 515px;
  overflow: hidden;
  border-radius: 18px;
}

.hero-slides,
.hero-slides img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slides img {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6000ms ease;
}

.hero-slides img.active {
  opacity: 1;
  transform: scale(1.1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.32) 54%, rgba(17, 17, 17, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  min-height: 515px;
  padding: 42px 0 42px 60px;
  color: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 4.9rem);
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-title {
  max-width: 680px;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
  animation: heroTextIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-title span:first-child {
  color: var(--gold);
  margin-bottom: 6px;
  font-size: 0.58em;
  font-weight: 700;
  animation-delay: 90ms;
}

.hero-title span:nth-child(2) {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
  animation-delay: 190ms;
}

.hero-title span:last-child {
  color: #ffd66b;
  font-weight: 400;
  animation-delay: 290ms;
}

.hero-content p,
.hero-mobile-apply {
  animation: heroTextIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 390ms both;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 3.4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.22;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.25;
}

.hero-content p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-mobile-apply {
  display: none;
  align-self: flex-start;
  margin-top: 24px;
}

.section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section-kicker {
  margin-bottom: 4px;
  color: #6d6d6d;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #fff;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.about-copy p:not(.section-kicker),
.why-copy p,
.land-section p,
.apply-section p,
.property-card p,
.faq-list p {
  color: var(--muted);
}

.about-small-image {
  height: 198px;
  margin: 32px 0;
  object-fit: cover;
  border-radius: 7px;
}

.about-tall-image {
  min-height: 568px;
  object-fit: cover;
  border-radius: 7px;
}

.section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.project-section {
  max-width: 1080px;
  padding-top: 58px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--black);
  background: #fff;
  cursor: pointer;
}

.filter-button.active {
  background: var(--black);
  color: #fff;
}

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

.property-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.property-card[hidden] {
  display: none;
}

.property-card img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 7px;
  transition: transform 360ms ease;
}

.property-card:hover,
.development-card:hover,
.faq-list details:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 184, 0, 0.72);
  box-shadow: 0 18px 48px rgba(24, 24, 24, 0.12);
}

.property-card:hover img,
.development-card:hover img {
  transform: scale(1.035);
}

.property-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}

.property-title-row span {
  color: var(--muted);
  white-space: nowrap;
}

.property-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0 0;
}

.property-card dl div {
  padding-top: 10px;
  border-top: 1px solid #eee9e2;
}

.property-card dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.property-card dd {
  margin: 0;
  font-weight: 600;
}

.services-section {
  margin-top: 18px;
  padding: 96px max(20px, calc((100vw - 1040px) / 2)) 110px;
  color: #fff;
  background: var(--black);
}

.services-section h2,
.services-section h3 {
  color: #fff;
}

.service-grid {
  display: flex;
  gap: 28px;
  margin-top: 52px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
}

.service-grid::-webkit-scrollbar {
  display: none;
}

.service-grid article {
  flex: 0 0 min(360px, 82vw);
  min-height: 330px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.service-grid article:hover {
  transform: translateY(-8px);
}

.service-grid p {
  color: #adadad;
}

.service-grid a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
}

.service-icon {
  display: block;
  width: 78px;
  height: 78px;
  margin-bottom: 34px;
  border: 1px solid #b8b8b8;
  opacity: 0.9;
  transition: border-color 220ms ease, transform 220ms ease;
}

.service-grid article:hover .service-icon {
  border-color: var(--gold);
  transform: rotate(-2deg) scale(1.05);
}

.carousel-hint {
  position: relative;
  height: 3px;
  margin-top: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.carousel-hint span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: var(--gold);
  border-radius: inherit;
  animation: carouselPulse 2.4s ease-in-out infinite;
}

@keyframes carouselPulse {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(195%);
  }
}

.building-icon {
  clip-path: polygon(14% 30%, 50% 12%, 86% 30%, 86% 100%, 14% 100%);
}

.plan-icon {
  background:
    linear-gradient(#b8b8b8, #b8b8b8) 20% 24% / 48% 1px no-repeat,
    linear-gradient(#b8b8b8, #b8b8b8) 20% 54% / 62% 1px no-repeat,
    linear-gradient(90deg, #b8b8b8, #b8b8b8) 50% 0 / 1px 100% no-repeat;
}

.blocks-icon {
  transform: skewY(-30deg);
}

.why-section,
.land-section,
.apply-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.why-section {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 760px);
  max-width: 1080px;
  padding: 86px 52px;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86) 52%, rgba(255, 255, 255, 0.7)),
    linear-gradient(0deg, rgba(255, 184, 0, 0.16), rgba(255, 255, 255, 0.2)),
    url("public/map.jpg") center / cover;
  border-radius: 16px;
  border: 1px solid rgba(212, 208, 202, 0.85);
}

.why-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.74), transparent 30%),
    radial-gradient(circle at 16% 86%, rgba(255, 184, 0, 0.14), transparent 28%);
  pointer-events: none;
}

.why-copy {
  position: relative;
  z-index: 1;
}

.why-section img,
.land-section img {
  border-radius: 14px;
  object-fit: cover;
}

.why-section img {
  min-height: 480px;
}

.why-section h2,
.why-section .section-kicker,
.why-section .feature-list strong {
  color: var(--black);
}

.why-section p,
.why-section .feature-list span {
  color: rgba(31, 31, 31, 0.76);
}

.why-section .feature-list li::before {
  background: var(--gold);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
}

.feature-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: var(--black);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 8px;
  color: var(--muted);
}

.mortgage-section {
  max-width: 1080px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.mortgage-card {
  color: #fff;
  background: var(--black);
  border-radius: 16px;
}

.mortgage-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.92), rgba(24, 24, 24, 0.74)),
    url("public/namibia informal settelment.jpg") center / cover;
}

.mortgage-card h2,
.mortgage-card p {
  color: #fff;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items: end;
}

.stats-row strong {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 12px;
  color: #aaa;
}

.land-section img {
  min-height: 430px;
}

.developments-section {
  max-width: 1080px;
  padding-top: 48px;
}

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

.development-card {
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.development-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 360ms ease;
}

.development-body {
  padding: 24px 28px 28px;
}

.development-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.development-status.ongoing {
  color: #111;
  background: var(--gold);
}

.development-status.next {
  color: #fff;
  background: var(--black);
}

.development-card p {
  color: var(--muted);
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin: 14px 0 0;
}

.apply-section {
  align-items: start;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full,
.full-button,
.form-message {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 500;
}

.consent input {
  min-height: auto;
  margin-top: 4px;
}

.form-message {
  margin: 0;
  color: var(--black);
  font-weight: 600;
}

.apply-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.apply-modal.open {
  display: flex;
}

.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.apply-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 34px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  animation: modalIn 180ms ease-out;
}

.apply-modal-card h2 {
  margin-bottom: 14px;
}

.apply-modal-card p:not(.section-kicker) {
  color: var(--muted);
}

.apply-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.download-form-button {
  margin-top: 14px;
}

body.modal-open {
  overflow: hidden;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-footer {
  margin-top: 40px;
  padding: 72px max(20px, calc((100vw - 1040px) / 2)) 28px;
  color: #fff;
  background: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.8fr;
  gap: 72px;
  margin-bottom: 64px;
}

.footer-top h2 {
  color: #fff;
  font-size: 1.7rem;
}

.footer-top p {
  max-width: 440px;
  color: #d6d6d6;
}

.footer-top nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-top strong,
.footer-card span {
  color: #c8c8c8;
  font-weight: 500;
}

.footer-card {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  padding: 20px 16px;
  border: 1px solid #565656;
  border-radius: 7px;
}

.footer-logo {
  width: 240px;
  height: 60px;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
}

.footer-card span,
.footer-card strong {
  display: block;
}

.footer-card strong {
  margin-top: 8px;
}

.footer-card a:hover {
  color: var(--gold);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes transitionPanelIn {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes transitionPanelOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes transitionLineShow {
  to {
    opacity: 1;
  }
}

@keyframes transitionLineMove {
  0% {
    transform: translateX(-100%);
  }

  45%,
  55% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes sectionFocus {
  0% {
    transform: translateY(34px) scale(0.985);
    filter: blur(6px);
    opacity: 0.35;
  }

  55% {
    transform: translateY(0) scale(1.006);
    filter: blur(0);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    filter: blur(0);
    opacity: 1;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: #d6d6d6;
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .hero-mobile-apply {
    display: inline-flex;
  }

  .site-nav.open {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    justify-content: stretch;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee9e2;
  }

  .hero-content {
    padding-left: 32px;
    padding-right: 32px;
  }

  .about-section,
  .why-section,
  .land-section,
  .apply-section,
  .mortgage-card,
  .footer-top,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .property-grid,
  .development-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding-top: 72px;
    padding-bottom: 78px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 74px;
    padding: 14px 18px;
  }

  .site-nav.open {
    top: 74px;
  }

  .logo {
    width: 168px;
    height: 42px;
  }

  .hero-shell {
    padding: 0 12px 42px;
  }

  .hero,
  .hero-content {
    min-height: 520px;
  }

  .hero-content {
    padding: 34px 24px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-heading,
  .footer-bottom {
    flex-direction: column;
  }

  .property-title-row,
  .stats-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mortgage-card {
    padding: 28px;
  }

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

  .apply-modal-card {
    padding: 28px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-transition {
    display: none;
  }
}
