/* Nicole Lloyd Realty — Design System */
/* Mobile-first | Navy + Gold | Playfair Display + Inter */

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

/* ─── CSS Variables ─── */
:root {
  --navy:        #1a1a2e;
  --navy-light:  #252545;
  --navy-dark:   #0f0f1e;
  --gold:        #c8a96e;
  --gold-light:  #d9be8a;
  --gold-dark:   #a8894e;
  --bg:          #f8f7f4;
  --bg-warm:     #f2efe9;
  --white:       #ffffff;
  --text:        #2d2d2d;
  --text-light:  #5a5a6a;
  --text-muted:  #8a8a9a;
  --border:      #e2ddd6;
  --border-dark: #c8c3bc;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(26,26,46,0.08);
  --shadow-md:   0 4px 16px rgba(26,26,46,0.12);
  --shadow-lg:   0 8px 32px rgba(26,26,46,0.16);
  --shadow-xl:   0 16px 48px rgba(26,26,46,0.20);
  --shadow-gold: 0 4px 20px rgba(200,169,110,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --max-w-lg: 1400px;
}

/* ─── Reset ─── */
*, *::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(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--navy); }
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; line-height: 1.3; color: var(--navy); }

.display-xl { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
.display-md { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; line-height: 1.2; }
.eyebrow { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--text-light); }

/* ─── Layout Utilities ─── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.container-lg { width: 100%; max-width: var(--max-w-lg); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-navy-light { background: var(--navy-light); }
.bg-warm { background: var(--bg-warm); }
.bg-white { background: var(--white); }

/* ─── Grid ─── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em;
  transition: var(--transition); white-space: nowrap;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

/* ─── Navigation ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.25rem;
  max-width: var(--max-w-lg); margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-brand-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }
.nav-brand-text {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white);
  line-height: 1.2;
}
.nav-brand-sub { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: block; }
.nav-links {
  display: none;
  align-items: center; gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500;
  padding: 0.5rem 0.875rem; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { display: none; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 0.5rem;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy); padding: 5rem 1.5rem 2rem;
  flex-direction: column; gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); font-size: 1.1rem; font-weight: 500;
  padding: 0.875rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block; transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 1.5rem; }
.mobile-menu .mobile-cta { margin-top: 1.5rem; }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--white); font-size: 1.5rem; padding: 0.5rem;
  background: none; border: none; cursor: pointer;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.6) 50%, rgba(26,26,46,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--max-w-lg); margin: 0 auto; padding: 8rem 1.25rem 5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: var(--radius-full); margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; color: var(--white); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
  max-width: 800px;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.8);
  max-width: 540px; margin-bottom: 2.5rem; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; }

/* ─── Search Bar ─── */
.search-section {
  background: var(--white); padding: 2.5rem 0;
  box-shadow: var(--shadow-md); position: relative; z-index: 10;
}
.search-bar {
  display: flex; flex-direction: column; gap: 0.75rem;
  background: var(--bg-warm); border: 2px solid var(--border);
  border-radius: var(--radius-xl); padding: 1rem;
}
.search-bar-inner {
  display: flex; flex-direction: column; gap: 0.75rem;
  flex: 1;
}
.search-input-wrap {
  position: relative; flex: 1;
}
.search-input-wrap .icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--text-muted);
}
.search-input {
  width: 100%; padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-size: 0.9rem; background: var(--white); color: var(--text);
  transition: var(--transition); outline: none;
}
.search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,0.15); }
.search-select {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-size: 0.9rem; background: var(--white); color: var(--text);
  transition: var(--transition); outline: none; width: 100%; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.search-select:focus { border-color: var(--gold); }
.search-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.search-links a {
  font-size: 0.8rem; color: var(--text-light); font-weight: 500;
  display: flex; align-items: center; gap: 0.3rem;
  transition: var(--transition);
}
.search-links a:hover { color: var(--navy); }
.search-links a::before { content: '→'; color: var(--gold); }

@media (min-width: 640px) {
  .search-bar { flex-direction: row; align-items: center; padding: 0.75rem; }
  .search-bar-inner { flex-direction: row; }
  .search-input { font-size: 0.95rem; }
}

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--navy); padding: 2.5rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item {
  padding: 1.75rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-num {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--gold); line-height: 1; display: block;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; margin-top: 0.4rem; }

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Section Headers ─── */
.section-header { margin-bottom: 3rem; }
.section-header .eyebrow { margin-bottom: 0.75rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); max-width: 560px; font-size: 1.05rem; line-height: 1.7; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ─── Service Cards ─── */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.service-card-img { aspect-ratio: 16/9; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.75rem; }
.service-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(200,169,110,0.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.25rem; }
.service-card-link { font-size: 0.875rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 0.3rem; transition: var(--transition); }
.service-card-link:hover { gap: 0.6rem; }

