/* ==========================================================
Azizi Florence – Vision X Nexus landing page
========================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink: #121211;
  --ink-2: #1c1b19;
  --paper: #fafaf7;
  --stone: #f1efea;
  --white: #ffffff;
  --gold: #c9a76b;
  --gold-hover: #dcbd86;
  --gold-deep: #8a6a36;
  --text-muted: #4a4944;
  --text-soft: #5b5a55;
  --line: #d9d6ce;
  --line-input: #cfccc4;
  --line-dark: #3a3833;
  --on-dark-muted: #bdb9ae;
  --whatsapp: #25d366;
  
  --font: 'Schibsted Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--gold-deep);
}

a:hover {
  color: #6d5229;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
  box-sizing: border-box;
  width: 100%;
}

.stack-48 {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stack-56 {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.stack-64 {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow-gold {
  color: var(--gold);
}

.heading-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.h2-lg {
  font-size: 68px;
}

/* .h2-md {
font-size: 52px;
} */

.h2-sm {
  font-size: 44px;
}

.lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn-sm {
  height: 44px;
  padding: 0 20px;
}

.btn-lg {
  height: 58px;
}

.btn-block {
  width: 100%;
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.btn-dark:hover {
  background: #34322d;
  border-color: #34322d;
  color: var(--paper);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--ink);
}

.btn-light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(128, 128, 128, .14);
  color: var(--ink);
}

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

/* ---------- Forms ---------- */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.span-2 {
  grid-column: span 2;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line-input);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--ink);
}

.phone-input {
  display: flex;
}

.phone-prefix {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-input);
  border-right: 0;
  background: var(--stone);
  color: var(--text-muted);
  font-size: 15px;
}

.phone-input input {
  flex-grow: 1;
}

.form-dark .field label {
  color: var(--on-dark-muted);
}

.form-dark .field input,
.form-dark .field select {
  background: rgba(255, 255, 255, .04);
  border-color: #5a5750;
  color: var(--paper);
}

.form-dark .field select option {
  color: var(--ink);
}

.form-dark .field input:focus,
.form-dark .field select:focus {
  border-color: var(--gold);
}

.form-done {
  padding: 24px 0;
}

.form-done-dark {
  padding: 40px;
  border: 1px solid #5a5750;
}

.done-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.02em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 247, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e3e0d8;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .28em;
}

.brand-divider {
  width: 1px;
  height: 22px;
  background: var(--line-input);
}

.brand-project {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  white-space: nowrap;
  /* font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--text-muted); */
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a:not(.btn) {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}

.main-nav a:not(.btn):hover {
  color: var(--ink);
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 0;
  background: var(--paper);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-stone {
  background: var(--stone);
}

.section-amenities {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-gallery {
  padding-top: 0;
}

.section-advisors {
  padding-bottom: 96px;
}

.section-reviews {
  padding-top: 32px;
}

.section-partners {
  padding: 96px 0;
}

.divider-head {
  padding-top: 96px;
  border-top: 1px solid rgba(0, 0, 0, .09);
}

.split-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}

/* Image label chip */
.chip {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ---------- 1. Hero ---------- */
.hero {
  position: relative;
  /* height: 760px; */
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .6);
  /* background: linear-gradient(90deg, rgba(10, 10, 9, .86) 0%, rgba(10, 10, 9, .62) 48%, rgba(10, 10, 9, .2) 100%); */
}

.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-title {
  font-size: 62px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.04em;
  /* text-wrap: balance; */
}

.hero-sub {
  max-width: 600px;
  font-size: 20px;
  line-height: 1.6;
  color: #e4e1d9;
}

.hero-card {
  width: 380px;
  flex-shrink: 0;
  padding: 32px;
  background: var(--paper);
  color: var(--ink);
}

/* ---------- 2. About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
}

.about-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.stat:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.stat dd {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.stat dt {
  font-size: 14px;
  color: var(--text-soft);
}

/* ---------- 3. Highlights ---------- */
.fact-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.fact-row li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border-left: 1px solid var(--line-dark);
}

.fact-row li:first-child {
  padding-left: 0;
  border-left: 0;
}

.fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9d998f;
}

