/* ========================================
   Pinnacle Realty — Static Site Styles
   ======================================== */

:root {
  --bg: hsl(0, 0%, 5%);
  --bg-card: hsla(0, 0%, 8%, 0.7);
  --bg-card-hover: hsla(0, 0%, 10%, 0.8);
  --fg: hsl(40, 20%, 95%);
  --fg-muted: hsl(40, 10%, 60%);
  --gold: hsl(40, 60%, 50%);
  --gold-light: hsl(40, 70%, 65%);
  --gold-dark: hsl(40, 50%, 35%);
  --gold-glow: hsl(40, 80%, 55%);
  --border: hsl(40, 20%, 18%);
  --input-bg: hsl(0, 0%, 12%);
  --secondary: hsl(0, 0%, 12%);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

img { max-width: 100%; display: block; }

/* ── Utility ───────────────────────────── */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1280px; margin: 0 auto; position: relative; }
.container-md { max-width: 960px; margin: 0 auto; position: relative; }
.container-video { max-width: 1024px; margin: 0 auto; }
.container-form { max-width: 768px; margin: 0 auto; position: relative; }

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(40, 40%, 50%, 0.15);
  border-radius: 12px;
  transition: all 0.5s ease;
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: hsla(40, 40%, 50%, 0.25);
}

.section {
  padding: 96px 24px;
  position: relative;
}
@media (min-width: 768px) { .section { padding: 128px 24px; } }

.section-header { text-align: center; margin-bottom: 64px; }
@media (min-width: 768px) { .section-header { margin-bottom: 80px; } }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.1;
}
.section-desc {
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
}

.section-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.section-glow-top { top: 0; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: hsla(40, 60%, 50%, 0.05); }
.section-glow-bottom-right { bottom: 0; right: 0; width: 300px; height: 300px; background: hsla(40, 60%, 50%, 0.05); }
.section-glow-center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; background: hsla(40, 60%, 50%, 0.03); filter: blur(150px); }

/* ── Buttons ───────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), hsl(40, 45%, 38%));
  color: var(--bg);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-gold:hover { opacity: 0.9; box-shadow: 0 8px 24px hsla(40, 60%, 50%, 0.2); }
.btn-full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid hsla(40, 60%, 50%, 0.3);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: hsla(40, 60%, 50%, 0.1); }

/* ── Navbar ────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: hsla(0, 0%, 5%, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px hsla(0, 0%, 0%, 0.5);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .navbar-inner { height: 80px; padding: 0 32px; } }

.logo-lambda {
  display: inline-block;
  font-size: 0.87em;
  font-weight: 400;
  transform: translateY(-0.04em);
  margin: 0 -0.01em;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}
@media (min-width: 1024px) { .navbar-logo { font-size: 1.875rem; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold); }

.nav-cta {
  margin-left: 16px;
  padding: 10px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), hsl(40, 45%, 38%));
  color: var(--bg);
  border-radius: 2px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.nav-cta:hover { opacity: 0.9; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(2px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(2px, -4px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: hsla(0, 0%, 5%, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.3s ease;
  align-items: center;
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu .nav-link {
  font-size: 0.85rem;
  text-align: center;
  width: 100%;
}
.mobile-menu .nav-cta {
  margin: 8px 0 0;
  text-align: center;
  padding: 12px 24px;
  display: block;
  width: 100%;
}

/* ── Hero ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero-bg img {
    object-position: 40% center;
  }
}
.hero-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsla(0,0%,5%,0.7), hsla(0,0%,5%,0.5), var(--bg));
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsla(0,0%,5%,0.6), transparent, hsla(0,0%,5%,0.6));
}
.hero-glow {
  position: absolute;
  top: 33%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: hsla(40, 60%, 50%, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  animation: glowPulse 3s ease-in-out infinite;
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 80px 24px 0;
  max-width: 800px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
@media (min-width: 768px) { .hero-label { font-size: 0.85rem; } }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 32px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: hsla(40, 20%, 95%, 0.8);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.shimmer-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(40, 60%, 50%, 0.15), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* ── Offering Grid ─────────────────────── */
.offering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .offering-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .offering-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.offering-grid .glass-card {
  min-height: 260px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, hsla(0, 0%, 8%, 0.78), hsla(0, 0%, 6%, 0.92));
  border: 1px solid hsla(40, 45%, 45%, 0.18);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 hsla(40, 35%, 60%, 0.05);
}

