    /* CSS Reset & Base */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    :root {
      --background: hsl(350, 30%, 8%);
      --foreground: hsl(30, 30%, 96%);
      --card: hsl(350, 35%, 12%);
      --card-foreground: hsl(30, 30%, 96%);
      --primary: hsl(15, 60%, 65%);
      --primary-foreground: hsl(350, 30%, 8%);
      --secondary: hsl(40, 35%, 85%);
      --muted: hsl(350, 25%, 18%);
      --muted-foreground: hsl(30, 20%, 65%);
      --accent: hsl(38, 80%, 60%);
      --border: hsl(350, 20%, 22%);
      --radius: 0.75rem;
      
      --gradient-hero: linear-gradient(180deg, hsla(350, 30%, 8%, 0.3) 0%, hsla(350, 30%, 8%, 0.95) 100%);
      --gradient-card: linear-gradient(135deg, hsl(350, 35%, 14%) 0%, hsl(350, 35%, 10%) 100%);
      --gradient-text: linear-gradient(135deg, hsl(15, 60%, 70%) 0%, hsl(38, 80%, 65%) 50%, hsl(15, 60%, 70%) 100%);
      --shadow-glow: 0 0 60px hsla(15, 60%, 50%, 0.3);
      --shadow-card: 0 25px 50px -12px hsla(350, 30%, 5%, 0.5);
    }
	
	.hero--tickets {
  min-height: 70vh;
}
.hero--tickets .hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
}


.countdown-wrapper {
  display: flex;
  justify-content: center;
}
.countdown {
  display: inline-flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  width: fit-content;
  max-width: 100%;

  backdrop-filter: blur(14px);
  background: linear-gradient(
    135deg,
    rgba(60,20,20,0.75),
    rgba(20,10,10,0.85)
  );
  border: 1px solid rgba(255,180,150,0.35);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    inset 0 0 30px rgba(255,180,150,0.15);
}


.countdown-item {
  text-align: center;
  min-width: 70px;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 700;
}

.countdown-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
	  padding-top: 72px;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
        max-width: 100%;
  box-sizing: border-box;
    }
    html, body {
  overflow-x: hidden;
}
    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: hsla(350, 30%, 8%, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--foreground);
    }
    
    .nav {
      display: flex;
      gap: 2rem;
    }
    
    .nav a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-foreground);
      transition: color 0.3s;
    }
    
    .nav a:hover {
      color: var(--primary);
    }
    
    @media (max-width: 768px) {
      .nav {
        display: none;
      }
    }


/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  font-size: 1.75rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

/* Mobile nav dropdown */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  background: hsla(350, 30%, 8%, 0.97);
  border-top: 1px solid var(--border);
  z-index: 40;
}

.mobile-nav a {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

/* Mobile-only behavior */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.active {
    display: flex;
  }
}


    /* Hero Section */
    .hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/static/romantic-hero.webp");
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: 55vh;
  }

   .hero-bg {
    background-image: url("/static/romantic-hero-mobile.webp");
    background-position: center;
  }
}
    .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.55) 45%,
      rgba(0,0,0,0.85) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.3),
      rgba(0,0,0,0.85)
    );
      background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.65)
  );
}
    
    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 6rem 1.5rem 3rem;
    }
    .hero-content > * {
  margin-bottom: 1.5rem;
}

