/* ═══════════════════════════════════════════════════════════
   GRANDSON'S REMODELING — LUXURY DARK MARBLE + GOLD THEME
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary: #060606;
  --bg-secondary: #0c0c0c;
  --bg-tertiary: #141414;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;

  /* Gold Palette */
  --gold-primary: #D4AF37;
  --gold-light: #F0D875;
  --gold-lighter: #F4E5B2;
  --gold-dark: #B8960C;
  --gold-muted: rgba(212, 175, 55, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.3);

  /* Chrome / Silver */
  --silver: #C0C0C0;
  --silver-dark: #8A8A8A;

  /* Text */
  --text-primary: #FAFAFA;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;

  /* Marble Veining */
  --vein-gold: rgba(212, 175, 55, 0.06);
  --vein-white: rgba(255, 255, 255, 0.03);

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* ── SELECTION ─────────────────────────────────────────────── */
::selection {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

/* ── UTILITY ───────────────────────────────────────────────── */
.gold-text {
  color: var(--gold-primary);
}

.section-heading .gold-text {
  display: inline-block;
  position: relative;
  background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold-primary) 24%, #fff2b8 42%, var(--gold-primary) 58%, var(--gold-dark) 100%);
  background-size: 230% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.34),
               0 0 28px rgba(212, 175, 55, 0.16);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.24));
  animation: goldTitleShimmer 4.8s ease-in-out infinite, goldTitleGlow 3.8s ease-in-out infinite;
}

@keyframes goldTitleShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes goldTitleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.22));
  }
  45% {
    filter: drop-shadow(0 0 12px rgba(244, 229, 178, 0.58))
            drop-shadow(0 0 24px rgba(212, 175, 55, 0.28));
  }
}

.centered {
  text-align: center;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── SECTION LABELS ────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-label.centered,
.centered .section-label {
  justify-content: center;
}

.label-line {
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
}

.label-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

/* ── SECTION HEADINGS ──────────────────────────────────────── */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.section-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.section-subtext.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

#main-nav.scrolled {
  background: rgba(6, 6, 6, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-muted);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 1.4;
  color: var(--text-primary);
}

.nav-logo-sub {
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  font-size: 0.58rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text-primary);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.55),
               0 0 24px rgba(212, 175, 55, 0.28);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 15px rgba(212, 175, 55, 0.2);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5),
              0 4px 25px rgba(212, 175, 55, 0.4),
              inset 0 0 12px rgba(244, 229, 178, 0.25) !important;
  text-shadow: 0 0 10px rgba(6, 6, 6, 0.4);
  transform: translateY(-2px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-marble-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: var(--bg-primary);
  background-image:
    /* Gold marble veining - diagonal streaks */
    linear-gradient(125deg, transparent 28%, rgba(212,175,55,0.04) 32%, rgba(212,175,55,0.08) 33%, rgba(212,175,55,0.04) 34%, transparent 38%),
    linear-gradient(235deg, transparent 45%, rgba(212,175,55,0.03) 50%, rgba(212,175,55,0.06) 51%, rgba(212,175,55,0.03) 52%, transparent 56%),
    linear-gradient(345deg, transparent 60%, rgba(212,175,55,0.02) 64%, rgba(212,175,55,0.05) 65%, rgba(212,175,55,0.02) 66%, transparent 70%),
    linear-gradient(80deg, transparent 15%, rgba(212,175,55,0.02) 20%, rgba(212,175,55,0.04) 21%, transparent 25%),
    /* White/silver veining for depth */
    linear-gradient(160deg, transparent 40%, rgba(255,255,255,0.02) 44%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.02) 46%, transparent 50%),
    linear-gradient(290deg, transparent 55%, rgba(255,255,255,0.01) 58%, rgba(255,255,255,0.03) 59%, rgba(255,255,255,0.01) 60%, transparent 64%),
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 60%);
}

.hero-marble-bg::before,
.hero-marble-bg::after {
  content: '';
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.hero-marble-bg::before {
  background-image:
    radial-gradient(circle, rgba(244, 229, 178, 0.72) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212, 175, 55, 0.46) 0 1px, transparent 1.8px);
  background-size: 150px 150px, 230px 230px, 310px 310px;
  background-position: 0 0, 42px 88px, 130px 30px;
  opacity: 0.46;
  animation: heroGalaxyDrift 32s linear infinite;
}

