:root {
  --ink: #050505;
  --ink-2: #252525;
  --paper: #ffffff;
  --paper-soft: #f6f6f6;
  --mist: #e8e8e8;
  --line: #d8d8d8;
  --gold: #d9d9d9;
  --gold-dark: #3d3d3d;
  --teal: #111111;
  --green: #15803d;
  --danger: #a63b35;
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper-soft);
  line-height: 1.6;
  letter-spacing: 0;
}

img,
iframe {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.site-header .brand {
  gap: 0.72rem;
}

.site-header .brand-mark {
  display: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  object-fit: cover;
  background: #000;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b1220, #0f766e);
  color: var(--paper);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.18rem;
}

.site-header .brand strong {
  color: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
  padding: 0.42rem 0.55rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
}

.legal-nav {
  display: flex;
  position: static;
}

.nav-cta {
  padding: 0.64rem 1rem !important;
  border-radius: 999px !important;
  background: var(--paper);
  color: var(--ink) !important;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/wagle-commercial-hero.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 9, 19, 0.94) 0%, rgba(4, 9, 19, 0.76) 46%, rgba(4, 9, 19, 0.34) 100%),
    linear-gradient(0deg, rgba(4, 9, 19, 0.72), rgba(4, 9, 19, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem;
  align-items: center;
  padding-block: 4rem;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 3.45rem;
  max-width: 760px;
}

h2 {
  font-size: 2.15rem;
}

h3 {
  font-size: 1.2rem;
}

.hero-text {
  max-width: 680px;
  margin: 1rem 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions,
.filter-bar,
.card-top,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 1.35rem;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.66rem 0.95rem;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #e8e8e8;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-card {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
}

.btn-card:hover,
.btn-card:focus-visible {
  background: var(--teal);
}

.hero-panel {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-panel h2 {
  margin: 0;
  color: var(--paper);
  font-size: 1.55rem;
}

.hero-panel p {
  margin: 0.65rem 0 1rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.panel-kicker {
  margin: 0 0 0.45rem !important;
  color: var(--paper) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-call {
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-align: center;
}

.panel-stats {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-stats span {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.panel-stats strong {
  color: var(--paper);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-strip {
  background: #0a0a0a;
  color: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.trust-grid span {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 0.58rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding-block: 3.35rem;
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: #eef4f5;
}

.section-video {
  background: #101827;
  color: var(--paper);
}

.split-layout,
.lead-layout,
.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

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

.section-heading {
  position: relative;
  max-width: 680px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.section-heading p:not(.eyebrow) {
  color: #526074;
  margin: 0.75rem 0 0;
}

.filter-bar {
  justify-content: flex-end;
  padding: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.07);
}

.availability-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: -0.35rem 0 1.15rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.availability-bar span,
.availability-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: var(--paper-soft);
  color: #475569;
  font-size: 0.86rem;
  font-weight: 800;
}

.availability-bar a {
  margin-left: auto;
  background: var(--ink);
  color: var(--paper);
}

label span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink-2);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0.78rem 0.9rem;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 111, 104, 0.12);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dense-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-card,
.benefit-grid article,
.lead-form,
.table-wrap,
.faq-list details {
  border: 1px solid rgba(215, 224, 234, 0.92);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.property-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.05rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.property-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #050505, #d9d9d9);
}

.property-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.compact-card {
  min-height: 0;
}

.property-media {
  margin: -1.05rem -1.05rem 0.9rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbe4ed;
}

.property-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.property-card:hover .property-media img {
  transform: scale(1.04);
}

.card-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.15rem 0.52rem;
  border-radius: 999px;
  background: #f0f0f0;
  color: #111;
}

.property-card p,
.benefit-grid p,
.faq-list p {
  color: #5b687a;
}

.property-card p {
  margin: 0.55rem 0 0;
}

.property-card dl {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 0.95rem;
}

.property-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.48rem;
  border-bottom: 1px solid rgba(231, 237, 244, 0.9);
}

.property-card dt,
.property-card dd {
  margin: 0;
}

.property-card dt {
  color: #64748b;
  font-weight: 800;
  font-size: 0.86rem;
}

.property-card dd {
  text-align: right;
  font-weight: 800;
  font-size: 0.88rem;
}

.property-card .btn {
  margin-top: auto;
}

.lease-list {
  display: grid;
  gap: 0.75rem;
}

.lease-item span {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 800;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.project-groups {
  display: grid;
  gap: 1rem;
}

.project-group {
  padding: 1rem;
  border: 1px solid rgba(216, 216, 216, 0.92);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
}

.project-group-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 0.85rem;
}

.project-group-head > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #050505;
  color: var(--paper);
  font-weight: 900;
}

.project-group-head h3 {
  font-size: 1.2rem;
}

.project-group-head p {
  margin: 0.25rem 0 0;
  color: #666;
  font-size: 0.92rem;
}

.project-list article {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: none;
}

.project-list strong {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--ink);
}

.project-list span {
  display: block;
  color: #526074;
  font-size: 0.92rem;
}

.project-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  background: #dbe4ed;
}

