/* ==========================================================================
   Mayuri Fortune Homes — landing page
   Design tokens extracted from the Claude Design source.
   ========================================================================== */

:root {
  --sand:        #f6f2ea;
  --sand-soft:   #faf8f3;
  --surface:     #ffffff;
  --ink:         #242019;
  --ink-soft:    #3d382e;
  --body:        #5f5849;
  --body-light:  #6b6459;
  --muted:       #8a8272;
  --muted-light: #9a917f;

  --brand:       #F26522;
  --brand-dark:  #d9540f;
  --brand-deep:  #b8440a;
  --brand-tint:  #fff2ea;
  --brand-warm:  #f9a06a;

  --line:        #e7e1d5;
  --line-soft:   #ece6da;
  --line-faint:  #f0ebe0;
  --line-input:  #e2dccf;

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-lift:  0 24px 50px -26px rgba(36, 32, 25, .5);
  --shadow-card:  0 12px 30px -22px rgba(36, 32, 25, .5);
  --shadow-panel: 0 26px 54px -30px rgba(36, 32, 25, .5);
  --shadow-brand: 0 16px 32px -12px rgba(242, 101, 34, .6);

  --gutter: 44px;
  --shell:  1280px;
}

/* ---------- reset ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--sand);
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand-deep); }

h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0; }

/* figure/dl carry sizeable UA margins that break the grid cells they sit in */
figure, dl, dd { margin: 0; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout shell ---------- */

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  background: var(--sand);
}

.section { padding: 80px var(--gutter) 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 100;
  font-size: 14px;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- shared type ---------- */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.section-title {
  font-size: 48px;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 12px;
}

.accent { font-style: italic; color: var(--brand); }

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  color: #fff;
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--line-input);
  color: var(--ink);
  font-weight: 600;
  padding: 16px 26px;
}
.btn--ghost:hover { color: var(--ink); border-color: var(--brand); }

.btn i { font-size: 12px; }
.btn .fa-whatsapp { color: #25a55f; font-size: 16px; }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 242, 234, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px var(--gutter);
}

.nav__logo { height: 46px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #4a443a;
}
.nav__links a { color: #4a443a; }
.nav__links a:hover { color: var(--brand-dark); }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.nav__phone i { font-size: 12px; color: var(--brand); }

.nav__cta {
  background: var(--brand);
  color: #fff;
  padding: 11px 20px;
  border-radius: 11px;
  box-shadow: 0 12px 26px -12px rgba(242, 101, 34, .7);
  white-space: nowrap;
}
.nav__cta:hover { color: #fff; background: var(--brand-dark); }

.nav__toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
  font-size: 17px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { padding: 44px var(--gutter) 0; }

.hero__head { text-align: center; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(242, 101, 34, .18);
}

.hero__title {
  font-size: 88px;
  line-height: .98;
  letter-spacing: -.015em;
  margin-top: 16px;
}

.hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--body-light);
  margin: 18px auto 0;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 22px;
  padding: 10px 22px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: 0 12px 28px -20px rgba(36, 32, 25, .5);
}
.hero__price-amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: var(--brand);
}
.hero__price-unit {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.hero__gallery { position: relative; margin-top: 40px; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  height: 400px;
}

/* Fewer than three images should not be stretched across a 3-up grid. */
.hero__grid--single { grid-template-columns: minmax(0, 1fr); height: 440px; }
.hero__grid--pair   { grid-template-columns: 1.25fr 1fr; }

.hero__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* stat strip */

.stats {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: 0 22px 44px -20px rgba(36, 32, 25, .4);
  border-radius: 16px;
  padding: 16px 6px;
  display: flex;
}

.stats__item { padding: 0 26px; text-align: center; }
.stats__value {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}
.stats__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 5px;
}
.stats__rule { width: 1px; background: var(--line-soft); }

/* ==========================================================================
   Key facts
   ========================================================================== */

.facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.facts--4 { grid-template-columns: repeat(4, 1fr); }
.facts--5 { grid-template-columns: repeat(5, 1fr); }

.fact { background: var(--surface); padding: 22px 20px; }
.fact > i { color: var(--brand); font-size: 17px; }
.fact__label { margin-top: 12px; }
.fact__value { font-weight: 700; font-size: 15px; margin-top: 3px; color: var(--ink); }

/* ==========================================================================
   Overview
   ========================================================================== */

.overview {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
/* Text-only overview (no render available) should not leave a dead column. */
.overview--text { grid-template-columns: minmax(0, 820px); }

.overview p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-top: 20px;
}
.overview p + p { margin-top: 14px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.chip i { color: var(--brand); font-size: 12px; }

.overview__media {
  position: relative;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 26px 54px -26px rgba(36, 32, 25, .5);
}
.overview__media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Amenities
   ========================================================================== */

.amenities__head { text-align: center; }

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}

.amenity {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 10px 26px -20px rgba(36, 32, 25, .5);
  transition: transform .18s ease, box-shadow .18s ease;
}
.amenity:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -22px rgba(36, 32, 25, .55);
}

.amenity__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity__icon i { color: var(--brand); font-size: 19px; }

.amenity__name { font-weight: 700; font-size: 15.5px; margin-top: 16px; color: var(--ink); }
.amenity__note { font-size: 13px; line-height: 1.5; color: var(--muted); margin-top: 4px; }

/* ==========================================================================
   Downloads
   ========================================================================== */

.downloads {
  background: var(--ink);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.downloads .eyebrow { color: var(--brand-warm); }
.downloads__title { font-size: 44px; line-height: 1.05; color: #fff; margin-top: 12px; }
.downloads__lede {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
  margin-top: 16px;
}

.downloads__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.downloads__grid--1 { grid-template-columns: minmax(0, 320px); }
.downloads__grid--2 { grid-template-columns: repeat(2, 1fr); }

.download {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 24px 20px;
  display: block;
  transition: background .18s ease, border-color .18s ease;
}
.download:hover { background: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .3); }
.download > i { color: var(--brand); font-size: 26px; }
.download__name { font-weight: 700; font-size: 16px; color: #fff; margin-top: 18px; }
.download__meta {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.download__meta i { font-size: 10px; }

/* ==========================================================================
   Location
   ========================================================================== */

.location {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: stretch;
}
/* No landmark list to sit beside the map — let the map take the full width. */
.location--wide { grid-template-columns: minmax(0, 1fr); }
.location--wide .location__map { min-height: 420px; }

.location__main { display: flex; flex-direction: column; }
.location__main .section-title { margin-bottom: 20px; }

.location__map {
  position: relative;
  flex: 1;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.location__map iframe { border: 0; width: 100%; height: 100%; display: block; }

.location__address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  margin-top: 16px;
}
.location__address i { color: var(--brand); }

.nearby {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 12px 8px;
  box-shadow: 0 14px 34px -24px rgba(36, 32, 25, .5);
}

.nearby__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-light);
  padding: 16px 20px 8px;
}

.nearby__list { list-style: none; margin: 0; padding: 0; }

.nearby__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border-top: 1px solid var(--line-faint);
}

.nearby__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nearby__icon i { color: var(--brand); font-size: 15px; }
.nearby__name { font-weight: 600; font-size: 14.5px; color: var(--ink-soft); line-height: 1.35; }

/* ==========================================================================
   Enquiry
   ========================================================================== */

.enquiry {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  box-shadow: var(--shadow-panel);
}

