/* ─── THE LASER STUDIO MIAMI — SHARED STYLES ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  /* Brand Colors */
  --turquoise: #00C8C8;
  --turquoise-light: #E0F9F9;
  --turquoise-dark: #009898;
  --fuchsia: #FF0090;
  --fuchsia-light: #FFE0F3;
  --fuchsia-dark: #CC0073;
  --gold: #C9956C;
  --gold-light: #F5EAE0;

  /* Light Theme */
  --bg: #FFFFFF;
  --bg-cream: #F7F4F1;
  --bg-soft: #F0EDE9;
  --text: #111111;
  --text-muted: #777777;
  --text-light: #AAAAAA;
  --border: #E8E4E0;

  /* Dark Sections */
  --dark-bg: #0A0A0A;
  --dark-card: #141414;
  --dark-border: rgba(255,255,255,0.07);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 100px 80px;
  --section-pad-sm: 60px 40px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOP BANNER ─── */
.top-banner {
  background: linear-gradient(90deg, var(--fuchsia) 0%, #CC0073 40%, var(--turquoise-dark) 100%);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 200;
}

/* ─── NAVIGATION ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 80px;
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.nav-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--turquoise);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--fuchsia);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: all 0.3s !important;
  letter-spacing: 0.1em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--fuchsia-dark) !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,0,144,0.3) !important; }

/* ─── SECTION LABEL ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise-dark);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--turquoise);
  border-radius: 2px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--fuchsia);
  color: #fff;
}
.btn-primary:hover { background: var(--fuchsia-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,0,144,0.35); }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: #fff; }

.btn-outline-turquoise {
  background: transparent;
  color: var(--turquoise-dark);
  border: 1.5px solid var(--turquoise);
}
.btn-outline-turquoise:hover { background: var(--turquoise); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--text);
}
.btn-white:hover { background: var(--bg-cream); transform: translateY(-1px); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.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; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  padding: 80px 80px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--dark-border);
}

.footer-logo-wrap {
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  border-radius: 6px;
  padding: 8px 14px;
  margin-bottom: 20px;
}

.footer-logo-wrap img {
  height: 53px;
  width: auto;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--fuchsia); color: var(--fuchsia); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--turquoise); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-copy span { color: var(--turquoise); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
}

/* ─── DARK CTA BAND ─── */
.cta-band {
  background: var(--dark-bg);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-line {
  position: absolute;
  top: 0; left: 80px; right: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--turquoise), var(--fuchsia), transparent);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(40px,5vw,72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-band h2 span { color: var(--fuchsia); font-style: italic; }
.cta-band p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.cta-band-btns { display: flex; align-items: center; justify-content: center; gap: 20px; }

/* ─── MOBILE NAV BURGER (hidden on desktop) ─── */
.nav-burger { display: none; }
.nav-toggle-cb { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 880px) {
  /* Nav → hamburger */
  .nav { padding: 0 20px; height: 68px; }
  .nav-logo img { height: 50px; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 110;
  }
  .nav-burger span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle-cb:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle-cb:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle-cb:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.99);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
    padding: 8px 20px 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
  .nav-toggle-cb:checked ~ .nav-links {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 4px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    text-align: center;
    margin-top: 16px;
    padding: 16px 28px !important;
    border-radius: 2px;
    border-bottom: none !important;
  }

  /* Global spacing — collapse big desktop padding */
  :root { --section-pad: 64px 20px; --section-pad-sm: 48px 20px; }

  /* Footer */
  footer { padding: 56px 20px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Dark CTA band */
  .cta-band { padding: 64px 20px; }
  .cta-band-line { left: 20px; right: 20px; }
  .cta-band-btns { flex-direction: column; gap: 14px; }
  .cta-band-btns .btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .btn { padding: 14px 28px; }
}

/* ─── SCROLL REVEAL JS ─── */
