/* ============================================================
   AL-FATTAH MARKETING — LUXURY LANDING PAGE
   Navy #0A1628 · White #FFFFFF · Lime #C4FF45
   ============================================================ */

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

:root {
  --navy:       #0A1628;
  --navy-mid:   #12213E;
  --navy-light: #1C3060;
  --lime:       #C4FF45;
  --lime-dark:  #9CD62E;
  --white:      #FFFFFF;
  --off-white:  #F4F6F9;
  --gray:       #7A8899;
  --gray-light: #CBD5DF;
  --b-dark:     rgba(255,255,255,0.07);
  --b-light:    #E2E8F0;

  --ff-head: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:   0.35s var(--ease);
  --container: 1300px;
}

html { scroll-behavior: auto; }

body {
  font-family: var(--ff-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 3px; }

/* ── CUSTOM CURSOR ─────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor-dot  { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; }
.cursor-ring { width: 38px; height: 38px; border: 1.5px solid var(--lime); border-radius: 50%; opacity: .65; transition: width .3s, height .3s, opacity .3s; }
.cursor-ring.hover { width: 60px; height: 60px; opacity: .2; }
.cursor-dot.hover  { background: var(--white); }

/* ── SCROLL REVEAL (IntersectionObserver) ───── */
.reveal, .reveal-left, .reveal-right {
  transition: opacity .8s ease, transform .8s ease;
}
.reveal       { opacity: 0; transform: translateY(28px); }
.reveal-left  { opacity: 0; transform: translateX(-44px); }
.reveal-right { opacity: 0; transform: translateX(44px); }
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view { opacity: 1; transform: none; }

/* ── UTILITIES ─────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--lime-dark); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; display: block; width: 36px; height: 1.5px; background: currentColor; }
.eyebrow.on-dark { color: var(--lime); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before,
.eyebrow.centered::after { content: ''; display: block; width: 28px; height: 1.5px; background: currentColor; }

.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700; line-height: 1.12;
  color: var(--navy);
}
.section-heading.on-dark { color: var(--white); }
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header.centered { text-align: center; }

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 2.1rem;
  font-family: var(--ff-body); font-size: .875rem;
  font-weight: 600; letter-spacing: .05em;
  border-radius: 3px; border: none; cursor: pointer;
  transition: var(--trans);
}
.btn-primary { background: var(--lime); color: var(--navy); }
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(196,255,69,.28); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }
.btn-lime { background: var(--lime); color: var(--navy); }
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,255,69,.25); }
.btn.full-width { width: 100%; justify-content: center; }

/* ── NAVBAR ────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.6rem 0;
  transition: background .45s ease, box-shadow .45s ease, padding .45s ease;
}
.navbar.scrolled {
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 40px rgba(0,0,0,.35);
  padding: 1rem 0;
}
.nav-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1.25rem,5vw,4rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.logo-mark {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--lime); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem;
  border-radius: 3px;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name { font-family: var(--ff-head); font-size: .95rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.logo-sub  { font-size: .65rem; font-weight: 500; color: var(--lime); letter-spacing: .12em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav-link {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.75);
  padding: .5rem .9rem; border-radius: 3px; position: relative;
  transition: color var(--trans);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: .9rem; right: .9rem;
  height: 1.5px; background: var(--lime);
  transform: scaleX(0); transform-origin: left; transition: transform var(--trans);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  margin-left: .75rem; padding: .625rem 1.5rem;
  background: var(--lime); color: var(--navy);
  font-size: .875rem; font-weight: 700;
  border-radius: 3px; white-space: nowrap; flex-shrink: 0;
  transition: var(--trans);
}
.nav-cta:hover { background: var(--lime-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: .5rem; margin-left: auto; z-index: 1001;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 115%; object-fit: cover; transform-origin: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,22,40,.9) 0%, rgba(10,22,40,.55) 55%, rgba(10,22,40,.3) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 44px; height: 1.5px; background: currentColor; }

.hero-heading {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.5rem;
}
.hero-heading em { color: var(--lime); font-style: italic; }

.hero-sub {
  font-size: clamp(.975rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,.72); line-height: 1.75;
  max-width: 520px; margin-bottom: 2.75rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.45); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1.5px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  animation: scrollPulse 1.9s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.1); }
}

/* ── MARQUEE STRIP ─────────────────────────── */
.marquee-strip { background: var(--lime); padding: .7rem 0; overflow: hidden; }
.marquee-track {
  display: inline-flex; align-items: center;
  gap: 2.5rem; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--navy); flex-shrink: 0; }
