:root {
  --red: #d61f27;
  --red-dark: #a50f16;
  --ink: #121414;
  --ink-soft: #242727;
  --ivory: #f6f1e8;
  --paper: #fbf8f2;
  --sand: #dfd2be;
  --gold: #b8985e;
  --muted: #69645e;
  --line: rgba(18, 20, 20, .14);
  --white: #fff;
  --shadow: 0 28px 70px rgba(20, 12, 8, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 1000; background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: 0 0 8px 8px; font-weight: 800; }
.skip-link:focus { top: 0; }

.disclosure-bar { background: var(--ink); color: rgba(255,255,255,.82); font-size: 12px; letter-spacing: .02em; }
.disclosure-bar .container { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.disclosure-bar strong { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,248,242,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); overflow: hidden; }
.brand-mark img { width: 40px; height: 40px; object-fit: contain; }
.brand > span:last-child { display: grid; line-height: 1.1; }
.brand strong { font-size: 15px; letter-spacing: .02em; }
.brand small { color: var(--muted); margin-top: 5px; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-left: auto; }
.main-nav a { font-size: 13px; font-weight: 750; color: #3d3d39; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--red); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--white); border-radius: 50%; padding: 11px; }
.menu-button span { display: block; height: 2px; background: var(--ink); margin: 4px 0; }

.btn { min-height: 46px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 850; letter-spacing: .02em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(214,31,39,.35); outline-offset: 3px; }
.btn-outline { border-color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 14px 28px rgba(214,31,39,.25); }
.btn-red:hover { background: var(--red-dark); }
.btn-glass { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-glass:hover { background: rgba(255,255,255,.2); }
.btn-ivory { background: var(--ivory); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--white); }

.hero { min-height: 850px; position: relative; color: var(--white); overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image { background: url('/assets/images/krisumi/hero-towers.jpg') center / cover no-repeat; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(10,12,12,.94) 0%, rgba(10,12,12,.78) 46%, rgba(10,12,12,.42) 100%), linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.6)); }
.hero-grid { position: relative; z-index: 1; padding: 92px 0 86px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(390px, .72fr); gap: 68px; align-items: center; }
.hero-copy { padding: 18px 0; }
.project-kicker { display: inline-flex; padding: 9px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(0,0,0,.22); color: rgba(255,255,255,.84); font-size: 12px; font-weight: 750; letter-spacing: .04em; }
.eyebrow { margin: 0 0 12px; color: var(--red); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 900; }
.eyebrow.light { color: #f5d9c8; }
.hero .eyebrow { margin-top: 34px; }
.hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(55px, 6vw, 88px); line-height: .98; letter-spacing: -.04em; }
.hero h1 em { display: inline-block; margin-top: 15px; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-style: normal; font-size: .26em; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.hero-lead { max-width: 710px; font-size: 18px; color: rgba(255,255,255,.8); margin: 24px 0 28px; }
.hero-facts { display: grid; grid-template-columns: repeat(3,1fr); max-width: 760px; border-block: 1px solid rgba(255,255,255,.2); padding: 18px 0; }
.hero-facts div { display: grid; gap: 3px; padding-right: 18px; }
.hero-facts div + div { border-left: 1px solid rgba(255,255,255,.2); padding-left: 18px; }
.hero-facts strong { font-size: 16px; color: var(--white); }
.hero-facts span { font-size: 11px; color: rgba(255,255,255,.62); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-note { max-width: 700px; font-size: 11px; color: rgba(255,255,255,.56); margin: 18px 0 0; }

.enquiry-card { background: rgba(250,247,240,.97); color: var(--ink); padding: 32px; border-radius: 22px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.3); }
.enquiry-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 500; }
.enquiry-card > p:not(.eyebrow) { margin: 8px 0 22px; color: var(--muted); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; }
.field label span { color: var(--muted); font-weight: 600; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea { width: 100%; min-height: 45px; border: 1px solid rgba(18,20,20,.18); border-radius: 9px; background: var(--white); padding: 10px 12px; color: var(--ink); }
.field textarea { resize: vertical; }
.field input:invalid:not(:placeholder-shown), .field select:invalid[data-touched="true"] { border-color: var(--red); }
.consent { display: grid; grid-template-columns: 17px 1fr; gap: 9px; align-items: start; margin: 15px 0; font-size: 10px; color: var(--muted); line-height: 1.5; }
.consent input { margin-top: 2px; accent-color: var(--red); }
.consent a { color: var(--red-dark); text-decoration: underline; }
.submit-button { width: 100%; }
.form-identity { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.notice { display: none; padding: 10px 12px; margin: 0 0 14px; background: #fff3cf; border: 1px solid #e4c66f; border-radius: 9px; font-size: 12px; }
.notice.show { display: block; }
.notice.success { background: #e8f7ee; border-color: #85c89d; }
.notice.error { background: #fff0ee; border-color: #e59b92; }

.identity-strip { background: var(--red); color: var(--white); }
.identity-grid { display: grid; grid-template-columns: 1fr 1.25fr .9fr 1.7fr; }
.identity-grid div { min-height: 100px; display: grid; align-content: center; gap: 3px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.22); }
.identity-grid div:first-child { border-left: 1px solid rgba(255,255,255,.22); }
.identity-grid span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.65); }
.identity-grid strong { font-size: 13px; line-height: 1.35; }

.section { padding: 108px 0; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 76px; align-items: center; }
.image-frame { position: relative; background: var(--sand); padding: 12px; box-shadow: var(--shadow); }
.image-frame.tall { transform: rotate(-1deg); }
.image-frame img { width: 100%; min-height: 600px; object-fit: cover; }
.image-frame span { position: absolute; left: 20px; bottom: 20px; background: rgba(0,0,0,.72); color: var(--white); padding: 7px 10px; font-size: 9px; letter-spacing: .04em; }
.section-copy h2, .section-head h2, .location-copy h2, .faq-grid h2, .final-cta h2 { margin: 0 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4.4vw, 62px); line-height: 1.05; font-weight: 500; letter-spacing: -.035em; }
.section-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 28px; }
.feature-list div { display: grid; gap: 5px; padding: 18px; background: var(--paper); }
.feature-list b { font-size: 13px; }
.feature-list span { color: var(--muted); font-size: 12px; }