.hero-marble-bg::after {
  background-image:
    conic-gradient(from 18deg at 45% 50%, transparent 0deg, rgba(212, 175, 55, 0.06) 42deg, rgba(244, 229, 178, 0.025) 82deg, transparent 136deg, transparent 360deg),
    linear-gradient(118deg, transparent 12%, rgba(212, 175, 55, 0.07) 38%, rgba(255, 255, 255, 0.025) 48%, transparent 70%),
    linear-gradient(24deg, transparent 18%, rgba(244, 229, 178, 0.045) 44%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform-origin: 50% 50%;
  animation: heroNebulaSweep 24s ease-in-out infinite alternate;
}

.hero-gold-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gold-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0.5);
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1.2);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(6,6,6,0.4) 70%, rgba(6,6,6,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-logo-badge {
  width: 160px;
  height: auto;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.15)); }
  50% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.35)); }
}

.hero-logo-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 6px;
  margin-bottom: 16px;
  position: relative;
  background: linear-gradient(110deg, #fffdf2 0%, #f4e5b2 18%, var(--gold-primary) 36%, #ffffff 50%, var(--gold-primary) 64%, #f4e5b2 82%, #fffdf2 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.3))
          drop-shadow(0 0 34px rgba(212, 175, 55, 0.16));
  animation: heroTitleShimmer 5.6s ease-in-out infinite, heroTitleGlow 4.4s ease-in-out infinite;
}

@keyframes heroTitleShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes heroTitleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.26))
            drop-shadow(0 0 30px rgba(212, 175, 55, 0.14));
  }
  45% {
    filter: drop-shadow(0 0 18px rgba(244, 229, 178, 0.5))
            drop-shadow(0 0 48px rgba(212, 175, 55, 0.28));
  }
}

@keyframes heroGalaxyDrift {
  0% { transform: translate3d(-2%, -1%, 0) rotate(0deg); background-position: 0 0, 42px 88px, 130px 30px; }
  50% { transform: translate3d(2%, 1.5%, 0) rotate(0.6deg); background-position: 90px 48px, 0 130px, 210px 88px; }
  100% { transform: translate3d(-2%, -1%, 0) rotate(0deg); background-position: 180px 96px, -42px 172px, 290px 146px; }
}

@keyframes heroNebulaSweep {
  0% { transform: translate3d(-3%, -2%, 0) rotate(-2deg) scale(1.03); opacity: 0.54; }
  50% { opacity: 0.78; }
  100% { transform: translate3d(3%, 2%, 0) rotate(2deg) scale(1.08); opacity: 0.68; }
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.hero-divider::after {
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.divider-diamond {
  color: var(--gold-primary);
  font-size: 0.65rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: visible;
  border-radius: 50px;
  transition: all 0.4s var(--ease-out);
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
  border-radius: 50px;
}

.hero-cta:hover {
  color: var(--bg-primary);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}

.hero-cta:hover::before {
  transform: scaleX(1);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: var(--scroll-line-height, 40px);
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: var(--scroll-line-height, 40px); }
  50% { opacity: 1; height: var(--scroll-line-active-height, 55px); }
}

@media (max-height: 760px) {
  #hero .hero-logo-badge {
    width: min(clamp(96px, 18vh, 120px), 22vw);
    height: auto;
    margin-bottom: 20px;
  }

  #hero .hero-divider {
    margin: 14px 0;
  }

  #hero .hero-tagline {
    margin-bottom: 28px;
  }

  #hero .hero-scroll-indicator {
    bottom: 24px;
  }

  #hero .scroll-line {
    --scroll-line-height: 28px;
    --scroll-line-active-height: 36px;
  }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
#about {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  padding: 28px 32px;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold-primary);
  transition: transform 0.58s cubic-bezier(0.16, 1, 0.3, 1), background 0.58s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.58s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.58s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.feature-card:hover,
.feature-card:focus-within {
  background:
    linear-gradient(135deg, rgba(244, 229, 178, 0.055), transparent 42%),
    var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.22);
  border-left-color: var(--gold-light);
  transform: translate3d(4px, 0, 0);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38),
              0 0 28px rgba(212, 175, 55, 0.18),
              inset 0 0 18px rgba(212, 175, 55, 0.045);
}

.feature-icon {
  color: var(--gold-primary);
  margin-bottom: 12px;
  transition: color 0.52s cubic-bezier(0.16, 1, 0.3, 1), filter 0.52s cubic-bezier(0.16, 1, 0.3, 1), transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}