.offering-grid .glass-card:hover {
  transform: translateY(-4px);
  border-color: hsla(40, 55%, 55%, 0.28);
  box-shadow:
    0 18px 40px hsla(0, 0%, 0%, 0.28),
    inset 0 1px 0 hsla(40, 35%, 60%, 0.07);
}

.card-symbol {
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.95;
}

.card-symbol svg {
  display: block;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.card-desc {
  color: hsla(40, 14%, 78%, 0.88);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 32ch;
}

@media (max-width: 767px) {
  .offering-grid .glass-card {
    min-height: auto;
    padding: 32px 26px;
    border-radius: 16px;
  }

  .card-title {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .card-desc {
    font-size: 0.98rem;
    line-height: 1.8;
    max-width: none;
  }
}

/* ── Commission Structure ───────────────── */
.commission-card {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.commission-header {
  margin-bottom: 38px;
}

.commission-header .section-desc {
  max-width: 780px;
}

.commission-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 38px;
}

@media (min-width: 900px) {
  .commission-content {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 46px;
  }
}

.commission-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 38px 34px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, hsla(40, 65%, 55%, 0.12), transparent 58%),
    linear-gradient(180deg, hsla(0, 0%, 9%, 0.72), hsla(0, 0%, 7%, 0.9));
  border: 1px solid hsla(40, 50%, 50%, 0.16);
  text-align: center;
  box-shadow:
    0 18px 36px hsla(0, 0%, 0%, 0.18),
    inset 0 1px 0 hsla(40, 35%, 60%, 0.04);
}

.commission-highlight-text {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.commission-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 0;
}

.commission-copy .card-desc {
  max-width: none;
  font-size: 1.04rem;
  line-height: 1.92;
}

