/* ============================================
   ASHNA MODH REALTOR — Main Stylesheet
   Brand: Charcoal (#2D2D2D) + Champagne (#C4A882)
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================ */

@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&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:       #2D2D2D;
  --charcoal-light: #3F3F3F;
  --champagne:      #C4A882;
  --champagne-light:#E8D5B7;
  --champagne-pale: #F5EFE6;
  --cream:          #FAF8F4;
  --white:          #FFFFFF;
  --text-dark:      #1A1A1A;
  --text-mid:       #555555;
  --text-light:     #888888;
  --border:         #E2D9CE;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.16);
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --nav-height:     72px;
  --max-width:      1200px;
  --transition:     0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-mid); line-height: 1.75; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.section-header { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.section-header p { margin-top: 1rem; font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.btn:active::before {
  width: 200%;
  height: 500%;
  opacity: 1;
}
.btn-primary {
  background: var(--champagne);
  color: var(--charcoal);
  border-color: var(--champagne);
}
.btn-primary:hover {
  background: var(--charcoal);
  color: var(--champagne);
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,45,45,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,45,45,0.2);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.nav-logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--champagne); }
.nav-links .nav-cta {
  background: var(--champagne);
  color: var(--charcoal);
  font-weight: 600;
  margin-left: 0.75rem;
  padding: 0.5rem 1.25rem;
}
.nav-links .nav-cta:hover { background: var(--champagne-light); color: var(--charcoal); }

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

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--charcoal);
  padding: 1rem 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile-menu a:hover { color: var(--champagne); }
.nav-mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45,45,45,0.82) 0%, rgba(45,45,45,0.38) 60%, rgba(45,45,45,0.70) 100%),
              url('/images/HDR_NOF_austinpennybackerbridgejpg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  transform-origin: center;
}
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 4rem) 1.5rem 3rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 680px;
  animation: heroSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero > .hero-content > p {
  color: rgba(255,255,255,0.82);
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: heroSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 1.5rem;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: heroFadeIn 1.2s ease 0.9s both;
}
.hero-stat {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.65); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Animation Keyframes ── */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Scroll Animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate="fade"] {
  transform: none;
}
[data-animate="scale"] {
  transform: scale(0.94);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="450"] { transition-delay: 0.45s; }
[data-delay="500"] { transition-delay: 0.50s; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.card-img { width: 100%; height: 220px; object-fit: cover; }

.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.card-body p { font-size: 0.9rem; }

.service-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.4s ease,
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,168,130,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: var(--champagne);
  box-shadow: 0 12px 40px rgba(196,168,130,0.18);
  transform: translateY(-5px);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--champagne-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--champagne-light);
  transform: scale(1.08);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--champagne-light);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-stars { color: #F5A623; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 1.25rem; padding-top: 0.5rem; }
.testimonial-author { font-weight: 600; color: var(--charcoal); font-size: 0.9rem; }
.testimonial-source { font-size: 0.8rem; color: var(--champagne); margin-top: 2px; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--charcoal);
  padding: 3rem 0;
}
.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}
.stat-item-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
}
.stat-item-label { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light));
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── About Section ── */
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--champagne);
  color: var(--charcoal);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.credential-badge {
  background: var(--champagne-pale);
  border: 1px solid var(--champagne-light);
  color: var(--charcoal);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--champagne); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Neighborhood Cards ── */
.neighborhood-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.neighborhood-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.neighborhood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.neighborhood-card:hover img { transform: scale(1.08); }
.neighborhood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,15,0.95) 0%, rgba(20,18,15,0.15) 55%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.4s ease;
}
.neighborhood-card:hover .neighborhood-overlay {
  background: linear-gradient(to top, rgba(20,18,15,0.98) 0%, rgba(20,18,15,0.3) 55%, rgba(20,18,15,0.05) 75%);
}
.neighborhood-overlay h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.25rem; }
.neighborhood-overlay p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.neighborhood-overlay a {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.neighborhood-card:hover .neighborhood-overlay a {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.15);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #81c784;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: #2e7d32;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* ── Contact Info ── */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--champagne-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-text { font-size: 0.9rem; color: var(--text-mid); }
.contact-info-text strong { display: block; color: var(--charcoal); font-size: 0.85rem; margin-bottom: 2px; }

/* ── Blog ── */
.blog-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--champagne-pale); }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
  display: block;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; color: var(--text-mid); }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-light); }

/* ── Footer ── */
.footer {
  background: #1A1A1A;
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--champagne); }
.footer-desc { font-size: 0.875rem; line-height: 1.75; margin-top: 1rem; color: rgba(255,255,255,0.55); }
.footer-heading { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--champagne); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--champagne); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.875rem; align-items: flex-start; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--champagne); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--champagne); color: var(--champagne); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--champagne); }

/* ── Luxury Accent Elements ── */
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-ornament span {
  color: var(--champagne);
  font-size: 0.9rem;
}

.highlight-box {
  background: var(--champagne-pale);
  border-left: 3px solid var(--champagne);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.highlight-box p { font-size: 0.9rem; color: var(--charcoal); }

/* ── Utility ── */
.bg-cream { background: var(--cream); }
.bg-champagne-pale { background: var(--champagne-pale); }
.bg-charcoal { background: var(--charcoal); }
.bg-dark { background: #1A1A1A; }
.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; }
.mb-4 { margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding-top: calc(var(--nav-height) + 2rem); }
  .hero-bg { background-attachment: scroll; }
  .hero-stat { min-width: 100px; }
  .about-badge { right: 0.5rem; }
  .contact-form-wrap { padding: 2rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar-inner { gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }
  .cta-banner { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}