.feature-card:hover .feature-icon,
.feature-card:focus-within .feature-icon {
  color: var(--gold-light);
  filter: drop-shadow(0 0 10px rgba(244, 229, 178, 0.45))
          drop-shadow(0 0 20px rgba(212, 175, 55, 0.22));
  transform: translate3d(0, -1px, 0);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: filter 0.52s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: filter, background-position;
}

.feature-card:hover h3,
.feature-card:focus-within h3 {
  background: linear-gradient(110deg, #fffdf2 0%, #f4e5b2 18%, var(--gold-primary) 36%, #ffffff 50%, var(--gold-primary) 64%, #f4e5b2 82%, #fffdf2 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.32))
          drop-shadow(0 0 26px rgba(212, 175, 55, 0.16));
  animation: heroTitleShimmer 6.8s ease-in-out infinite, featureTitleGlow 5.4s ease-in-out infinite;
}

@keyframes featureTitleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.26))
            drop-shadow(0 0 18px rgba(212, 175, 55, 0.12));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(244, 229, 178, 0.48))
            drop-shadow(0 0 28px rgba(212, 175, 55, 0.22));
  }
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   OUR STORY & LEGACY
   ═══════════════════════════════════════════════════════════ */
#story {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

#story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.story-img-wrapper {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  background: var(--bg-secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  animation: continuousSparkle 3s infinite ease-in-out;
}

.story-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.story-img-caption {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.story-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.story-specialties h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.specialties-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.specialties-tags span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.specialties-tags span:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  border-color: var(--gold-primary);
}

.project-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid var(--gold-primary);
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
}

.info-card-val {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 4px;
  position: relative;
  background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold-primary) 28%, #fff2b8 46%, var(--gold-primary) 64%, var(--gold-dark) 100%);
  background-size: 230% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.32));
  animation: infoValueShimmer 3.6s ease-in-out infinite, infoValueGlow 2.8s ease-in-out infinite;
}

.info-card-val::before,
.info-card-val::after {
  content: '✦';
  position: absolute;
  color: #fff2b8;
  -webkit-text-fill-color: #fff2b8;
  font-family: var(--font-body);
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(244, 229, 178, 0.8),
               0 0 18px rgba(212, 175, 55, 0.42);
  animation: infoValueSparkle 2.4s ease-in-out infinite;
}

.info-card-val::before {
  left: -14px;
  top: -4px;
}

.info-card-val::after {
  right: -16px;
  bottom: 2px;
  content: '✧';
  animation-delay: 0.9s;
}

@keyframes infoValueShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes infoValueGlow {
  0%, 100% {
    filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.28));
  }
  45% {
    filter: drop-shadow(0 0 13px rgba(244, 229, 178, 0.62))
            drop-shadow(0 0 26px rgba(212, 175, 55, 0.34));
  }
}

@keyframes infoValueSparkle {
  0%, 100% {
    opacity: 0;
    transform: translate3d(0, 5px, 0) scale(0.8) rotate(0deg);
  }
  35% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.08) rotate(12deg);
  }
  70% {
    opacity: 0;
    transform: translate3d(5px, -8px, 0) scale(0.88) rotate(-8deg);
  }
}

.info-card-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tools for Tomorrow Row */
.community-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.community-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-primary);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-radius: 2px;
  transition: box-shadow 0.35s var(--ease-out), filter 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.community-tag:hover {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.48),
              0 0 42px rgba(212, 175, 55, 0.2);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.community-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.community-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.fundraiser-badge-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

@keyframes continuousSparkle {
  0%, 100% {
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2), inset 0 0 5px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), inset 0 0 10px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.8);
  }
}

.fundraiser-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  color: var(--gold-light);
  font-size: 0.85rem;
  line-height: 1.5;
  animation: continuousSparkle 3s infinite ease-in-out;
}

.fundraiser-badge svg {
  flex-shrink: 0;
}

.community-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--gold-primary);
  color: var(--bg-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  border: 1px solid var(--gold-primary);
  text-decoration: none;
  cursor: pointer;
}

.community-btn:hover {
  background: transparent;
  color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.community-btn svg {
  transition: transform 0.3s ease;
}

.community-btn:hover svg {
  transform: translateX(4px);
}

/* ── TOOLS FOR TOMORROW BACKLIGHT GLOW ─────────────────── */
.community-title,
#fundraiser-hero .hero-title {
  position: relative;
  display: inline-block;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.45), 0 0 35px rgba(212, 175, 55, 0.2);
  z-index: 1;
}

