/* ============ TOKENS ============ */
:root {
  --bg: #07060a;
  --bg-raised: #0f0d15;
  --bg-card: #131019;
  --border: rgba(196, 181, 253, 0.14);
  --border-strong: rgba(196, 181, 253, 0.28);

  --text: #f4f2f8;
  --text-muted: #a79fb5;
  --text-faint: #766f83;

  --violet-200: #ddd3fb;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6425c7;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

@media (max-width: 640px) {
  :root { --space-xl: 3.5rem; --space-2xl: 4.5rem; --header-h: 68px; }
}

/* ============ RESET ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.6em; color: var(--text); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

.wrap { max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
@media (max-width: 640px) { .wrap { padding-inline: 1.25rem; } }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--violet-600); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--violet-400); outline-offset: 3px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-300);
  margin-bottom: 0.75em;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(124, 58, 237, 0.8); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--violet-300);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { background: rgba(139, 92, 246, 0.1); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 260ms var(--ease), border-color 260ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(7, 6, 10, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.brand { flex-shrink: 0; }
.brand-logo { height: 48px; width: auto; }
@media (max-width: 480px) { .brand-logo { height: 38px; } }

.main-nav ul { display: flex; gap: 2rem; }
.main-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--text-muted);
  transition: color 200ms var(--ease);
  position: relative;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--violet-400); transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.header-phone svg { color: var(--violet-400); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform 220ms var(--ease), opacity 220ms var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-phone span { display: none; }
  .header-phone { border: 1px solid var(--border-strong); border-radius: 999px; padding: 0.6rem; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(7, 6, 10, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden;
    transition: max-height 320ms var(--ease);
  }
  .main-nav.is-open { max-height: 420px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 1.5rem 1.5rem; }
  .main-nav li { border-bottom: 1px solid var(--border); }
  .main-nav a { display: block; padding: 0.9rem 0; }
  .header-actions .btn-primary { padding: 0.65rem 1.1rem; font-size: 0.85rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex; align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.hero-grid { display: none; }
.hero-single { display: block; width: 100%; height: 100%; }
@media (min-width: 900px) {
  .hero-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 3px;
    position: absolute; inset: 0;
  }
  .hero-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.9); }
  .hero-single { display: none; }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,6,10,0.62) 0%, rgba(7,6,10,0.5) 35%, rgba(7,6,10,0.94) 92%),
    linear-gradient(100deg, rgba(30, 10, 60, 0.6) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 1; padding-bottom: var(--space-xl); width: 100%; }
.hero-kicker {
  display: inline-block;
  font-size: 0.82rem; font-weight: 600; color: var(--violet-200);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 0.5em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--violet-300); }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--text-muted); max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.hero-trust li { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--violet-400); }

.hero-scroll-cue {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong); color: var(--text);
  animation: bob 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-scroll-cue { animation: none; } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (max-width: 640px) { .hero-scroll-cue { display: none; } }

/* ============ SECTION HEAD ============ */
.section-head { max-width: 620px; margin-bottom: var(--space-lg); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-lede { color: var(--text-muted); font-size: 1.05rem; }

/* ============ VALUE STRIP ============ */
.value-strip { padding: var(--space-xl) 0; border-bottom: 1px solid var(--border); }
.value-strip .section-head { margin-bottom: var(--space-lg); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.value-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.value-mark {
  display: block; width: 34px; height: 34px; margin-bottom: 1.1rem;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  position: relative;
}
.value-mark::before {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 12px; height: 12px; border-radius: 3px;
  background: rgba(255,255,255,0.9);
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5em; }
.value-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

@media (max-width: 980px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ============ HOW IT WORKS (numbered) ============ */
.how-it-works { padding: var(--space-xl) 0; }
.how-title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); max-width: 16ch; margin-bottom: var(--space-md); }
.numbered-list { border-top: 1px solid var(--border); }
.numbered-list li {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 260ms var(--ease), border-color 260ms var(--ease);
}
.numbered-list li:hover { padding-left: 0.75rem; border-color: var(--border-strong); }
.numbered-index { font-family: var(--font-display); font-size: 1.1rem; color: var(--violet-400); flex-shrink: 0; width: 2.5ch; }
.numbered-label { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 2rem); color: var(--text); }

/* ============ CLOSING CTA BAND ============ */
.cta-band { padding: var(--space-xl) 0; background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 0; }
.cta-band h2 em { font-style: italic; color: var(--violet-300); }

/* ============ ABOUT ============ */
.about { padding: var(--space-2xl) 0; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--space-lg); align-items: center; }
.about-media img { border-radius: var(--radius-lg); border: 1px solid var(--border); }
.about-copy p { color: var(--text-muted); }
.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--text); }
.about-stats { display: flex; gap: var(--space-lg); margin-top: 1.75rem; flex-wrap: wrap; }
.about-stats div { display: flex; flex-direction: column; gap: 0.2rem; }
.about-stats strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--violet-300); }
.about-stats span { font-size: 0.82rem; color: var(--text-faint); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin-inline: auto; }
}