.table-wrap {
  overflow-x: auto;
  padding: 1rem;
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

caption {
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 800;
  color: var(--ink);
}

th,
td {
  padding: 0.78rem;
  border-bottom: 1px solid var(--mist);
  text-align: left;
}

th {
  color: #475569;
  background: #f8fafc;
  font-size: 0.82rem;
  text-transform: uppercase;
}

tbody tr:hover {
  background: #f8fbfc;
}

.table-wrap .btn {
  margin-top: 1rem;
}

.rent-table table {
  min-width: 780px;
}

.rent-table td:first-child,
.rent-table th:first-child {
  min-width: 190px;
}

.rent-table td:last-child {
  font-weight: 800;
  color: var(--teal);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #050814;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.benefit-grid article {
  padding: 1rem;
}

.lead-layout {
  align-items: start;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b1220, #0f2f35);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.lead-copy {
  position: sticky;
  top: 104px;
  color: var(--paper);
}

.lead-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.lead-copy p,
.lead-copy li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--gold);
}

.lead-form {
  padding: 1.15rem;
  box-shadow: none;
}

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

.lead-form label {
  display: block;
  margin-bottom: 0.75rem;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0.8rem 0 0;
  color: #667085;
  font-size: 0.88rem;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.is-success {
  display: block;
  background: #e9f7ef;
  color: var(--green);
}

.form-status.is-error {
  display: block;
  background: #fff1ef;
  color: var(--danger);
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  padding: 0.82rem 1rem;
}

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

.site-footer {
  padding-block: 0 1.2rem;
  background:
    linear-gradient(180deg, #0f1726 0%, #0a111d 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-cta {
  position: relative;
  top: -1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(40, 40, 40, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.footer-cta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta strong {
  margin-top: 0.18rem;
  color: var(--paper);
  font-size: 1.04rem;
  line-height: 1.35;
}

.footer-cta .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.footer-cta .btn:hover,
.footer-cta .btn:focus-visible {
  background: #dcdcdc;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr 0.85fr;
  gap: 1rem;
  padding-block: 0.8rem 1.2rem;
}

.footer-about,
.footer-card {
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.footer-brand-lockup {
  display: flex !important;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.65rem !important;
  color: var(--paper) !important;
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-brand-lockup img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
  object-fit: cover;
  background: #000;
}

.footer-about p,
.footer-card p {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.95rem;
}

.footer-badges span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer h2 {
  margin-bottom: 0.7rem;
  color: var(--paper);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 0.48rem;
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  display: grid;
  gap: 0.35rem;
}

.social-links a {
  margin-bottom: 0;
  padding: 0.35rem 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
}

.footer-note {
  display: flex;
  gap: 0.5rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.footer-note strong {
  color: var(--paper);
}

.footer-bottom {
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: calc(100vw - 2rem);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--paper);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(31, 122, 77, 0.34);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #050505;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .legal-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .legal-nav a {
    padding: 0.7rem 1rem;
  }

  .hero-content,
  .split-layout,
  .lead-layout,
  .video-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: center;
  }

  .hero-panel {
    max-width: 520px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid,
  .dense-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .project-group-head {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .filter-bar {
    justify-content: stretch;
  }

  .filter-bar label {
    flex: 1 1 180px;
  }

  .lead-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 18, 34, 0.9) 0%, rgba(10, 18, 34, 0.76) 100%);
  }

  .hero-content {
    padding-block: 2.8rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.48rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .availability-bar a {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .trust-grid,
  .card-grid,
  .dense-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-note {
    display: block;
  }

  .trust-grid span {
    min-height: 52px;
  }

  .section {
    padding-block: 2.45rem;
  }

  .lead-layout {
    padding: 0.75rem;
  }

  .project-list article {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .property-card dl div {
    display: block;
  }

  .property-card dd {
    margin-top: 0.15rem;
    text-align: left;
  }

  .floating-whatsapp {
    left: 1rem;
    right: 1rem;
  }
}
