:root {
  --bg-dark: #050505;
  --accent: #f4c15d;
  --accent-dark: #c89a35;
  --text-light: #f9f9fb;
  --text-muted: rgba(249, 249, 251, 0.7);
  --nav-height: 72px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(244, 193, 93, 0.1), transparent 45%), var(--bg-dark);
  min-height: 100vh;
  color: var(--text-light);
}

.hero {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 2.5rem) 20px 4rem;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.4), rgba(0, 0, 0, 0.9)),
              url('images/larry-george-ii-rZUUJ-WyAM0-unsplash.jpg') center/cover;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(244, 193, 93, 0.25), transparent 45%);
  pointer-events: none;
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 2rem));
  padding: 0 1.5rem;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  z-index: 150;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.brand-accent {
  display: inline-block;
  width: 14px;
  height: 42px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border-radius: 999px;
  animation: pulse 2.5s ease-in-out infinite;
}

.brand-name {
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.03);
}

.nav-links.open {
  transform: translateX(0);
  box-shadow: -15px 0 35px rgba(0, 0, 0, 0.45);
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: inline-block;
  padding: 0.35rem 0.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text-light);
}

.glow-bar {
  position: absolute;
  height: 32px;
  border-radius: 999px;
  background: rgba(244, 193, 93, 0.15);
  border: 1px solid rgba(244, 193, 93, 0.5);
  inset: auto;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  animation: floatGlow 6s ease-in-out infinite;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text-light);
  border-radius: 999px;
  transition: transform 0.3s ease;
}

@media (max-width: 900px) {
  .nav {
    width: calc(100% - 2rem);
    left: 1rem;
    transform: none;
    border-radius: 1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80%);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    border-radius: 0;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    backdrop-filter: none;
    z-index: 100;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.6);
  }

  .nav-links a {
    color: #fff;
    font-size: 1.1rem;
  }

  .glow-bar {
    display: none;
  }
}

.hero-content {
 /* margin-top: clamp(6rem, 5vw, 5rem);*/
  max-width: 6rem;
  max-width: 1100px;
  position: absolute;
  z-index: 2;
}

.hero-content,
.hero-content p,
.hero-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-cta {
  flex-direction: row;
  gap: 1rem;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 1.25rem;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-callout {
  margin: 2.5rem auto 2rem;
  padding: 0 0.5rem;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  text-align: center;
  animation: heroCalloutSlide 1.2s ease-out both;
  width: 100%;
}

.hero-callout h1 {
  text-align: center;
  width: 100%;
}

.hero-callout__link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 0.9em;
}

.hero-callout__link:hover,
.hero-callout__link:focus {
  text-decoration: underline;
  color: var(--text-light);
}

@keyframes heroCalloutSlide {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: #050505;
  box-shadow: 0 15px 30px rgba(244, 193, 93, 0.25);
}

.btn.ghost {
  background: #000;
  border: 1px solid rgba(244, 193, 93, 0.6);
  color: var(--text-light);
}

.btn.ghost:hover {
  background: #111;
  border-color: var(--accent);
  color: var(--text-light);
}