.fact-value {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.02em;
}

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

.image-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ---------- 4. Amenities ---------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  padding: 10px 16px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.album {
  display: flex;
  gap: 16px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 56px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.album figure {
  position: relative;
  flex: 0 0 360px;
  scroll-snap-align: start;
}

.album img {
  width: 360px;
  height: 440px;
  object-fit: cover;
}

/* ---------- 5. Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 300px 300px;
  gap: 16px;
}

.gallery > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-lock {
  position: relative;
  overflow: hidden;
}

.gallery-lock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.1);
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(18, 18, 17, .55);
  color: var(--paper);
  text-align: center;
}

/* ---------- 6. Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.map-frame {
  grid-column: span 7;
}

.map-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.location-copy {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.distance-list {
  width: 100%;
  border-top: 1px solid var(--line-input);
}

.distance-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-input);
  font-size: 15px;
}

.distance-list dd {
  font-weight: 600;
}

/* ---------- 7. Floor plans ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-preview {
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.plan-lines {
  position: absolute;
  inset: -12px;
  background-color: #ece9e2;
  background-image:
  repeating-linear-gradient(0deg, transparent 0 38px, #b9b4a8 38px 40px),
  repeating-linear-gradient(90deg, transparent 0 58px, #b9b4a8 58px 60px);
  filter: blur(5px);
}

.lock-tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.plan-name {
  font-weight: 600;
}

/* ---------- 8. Why Vision X Nexus ---------- */
.why-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}

.counter-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.counter-row div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 0 32px 28px;
  border-left: 1px solid var(--line-dark);
}

.counter-row div:first-child {
  padding-left: 0;
  border-left: 0;
}

.counter-row dd {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.counter-row dt {
  font-size: 14px;
  color: var(--on-dark-muted);
}

/* ---------- 9. Consultants ---------- */
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.advisor {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.advisor-photo {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--stone);
}

.initials {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .04em;
}

.photo-note {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6a685f;
}

.advisor h3 {
  padding: 20px;
  font-size: 18px;
  letter-spacing: -.01em;
}

/* ---------- 10. Reviews ---------- */
.review-track {
  display: flex;
  gap: 16px;
  padding-bottom: 12px;
  overflow-x: auto;
}

.review {
  flex: 0 0 360px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.review blockquote {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2926;
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 600;
}

/* ---------- 11. Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.partner-copy {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.logo-grid {
  grid-column: 7 / span 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d3cfc5;
  background: #d3cfc5;
}

.logo-grid li {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6a685f;
}

/* ---------- 12. Register ---------- */
.register {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background: var(--ink);
  color: var(--paper);
}

.register-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

.register-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 9, .92) 0%, rgba(10, 10, 9, .7) 60%, rgba(10, 10, 9, .5) 100%);
}

.register-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  align-items: center;
}

.register-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.register-copy .lede {
  font-size: 18px;
  color: #d6d2c8;
}

/* ---------- Footer ---------- */
.site-footer {
  /* padding: 64px 0 20px; */
  background: #0b0b0a;
  color: var(--on-dark-muted);
}

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

.footer-grid .brand-mark {
  grid-column: span 5;
  color: var(--paper);
}