.enquiry__aside {
  background: linear-gradient(160deg, #2b261e 0%, #3a3225 100%);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
}
.enquiry__aside .eyebrow { color: var(--brand-warm); }
.enquiry__title { font-size: 42px; line-height: 1.05; color: #fff; margin-top: 12px; }
.enquiry__lede {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .66);
  margin: 16px 0 28px;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
}

.contact { display: flex; align-items: center; gap: 14px; color: #fff; }
.contact:hover { color: #fff; }
.contact:hover .contact__value { color: var(--brand-warm); }

.contact__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(242, 101, 34, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__icon i { color: var(--brand); }

.contact__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a99f8d;
}
.contact__value { font-weight: 700; font-size: 15px; word-break: break-word; }

.enquiry__body { padding: 48px 44px; }

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field--wide { grid-column: 1 / 3; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-input);
  border-radius: 11px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand-soft);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, .16);
}

.field input:user-invalid,
.field textarea:user-invalid { border-color: #c0392b; }

/* Honeypot — off-screen for people, visible to naive bots. Not display:none,
   which some bots detect and skip. */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry__submit { width: 100%; margin-top: 20px; font-size: 15.5px; padding: 16px; }

.form-error {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  background: #fdecea;
  border: 1px solid #f3c3bd;
  color: #96281b;
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
}

.enquiry__fineprint {
  font-size: 12.5px;
  color: var(--muted-light);
  text-align: center;
  margin-top: 12px;
}

.enquiry__thanks {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}

.enquiry__thanks-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.enquiry__thanks-mark i { color: var(--brand); font-size: 26px; }

.enquiry__thanks h3 { font-size: 34px; color: var(--ink); margin: 20px 0 6px; }
.enquiry__thanks p { font-size: 15px; color: var(--body-light); max-width: 320px; }

[hidden] { display: none !important; }

/* ==========================================================================
   Enquiry modal
   ========================================================================== */

.modal {
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.modal::backdrop {
  background: rgba(28, 24, 18, .62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.modal[open] { animation: modalIn .22s ease both; }
.modal[open]::backdrop { animation: fadeIn .22s ease both; }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal__panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: 0 40px 80px -30px rgba(20, 17, 12, .7);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: var(--sand-soft);
  color: var(--body-light);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.modal__close:hover { background: var(--brand-tint); color: var(--brand); }

.modal__head {
  padding: 34px 36px 0;
  /* Keep the close button clear of the heading. */
  padding-right: 68px;
}
/* .enquiry__title is white for the dark inline panel — reset it on light. */
.modal__head .enquiry__title { font-size: 34px; color: var(--ink); }

.modal__project {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 10px;
}

.modal__body { padding: 24px 36px 34px; }
.modal__body .enquiry__thanks { padding: 24px 0 8px; }

@media (max-width: 640px) {
  .modal__head { padding: 26px 20px 0; padding-right: 60px; }
  .modal__head .enquiry__title { font-size: 27px; }
  .modal__body { padding: 20px 20px 26px; }
}

/* Locks background scroll while the modal is open. */
body.is-modal-open { overflow: hidden; }

/* ==========================================================================
   Thank-you page
   ========================================================================== */

/* Plain header variant (no section menu / no mobile toggle). */
.nav__links--plain { display: flex; align-items: center; gap: 26px; }
.nav__links--plain a { display: inline-flex; align-items: center; gap: 8px; }

.thankyou { display: flex; justify-content: center; }

.thankyou__card {
  width: 100%;
  max-width: 680px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-panel);
  padding: 56px 48px;
}

.thankyou__mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popMark .32s ease both;
}
.thankyou__mark i { color: var(--brand); font-size: 32px; }

@keyframes popMark {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: none; }
}

.thankyou__title { font-size: 52px; line-height: 1.02; color: var(--ink); margin-top: 6px; }

.thankyou__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-light);
  margin: 16px auto 0;
  max-width: 460px;
}
.thankyou__lede strong { color: var(--ink); font-weight: 700; }

.thankyou__actions {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.thankyou__timings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 22px;
}
.thankyou__timings i { color: var(--brand); }

.thankyou__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-faint);
  width: 100%;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-light);
}
.thankyou__back:hover { color: var(--brand-dark); }