.community-title::before,
#fundraiser-hero .hero-title::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.06) 50%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(12px);
  animation: glow-pulse 5s infinite alternate ease-in-out;
  border-radius: 50%;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* ── CTA BUTTONS GLOW & DUST PARTICLES ─────────────────── */
.hero-cta,
.community-btn,
.fundraiser-badge {
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.hero-cta:hover,
.community-btn:hover,
.fundraiser-badge:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45), 
              inset 0 0 12px rgba(212, 175, 55, 0.2) !important;
  border-color: var(--gold-light) !important;
  transform: translateY(-2px);
}

.fundraiser-badge {
  cursor: pointer;
}

.gold-particle {
  position: absolute;
  background: radial-gradient(circle, var(--gold-primary) 0%, rgba(212, 175, 55, 0.4) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  animation: float-particle 3.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes float-particle {
  0% {
    transform: translate(0, 0) scale(0.4);
    opacity: 0;
  }
  20% {
    opacity: 0.85;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(1.2);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   FUNDRAISER PAGE SPECIFICS
   ═══════════════════════════════════════════════════════════ */
#fundraiser-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  background: var(--bg-primary);
  text-align: center;
  padding: clamp(120px, 14vh, 150px) 0 clamp(56px, 8vh, 80px);
}

#fundraiser-hero .hero-content {
  position: relative;
  z-index: 3;
}

#fundraiser-hero .hero-marble-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.8) 0%, rgba(6, 6, 6, 0.98) 100%);
  opacity: 0.85;
}

#fundraiser-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg-primary) 100%);
  z-index: 2;
}

#fundraiser-story {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

#fundraiser-story .story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.highlight-quote {
  margin-top: 32px;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 4px 4px 0;
}

.highlight-quote p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  font-weight: 600;
}

/* Workshop Gallery Grid */
.gallery-title-small {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.click-tip {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--gold-primary);
  font-weight: normal;
  letter-spacing: 0.5px;
}

.workshop-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workshop-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-primary);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.workshop-card:first-child {
  aspect-ratio: 3/4;
}

.workshop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.workshop-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  color: var(--gold-primary);
}

.workshop-card:hover .workshop-card-overlay {
  opacity: 1;
}

.workshop-card:hover img {
  transform: scale(1.05);
}

/* Fundraiser Details Section */
#fundraiser-details {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.details-intro {
  max-width: 800px;
  margin: 0 auto 60px;
}

.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.support-detail-card {
  padding: 40px 32px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.support-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: inline-block;
}

.support-detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.support-detail-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Form Styles */
#support-form-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

/* Responsive adjustments for Fundraiser Page */
@media (max-width: 1024px) {
  #fundraiser-story .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .support-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fundraiser-badge-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.community-img-wrapper {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  background: var(--bg-secondary);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.community-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO / GALLERY
   ═══════════════════════════════════════════════════════════ */
#portfolio {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
}

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

.portfolio-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}


.card-image-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 6, 6, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.card-category-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-primary);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-overlay p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-card:hover .card-image-wrapper img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.portfolio-card:hover .card-overlay-content {
  transform: translateY(0);
}

.card-label {
  text-align: center;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.portfolio-card:hover .card-label {
  color: var(--gold-primary);
  background: var(--bg-card-hover);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
#contact {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 0 8px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4AF37' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-group select option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}


.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-primary);
  caret-color: var(--text-primary);
  border-bottom-color: rgba(212, 175, 55, 0.45);
  -webkit-box-shadow: 0 0 0 1000px var(--bg-primary) inset;
  box-shadow: 0 0 0 1000px var(--bg-primary) inset;
  transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s, border-color 0.3s ease;
}

.form-group input:-webkit-autofill::first-line,
.form-group textarea:-webkit-autofill::first-line {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  transform-origin: left;
}

.form-group.focused label,
.form-group.has-value label,
.form-group input:-webkit-autofill ~ label,
.form-group textarea:-webkit-autofill ~ label,
.form-group select:-webkit-autofill ~ label {
  top: -2px;
  font-size: 0.7rem;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
  transition: width 0.4s var(--ease-out);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
  width: 100%;
}

/* Submit Button */
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.35);
}

.submit-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.submit-arrow {
  transition: transform 0.3s ease;
}

.form-submit:hover .submit-arrow {
  transform: translateX(4px);
}

.form-submit.loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-muted);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.3s ease;
}

a.info-value:hover {
  color: var(--gold-primary);
}

/* Advisor Card */
.contact-advisor-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--gold-muted);
  padding: 32px 40px;
  text-align: center;
  margin-bottom: 24px;
  animation: continuousSparkle 3s infinite ease-in-out;
}