.hero-content > *:last-child {
  margin-bottom: 0;
}

    .hero-title {
      font-size: clamp(3rem, 10vw, 6rem);
      font-weight: 700;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
      text-shadow: 0 4px 30px hsla(15, 60%, 50%, 0.5);
    }
    
    .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-shadow:
    0 2px 10px rgba(0,0,0,0.6),
    0 0 25px rgba(255,180,150,0.35);
    }
    .accent {
  color: var(--primary);
  font-weight: 600;
}

    .hero-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

    
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.5rem 1rem;
      font-size: 0.875rem;
      color: hsla(30, 30%, 96%, 0.7);
      margin-bottom: 2.5rem;
    }
    
    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      font-size: 1.125rem;
      font-weight: 600;
      border-radius: 9999px;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
    }
    
    .btn-primary {
  background: linear-gradient(
    135deg,
    #f3a683,
    #e17055
  );
  box-shadow:
    0 10px 30px rgba(225,112,85,0.6),
    0 0 30px rgba(255,180,150,0.4);
}
    
  .btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 15px 40px rgba(225,112,85,0.8);
}

    
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 20px hsla(15, 60%, 50%, 0.4); }
      50% { box-shadow: 0 0 40px hsla(15, 60%, 50%, 0.6); }
    }
    
    .hero-fade {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 8rem;
      background: linear-gradient(to top, var(--background), transparent);
    }
    
    /* Thank You Section */
    .thank-you {
      padding: 4rem 1.5rem;
    }
    
    .glass-card {
      max-width: 600px;
      margin: 0 auto;
      background: hsla(350, 35%, 12%, 0.8);
      backdrop-filter: blur(20px);
      border: 1px solid hsla(350, 20%, 25%, 0.5);
      border-radius: 1rem;
      padding: 2rem 3rem;
      text-align: center;
      box-shadow: var(--shadow-card);
    }
    
    .glass-card h2 {
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    
    .glass-card p {
      color: var(--muted-foreground);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    
    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
    }
    
    .social-links a {
      color: var(--muted-foreground);
      transition: color 0.3s;
    }
    
    .social-links a:hover {
      color: var(--primary);
    }
    
    .social-links svg {
      width: 24px;
      height: 24px;
    }
    
    /* Features Section */
    .features {
  padding: 6rem 1.5rem;
  background: hsl(350, 25%, 18%);
}
button {
  font-family: inherit;
}

    .section-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      text-align: center;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }
    
    .section-subtitle {
      text-align: center;
      color: var(--muted-foreground);
      margin-bottom: 4rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .text-glow {
  text-shadow: 0 0 10px hsla(15, 60%, 65%, 0.35);
}
.cta-mid {
  padding: 5rem 1.5rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    hsl(350, 30%, 10%),
    hsl(350, 30%, 6%)
  );
}
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    @media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
    
    .feature-card {
      background: var(--gradient-card);
      border-radius: 0.75rem;
      padding: 2rem;
      border: 1px solid hsla(350, 20%, 22%, 0.5);
      transition: all 0.3s;
    }
    
    .feature-card:hover {
      border-color: hsla(15, 60%, 65%, 0.5);
      box-shadow: var(--shadow-glow);
    }
    
    .feature-emoji {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .feature-card h3 {
      font-size: 1.25rem;
      color: var(--foreground);
      margin-bottom: 0.75rem;
    }
    
    .feature-card p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      line-height: 1.6;
    }
    
    /* Tickets Section */
    .tickets {
      padding: 5rem 1.5rem;
      background: hsla(350, 25%, 18%, 0.3);
    }
    
    .tickets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .ticket-card {
      position: relative;
      background: var(--gradient-card);
      border-radius: 1rem;
      padding: 0;
      border: 1px solid hsla(350, 20%, 22%, 0.5);
      transition: all 0.3s;
      overflow: hidden;
    }
    
    .ticket-content {
      padding: 2rem;
    }

    .ticket-card.popular {
      border-color: var(--primary);
      box-shadow: var(--shadow-glow);
      transform: scale(1.05);
    }
    
    .ticket-badge {
      position: absolute;
      top: -1rem;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: var(--primary-foreground);
      padding: 0.25rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
    }
    
    .ticket-card h3 {
      font-size: 1.5rem;
      color: var(--foreground);
      margin-bottom: 0.5rem;
    }

    .ticket-card:hover .ticket-image img {
  transform: scale(1.05);
}

    .why-ride {
  padding: 6rem 1.5rem;
  background: hsl(350, 25%, 18%);
}

.why-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--gradient-card);
  border: 1px solid hsla(350, 20%, 22%, 0.6);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.why-card.highlight {
  text-align: center;
  border-color: hsla(15, 60%, 65%, 0.6);
  box-shadow: var(--shadow-glow);
}

.why-title {
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

    .ticket-price {
      display: flex;
      align-items: baseline;
      gap: 0.25rem;
      margin-bottom: 1.5rem;
    }
    
    .ticket-price .amount {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .ticket-price .per {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }
    
    .ticket-features {
      list-style: none;
      margin-bottom: 2rem;
    }
    
    .ticket-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-bottom: 0.75rem;
    }
	.ticket-features li::before { content: "✓"; }

    
    .ticket-features .check {
      color: var(--primary);
      flex-shrink: 0;
    }
    
    .btn-secondary {
      width: 100%;
      background: var(--muted);
      color: var(--foreground);
    }
    
    .btn-secondary:hover {
      background: hsla(350, 25%, 22%, 1);
    }
    
    .ticket-card.popular .btn {
      background: var(--primary);
      color: var(--primary-foreground);
    }
    
    /* Contact Section */
    .contact {
      padding: 5rem 1.5rem;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: 800px;
      margin: 0 auto;
    }
    
    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .contact-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: hsla(15, 60%, 65%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .contact-icon svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
    }
    
    .contact-item h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.25rem;
      font-family: 'Montserrat', sans-serif;
    }
    
    .contact-item p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: 0.875rem;
      font-family: 'Montserrat', sans-serif;
      background: var(--muted);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--foreground);
      transition: border-color 0.3s;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--primary);
    }
    
    .contact-form textarea {
      resize: none;
      min-height: 120px;
    }
    
    /* Footer */
    .footer {
      padding: 2rem 1.5rem;
      border-top: 1px solid var(--border);
      text-align: center;
    }
    
    .footer p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }
    
    .footer .disclaimer {
      font-size: 0.75rem;
      color: hsla(30, 20%, 65%, 0.6);
      margin-top: 0.5rem;
    }
	
	.section-divider {
  width: 80px;
  height: 3px;
  margin: 2rem auto 3rem;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
}
.price {
  animation: pricePulse 2.5s ease-in-out infinite;
}