.phase-section { background: var(--ink); color: var(--white); }
.section-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 0; }
.section-head > p { color: rgba(255,255,255,.58); margin: 0; font-size: 14px; }
.section-head.dark-text > p { color: var(--muted); }
.phase-block { border-top: 1px solid rgba(255,255,255,.2); padding: 36px 0 24px; }
.phase-block + .phase-block { margin-top: 30px; }
.phase-title { display: grid; grid-template-columns: 110px 1fr; gap: 26px; align-items: center; margin-bottom: 24px; }
.phase-title > span { display: grid; place-items: center; min-height: 66px; background: var(--red); font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.phase-title h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 500; }
.phase-title p { margin: 5px 0 0; color: rgba(255,255,255,.55); font-size: 12px; }
.price-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.price-grid.three { grid-template-columns: repeat(3,1fr); }
.price-card { min-height: 250px; padding: 22px; background: var(--ink-soft); border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; }
.price-card > span { color: #e7bf84; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.price-card h4 { margin: 16px 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 500; }
.price-card dl { margin: auto 0 0; }
.price-card dl div { padding: 9px 0; border-top: 1px solid rgba(255,255,255,.1); }
.price-card dt { color: rgba(255,255,255,.48); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.price-card dd { margin: 2px 0 0; font-size: 14px; font-weight: 800; }
.price-card small { color: rgba(255,255,255,.48); margin-top: 10px; font-size: 10px; }
.center-action { display: flex; justify-content: center; margin-top: 36px; }

.gallery-section { background: var(--ivory); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 260px; gap: 12px; }
.gallery-card { position: relative; padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: var(--ink); }
.gallery-card.wide { grid-column: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.75)); }
.gallery-card span { position: absolute; z-index: 1; left: 17px; bottom: 14px; color: var(--white); font-size: 12px; font-weight: 800; }
.amenity-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.amenity-list span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.46); font-size: 11px; font-weight: 750; }
.micro-copy { color: var(--muted); font-size: 10px; }

