/* ================================================
   THE HEAVENS BANQUET LAWN — Main Stylesheet
   Mobile-first, fully responsive
   ================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --gold:        #C8A860;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9A7B3C;
  --gold-glow:   rgba(200, 168, 96, 0.25);
  --off-white:   #FDFAF4;
  --cream:       #F5EDD8;
  --dark:        #1A1A1A;
  --dark-mid:    #2C2C2C;
  --text:        #3A3A3A;
  --text-light:  #6A6A6A;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.12);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 20px rgba(200, 168, 96, 0.35);
  --radius:      6px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:       70px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 7vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header .subtitle {
  margin-top: 0.75rem;
  color: var(--text-light);
  font-size: 1rem;
  font-style: italic;
}

/* Gold divider ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for child elements */
.stagger > *:nth-child(1) { transition-delay: 0.0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(200, 168, 96, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  padding: 2px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text .brand-sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.nav-active {
  color: var(--gold-light) !important;
}

.nav-active::after {
  width: 100% !important;
}

/* Hamburger */
.hamburger-checkbox {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animate hamburger to X */
.hamburger-checkbox:checked ~ .navbar .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-checkbox:checked ~ .navbar .hamburger span:nth-child(2) {
  opacity: 0;
}

.hamburger-checkbox:checked ~ .navbar .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.hamburger-checkbox:checked ~ .navbar .nav-links {
  display: flex;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 550px;
  background: url('../resources/home.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* iOS doesn't support background-attachment:fixed well */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(26, 20, 8, 0.55) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
  max-width: 800px;
  animation: heroFadeIn 1.4s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  display: inline-block;
  color: var(--gold-light);
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
  animation: heroFadeIn 1.4s 0.2s ease both;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  animation: heroFadeIn 1.4s 0.4s ease both;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.2rem auto;
  animation: heroFadeIn 1.4s 0.6s ease both;
}

.hero-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-divider-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-style: italic;
  animation: heroFadeIn 1.4s 0.8s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.4s 1s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 96, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-hint-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ================================================
   ABOUT STRIP (between hero & gallery)
   ================================================ */
.about-strip {
  background: var(--dark);
  padding: 4rem 1.5rem;
  text-align: center;
}

.about-strip h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.about-strip p {
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
}

.stat-item .label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.35rem;
}

/* ================================================
   GALLERY SLIDESHOW
   ================================================ */
.gallery {
  padding: 5rem 0;
  background: var(--off-white);
}

.gallery .section-header {
  padding: 0 1.25rem;
}

.slideshow-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  /* Height: vh-based, responsive */
  height: clamp(260px, 55vw, 580px);
}

.slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay on each slide */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
  pointer-events: none;
}

/* Prev / Next buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(200, 168, 96, 0.18);
  border: 1.5px solid rgba(200, 168, 96, 0.6);
  color: var(--white);
  width: clamp(38px, 5vw, 52px);
  height: clamp(38px, 5vw, 52px);
  border-radius: 50%;
  font-size: clamp(1rem, 2vw, 1.4rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slide-btn:hover {
  background: rgba(200, 168, 96, 0.55);
  transform: translateY(-50%) scale(1.08);
}

.slide-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.btn-prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.btn-next { right: clamp(0.5rem, 2vw, 1.5rem); }

/* Dots */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1rem 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.dot.active {
  opacity: 1;
  background: var(--gold);
  transform: scale(1.35);
}

/* Slide counter */
.slide-counter {
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* Loading skeleton */
.slideshow-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  flex-direction: column;
  gap: 1rem;
}

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(200, 168, 96, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
  padding: 5rem 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 168, 96, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
  padding: 5rem 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Info column */
.contact-info h3 {
  color: var(--dark);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200, 168, 96, 0.3);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.info-icon {
  font-size: 1.3rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.info-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.15rem;
}

.info-text a {
  color: var(--text);
  transition: color var(--transition);
}

.info-text a:hover {
  color: var(--gold-dark);
}

/* WhatsApp CTA button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 168, 96, 0.15);
}

.contact-form-wrap h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(200, 168, 96, 0.3);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* Map */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 168, 96, 0.2);
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--dark);
  padding: 3rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(200, 168, 96, 0.3);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  padding: 2px;
  object-fit: contain;
}

.footer-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
}

.footer-logo-text .brand-sub {
  font-size: 0.63rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 168, 96, 0.4);
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  text-align: center;
}

/* ================================================
   RESPONSIVE — TABLET ≥768px
   ================================================ */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-wrap {
    height: 400px;
  }
}

/* ================================================
   RESPONSIVE — DESKTOP ≥1024px
   ================================================ */
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* ================================================
   MOBILE ONLY — ≤767px
   ================================================ */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .stats-row {
    gap: 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .scroll-hint {
    display: none;
  }
}

/* ================================================
   EXTRA SMALL — ≤420px
   ================================================ */
@media (max-width: 420px) {
  :root { --nav-h: 60px; }

  .nav-logo-text .brand-sub { display: none; }
}