/* ─── Reviews ─── */
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); position: relative;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: rgba(200,169,110,0.3); }
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.review-stars span { color: var(--gold); font-size: 0.95rem; }
.review-text {
  font-size: 0.95rem; line-height: 1.7; color: var(--text);
  font-style: italic; margin-bottom: 1.25rem;
}
.review-text::before { content: '\201C'; font-family: var(--font-display); font-size: 3rem; color: var(--gold); opacity: 0.3; line-height: 0; vertical-align: -0.75rem; margin-right: 0.2rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.review-author-info { flex: 1; }
.review-author-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.review-platform { font-size: 0.75rem; color: var(--text-muted); }

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Agent Bio Panel ─── */
.agent-panel {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
.agent-photo-wrap {
  position: relative;
}
.agent-photo {
  width: 100%; max-width: 420px; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
  margin: 0 auto;
}
.agent-photo img { width: 100%; height: auto; display: block; }
.agent-photo-badge {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  padding: 0.6rem 1.5rem; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; box-shadow: var(--shadow-md);
}
.agent-bio h2 { margin-bottom: 0.75rem; }
.agent-bio p { color: var(--text-light); line-height: 1.75; margin-bottom: 1.25rem; }
.agent-credentials {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin: 2rem 0;
}
.credential-item {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1.25rem; background: var(--bg-warm);
  border-radius: var(--radius-md); border-left: 3px solid var(--gold);
}
.credential-item span { font-size: 0.875rem; color: var(--text-light); }
.credential-item strong { font-weight: 600; color: var(--navy); }

@media (min-width: 900px) {
  .agent-panel { grid-template-columns: 5fr 7fr; gap: 4rem; }
  .agent-photo { max-width: 100%; }
}

/* ─── Areas Grid ─── */
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.area-tag {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-light); font-size: 0.85rem; font-weight: 500;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-full);
  transition: var(--transition);
}
.area-tag:hover { border-color: var(--gold); color: var(--navy); background: rgba(200,169,110,0.08); }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--navy); padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,0.12) 0%, transparent 65%);
}
.cta-banner-inner {
  position: relative; display: flex; flex-direction: column; gap: 2rem;
  align-items: flex-start;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 520px; line-height: 1.7; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (min-width: 900px) {
  .cta-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-banner-text { flex: 1; }
  .cta-banner-actions { flex-shrink: 0; }
}

/* ─── Contact Section ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(200,169,110,0.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-detail { flex: 1; }
.contact-item-detail label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.2rem; }
.contact-item-detail a, .contact-item-detail p { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-item-detail a:hover { color: var(--gold); }
.contact-form-panel {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.contact-form-panel h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.875rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-size: 0.9rem; color: var(--text); background: var(--bg);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

/* ─── Footer ─── */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .nav-brand-text { color: var(--white); font-size: 1.3rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; margin-top: 1rem; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem; transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact p { font-size: 0.875rem; line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-start;
}
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-bottom a:hover { color: var(--gold); }
.footer-license { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ─── Page Hero (interior pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(200,169,110,0.15) 0%, transparent 60%);
}
.page-hero-inner { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.1rem; line-height: 1.7; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ─── Feature Split ─── */
.feature-split {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
.feature-split.reverse .feature-img { order: -1; }
.feature-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.feature-img img { width: 100%; height: auto; display: block; }
.feature-body { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-body .eyebrow { margin-bottom: -0.5rem; }
.feature-body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.feature-body p { color: var(--text-light); line-height: 1.75; }
.feature-checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-light);
}
.feature-checklist li::before {
  content: '✓'; color: var(--gold); font-weight: 700;
  flex-shrink: 0; margin-top: 0.1rem;
}

@media (min-width: 900px) {
  .feature-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature-split.reverse .feature-img { order: 0; }
}

/* ─── Process Steps ─── */
.process-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.step-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: rgba(200,169,110,0.25); line-height: 1; flex-shrink: 0;
  width: 60px; text-align: right;
}
.step-body h4 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--navy); }
.step-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }

@media (min-width: 640px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

/* ─── IDX Placeholder ─── */
.idx-placeholder {
  background: var(--bg-warm); border: 2px dashed var(--border-dark);
  border-radius: var(--radius-xl); padding: 3rem 2rem;
  text-align: center;
}
.idx-placeholder .icon { font-size: 3rem; margin-bottom: 1rem; color: var(--gold); }
.idx-placeholder h3 { margin-bottom: 0.75rem; color: var(--navy); }
.idx-placeholder p { color: var(--text-light); font-size: 0.9rem; max-width: 400px; margin: 0 auto 1.5rem; }

/* ─── Value Props ─── */
.value-props {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.value-prop {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--border);
  border-top: 3px solid var(--gold); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-prop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-prop-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-prop h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-prop p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

@media (min-width: 640px) {
  .value-props { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .value-props { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }

/* ─── Divider ─── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.divider-gold { border-top-color: rgba(200,169,110,0.3); }

/* ─── Scroll to top ─── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ─── Responsive Helpers ─── */
.hide-mobile { display: none; }
@media (min-width: 640px) {
  .hide-mobile { display: block; }
  .hide-desktop { display: none; }
}

/* ─── Print ─── */
@media print {
  .site-header, .scroll-top, .mobile-menu { display: none; }
  body { background: white; color: black; }
}
