
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #080808;
  --deep: #0c0c0c;
  --card: #111111;
  --card-hover: #161616;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --cream: #F5F0E8;
  --cream-dim: #c8c3bb;
  --cream-muted: #8a8580;
  --gold: #C9A96E;
  --gold-light: #dfc18e;
  --gold-dark: #a8894e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: var(--black); }

a { color: inherit; text-decoration: none; }

/* ───── UTILITY ───── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 120px 0; }
@media (max-width: 768px) { .section-pad { padding: 80px 0; } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--cream-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ───── HEADER ───── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8,8,8,0.92);
}

.logo {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.logo span { color: var(--gold); }

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--cream-muted);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.header-nav a:hover { color: var(--cream); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}
.btn-primary::after {
  content: '→';
  transition: transform 0.3s;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.header-cta { display: block; }
.nav-links { display: flex; gap: 32px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--cream); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* ───── HERO ───── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  animation: heroPulse 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
  animation: heroPulse 10s ease-in-out infinite reverse;
}
@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
}

.hero-line {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
  animation: heroLine 4s ease-in-out infinite;
}
@keyframes heroLine {
  0%, 100% { opacity: 0.1; height: 200px; }
  50% { opacity: 0.4; height: 280px; }
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-metric-bar {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-metric { text-align: left; }
.hero-metric-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-metric-label {
  font-size: 0.75rem;
  color: var(--cream-muted);
  margin-top: 6px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-metric-bar { gap: 24px; flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
}

/* ───── PROBLEMS ───── */
.problems { background: var(--deep); position: relative; }
.problems::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}

.problems-header { text-align: center; margin-bottom: 64px; }
.problems-header .section-sub { margin: 0 auto; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
}
.problem-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.problem-card:hover::before { opacity: 1; }

.problem-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.2rem;
}

.problem-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cream);
}

.problem-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .problems-grid { grid-template-columns: 1fr; }
}

/* ───── SERVICES ───── */
.services { position: relative; }

.services-header { margin-bottom: 64px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 48px 36px;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(201,169,110,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }

.service-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: var(--gold-dark); }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.service-list li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ───── TRUST ───── */
.trust { background: var(--deep); }

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--border);
  background: var(--card);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--cream-muted);
  letter-spacing: 0.03em;
}

.trust-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.testimonial {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
}

.testimonial-info h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}
.testimonial-info span {
  font-size: 0.75rem;
  color: var(--cream-muted);
  font-weight: 300;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
}
.badge-icon {
  width: 20px;
  height: 20px;
  background: var(--gold);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg { width: 12px; height: 12px; fill: var(--black); }

.logos-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.logo-placeholder {
  width: 100px;
  height: 28px;
  background: var(--border);
  opacity: 0.4;
  position: relative;
}
.logo-placeholder::after {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-testimonials { grid-template-columns: 1fr; }
  .trust-badges { gap: 16px; }
  .badge { padding: 10px 16px; font-size: 0.72rem; }
}

/* ───── PROCESS ───── */
.process { position: relative; }

.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-sub { margin: 0 auto; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-light);
}

.timeline-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border: 1px solid var(--border-light);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, background 0.4s;
}
.timeline-step:hover .step-num {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.timeline-step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .timeline { grid-template-columns: 1fr; gap: 48px; }
  .timeline::before { display: none; }
}

/* ───── PRICING ───── */
.pricing { background: var(--deep); }

.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-sub { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  padding: 48px 36px;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  transition: transform 0.4s, border-color 0.4s;
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(to bottom, rgba(201,169,110,0.06), var(--card));
}

.pricing-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
}

.pricing-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-price {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream-muted);
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--cream-muted);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.pricing-features li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-dim);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ───── FAQ ───── */
.faq { position: relative; }

.faq-header { text-align: center; margin-bottom: 64px; }
.faq-header .section-sub { margin: 0 auto; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  margin-left: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.faq-item.active .faq-icon {
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-icon::before {
  content: '+';
  font-size: 1.1rem;
  color: var(--cream-muted);
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.75;
}

/* ───── FINAL CTA ───── */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 24px;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,169,110,0.08), transparent);
}
.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}
.final-cta h2 em { font-style: italic; color: var(--gold); }

.final-cta .section-sub {
  margin: 0 auto 40px;
  text-align: center;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.06);
  margin-bottom: 36px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.urgency-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: urgPulse 2s ease-in-out infinite;
}
@keyframes urgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ───── FOOTER ───── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand .logo { margin-bottom: 12px; }
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--cream-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links { display: flex; gap: 48px; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--cream-muted);
  font-weight: 300;
}

.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--cream-muted);
  transition: border-color 0.3s, color 0.3s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