.marquee-track .msep { color: rgba(10,22,40,.3); font-size: .45rem; letter-spacing: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS BAR ─────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: clamp(3rem,6vw,5.5rem) 0;
  border-bottom: 1px solid rgba(196,255,69,.1);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 0 clamp(1.5rem,3vw,3rem);
  border-left: 1px solid rgba(196,255,69,.12);
  text-align: left;
}
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-value {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; color: var(--lime);
  line-height: 1; margin-bottom: .4rem;
}
.stat-label {
  font-size: .72rem; font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .12em; text-transform: uppercase;
}

/* ── ABOUT ─────────────────────────────────── */
.about {
  background: var(--off-white);
  padding: clamp(4rem,8vw,7rem) 0;
  position: relative; overflow: hidden;
}
.about::before {
  content: attr(data-year);
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-head);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700; color: rgba(10,22,40,.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.about-grid {
  display: grid; grid-template-columns: 42% 1fr;
  gap: clamp(2.5rem,6vw,5.5rem); align-items: center;
  position: relative; z-index: 1;
}
.about-image-wrapper { position: relative; }
.about-img { width: 100%; height: clamp(400px,52vw,580px); object-fit: cover; border-radius: 4px; position: relative; z-index: 1; }
.about-img-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 58%; height: 55%;
  border: 2px solid var(--lime); border-radius: 4px; z-index: 0;
}
.about-img-badge {
  position: absolute; top: 2rem; left: -2rem; z-index: 2;
  background: var(--navy); color: var(--white);
  padding: 1.25rem 1.5rem; border-radius: 4px; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.badge-num { display: block; font-family: var(--ff-head); font-size: 2.25rem; font-weight: 700; color: var(--lime); line-height: 1; }
.badge-lbl { display: block; font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: .1em; text-transform: uppercase; margin-top: .3rem; }

.about-content .section-heading { margin-bottom: 1.75rem; }

.about-paragraphs p { color: #4A5568; line-height: 1.85; font-size: .975rem; margin-bottom: 1.25rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 2rem 0; }
.feature-item { display: flex; align-items: center; gap: .75rem; font-size: .875rem; font-weight: 500; color: var(--navy); }
.feature-check {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--lime); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800;
}

.about-sig { display: flex; align-items: center; gap: 1.25rem; padding-top: 1.5rem; border-top: 1px solid var(--b-light); }
.sig-bar { width: 3px; height: 50px; background: var(--lime); border-radius: 2px; flex-shrink: 0; }
.sig-name { display: block; font-family: var(--ff-head); font-size: 1.1rem; color: var(--navy); }
.sig-title { font-size: .78rem; color: var(--gray); letter-spacing: .05em; }

/* ── SERVICES (editorial numbered rows) ────── */
.services { background: var(--white); padding: clamp(4rem,8vw,7rem) 0; }

.service-list { border-top: 1px solid var(--b-light); }

.service-row {
  display: grid;
  grid-template-columns: 4rem 1fr 1.6fr 2.5rem;
  gap: 0 2.5rem;
  align-items: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--b-light);
  cursor: default;
  transition: background .3s ease;
}
.service-row:hover { background: rgba(196,255,69,.04); }
.service-row:hover .svc-title { color: var(--navy-light); }

.svc-num {
  font-family: var(--ff-head); font-size: .9rem;
  font-weight: 700; color: var(--gray-light);
  letter-spacing: .05em;
  transition: color .3s ease;
}
.service-row:hover .svc-num { color: var(--lime-dark); }

.svc-title {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 600; color: var(--navy);
  transition: color .3s ease;
}
.svc-desc {
  font-size: .875rem; color: var(--gray);
  line-height: 1.8;
}
.svc-arr {
  font-size: 1.1rem; color: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, color .3s ease;
}
.service-row:hover .svc-arr { transform: translateX(5px); color: var(--lime-dark); }

/* ── PROPERTIES ────────────────────────────── */
.properties { background: var(--navy); padding: clamp(4rem,8vw,7rem) 0; }

/* Featured (first) card */
.prop-featured-card {
  display: grid; grid-template-columns: 58% 42%;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--b-dark);
  margin-bottom: 1.5rem; min-height: 440px;
  transition: var(--trans);
}
.prop-featured-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,.45); border-color: rgba(196,255,69,.2); }

.pfc-img { position: relative; }
.pfc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.prop-featured-card:hover .pfc-img img { transform: scale(1.04); }
.pfc-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--lime); color: var(--navy);
  font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .875rem; border-radius: 2px;
}

.pfc-body {
  background: var(--navy-mid);
  padding: clamp(2rem,4vw,3rem) clamp(1.5rem,3vw,2.5rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.pfc-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.pfc-title { font-family: var(--ff-head); font-size: clamp(1.6rem,2.5vw,2.25rem); font-weight: 700; color: var(--white); line-height: 1.2; }
.pfc-loc { font-size: .875rem; color: rgba(255,255,255,.5); }
.pfc-details {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid var(--b-dark);
  border-bottom: 1px solid var(--b-dark);
}
.pfc-details span { font-size: .85rem; color: rgba(255,255,255,.65); }
.pfc-price { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--lime); }

/* Secondary grid */
.prop-secondary-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}