@media (max-width: 640px) {
  .thankyou__card { padding: 40px 22px; }
  .thankyou__title { font-size: 38px; }
  .thankyou__actions .btn { flex: 1 1 100%; }
  .nav__links--plain a:not(.nav__phone) { display: none; }
}

/* ==========================================================================
   Cookie consent banner (injected by tracking.js)
   ========================================================================== */

.consent {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(720px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--ink);
  color: rgba(255, 255, 255, .82);
  border-radius: 16px;
  box-shadow: 0 26px 54px -22px rgba(20, 17, 12, .7);
  animation: consentIn .3s ease both;
}

@keyframes consentIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translateX(-50%); }
}

.consent__text {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

.consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent__btn {
  padding: 11px 20px;
  font-size: 14px;
  white-space: nowrap;
}
/* On the dark bar, the ghost button needs a light outline. */
.consent__btn.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.consent__btn.btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

@media (max-width: 640px) {
  .consent {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    bottom: 12px;
  }
  .consent__actions { justify-content: stretch; }
  .consent__btn { flex: 1; }
}

/* ==========================================================================
   Similar projects
   ========================================================================== */

.similar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.project {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.project:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -24px rgba(36, 32, 25, .55);
}

.project__media {
  position: relative;
  height: 180px;
  background: linear-gradient(150deg, #2b261e 0%, #4a4132 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project__media img { width: 100%; height: 100%; object-fit: cover; }
.project__media--blank i { color: rgba(242, 101, 34, .85); font-size: 30px; }

.project__body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.project__name { font-family: var(--display); font-weight: 600; font-size: 24px; color: var(--ink); line-height: 1.1; }

.project__price { display: flex; align-items: baseline; gap: 6px; margin-top: 10px; }
.project__amount {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  color: var(--brand);
  line-height: 1;
}
.project__unit { font-size: 12.5px; font-weight: 600; color: var(--muted-light); }

.project__approval {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line-faint);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  margin-top: 80px;
  background: var(--ink);
  padding: 52px var(--gutter) 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer__logo { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: .92; }

.footer__address {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
  margin-top: 18px;
  max-width: 320px;
}

.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .18s ease;
}
.socials a:hover { background: var(--brand); color: #fff; }

.footer__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a99f8d;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
  list-style: none;
  padding: 0;
}
.footer__list a { color: rgba(255, 255, 255, .72); }
.footer__list a:hover { color: #fff; }

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  :root { --gutter: 32px; }

  .hero__title { font-size: 68px; }
  .section-title { font-size: 40px; }

  .facts { grid-template-columns: repeat(3, 1fr); }
  .overview { grid-template-columns: 1fr; gap: 36px; }
  .overview__media { height: 360px; }
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
  .downloads { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .location { grid-template-columns: 1fr; }
  .enquiry { grid-template-columns: 1fr; }
  .similar__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }

  .nav__inner { flex-wrap: wrap; }

  .nav__links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 0 6px;
    border-top: 1px solid var(--line);
  }
  .nav__links[data-open='true'] { display: flex; }
  .nav__links a { padding: 10px 2px; }
  .nav__cta { text-align: center; padding: 13px 20px; }

  .hero__grid { grid-template-columns: 1fr; height: auto; }
  .hero__frame { height: 240px; }

  .stats {
    position: static;
    transform: none;
    margin: 24px auto 0;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 16px;
  }
  .stats__rule { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }

  .section { padding-top: 60px; }
  .hero { padding-top: 32px; }

  .hero__title { font-size: 46px; }
  .hero__lede { font-size: 16px; }
  .hero__actions .btn { flex: 1 1 100%; }

  .section-title,
  .downloads__title,
  .enquiry__title { font-size: 32px; }

  .facts { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .downloads__grid { grid-template-columns: 1fr; }
  .similar__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .enquiry__aside,
  .enquiry__body { padding: 32px 22px; }

  .field-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }

  .stats__item { padding: 0 16px; }
  .stats__value { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