.advisor-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--gold-primary);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.advisor-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.advisor-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
#testimonials {
  padding: var(--section-padding) 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(244, 229, 178, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 18%, rgba(212, 175, 55, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 74%, rgba(244, 229, 178, 0.07) 0 1px, transparent 2px),
    linear-gradient(180deg, var(--bg-primary) 0%, #0b0a07 50%, var(--bg-primary) 100%);
  background-size: 220px 220px, 310px 310px, 260px 260px, auto;
  position: relative;
  overflow: hidden;
}

#testimonials .section-container {
  position: relative;
  z-index: 1;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

#testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(244, 229, 178, 0.72) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(212, 175, 55, 0.42) 0 1px, transparent 2px);
  background-size: 180px 180px, 260px 260px;
  background-position: 18px 36px, 90px 120px;
  opacity: 0.34;
  pointer-events: none;
  animation: testimonial-sky-twinkle 7s ease-in-out infinite;
}

#testimonials .section-heading {
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.26),
               0 0 42px rgba(212, 175, 55, 0.12);
}

#testimonials .section-heading .gold-text {
  text-shadow: 0 0 12px rgba(244, 229, 178, 0.62),
               0 0 28px rgba(212, 175, 55, 0.34);
}

#testimonials .section-subtext {
  color: rgba(250, 250, 250, 0.72);
}

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

.testimonial-card {
  padding: 40px 32px;
  background:
    linear-gradient(180deg, rgba(244, 229, 178, 0.045), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006)),
    var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 6px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24),
              inset 0 1px 0 rgba(244, 229, 178, 0.08);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.16);
  line-height: 1;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.22);
  pointer-events: none;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 8%, rgba(244, 229, 178, 0.12) 28%, transparent 46%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-65%);
  transition: opacity 0.45s var(--ease-out), transform 0.7s var(--ease-out);
}

.testimonial-card:hover {
  background:
    linear-gradient(180deg, rgba(244, 229, 178, 0.07), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48),
              0 0 32px rgba(212, 175, 55, 0.16),
              inset 0 1px 0 rgba(244, 229, 178, 0.16);
}

.testimonial-card:hover::after {
  opacity: 1;
  transform: translateX(65%);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-bottom: 20px;
  position: relative;
  animation: star-twinkle 2.8s ease-in-out infinite;
}

.review-star {
  width: 18px;
  height: 18px;
  display: block;
  position: relative;
  clip-path: polygon(50% 0%, 61% 34%, 97% 34%, 68% 55%, 79% 91%, 50% 70%, 21% 91%, 32% 55%, 3% 34%, 39% 34%);
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 248, 207, 0.98) 0 12%, transparent 24%),
    linear-gradient(145deg, #fff2a8 0%, var(--gold-primary) 40%, #b58425 72%, #6f4911 100%);
  filter: drop-shadow(0 0 5px rgba(244, 229, 178, 0.74))
          drop-shadow(0 0 13px rgba(212, 175, 55, 0.36));
  transform-origin: 50% 58%;
  animation: star-facet-twinkle 2.8s ease-in-out infinite;
}

.review-star::before {
  content: '';
  position: absolute;
  inset: 4px 6px 8px;
  background: rgba(255, 255, 255, 0.74);
  clip-path: polygon(50% 0%, 63% 38%, 100% 38%, 70% 58%, 82% 100%, 50% 74%, 18% 100%, 30% 58%, 0% 38%, 37% 38%);
  opacity: 0.58;
}

.review-star.empty {
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.28);
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.18));
  opacity: 0.72;
}

.review-star:nth-child(2) {
  animation-delay: 0.16s;
}

.review-star:nth-child(3) {
  animation-delay: 0.32s;
}

.review-star:nth-child(4) {
  animation-delay: 0.48s;
}

.review-star:nth-child(5) {
  animation-delay: 0.64s;
}

.testimonial-stars::before,
.testimonial-stars::after {
  position: absolute;
  color: #fff4ba;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(244, 229, 178, 0.76),
               0 0 18px rgba(212, 175, 55, 0.38);
  filter: drop-shadow(0 0 5px rgba(244, 229, 178, 0.5));
  line-height: 1;
}

.testimonial-stars::before {
  content: '✦';
  left: -16px;
  top: -11px;
  font-size: 0.9rem;
  animation: star-particle-lift 2.7s ease-in-out infinite;
}

