/* ───────────────────────────────────────────────────────────────────────────
   AMBER BARBER – LAKES AREA REALTY
   Vibrant Modern · Emerald + Cream · Geometric
   ─────────────────────────────────────────────────────────────────────────── */

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

:root {
  --emerald:      #065f46;
  --emerald-light:#059669;
  --emerald-dark: #064e3b;
  --cream:        #f5f0e8;
  --cream-light:  #faf7f2;
  --cream-dark:   #e8e0d0;
  --white:        #ffffff;
  --text:         #1a1a1a;
  --text-light:   #4a4a4a;
  --text-muted:   #6b6b6b;
  --accent:       #d97706;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(6,95,70,.08);
  --shadow-lg:    0 12px 48px rgba(6,95,70,.12);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--emerald-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--emerald);
  color: var(--white);
  padding: 10px 22px;
  font-size: .88rem;
  border-radius: 50px;
}
.btn-nav:hover { background: var(--emerald-dark); }
.btn-white {
  background: var(--white);
  color: var(--emerald);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--emerald);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: .85rem;
  border-radius: 50px;
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-sm:hover { background: var(--emerald-dark); }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION LABELS ──────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--emerald-light);
  background: rgba(5,150,105,.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── HEADER ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,95,70,.08);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(6,95,70,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--emerald-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}
.logo-icon { color: var(--emerald); flex-shrink: 0; }
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

/* Nav */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a {
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 50px;
  transition: var(--transition);
}
.nav-list a:hover { color: var(--emerald); background: rgba(6,95,70,.06); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6,95,70,.95);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--cream); }
.mobile-cta {
  margin-top: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--emerald);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.mobile-contact-info {
  margin-top: 16px;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, #e8f5e9 50%, var(--cream-light) 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Geometric shapes */
.geo { position: absolute; pointer-events: none; }
.geo-circle-1 {
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,95,70,.06) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.geo-rect-1 {
  width: 200px; height: 200px;
  background: rgba(6,95,70,.04);
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  bottom: 15%; left: -40px;
}
.geo-triangle {
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(6,95,70,.05);
  top: 20%; left: 8%;
}
.geo-dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(6,95,70,.15) 2px, transparent 2px);
  background-size: 16px 16px;
  top: 30%; right: 5%;
  opacity: .6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--emerald);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--emerald-dark);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-headline .accent {
  color: var(--emerald-light);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero cards */
.hero-cards {
  position: relative;
  height: 520px;
}
.card { border-radius: var(--radius-lg); overflow: hidden; }
.card-hero-main {
  width: 340px;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 20px; left: 40px;
  z-index: 3;
}
.card-hero-main img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.card-hero-main-label {
  background: var(--white);
  padding: 20px;
}
.label-tag {
  display: inline-block;
  background: var(--emerald);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.label-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--emerald-dark);
  font-weight: 700;
}

.card-float {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.card-float-1 {
  top: 0; right: 0;
  animation-delay: 0s;
}
.card-float-2 {
  bottom: 80px; right: -20px;
  animation-delay: 1.3s;
}
.card-float-3 {
  bottom: 0; left: 0;
  animation-delay: 2.6s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
}
.float-label {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  color: var(--cream);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-cards { display: none; }
}

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--emerald);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .15;
}
.about-stat-card {
  position: absolute;
  bottom: -30px; left: 30px;
  background: var(--emerald);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-stat-card .stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.about-stat-card .stat-label {
  font-size: .82rem;
  opacity: .85;
  line-height: 1.4;
}
.about-text .section-title { margin-top: 8px; }
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-features {
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
}
.about-features svg { color: var(--emerald-light); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 480px; margin: 0 auto; }
}

/* ── SERVICES ────────────────────────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.geo-services-circle {
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  position: absolute;
  top: -200px; right: -200px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
}
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--cream);
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── LISTINGS ────────────────────────────────────────────────────────────── */
.listings {
  padding: 100px 0;
  background: var(--cream-light);
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.listing-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.listing-card:hover .listing-img img { transform: scale(1.05); }
.listing-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--emerald);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.listing-body { padding: 24px; }
.listing-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.listing-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.listing-features {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.listing-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  color: var(--text-light);
}
.listing-features svg { color: var(--emerald-light); }
.listing-body .btn { width: 100%; justify-content: center; }

.listings-cta {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.listings-cta p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .listings-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.testimonials .section-label { background: rgba(255,255,255,.15); color: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,.15);
  margin-bottom: -12px;
}
.testimonial-text {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
}
.author-detail {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  position: relative;
  overflow: hidden;
}
.geo-cta-circle {
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  position: absolute;
  bottom: -200px; left: -100px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.cta-content { flex: 1; }
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 768px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ── CONTACT ─────────────────────────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--cream-light);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--emerald);
  border-radius: var(--radius);
  color: var(--white);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.contact-value a { color: var(--emerald); transition: var(--transition); }
.contact-value a:hover { color: var(--emerald-light); text-decoration: underline; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--emerald-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5,150,105,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(5,150,105,.08);
  border-radius: var(--radius);
  color: var(--emerald);
  font-weight: 500;
  font-size: .95rem;
}
.form-success svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--emerald-dark);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.logo-footer { color: var(--white); margin-bottom: 16px; }
.logo-text-light { color: rgba(255,255,255,.9); }
.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact p {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,.75); transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
</style>