/* ============ SERVICES ============ */
.services { padding-bottom: var(--space-2xl); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.service-card img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.service-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.service-card-body p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ============ PRICING ============ */
.pricing { padding-bottom: var(--space-2xl); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; max-width: 900px; margin-inline: auto; }
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.price-card--featured {
  border-color: var(--violet-500);
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.14), var(--bg-card) 55%);
  box-shadow: 0 24px 60px -24px rgba(124, 58, 237, 0.5);
}
.price-badge {
  position: absolute; top: -14px; left: 2rem;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 0.4rem 0.9rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 0.3em; }
.price-tag { font-family: var(--font-display); font-size: 2.6rem; color: var(--text); margin-bottom: 0.2em; }
.price-desc { color: var(--text-muted); font-size: 0.92rem; }
.price-features { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.price-features li { font-size: 0.92rem; color: var(--text); padding-left: 1.6rem; position: relative; }
.price-features li::before {
  content: ''; position: absolute; left: 0; top: 0.35em; width: 14px; height: 14px;
  border-radius: 50%; background: rgba(139, 92, 246, 0.18);
  box-shadow: inset 0 0 0 1px var(--violet-500);
}
.price-features li::after {
  content: ''; position: absolute; left: 4px; top: 0.55em; width: 6px; height: 3px;
  border-left: 2px solid var(--violet-300); border-bottom: 2px solid var(--violet-300);
  transform: rotate(-45deg);
}
.pricing-note { text-align: center; color: var(--text-faint); font-size: 0.88rem; margin-top: 2rem; }

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

/* ============ GALLERY ============ */
.gallery { padding-bottom: var(--space-2xl); }
.gallery-grid {
  max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 10px;
}
.gallery-item {
  display: block; width: 100%; height: 100%;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 420ms var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.55));
  opacity: 0; transition: opacity 240ms var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; padding-inline: 1.25rem; gap: 8px; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .gallery-item.gallery-tall { grid-row: span 2; }
}

/* ============ TESTIMONIAL ============ */
.testimonial { padding: var(--space-xl) 0; background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonial-inner { max-width: 680px; text-align: center; margin-inline: auto; }
.stars { color: var(--violet-400); font-size: 1.1rem; letter-spacing: 0.2em; margin-bottom: 1.25rem; }
.testimonial blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 0 0 1.25rem; color: var(--text); }
.testimonial-name { font-weight: 600; margin-bottom: 0.3em; }
.testimonial-more { font-size: 0.85rem; color: var(--violet-300); border-bottom: 1px solid transparent; transition: border-color 200ms var(--ease); }
.testimonial-more:hover { border-color: var(--violet-300); }

/* ============ FAQ ============ */
.faq { padding: var(--space-2xl) 0; }
.faq-list { max-width: 760px; margin-inline: auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0.25rem; text-align: left; font-size: 1.05rem; font-weight: 500;
}
.faq-icon { flex-shrink: 0; color: var(--violet-400); transition: transform 260ms var(--ease); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease); }
.faq-a p { color: var(--text-muted); padding: 0 0.25rem 1.4rem; margin: 0; max-width: 60ch; }

/* ============ CONTACT ============ */
.contact { padding-bottom: var(--space-2xl); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-lg); align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.contact-info > p { color: var(--text-muted); }
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; margin: 1.75rem 0; }
.contact-list a { font-size: 1.05rem; font-weight: 600; }
.contact-list a:hover { color: var(--violet-300); }
.contact-label { display: block; font-size: 0.78rem; color: var(--text-faint); margin-bottom: 0.2rem; }
.contact-list li span:last-child:not(.contact-label) { color: var(--text-muted); font-size: 0.95rem; }

.contact-social { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-btn {
  padding: 0.6rem 1.1rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--border-strong); color: var(--text);
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.social-btn:hover { background: rgba(139, 92, 246, 0.12); border-color: var(--violet-500); }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-row--split > div { margin-bottom: 0; }
.form-row label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--violet-500); background: rgba(139, 92, 246, 0.06);
}
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23a78bfa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-note { min-height: 1.4em; font-size: 0.88rem; color: var(--violet-300); margin: 1rem 0 0; text-align: center; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row--split { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-raised); border-top: 1px solid var(--border); padding: var(--space-xl) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: var(--space-lg); margin-bottom: var(--space-lg); }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-faint); font-size: 0.88rem; }
.footer-links h4 { font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.92rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--violet-300); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.footer-bottom p { margin: 0; font-size: 0.8rem; color: var(--text-faint); }

@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.6);
  transition: transform 220ms var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 3, 7, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(90vw, 1100px); max-height: 86vh; border-radius: 10px; }
.lightbox-close, .lightbox-nav {
  position: absolute; color: #fff; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); font-size: 1.6rem;
  transition: background 200ms var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.16); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox-prev, .lightbox-next { width: 40px; height: 40px; } .lightbox-close { top: 1rem; right: 1rem; } }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