.testimonial-stars::after {
  content: '✧';
  right: -14px;
  top: -12px;
  font-size: 0.82rem;
  animation: star-particle-lift 3.2s ease-in-out infinite 0.85s;
}

.testimonial-card:nth-child(2) .testimonial-stars {
  animation-delay: 0.45s;
}

.testimonial-card:nth-child(2) .testimonial-stars::before {
  animation-delay: 0.35s;
}

.testimonial-card:nth-child(2) .testimonial-stars::after {
  animation-delay: 1.1s;
}

.testimonial-card:nth-child(3) .testimonial-stars {
  animation-delay: 0.9s;
}

.testimonial-card:nth-child(3) .testimonial-stars::before {
  animation-delay: 0.7s;
}

.testimonial-card:nth-child(3) .testimonial-stars::after {
  animation-delay: 1.45s;
}

@keyframes star-twinkle {
  0%, 100% {
    filter: brightness(1);
  }
  35% {
    filter: brightness(1.22);
  }
  62% {
    filter: brightness(0.96);
  }
}

@keyframes star-facet-twinkle {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
    filter: drop-shadow(0 0 5px rgba(244, 229, 178, 0.7))
            drop-shadow(0 0 13px rgba(212, 175, 55, 0.34));
  }
  36% {
    transform: translateY(-1px) scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 0 8px rgba(255, 248, 207, 0.92))
            drop-shadow(0 0 22px rgba(212, 175, 55, 0.52));
  }
  66% {
    transform: translateY(0) scale(0.98) rotate(2deg);
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.54))
            drop-shadow(0 0 10px rgba(212, 175, 55, 0.22));
  }
}

@keyframes star-particle-lift {
  0%, 100% {
    opacity: 0;
    transform: translate3d(0, 6px, 0) scale(0.82);
  }
  28% {
    opacity: 0.95;
  }
  58% {
    opacity: 0.45;
    transform: translate3d(6px, -8px, 0) scale(1.08);
  }
  78% {
    opacity: 0;
    transform: translate3d(-4px, -16px, 0) scale(0.9);
  }
}

@keyframes testimonial-sky-twinkle {
  0%, 100% {
    opacity: 0.24;
    filter: brightness(0.85);
  }
  45% {
    opacity: 0.44;
    filter: brightness(1.2);
  }
  68% {
    opacity: 0.3;
    filter: brightness(0.95);
  }
}

@media (prefers-reduced-motion: reduce) {
  #testimonials::after,
  .testimonial-stars,
  .testimonial-stars::before,
  .testimonial-stars::after,
  .review-star,
  .hero-title,
  .hero-marble-bg::before,
  .hero-marble-bg::after,
  .section-heading .gold-text,
  .info-card-val,
  .info-card-val::before,
  .info-card-val::after,
  .feature-card:hover h3,
  .feature-card:focus-within h3 {
    animation: none;
  }
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(250, 250, 250, 0.78);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-project {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
#footer {
  background: var(--bg-secondary);
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.footer-top {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.footer-brand-name {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.footer-brand-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links-group ul li {
  margin-bottom: 10px;
}

.footer-links-group ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links-group ul li a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-social-group h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--gold-muted);
  padding: 48px;
  text-align: center;
  max-width: 420px;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-close {
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX GALLERY
   ═══════════════════════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-primary);
  letter-spacing: 1px;
}

.lightbox-counter {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.lightbox-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.lightbox-close:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.lightbox-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  min-height: 0;
}

.lightbox-image-container {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
  gap: 12px;
}

.lightbox-caption {
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(8, 8, 8, 0.76);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
}

.lightbox-caption[hidden] {
  display: none;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lightbox-image.loading {
  opacity: 0.3;
  transform: scale(0.98);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-thumbnails {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  overflow-x: auto;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-muted) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
  background-color: var(--gold-muted);
  border-radius: 10px;
}

.lightbox-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.lightbox-thumb:hover {
  opacity: 0.7;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--gold-primary);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .story-grid,
  .community-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(6, 6, 6, 0.98);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--gold-muted);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-image-wrapper {
    aspect-ratio: 4 / 3;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-title {
    letter-spacing: 3px;
  }

  .hero-tagline {
    letter-spacing: 2px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-logo-badge {
    width: 80px;
    height: 80px;
  }

  .hero-monogram {
    font-size: 2rem;
  }

  .contact-info-card {
    padding: 28px 20px;
  }

  .contact-advisor-card {
    padding: 24px 20px;
  }

  .form-submit {
    width: 100%;
  }
}