.service-card .view-more {
  margin-top: 0.9rem;
  width: 100%;
  background: #000;
  border: 1px solid rgba(244, 193, 93, 0.6);
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.service-card .view-more:hover {
  background: #111;
  border-color: var(--accent);
}

.btn:hover {
  transform: translateY(-3px);
}

.placeholder {
  padding: 4rem clamp(1.25rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.placeholder h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.services {
  padding: 5rem clamp(1.5rem, 8vw, 5.5rem);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  margin: -2rem auto 3rem;
  width: min(1200px, 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.services-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-category {
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(244, 193, 93, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-category:hover::before {
  opacity: 1;
}

.service-category h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(5, 5, 5, 0.85);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  opacity: 0;
  animation: cardFade 0.8s ease forwards;
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 1.25rem;
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-card .price {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.service-card .book-service {
  margin-top: 0.9rem;
  width: 100%;
  background: #040404;
  border: 1px solid #3ddc84;
  color: #ffcf91;
  letter-spacing: 0.05em;
}

.service-card .book-service:hover {
  background: #0d1f12;
  border-color: #5ff5a2;
}

@keyframes cardFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking {
  padding: 4.5rem clamp(1.5rem, 7vw, 5rem);
  background: rgba(8, 8, 8, 0.9);
  border-radius: 2rem;
  margin: 0 auto 4rem;
  width: min(1200px, 100%);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.booking::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(244, 193, 93, 0.15), transparent 55%);
  pointer-events: none;
}

.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.booking-head h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.booking-badge {
  padding: 0.6rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-selector label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-selector select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  margin-bottom: 1rem;
}

.service-selector select option {
  color: #111;
}

.service-detail-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  background: rgba(5, 5, 5, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-detail-card h3 {
  font-size: 1.2rem;
}

.price-tag {
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(244, 193, 93, 0.1);
  color: var(--accent);
  font-weight: 600;
  border: 1px solid rgba(244, 193, 93, 0.35);
}

.booking-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  background: rgba(6, 6, 6, 0.8);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.booking-form label {
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--text-muted);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  transition: border 0.3s ease, background 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.notes textarea {
  resize: vertical;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.feedback {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.feedback.success {
  color: #7dd87d;
}

.feedback.error {
  color: #ff8c8c;
}

@media (max-width: 900px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-head {
    flex-direction: column;
  }
}

.booking-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-popup[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.booking-popup[aria-hidden="false"] .popup-card {
  transform: scale(1);
}

.service-gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-gallery-popup[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.gallery-popup-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  max-width: 90vw;
  max-height: 90vh;
  width: 800px;
  height: 600px;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.service-gallery-popup[aria-hidden="false"] .gallery-popup-card {
  transform: scale(1);
}

.gallery-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-popup-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-light);
}

.gallery-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.gallery-close:hover {
  color: var(--text-light);
}

.gallery-content {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-height: 500px;
  overflow-y: auto;
  padding: 0.5rem;
}

.gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  background: #000;
}

.gallery-item video {
  object-fit: contain;
  background: #000;
}

.gallery-item-title {
  padding: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-card h3 {
  margin-bottom: 0.8rem;
}

.popup-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog {
  margin: 0 auto 4rem;
  width: min(1200px, 100%);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.blog-hero {
  position: relative;
  min-height: 260px;
  background: url('images/adecago (5).jpeg') center/cover no-repeat;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
}

.blog-hero-content {
  position: relative;
  padding: 3rem;
  max-width: 620px;
}

.blog-hero-content h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 0.5rem;
}

.blog-content {
  background: rgba(10, 10, 10, 0.95);
  padding: 3rem clamp(1.5rem, 6vw, 4rem);
  display: grid;
  gap: 2rem;
}

.blog-section {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  animation: riseUp 0.8s ease forwards;
}

.blog-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(244, 193, 93, 0.08), transparent 60%);
  pointer-events: none;
}

.blog-section h3 {
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-section p {
  line-height: 1.8;
  color: var(--text-muted);
}

.blog-list {
  display: grid;
  gap: 1rem;
  padding-left: 1rem;
}

.blog-list li {
  line-height: 1.8;
  color: var(--text-muted);
}

@keyframes riseUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.about {
  margin: 0 auto 5rem;
  width: min(1200px, 100%);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  background: rgba(9, 9, 9, 0.92);
  border-radius: 2rem;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.about-text p {
  line-height: 1.8;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-grid div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.about-grid h3 {
  margin-bottom: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.about-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-card {
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: none;
}

.map-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact {
  margin: 0 auto 4rem;
  width: min(1200px, 100%);
  padding: 4rem clamp(1.5rem, 6vw, 4rem);
  background: rgba(6, 6, 6, 0.9);
  border-radius: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.contact-header p {
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 193, 93, 0.15);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  animation: bounce 1.6s ease-in-out infinite;
}

.contact-card a {
  color: #fff;
  font-weight: 600;
}

.contact-card small {
  color: var(--text-muted);
}

.contact-socials {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.social-links svg {
  width: 28px;
  height: 28px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(1.2); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0.8; }
}

@keyframes floatGlow {
  0% { transform: translate(-10px, -50%); opacity: 0.4; }
  50% { transform: translate(10px, -50%); opacity: 0.8; }
  100% { transform: translate(-10px, -50%); opacity: 0.4; }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 5, 5, 0.92);
    padding: 1.75rem;
    border-radius: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .glow-bar {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    margin-top: 4rem;
  }

  .hero-cta {
    flex-direction: column;
    width: min(320px, 100%);
  }
}