@keyframes pricePulse {
  0%, 100% { text-shadow: 0 0 10px rgba(255,180,150,0.3); }
  50% { text-shadow: 0 0 25px rgba(255,180,150,0.6); }
}

.why-list li {
  position: relative;
    line-height: 1.7;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #34A853;
  font-weight: 700;
}

.glow-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(255,180,150,0.15) 0%,
    rgba(255,180,150,0.05) 40%,
    transparent 70%
  );
  z-index: -1;
}
/* FAQ SECTION */
.faq-section {
  background: var(--background, #1a0f14);
  color: #eaeaea;
  padding: 6rem 1rem;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #D88CFB;
  margin-bottom: 1rem;
}

.faq-section .section-subtitle {
  text-align: center;
  color: #c8b8cc;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #E0AFFF;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.faq-answer.open {
  max-height: 500px;
  opacity: 1;
  padding: 1rem 1.5rem 1.5rem;
}

.faq-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #d7cadf;
}

.faq-footer .link {
  color: #D88CFB;
  text-decoration: underline;
}

/* =======================
   TICKET MODAL
======================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;

  /* NEW */
  padding: 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;

  /* NEW */
  max-height: calc(100vh - 2rem);
  overflow-y: auto;

  background: linear-gradient(
    180deg,
    hsl(350, 35%, 14%),
    hsl(350, 35%, 10%)
  );
  border: 1px solid hsla(15, 60%, 65%, 0.35);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.75),
    0 0 40px rgba(255,180,150,0.25);
}

@media (max-width: 480px) {
  .modal-card {
    max-height: 90vh;
    padding: 1.75rem 1.25rem;
  }
}

body.modal-open {
  overflow: hidden;
}


.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  text-align: center;

  /* Fallback color */
  color: var(--primary);

  /* Gradient text */
  background: var(--gradient-text);

  /* REQUIRED for compatibility */
  background-clip: text;          /* standard */
  -webkit-background-clip: text;  /* Safari / Chrome */
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 20px rgba(255,180,150,0.45);
  margin-bottom: 0.5rem;
}


.modal-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Form */
.modal-form label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.modal-form input,
.modal-form select {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--muted);
  color: var(--foreground);
  font-size: 0.9rem;
}

.modal-form input:focus,
.modal-form select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row label {
  flex: 1;
}

/* Date selection */
.date-select {
  margin: 1.5rem 0;
  font-size: 0.85rem;
}

.date-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.date-select label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.25rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.date-select input[type="radio"] {
  accent-color: var(--primary);
  transform: scale(1.1);
}
/* Promo feedback */
.promo {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
}

.promo.success {
  color: #34A853;
}

.promo.error {
  color: #EA4335;
}

.ticket-error {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #EA4335;
}

/* Actions */
.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.modal-actions button {
  flex: 1;
  padding: 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: var(--muted);
  color: var(--foreground);
  border: none;
}

.btn-secondary:hover {
  background: hsla(350, 25%, 22%, 1);
}

@media (max-width: 480px) {
  .modal-card {
    padding: 2rem 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--primary);
}

/* Ticket image — edge-to-edge, no borders */
.ticket-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.ticket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills container */
  transition: transform 0.4s ease;
  object-position: center top;
  display: block;
}

/* =======================
   ABOUT / OUR STORY (DARK)
======================= */

.about-section {
  background: linear-gradient(
    180deg,
    hsl(350, 30%, 10%),
    hsl(350, 30%, 7%)
  );
  padding: 6rem 1.5rem;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  color: var(--primary); /* fallback */
  background: var(--gradient-text);

  background-clip: text;          /* standard */
  -webkit-background-clip: text;  /* Safari / Chrome */

  -webkit-text-fill-color: transparent;
}


.about-container p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.9;
  color: hsla(30, 30%, 96%, 0.85);
  margin-bottom: 1.75rem;
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

.disclaimer-checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.disclaimer-checkbox input {
  margin-top: 0.25rem;
}

.footer {
  background: #0f0f0f;
  color: #bbb;
  padding: 2.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer p {
  margin: 0.25rem 0;
}

.disclaimer {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.75rem;
}

.footer-social {
  margin-top: 1.25rem;
}

.follow-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: #888;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  color: #bbb;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.social-icons a[aria-label="TikTok"] svg {
  fill: currentColor;
  stroke: none;
}

.image-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}