.footer-col {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col:nth-child(2) {
  grid-column: 7 / span 3;
}

.footer-col a,
.footer-col span {
  color: var(--paper);
  text-decoration: none;
}

/* ---------- 13. Floating UI ---------- */
.float-call,
.float-wa {
  position: fixed;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Call button sits above the WhatsApp button */
.float-call {
  bottom: 88px;
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(250, 250, 247, .35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.float-call svg {
  width: 20px;
  height: 20px;
}

.float-wa {
  bottom: 24px;
  width: 52px;
  height: 52px;
  background: var(--whatsapp);
  color: var(--white);
  animation: pulse 2.2s infinite;
}

.float-wa svg {
  width: 24px;
  height: 24px;
}

.float-call:hover,
.float-wa:hover {
  color: var(--white);
}

.mobile-bar {
  display: none;
}

/* ---------- Pop-up ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 9, .72);
}

.modal-card {
  position: relative;
  width: 460px;
  max-width: 100%;
  padding: 40px;
  background: var(--paper);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.modal-title {
  padding-right: 32px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

/* ---------- Animations ---------- */
.rise {
  animation: rise .9s cubic-bezier(.2, .7, .2, 1) both;
}

.rise-delay {
  animation-delay: .15s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Fade up on scroll (class added by js/main.js) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rise,
  .float-wa {
    animation: none;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
  .wrap,
  .album {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  .main-nav a:not(.btn) {
    display: none;
  }
  
  .section {
    padding: 96px 0;
  }
  
  .h2,
  .h2-lg,
  .h2-md {
    font-size: 48px;
  }
  
  .hero {
    height: auto;
  }
  
  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    padding-top: 96px;
    padding-bottom: 72px;
  }
  
  .hero-title {
    font-size: 60px;
  }
  
  .hero-card {
    width: 100%;
    max-width: 480px;
  }
  
  .about-grid,
  .register-grid,
  .location-grid,
  .partner-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  
  .map-frame,
  .location-copy,
  .partner-copy,
  .logo-grid {
    grid-column: auto;
  }
  
  .fact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .fact-row li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  
  .counter-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .counter-row div:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }
  
  .advisor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .why-head,
  .split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .wrap,
  .album {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .brand-divider,
  .brand-project {
    display: none;
  }
  
  .section {
    padding: 72px 0;
  }
  
  .section-gallery {
    padding-top: 0;
  }
  
  .divider-head {
    padding-top: 72px;
  }
  
  .h2,
  .h2-lg,
  .h2-md,
  .h2-sm {
    font-size: 28px;
    line-height: 1.2 !important; 
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .hero-sub {
    font-size: 17px;
  }
  
  .hero-card,
  .modal-card {
    padding: 24px;
  }
  
  .btn {
    height: auto;
    min-height: 52px;
    padding: 14px 22px;
    white-space: normal;
    text-align: center;
  }
  
  .about-media img,
  .map-frame img {
    height: 360px;
  }
  
  .fact-row,
  .image-row,
  .plan-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .fact-row li {
    padding-left: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  
  .fact-row li:last-child {
    border-bottom: 0;
  }
  
  .album figure {
    flex-basis: 78%;
  }
  
  .album img {
    width: 100%;
    height: 360px;
  }
  
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 180px;
  }
  
  .gallery .gallery-main,
  .gallery-lock {
    grid-column: span 2;
  }
  
  .counter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .counter-row div,
  .counter-row div:nth-child(4) {
    padding: 24px 0 24px 20px;
    border-left: 1px solid var(--line-dark);
  }
  
  .counter-row div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  
  .counter-row dd {
    font-size: 40px;
  }
  
  .advisor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .review {
    flex-basis: 86%;
  }
  
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .span-2 {
    grid-column: auto;
  }
  
  /* 12 columns with 32px gaps can't fit a phone: stack the footer */
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .footer-grid .brand-mark,
  .footer-col,
  .footer-col:nth-child(2) {
    grid-column: auto;
  }
  
  .float-wa {
    right: 16px;
    bottom: 80px;
    width: 48px;
    height: 48px;
  }
  
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--ink);
  }
  
  .mobile-bar a {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
  }
  
  .mobile-bar-call {
    color: var(--paper);
  }
  
  .mobile-bar-wa {
    background: var(--whatsapp);
    color: var(--ink);
  }
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.iti {
  width: 100% !important;
  display: block;
}

@media (max-width: 575px) {
  .hero-v1 .hero-inner {
    padding-top: 50px !important;
  }
  .hero-title {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }
  .hero-card {
    display: none;
  }
  .hero-inner {
    padding-bottom: 25px !important;
  }
  .fact-value,
  .timeline-steps strong,
  .home-body h3 {
    font-size: 22px !important;
  }
}
.pt-0 {
  padding-top: 0;
}