.prop-card {
  background: var(--navy-mid); border-radius: 6px;
  overflow: hidden; border: 1px solid var(--b-dark);
  transition: var(--trans);
}
.prop-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.45); border-color: rgba(196,255,69,.22); }

.prop-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.prop-img img { width: 100%; height: 100%; transition: transform .55s ease; }
.prop-card:hover .prop-img img { transform: scale(1.06); }

.prop-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--lime); color: var(--navy);
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 2px;
}
.prop-body { padding: 1.5rem; }
.prop-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.prop-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.prop-loc   { font-size: .75rem; color: rgba(255,255,255,.45); }
.prop-title { font-family: var(--ff-head); font-size: 1.175rem; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 1rem; }
.prop-details { display: flex; gap: .875rem; flex-wrap: wrap; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--b-dark); }
.prop-details span { font-size: .8rem; color: rgba(255,255,255,.55); }
.prop-footer { display: flex; justify-content: space-between; align-items: center; }
.prop-price { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; color: var(--lime); }
.prop-cta {
  font-size: .78rem; font-weight: 600; color: var(--white);
  padding: .45rem 1.1rem; border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px; transition: var(--trans); letter-spacing: .04em;
}
.prop-cta:hover { background: var(--lime); color: var(--navy); border-color: var(--lime); }

.properties-footer { text-align: center; }

/* ── CONTACT ───────────────────────────────── */
.contact { background: var(--off-white); padding: clamp(4rem,8vw,7rem) 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem,6vw,5rem); align-items: start; margin-bottom: 3rem;
}
.contact-info > p { font-size: .975rem; color: #4A5568; line-height: 1.8; margin-bottom: 2.25rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--lime); }
.c-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: .2rem; }
.c-value  { font-size: .9rem; color: var(--navy); font-weight: 500; }
a.c-value:hover { color: var(--lime-dark); }

.form-wrap { background: var(--white); border-radius: 8px; padding: 2.5rem; box-shadow: 0 6px 40px rgba(10,22,40,.09); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--navy); letter-spacing: .03em; text-transform: uppercase; }
.form-group input,
.form-group textarea {
  padding: .875rem 1rem;
  border: 1.5px solid var(--b-light); border-radius: 4px;
  font-family: var(--ff-body); font-size: .9rem; color: var(--navy);
  background: var(--off-white);
  transition: border-color var(--trans), box-shadow var(--trans);
  resize: vertical; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--lime-dark); box-shadow: 0 0 0 3px rgba(156,214,46,.15); background: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }

.map-wrap { border-radius: 8px; overflow: hidden; border: 1px solid var(--b-light); box-shadow: 0 4px 20px rgba(10,22,40,.07); }
.map-wrap iframe { display: block; filter: saturate(.85); }

/* ── FOOTER ────────────────────────────────── */
.footer { background: #06101E; padding: clamp(3rem,6vw,5rem) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.6fr;
  gap: clamp(2rem,5vw,4rem);
  padding-bottom: clamp(2rem,4vw,3rem);
  border-bottom: 1px solid var(--b-dark);
}
.footer-logo { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.25rem; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 300px; }
.footer-col h4 { font-family: var(--ff-head); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--b-dark); }
.footer-col ul  { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a   { font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-col a:hover { color: var(--lime); }
.footer-col p   { font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: .5rem; line-height: 1.65; }
.footer-bottom  { padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
  .service-row { grid-template-columns: 3.5rem 1fr 1fr 2rem; gap: 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { max-width: 560px; margin: 0 auto; }
  .about-img-badge { left: 1rem; }
  .about-img-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .prop-featured-card { grid-template-columns: 1fr; min-height: auto; }
  .pfc-img { min-height: 280px; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links { display: none; position: fixed; inset: 0; z-index: 999; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.5rem; padding: .5rem 1rem; }
  .nav-cta  { display: none; }
  .nav-toggle { display: flex; }

  .hero-heading { font-size: clamp(2.5rem,8vw,3.75rem); }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-left: none; }
  .stat-item:nth-child(3) { border-left: none; padding-left: 0; padding-top: 2rem; }
  .stat-item:nth-child(4) { padding-top: 2rem; }

  /* Service rows mobile: 2-column */
  .service-row { grid-template-columns: 3rem 1fr; grid-template-rows: auto auto; gap: .5rem 1rem; padding: 1.5rem .5rem; }
  .svc-num   { grid-area: 1/1; align-self: start; }
  .svc-title { grid-area: 1/2; font-size: 1.15rem; }
  .svc-desc  { grid-area: 2/1/3/3; font-size: .85rem; padding-left: 0; }
  .svc-arr   { display: none; }

  .prop-secondary-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
}
