/* ==========================================================================
   CSS CUSTOM PROPERTIES & RESET
   ========================================================================== */
:root {
  --navy-dark: #111827;
  --navy: #1B2A4A;
  --navy-mid: #243454;
  --gold: #B8860B;
  --gold-mid: #CC9A0A;
  --gold-light: #FEF3CD;
  --cream: #FAF8F4;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  
  --container-max: 1280px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--navy-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy-dark);
}

/* Fluid Typography that scales safely across all devices */
h1 { font-size: clamp(2.8rem, 6vw + 1rem, 6rem); line-height: 1.05; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p { margin-bottom: 1.5rem; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.italic { font-style: italic; }

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }
}

.section-padding { padding: 6rem 0; }
@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
}

.bg-navy-dark { background-color: var(--navy-dark); color: var(--white); }
.bg-navy { background-color: var(--navy); color: var(--white); }
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }

/* Responsive Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .grid-2 { gap: 2rem; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background-color: var(--gold-mid);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--navy-dark);
}

.btn-ghost {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background-color: var(--gold);
  color: var(--navy-dark);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.notice-bar {
  background-color: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 100;
}

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 102;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, top 0.4s ease;
  padding: 1.25rem 0;
}

.site-header.scrolled {
  top: 0;
  background-color: rgba(13, 21, 37, 0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Fix for mobile notice bar text wrapping */
@media (max-width: 768px) {
  .site-header:not(.scrolled) {
    top: 58px; 
  }
}

@media (max-width: 480px) {
  .site-header:not(.scrolled) {
    top: 78px; 
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.logo a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}

.logo span.underline-ny {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.logo span.sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.25rem;
  white-space: nowrap;
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-item:hover > a::after, .nav-item.active > a::after {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  min-width: 240px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  color: var(--gold);
  background-color: rgba(255,255,255,0.03);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 101;
}

.hamburger svg { width: 32px; height: 32px; }

/* Responsive adjustments for Navigation before hitting mobile menu */
@media (max-width: 1200px) {
  .nav-links { gap: 1.5rem; }
  .nav-right { gap: 1rem; }
  .nav-item > a { font-size: 0.85rem; }
  .nav-phone { font-size: 0.9rem; }
}

.mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: block; }
  
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--navy-dark);
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .mobile-nav-links a {
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-display);
  }
}

/* ==========================================================================
   HERO SECTION - COMPLETELY REBUILT FOR FLUIDITY
   ========================================================================== */
.hero {
  min-height: 100vh; /* Allows section to stretch if content needs room */
  height: auto;
  background-color: var(--navy-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  overflow: hidden;
  padding-top: 100px; /* Absolutely prevents overlap with fixed header */
  padding-bottom: 100px;
}

.hero h1 {
  color: var(--white);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(184, 134, 11, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 11, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
}

.hero-radial-glow {
  position: absolute;
  top: 0; right: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(184,134,11,0.1) 0%, rgba(17,24,39,0) 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  width: 100%;
  margin: 0 auto; /* Keep it centered horizontally */
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

.hero-sub {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 200px; /* Allows badges to wrap cleanly on small screens */
}

.trust-badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,134,11,0.3);
  flex-shrink: 0;
}

.trust-badge-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.scroll-label {
  font-size: 0.625rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 50%;
  background-color: var(--gold);
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

@media (max-width: 768px) {
  .scroll-indicator { display: none; } /* Hide on mobile to save space */
  .hero-sub { font-size: 1rem; }
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background-color: var(--navy);
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-item { text-align: center; padding: 1rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-wrapper {
  background-color: var(--gray-200);
  border: 1.5px solid var(--gray-200);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

@media (max-width: 1024px) { .services-wrapper { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-wrapper { grid-template-columns: 1fr; } }

.service-card {
  background-color: var(--white);
  padding: 3rem 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; height: 3px; width: 0;
  background-color: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background-color: var(--cream);
  z-index: 2;
}

.service-card:hover::before { width: 100%; }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 100%; height: 100%;
  stroke: var(--navy-mid);
  transition: var(--transition);
}

.service-card:hover .service-icon svg { stroke: var(--gold); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-top: 1rem;
}

.service-link svg { transition: transform 0.3s ease; }
.service-card:hover .service-link svg { transform: translateX(5px); }

/* ==========================================================================
   WHY LINTEL
   ========================================================================== */
.why-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

@media (max-width: 640px) {
  .why-card { flex-direction: column; gap: 0.5rem; padding: 2rem; }
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-mid);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}

/* ==========================================================================
   LONG ISLAND FEATURE
   ========================================================================== */
.li-feature {
  position: relative;
  overflow: hidden;
}

.li-glow {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 50%; height: 150%;
  background: radial-gradient(circle, rgba(184,134,11,0.15) 0%, transparent 70%);
}

.gold-badge {
  display: inline-block;
  background-color: rgba(184,134,11,0.1);
  color: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184,134,11,0.3);
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.chip {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  font-size: 0.875rem;
  transition: var(--transition);
}

.chip:hover {
  background-color: rgba(184,134,11,0.2);
  color: var(--gold);
  border-color: var(--gold);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.check-list svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 4rem;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: var(--gray-200);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-circle {
  width: 56px;
  height: 56px;
  background-color: var(--navy);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.process-step:hover .step-circle {
  background-color: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .process-flow { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-line { display: none; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 2.5rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.stars { color: var(--gold); margin-bottom: 1rem; }
.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.avatar {
  width: 48px; height: 48px;
  background-color: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-dark);
}
@media (max-width: 640px) {
  .faq-question { font-size: 1.2rem; gap: 1rem; }
}
.faq-icon {
  width: 24px; height: 24px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; transition: transform 0.3s ease; }

.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding-bottom: 1.5rem; color: var(--gray-600); }

/* ==========================================================================
   CALCULATOR SPECIFIC
   ========================================================================== */
.calc-wrapper {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.calc-header {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}
.calc-body { display: grid; grid-template-columns: 1.2fr 0.8fr; }
@media (max-width: 800px) { .calc-body { grid-template-columns: 1fr; } }
.calc-form { padding: 2.5rem; }
@media (max-width: 640px) { .calc-form { padding: 1.5rem; } }
.calc-results {
  background: var(--navy-dark);
  color: var(--white);
  padding: 2.5rem;
  position: sticky;
  top: 80px;
  height: max-content;
}

.calc-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 500px) { .calc-type-grid { grid-template-columns: repeat(2, 1fr); } }

.calc-type-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.calc-type-card.active {
  border-color: var(--gold);
  background-color: var(--gold-light);
}
.calc-type-emoji { font-size: 2rem; margin-bottom: 0.5rem; }

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
}
.form-select, .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.tab-group { display: flex; border: 1px solid var(--gray-200); border-radius: 4px; overflow: hidden; }
.tab-btn {
  flex: 1; padding: 0.75rem; border: none; background: var(--white);
  cursor: pointer; font-family: var(--font-body); transition: var(--transition);
}
.tab-btn.active { background: var(--navy); color: var(--white); }

.result-price { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1.1; margin: 0.5rem 0;}
.result-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 1.5rem 0; }
.result-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9rem; gap: 1rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #080E1C;
  color: var(--white);
  padding: 5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 1rem; display: block;}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 500px) {
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* CSS Gradients for Gallery (No Images) */
.gallery-placeholder-1 { background: linear-gradient(135deg, #111827, #243454); }
.gallery-placeholder-2 { background: linear-gradient(45deg, #1B2A4A, #4b5563); }
.gallery-placeholder-3 { background: linear-gradient(to right, #080E1C, #1B2A4A); }