/* ============================================================
   REALTOR NICOLE LLOYD — Custom Site Styles
   Brand: Dark mahogany brown + brownish gold on warm white
   Palette: Client-specified + South Florida luxury vernacular
   ============================================================ */

:root {
  /* Brand Colors */
  --mahogany:    #3D1C10;   /* deep dark mahogany brown */
  --mahogany-md: #5A2E1A;   /* mid mahogany for hovers */
  --gold:        #B8933A;   /* brownish gold */
  --gold-light:  #D4AC5A;   /* gold highlight / hover */
  --gold-pale:   #F5EDD8;   /* pale gold tint — section backgrounds */
  --cream:       #FAF7F2;   /* warm off-white base */
  --white:       #FFFFFF;
  --charcoal:    #1E1E1E;   /* near-black body text */
  --slate:       #5A5047;   /* muted brown-grey for secondary text */
  --border:      #E5D9C5;   /* warm border tone */

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Montserrat', 'Helvetica Neue', sans-serif;

  /* Sizing */
  --radius:      4px;
  --radius-lg:   8px;
  --shadow-sm:   0 2px 8px rgba(61,28,16,0.10);
  --shadow-md:   0 6px 24px rgba(61,28,16,0.14);
  --shadow-lg:   0 16px 48px rgba(61,28,16,0.18);

  /* Layout */
  --max-w:       1200px;
  --header-h:    72px;
}

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--slate); line-height: 1.75; }

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

/* ── Layout Helpers ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--mahogany); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.78); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--gold-light); }
.section--gold { background: var(--gold-pale); }
.section--cream { background: var(--cream); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--white); }
.btn--dark {
  background: var(--mahogany);
  color: var(--white);
}
.btn--dark:hover { background: var(--mahogany-md); transform: translateY(-1px); }
.btn--ghost {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--mahogany);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.site-logo .logo-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.18s, background 0.18s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.07);
}
.header-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-left: 1rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--white); }
.nav-cta { margin-left: 0.5rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--mahogany);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/interior.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.22;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(184,147,58,0.4);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
}
.hero-badge .badge-icon { font-size: 1.1rem; }
.hero-badge .badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── Search Bar ── */
.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.search-bar input, .search-bar select {
  flex: 1;
  min-width: 160px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.18s;
}
.search-bar input:focus, .search-bar select:focus {
  outline: none;
  border-color: var(--gold);
}
.search-bar .btn { flex-shrink: 0; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--gold);
  padding: 1.25rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}

/* ── Section Headers ── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header h2 { color: var(--mahogany); margin-top: 0.5rem; }
.section--dark .section-header h2 { color: var(--white); }

/* ── Agent Intro (split layout) ── */
.agent-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.agent-intro__photo {
  position: relative;
}
.agent-intro__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 560px;
  box-shadow: var(--shadow-lg);
}
.agent-intro__photo::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.agent-intro__content .stats-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat-card {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mahogany);
}
.stat-card .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

/* ── Reviews / Testimonials ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.review-text {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }
.review-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-platform { color: var(--gold); }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.22s;
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { color: var(--mahogany); font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; }
.service-card a { color: var(--gold); font-weight: 600; font-size: 0.82rem; margin-top: 0.75rem; display: inline-block; }

/* ── Area Grid (Neighborhoods) ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.2s;
}
.area-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.area-card .county-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.area-card h3 { color: var(--mahogany); font-size: 1.05rem; margin-bottom: 0.4rem; }
.area-card p { font-size: 0.82rem; line-height: 1.6; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}
.step {
  position: relative;
  text-align: center;
  counter-increment: steps;
}
.step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 { color: var(--mahogany); margin-bottom: 0.5rem; font-size: 1.05rem; }
.step p  { font-size: 0.86rem; }

/* ── IDX CTA Banner ── */
.idx-cta {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.idx-cta__text h3 { color: var(--mahogany); margin-bottom: 0.4rem; }
.idx-cta__text p  { font-size: 0.92rem; margin: 0; }

/* ── Contact Form ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mahogany);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.18s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #EFF9F0;
  border: 1px solid #4CAF50;
  border-radius: var(--radius);
  padding: 1rem;
  color: #2E7D32;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}
.form-error {
  display: none;
  background: #FFF5F5;
  border: 1px solid #E57373;
  border-radius: var(--radius);
  padding: 1rem;
  color: #C62828;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

/* ── Case Study (Commercial) ── */
.case-study {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.case-study .cs-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.case-study h3 { color: var(--mahogany); margin-bottom: 0.75rem; }
.case-study .cs-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.cs-detail { }
.cs-detail .cs-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.cs-detail .cs-value { color: var(--mahogany); font-weight: 600; font-size: 0.95rem; }

/* ── Footer ── */
.site-footer {
  background: var(--mahogany);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.86rem;
  margin-bottom: 0.75rem;
}
.footer-contact .fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact a { color: rgba(255,255,255,0.68); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-license {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.mls-disclosure {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 900px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--mahogany);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 0.75rem; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); margin: 0 0.4rem; }

/* ── CTA Section ── */
.cta-section {
  background: var(--mahogany);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; }
.cta-section .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Map Placeholder ── */
.map-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-block iframe { display: block; width: 100%; height: 380px; border: none; }

/* ── Alert / Info Boxes ── */
.info-box {
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--mahogany);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    letter-spacing: 0.05em;
  }
  .nav-cta { margin: 1.5rem 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }

  .hero { min-height: auto; padding: 3rem 0 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 0.75rem; }

  .agent-intro { grid-template-columns: 1fr; gap: 2rem; }
  .agent-intro__photo { max-width: 320px; margin: 0 auto; }
  .agent-intro__photo::before { display: none; }
  .agent-intro__content .stats-list { grid-template-columns: 1fr 1fr; }

  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .area-grid { grid-template-columns: 1fr; }

  .stats-inner { gap: 1.5rem; }
  .stat-divider { display: none; }

  .idx-cta { flex-direction: column; }

  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer-bottom { flex-direction: column; }

  .section { padding: 3.5rem 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .search-bar { flex-direction: column; }
  .search-bar input, .search-bar select { min-width: 100%; }
  .search-bar .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .agent-intro__content .stats-list { grid-template-columns: 1fr; }
}