.commission-footer {
  border-top: 1px solid hsla(40, 24%, 24%, 0.58);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.commission-note {
  max-width: 760px;
  color: hsla(40, 14%, 82%, 0.88);
  font-size: 1rem;
  line-height: 1.85;
}

.commission-btn {
  min-width: 320px;
}

@media (max-width: 767px) {
  .commission-header {
    margin-bottom: 28px;
  }

  .commission-content {
    gap: 24px;
    margin-bottom: 30px;
  }

  .commission-highlight {
    min-height: 180px;
    padding: 28px 22px;
    border-radius: 16px;
  }

  .commission-copy .card-desc,
  .commission-note {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .commission-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ── Blogs & Articles ──────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (min-width: 1180px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.blog-card {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, hsla(0, 0%, 8%, 0.82), hsla(0, 0%, 6%, 0.95));
  border: 1px solid hsla(40, 45%, 45%, 0.18);
  box-shadow:
    0 18px 40px hsla(0, 0%, 0%, 0.22),
    inset 0 1px 0 hsla(40, 35%, 60%, 0.05);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: hsla(40, 55%, 55%, 0.28);
  box-shadow:
    0 24px 46px hsla(0, 0%, 0%, 0.28),
    inset 0 1px 0 hsla(40, 35%, 60%, 0.06);
}

.blog-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid hsla(40, 28%, 24%, 0.55);
  background: hsla(0, 0%, 6%, 0.95);
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 28px 28px 30px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  line-height: 1.12;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 14px;
}

.blog-excerpt {
  color: hsla(40, 14%, 78%, 0.88);
  font-size: 1rem;
  line-height: 1.82;
  margin-bottom: 22px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-link:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

@media (max-width: 767px) {
  .blog-card {
    border-radius: 16px;
  }

  .blog-content {
    padding: 24px 22px 26px;
  }

  .blog-title {
    font-size: 1.55rem;
  }

  .blog-excerpt {
    font-size: 0.98rem;
    line-height: 1.78;
    margin-bottom: 18px;
  }

  .blog-link {
    font-size: 0.8rem;
  }
}

/* ── Video ─────────────────────────────── */
.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(40, 60%, 50%, 0.2);
  box-shadow: 0 25px 50px hsla(40, 60%, 50%, 0.05);
}
.video-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, var(--secondary), var(--bg));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-button {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: hsla(40, 60%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.5s ease;
}
@media (min-width: 768px) { .play-button { width: 96px; height: 96px; } }
.video-placeholder:hover .play-button {
  background: hsla(40, 60%, 50%, 0.3);
  transform: scale(1.1);
}
.video-soon {
  position: absolute;
  bottom: 32px;
  color: var(--fg-muted);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Apply Form ────────────────────────── */
.apply-form { padding: 32px; }
@media (min-width: 768px) { .apply-form { padding: 48px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; }
.form-full { margin-bottom: 24px; }
.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-input::placeholder { color: hsla(40, 10%, 60%, 0.5); }
.form-input:focus {
  border-color: hsla(40, 60%, 50%, 0.5);
  box-shadow: 0 0 0 2px hsla(40, 60%, 50%, 0.15);
}
.form-textarea { resize: none; }
select.form-input { appearance: none; cursor: pointer; }

.form-success {
  text-align: center;
  padding: 48px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(40, 40%, 50%, 0.15);
  border-radius: 12px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: hsla(40, 60%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--gold);
}
.success-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  margin-bottom: 16px;
}


/* ── Contact Info Section ───────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact-info-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
  }
}

.contact-map-card,
.contact-details-card {
  min-height: 380px;
  border-radius: 20px;
  background: linear-gradient(180deg, hsla(0, 0%, 8%, 0.8), hsla(0, 0%, 6%, 0.94));
  border: 1px solid hsla(40, 45%, 45%, 0.18);
  box-shadow:
    0 18px 40px hsla(0, 0%, 0%, 0.22),
    inset 0 1px 0 hsla(40, 35%, 60%, 0.05);
}

.contact-map-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.contact-map-embed {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.03) brightness(0.92);
}

.contact-details-card {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details-card .section-label {
  margin-bottom: 14px;
}

.contact-details-card .section-title {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-detail-item {
  padding: 22px 0;
  border-top: 1px solid hsla(40, 24%, 24%, 0.72);
}

.contact-detail-item:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-detail-item:last-child {
  padding-bottom: 0;
}

.contact-detail-heading {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-detail-value {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.1vw, 1.82rem);
  color: var(--fg);
  line-height: 1.3;
  word-break: break-word;
}

@media (max-width: 767px) {
  .contact-map-card,
  .contact-details-card {
    min-height: auto;
    border-radius: 16px;
  }

  .contact-map-embed {
    min-height: 260px;
  }

  .contact-details-card {
    padding: 30px 24px;
  }

  .contact-details-card .section-title {
    margin-bottom: 22px;
  }

  .contact-detail-item {
    padding: 18px 0;
  }

  .contact-detail-value {
    font-size: 1.35rem;
  }
}



/* ── Footer ────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-brand { text-align: center; }
@media (min-width: 768px) { .footer-brand { text-align: left; } }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-copy { color: var(--fg-muted); font-size: 0.7rem; }
.footer-social { display: flex; gap: 24px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 0.7rem;
  transition: all 0.3s;
}
.social-icon:hover { color: var(--gold); border-color: hsla(40, 60%, 50%, 0.3); }
.footer-links { display: flex; gap: 24px; font-size: 0.7rem; color: var(--fg-muted); }
.footer-links a:hover { color: var(--gold); }

/* ── Animations ────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}