.walkthrough { background: #181a19; color: var(--white); }
.walkthrough-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 84px; align-items: center; }
.video-shell { max-width: 420px; margin-inline: auto; background: #050505; padding: 10px; border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow); }
.video-shell video { width: 100%; aspect-ratio: 464 / 832; object-fit: cover; background: #080808; }
.video-shell span { display: block; color: rgba(255,255,255,.54); padding: 9px 5px 1px; font-size: 9px; }
.walkthrough .section-copy > p:not(.eyebrow) { color: rgba(255,255,255,.64); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); margin: 28px 0; border: 1px solid rgba(255,255,255,.14); }
.spec-grid div { display: grid; gap: 5px; background: #181a19; padding: 18px; }
.spec-grid b { font-size: 12px; }
.spec-grid span { color: rgba(255,255,255,.54); font-size: 11px; }

.location-section { background: var(--red); color: var(--white); }
.location-copy { max-width: 860px; }
.location-copy .eyebrow { color: #f6d4c2; }
.location-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.distance-grid { display: grid; grid-template-columns: repeat(6,1fr); margin-top: 42px; border-block: 1px solid rgba(255,255,255,.28); }
.distance-grid div { min-height: 125px; display: grid; align-content: center; padding: 18px; border-right: 1px solid rgba(255,255,255,.24); }
.distance-grid div:first-child { border-left: 1px solid rgba(255,255,255,.24); }
.distance-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: 500; }
.distance-grid span { color: rgba(255,255,255,.7); font-size: 11px; }
.location-actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; }
.text-link { display: inline-flex; font-weight: 850; font-size: 13px; text-decoration: underline; text-underline-offset: 5px; }

.rera-section { background: var(--paper); }
.rera-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 25px; }
.rera-grid article, .rera-grid aside { padding: 30px; border: 1px solid var(--line); background: var(--white); }
.rera-grid article > span { color: var(--red); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 900; }
.rera-grid article h3, .rera-grid aside h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: 25px; line-height: 1.18; }
.rera-grid article strong { font-size: 13px; }
.rera-grid article p { color: var(--muted); font-size: 12px; }
.rera-grid aside { grid-column: 1 / -1; background: var(--ink); color: var(--white); }
.rera-grid aside dl { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.12); }
.rera-grid aside dl div { background: var(--ink); padding: 14px; }
.rera-grid aside dt { color: rgba(255,255,255,.5); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.rera-grid aside dd { margin: 5px 0 0; font-size: 12px; }

.faq-section { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-grid > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-weight: 850; font-size: 15px; list-style: none; position: relative; padding-right: 30px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: -5px; font-size: 25px; font-weight: 400; color: var(--red); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }

.final-cta { background: var(--red); color: var(--white); padding: 80px 0; }
.final-cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.final-cta h2 { margin-bottom: 8px; }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.final-cta-inner > div:last-child { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }

.site-footer { background: #0c0e0d; color: var(--white); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .7fr .7fr; gap: 42px; }
.footer-brand .brand-mark { background: var(--white); }
.footer-grid > div > p { color: rgba(255,255,255,.56); font-size: 12px; }
.footer-grid h3 { margin: 0 0 14px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: #e7bf84; }
.footer-grid a:hover { color: #e7bf84; }
.legal-note { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.legal-note p { color: rgba(255,255,255,.42); font-size: 10px; }
.legal-note > div { display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: 10px; }

.gallery-dialog { width: min(1100px, calc(100% - 32px)); border: 0; padding: 10px; background: #0b0c0c; color: var(--white); box-shadow: var(--shadow); }
.gallery-dialog::backdrop { background: rgba(0,0,0,.84); }
.gallery-dialog img { width: 100%; max-height: 78vh; object-fit: contain; }
.gallery-dialog button { position: absolute; right: 18px; top: 18px; z-index: 1; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(0,0,0,.72); color: var(--white); font-size: 25px; cursor: pointer; }
.gallery-dialog p { margin: 8px 5px 0; font-size: 12px; color: rgba(255,255,255,.65); }
.floating-whatsapp { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #159447; color: var(--white); font-size: 12px; font-weight: 950; box-shadow: 0 12px 28px rgba(0,0,0,.24); }
.mobile-actions { display: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 12px; }
  .hero-grid { gap: 34px; grid-template-columns: minmax(0,1fr) minmax(370px,.76fr); }
  .price-grid { grid-template-columns: repeat(3,1fr); }
  .distance-grid { grid-template-columns: repeat(3,1fr); }
  .distance-grid div:nth-child(4) { border-left: 1px solid rgba(255,255,255,.24); }
  .distance-grid div { border-bottom: 1px solid rgba(255,255,255,.24); }
}

@media (max-width: 900px) {
  .disclosure-bar .container { justify-content: center; text-align: center; }
  .disclosure-bar span:last-child { display: none; }
  .main-nav { position: fixed; inset: 110px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 26px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-actions .btn { display: none; }
  .menu-button { display: block; }
  .nav-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 76px 0; }
  .hero { min-height: auto; }
  .hero-shade { background: linear-gradient(180deg, rgba(10,12,12,.88), rgba(10,12,12,.74)); }
  .hero-copy { max-width: 760px; }
  .enquiry-card { max-width: 680px; }
  .identity-grid { grid-template-columns: 1fr 1fr; }
  .identity-grid div:first-child, .identity-grid div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.22); }
  .identity-grid div { border-bottom: 1px solid rgba(255,255,255,.22); }
  .intro-grid, .walkthrough-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .image-frame img { min-height: 480px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card.wide { grid-column: span 1; }
  .video-shell { max-width: 390px; }
  .rera-grid aside dl { grid-template-columns: 1fr 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta-inner > div:last-child { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { top: 0; }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-mark img { width: 35px; height: 35px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 9px; }
  .main-nav { top: 102px; }
  .hero-grid { padding: 62px 0 52px; }
  .hero h1 { font-size: 50px; }
  .hero h1 em { display: block; font-size: 13px; line-height: 1.4; }
  .hero-lead { font-size: 15px; }
  .hero-facts { grid-template-columns: 1fr; gap: 0; }
  .hero-facts div { padding: 12px 0; }
  .hero-facts div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding-left: 0; }
  .hero-actions .btn { width: 100%; }
  .enquiry-card { padding: 24px 18px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .identity-grid { grid-template-columns: 1fr; }
  .identity-grid div { min-height: 78px; border-left: 1px solid rgba(255,255,255,.22); }
  .section { padding: 76px 0; }
  .section-copy h2, .section-head h2, .location-copy h2, .faq-grid h2, .final-cta h2 { font-size: 39px; }
  .intro-grid { gap: 40px; }
  .image-frame img { min-height: 390px; }
  .feature-list, .spec-grid { grid-template-columns: 1fr; }
  .phase-title { grid-template-columns: 1fr; gap: 12px; }
  .phase-title > span { min-height: 48px; }
  .price-grid, .price-grid.three { grid-template-columns: 1fr; }
  .price-card { min-height: 220px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .walkthrough-grid { gap: 40px; }
  .distance-grid { grid-template-columns: 1fr 1fr; }
  .distance-grid div:nth-child(3), .distance-grid div:nth-child(5) { border-left: 1px solid rgba(255,255,255,.24); }
  .distance-grid div:nth-child(4) { border-left: 0; }
  .location-actions { align-items: flex-start; flex-direction: column; }
  .rera-grid { grid-template-columns: 1fr; }
  .rera-grid aside { grid-column: auto; }
  .rera-grid aside dl { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .legal-note > div { flex-direction: column; }
  .floating-whatsapp { display: none; }
  .mobile-actions { position: fixed; z-index: 99; display: grid; grid-template-columns: repeat(3,1fr); left: 0; right: 0; bottom: 0; background: var(--ink); padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)); box-shadow: 0 -8px 28px rgba(0,0,0,.22); }
  .mobile-actions a { display: grid; place-items: center; min-height: 42px; color: var(--white); border-right: 1px solid rgba(255,255,255,.18); font-size: 12px; font-weight: 850; }
  .mobile-actions a:last-child { border-right: 0; background: var(--red); border-radius: 999px; }
  .site-footer { padding-bottom: 90px; }
}

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