/* ============================================================
   Nicole Lloyd | Realtor — South Florida
   X4 Build: x4-1581094
   Design: Clean & professional, navy/gold/white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --navy: #0B1F3A;
  --navy-light: #152d52;
  --gold: #C9A84C;
  --gold-light: #dfc070;
  --gold-pale: #f5edd6;
  --white: #ffffff;
  --off-white: #F8F7F4;
  --gray-light: #f0eeea;
  --gray-mid: #d4d0c8;
  --gray-text: #7a7670;
  --dark-text: #1a1714;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
  --shadow-md: 0 6px 24px rgba(11,31,58,0.12);
  --shadow-lg: 0 16px 48px rgba(11,31,58,0.16);
  --radius: 4px;
  --radius-lg: 8px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--off { background: var(--off-white); }
.section--gold { background: var(--gold-pale); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.eyebrow--light { color: var(--gold-light); }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #4a4642;
  font-weight: 400;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-lg); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--white);
}
.nav__links a:hover::after, .nav__links a.active::after {
  transform: scaleX(1);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__phone {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__phone svg { width: 14px; height: 14px; }
.nav__phone:hover { color: var(--gold-light); }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 60px 0;
}
.hero__content {}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__tagline::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__headline {
  color: var(--white);
  margin-bottom: 20px;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.hero__trust-item svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Headshot placeholder */
.hero__photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__photo-frame {
  position: relative;
  width: 380px;
  height: 500px;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-light) 0%, #0d1e33 100%);
  border: 1px solid rgba(201,168,76,0.2);
}
.hero__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero__monogram {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.hero__photo-note {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero__photo-accent {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 80px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}
.hero__badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.hero__badge-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.hero__badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar__item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  position: relative;
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stats-bar__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-top: 6px;
}

/* ── Awards ── */
.awards {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-light);
}
.awards__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.awards__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding-right: 32px;
  border-right: 1px solid var(--gray-mid);
  margin-right: 32px;
  white-space: nowrap;
}
.awards__items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  background: var(--gold-pale);
}
.award-badge__icon {
  font-size: 1.1rem;
}
.award-badge__text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ── Section Headers ── */
.section-header {
  margin-bottom: 52px;
}
.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-text);
  margin-top: 16px;
}
.section-header--dark p { color: rgba(255,255,255,0.65); }
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 20px;
}
.section-divider--center { margin-left: auto; margin-right: auto; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ── Sirocco / Commercial Feature ── */
.commercial-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.commercial-feature__visual {
  background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 50%, #1a0800 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.commercial-feature__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800&q=80') center/cover;
  opacity: 0.4;
}
.commercial-feature__visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
.commercial-feature__visual-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.commercial-feature__visual-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 8px;
}
.commercial-feature__visual-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}
.commercial-feature__content {
  background: var(--navy);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.commercial-feature__content h3 {
  color: var(--white);
  margin-bottom: 16px;
}
.commercial-feature__content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
}
.commercial-locations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 36px;
}
.commercial-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.commercial-location__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.commercial-location__text strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.commercial-location__text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card--featured {
  background: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.85rem;
}
.review-card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a3632;
  flex-grow: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.review-card--featured .review-card__quote { color: rgba(255,255,255,0.85); }
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.review-card--featured .review-card__avatar {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}
.review-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.review-card--featured .review-card__name { color: var(--white); }
.review-card__meta {
  font-size: 0.72rem;
  color: var(--gray-text);
  margin-top: 2px;
}
.review-card--featured .review-card__meta { color: rgba(255,255,255,0.45); }
.review-card__platform {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 3px 8px;
  border-radius: 100px;
}

/* ── Pull Quote ── */
.pull-quote {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 20rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}
.pull-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.pull-quote__text em { color: var(--gold); font-style: normal; }
.pull-quote__attribution {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-section .btn-group { position: relative; z-index: 1; }
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ── About Split ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__visual {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-photo__mono {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
}
.about-photo__note {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-accent-card__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-accent-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.75;
  margin-top: 4px;
}

.credential-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #3a3632;
}
.credential-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: var(--gray-mid);
}
.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-item__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
}
.step-item__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-item__desc {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ── Page Hero (internal pages) ── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.contact-info-item__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}
.contact-info-item__value a {
  color: var(--gold);
}
.contact-info-item__value a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition);
  font-weight: 700;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}

/* ── Map Placeholder ── */
.map-placeholder {
  background: linear-gradient(135deg, var(--gray-light) 0%, #e8e5e0 100%);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-text);
  font-size: 0.85rem;
  margin-top: 24px;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  position: relative;
}
.map-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* ── Footer ── */
.footer {
  background: #070f1c;
  color: rgba(255,255,255,0.5);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.78rem; }
.footer__legal { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ── Listings Preview ── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.listing-card__image {
  background: linear-gradient(135deg, var(--navy-light) 0%, #162540 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.listing-card__content { padding: 24px; }
.listing-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.listing-card__address {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.listing-card__specs {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}
.listing-card__spec { display: flex; align-items: center; gap: 4px; }
.listing-card__spec span { color: var(--gray-text); font-weight: 400; }

/* ── Sold Strip ── */
.sold-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.sold-item {
  flex: 1;
  padding: 20px;
  background: var(--navy-light);
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.sold-item:last-child { border-right: none; }
.sold-item__addr {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.sold-item__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.sold-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__photo { order: -1; }
  .hero__photo-frame { width: 320px; height: 420px; margin: 0 auto; }
  .hero__badge { right: 0; }
  .hero__content { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-split__visual { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .commercial-feature { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .listings-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .awards__inner { flex-direction: column; text-align: center; }
  .awards__label { border-right: none; padding-right: 0; margin-right: 0; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-mid); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .sold-strip { flex-direction: column; }
  .sold-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sold-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__photo-frame { width: 280px; height: 360px; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .awards__items { flex-direction: column; align-items: center; }
  .nav__cta .btn { display: none; }
}
