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

:root {
  --navy:      #010f20;
  --navy-mid:  #01192e;
  --navy-soft: #012345;
  --cream:     #f5f0e8;
  --cream-mid: #e8dfd0;
  --gold:      #c9a96e;
  --white:     #ffffff;
  --text-muted:#9896b0;
  --purple-btn:#c9922a;
  --purple-btn-hover:#e8a92e;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease-in-out);
}

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

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--purple-btn);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--purple-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,92,240,0.35);
}
.btn-primary.small { padding: 8px 20px; font-size: 0.8rem; }

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition), transform 0.2s ease;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(1,15,32,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 400;
  white-space: nowrap;
  margin-right: auto;
}
.logo-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 1.094rem;
  color: rgba(255,255,255,0.82);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-right .btn-primary {
  font-size: 1.05rem;
  padding: 13px 32px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.chevron {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-dropdown:hover .chevron { transform: rotate(180deg); }
/* Invisible bridge fills gap between trigger and menu so hover is never lost */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 20px;
  background: transparent;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 24px 24px;
  padding-top: 32px;
  display: flex;
  gap: 32px;
  min-width: 680px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out-expo);
  box-shadow: 0 32px 64px rgba(0,0,0,0.45);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.support-menu { min-width: 180px; flex-direction: column; gap: 4px; padding: 12px; }

.dropdown-column { display: flex; flex-direction: column; gap: 4px; min-width: 160px; }
.dropdown-heading {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s;
}
.dropdown-item:hover { background: rgba(255,255,255,0.07); }
.dropdown-item strong { font-size: 0.875rem; font-weight: 500; }
.dropdown-item span  { font-size: 0.78rem; color: var(--text-muted); }

.dropdown-cta {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}
.dropdown-cta p { font-size: 0.9rem; font-weight: 600; }
.dropdown-cta span { font-size: 0.78rem; color: var(--text-muted); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 8px;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }
.full-width { width: 100%; text-align: center; margin-top: 12px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0 40px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-image-wrap {
  position: relative;
  margin-top: 30px;
  min-height: calc(100vh - 30px);
  border-radius: 0 20px 0 0;
  overflow: hidden;
  transform: translateY(60px);
  opacity: 0;
  animation: heroImgRise 1.2s var(--ease-out-expo) 0.2s forwards;
}
@keyframes heroImgRise {
  to { transform: translateY(0); opacity: 1; }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(0.92);
  transition: transform 8s ease;
  transform-origin: center center;
  background: var(--navy);
}
.hero-image-wrap:hover .hero-img { transform: scale(0.94); }

.hero-text {
  padding: 80px 0 60px 10%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1.0;
  font-weight: 400;
  overflow: hidden;
}
.hero-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  animation: wordRise 0.8s var(--ease-out-expo) forwards;
}
.hero-heading .word:nth-child(1) { animation-delay: 0.1s; }
.hero-heading .word:nth-child(2) { animation-delay: 0.2s; }
.hero-heading .word:nth-child(3) { animation-delay: 0.3s; }
.hero-heading .word:nth-child(4) { animation-delay: 0.4s; }
.hero-heading .word:nth-child(5) { animation-delay: 0.5s; }
@keyframes wordRise {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 300px;
  animation: fadeIn 0.8s ease 0.7s both;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  animation: fadeIn 0.8s ease 0.85s both;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  background: rgba(255,255,255,0.02);
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   INTRO / ABOUT
============================================================ */
.intro {
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.intro-inner { max-width: 700px; margin-bottom: 80px; }
.intro-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}
.intro-heading em, h2 em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
}
.intro-body { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.8; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feature-img-wrap {
  height: 220px;
  overflow: hidden;
}
.feature-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.feature-card:hover .feature-img-wrap img { transform: scale(1.06); }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  padding: 20px 24px 8px;
}
.feature-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 0 24px 24px;
  line-height: 1.7;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-section {
  padding: 80px 40px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.gallery-header-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 8px;
}
.gallery-header-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.gallery-header-right p { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  min-height: 260px; /* prevents collapse when image is missing */
}
.gallery-item.tall  { grid-row: span 2; min-height: 540px; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,42,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  padding: 100px 40px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-top: 12px;
}

.testimonials-track-wrap {
  overflow: hidden;
  margin: 0 -40px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 0 40px;
  transition: transform 0.6s var(--ease-out-expo);
}
.testimonial-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--white);
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.reviewer div { display: flex; flex-direction: column; gap: 2px; }
.reviewer strong { font-size: 0.9rem; font-weight: 600; }
.reviewer span   { font-size: 0.8rem; color: var(--text-muted); }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, width 0.3s;
}
.dot-btn.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.faq-left p { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 1 !important;
  transform: none !important;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
}
.faq-question:hover { color: rgba(255,255,255,0.75); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: transform 0.35s var(--ease-out-expo), color 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out-expo), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

.faq-more {
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq-more p { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   CTA / CONTACT SECTION
============================================================ */
.cta-section {
  padding: 80px 40px 0;
  background: var(--cream-mid);
  color: var(--navy);
  overflow: hidden;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-end;
}
.cta-left {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cta-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}
.cta-left h2 em { color: rgba(15,14,42,0.45); }
.cta-email {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1.5px solid rgba(15,14,42,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.cta-email:hover { border-color: var(--navy); }
.cta-sub { font-size: 0.9rem; color: rgba(15,14,42,0.75); font-weight: 500; }
.cta-left .btn-primary { background: var(--navy); }
.cta-left .btn-primary:hover { background: var(--navy-soft); }

.cta-right {
  position: relative;
  height: 520px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.cta-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.cta-right:hover .cta-img { transform: scale(1.0); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 200px;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-socials a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: var(--white); }

.footer-links {
  display: flex;
  gap: 48px;
  flex: 1;
  justify-content: flex-end;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }
.back-to-top {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
}
.back-to-top:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-image-wrap { height: 55vw; max-height: 480px; border-radius: 16px; order: -1; }
  .hero-text { padding: 40px 0 60px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-right { height: 360px; border-radius: 16px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-right .nav-link { display: none; }
  .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 90px 20px 0; }
  .hero-text { padding: 32px 0 48px; gap: 20px; }

  .intro, .gallery-section, .faq-section { padding-left: 20px; padding-right: 20px; }
  .testimonials-section { padding: 80px 20px; }
  .cta-section { padding: 60px 20px 0; }

  .feature-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gallery-header-right { align-items: flex-start; text-align: left; }

  .testimonial-card { width: calc(85vw); }

  .footer { padding: 48px 20px 20px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* FAQ — static always-visible answers */
.faq-question-static {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 20px 0 8px;
}
.faq-answer-static p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* CTA phone link */
.cta-phone {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(15,14,42,0.3);
  padding-bottom: 2px;
  margin-top: -8px;
  transition: border-color 0.2s;
}
.cta-phone:hover { border-color: var(--navy); }

/* Gallery — hidden items (shown after "View all") */
.gallery-hidden {
  display: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-hidden.gallery-revealed {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}
.gallery-hidden.gallery-visible {
  opacity: 1;
  transform: translateY(0);
}

/* View all button — loading state */
#viewAllBtn.loading { opacity: 0.6; pointer-events: none; }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1,15,32,0.95);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 600px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}
