/* =========================================
   REFLECTIVE MOMENTS PHOTO BOOTH
   Color Scheme: Charcoal + Teal + White
   ========================================= */

:root {
  --charcoal: #2C3E50;
  --charcoal-dark: #1a252f;
  --teal: #2A9D8F;
  --teal-light: #3DBFAF;
  --teal-dark: #1E7A72;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #E9ECEF;
  --text: #333333;
  --text-light: #666666;
  --border: #DEE2E6;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--charcoal);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-light { background: var(--light-gray); }
.hidden { display: none; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,157,143,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.section-dark .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.section-dark .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-large { padding: 18px 48px; font-size: 16px; }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

.section-header.light .section-sub { color: rgba(255,255,255,0.7); }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { color: var(--teal-light); }

/* =========================================
   NAVIGATION
   ========================================= */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.logo-by {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); font-weight: 600; }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 50%, #2C4A52 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,157,143,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(42,157,143,0.4);
  border-radius: 30px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 86px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.teal-dot { color: var(--teal); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal);
}

.service-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}

.step h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.step-divider {
  width: 60px;
  height: 1px;
  background: rgba(42,157,143,0.4);
  flex-shrink: 0;
}

/* =========================================
   SERVICE AREAS
   ========================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.area-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.area-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.area-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.area-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.areas-note {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border: 1px dashed var(--teal);
  border-radius: var(--radius);
}

.areas-note p { font-size: 16px; color: var(--text); }
.areas-note a { color: var(--teal-dark); font-weight: 600; }
.areas-note a:hover { text-decoration: underline; }

/* =========================================
   PRICING
   ========================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  gap: 24px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: var(--teal);
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing-header { margin-bottom: 28px; }

.pricing-header h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--medium-gray);
}

.pricing-features li:last-child { border-bottom: none; }

.requirements-box {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
}

.requirements-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.requirements-box > p {
  color: var(--text-light);
  margin-bottom: 28px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.requirement {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.req-icon { font-size: 28px; flex-shrink: 0; }

.requirement strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.requirement p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.pricing-starting {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 10px;
}

.pricing-starting a {
  color: var(--teal-dark);
  font-weight: 600;
}

.pricing-starting a:hover { text-decoration: underline; }

.pricing-rate {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.pricing-rate strong {
  color: var(--teal-dark);
  font-size: 20px;
}

.feature-note {
  font-size: 13px !important;
  color: var(--text-light) !important;
  font-style: italic;
  padding-top: 10px !important;
}

.spanish-note {
  margin-top: 16px;
  font-size: 15px;
  color: var(--teal-dark);
  font-style: italic;
}

/* ADD-ONS */
.addons-box {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
}

.addons-title {
  font-size: 26px;
  margin-bottom: 8px;
}

.addons-intro {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 15px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.addon-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.addon-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.addon-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.addon-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.addon-item a {
  color: var(--teal-dark);
  font-weight: 500;
}

/* BILINGUAL BANNER */
.bilingual-banner {
  background: linear-gradient(135deg, rgba(42,157,143,0.08) 0%, rgba(42,157,143,0.04) 100%);
  border: 1px solid rgba(42,157,143,0.25);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin-bottom: 28px;
}

.bilingual-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bilingual-flag {
  font-size: 32px;
  flex-shrink: 0;
}

.bilingual-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 6px;
}

.bilingual-content p:last-child { margin-bottom: 0; }

.bilingual-content a {
  color: var(--teal-dark);
  font-weight: 600;
}

.payment-note {
  text-align: center;
  padding: 20px;
  background: rgba(42,157,143,0.08);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--text);
}

/* =========================================
   BOOKING FORM
   ========================================= */
.booking-form {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group select option { background: var(--charcoal); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.2);
}

.form-group textarea { resize: vertical; }

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--charcoal-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand .logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand .logo-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal-light);
}

.footer-contact li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }

/* =========================================
   PAGE HERO (shared — inner pages + 404)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 60%, #2C4A52 100%);
  padding: 140px 24px 80px;
  text-align: center;
  color: var(--white);
}

.page-hero-content { max-width: 640px; margin: 0 auto; }
.page-hero-content h1 { color: var(--white); font-size: clamp(40px, 6vw, 64px); margin-bottom: 16px; }
.page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.page-hero-content .section-tag { color: var(--teal-light); margin-bottom: 14px; }

/* =========================================
   HOMEPAGE — FEATURES GRID (What's Included)
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.feature-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* =========================================
   HOMEPAGE — EVENT TYPE PILLS
   ========================================= */
.events-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.event-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.event-pill:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* =========================================
   HOMEPAGE — TESTIMONIAL PLACEHOLDER
   ========================================= */
.testimonial-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.testimonial-placeholder p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-wrap: wrap; }
  .step-divider { display: none; }
  .step { min-width: 200px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 4px;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .events-pills { gap: 10px; }
  .event-pill { padding: 12px 20px; font-size: 14px; }
  .testimonial-placeholder { padding: 40px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-3 { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .requirements-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }

  .page-hero { padding: 120px 20px 60px; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .hero-tag { font-size: 11px; letter-spacing: 1.5px; }
  .hero-sub { font-size: 15px; }
  .section-header h2 { font-size: 26px; }
  .pricing-badge { font-size: 10px; padding: 5px 14px; }
  .step-number { font-size: 40px; }
  .requirements-box { padding: 24px 20px; }
  .booking-form { padding: 20px 16px; }
  .btn-large { padding: 16px 32px; font-size: 15px; }
  .service-card { padding: 28px 20px; }
  .area-card { padding: 24px 18px; }
  .footer { padding: 48px 0 0; }
  .nav-container { padding: 0 16px; }
  .container { padding: 0 16px; }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */

/* Skip to main content — hidden until focused by keyboard */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--teal-dark);
  outline-offset: 2px;
}

/* Visible focus outlines for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
}

/* =========================================
   COOKIE BANNER
   ========================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal-dark);
  color: rgba(255,255,255,0.85);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1500;
  border-top: 3px solid var(--teal);
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--teal-light);
  text-decoration: underline;
}

.cookie-banner a:hover { color: var(--white); }

.cookie-accept {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.cookie-accept:hover { background: var(--teal-dark); }

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }
  .cookie-accept { width: 100%; text-align: center; }
}

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { color: var(--teal-dark); text-decoration: underline; }

/* =========================================
   BLOG ARTICLE
   ========================================= */
.blog-article { padding-top: 40px; }

.blog-container {
  max-width: 780px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 40px;
}

.blog-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 12px 0 16px;
  line-height: 1.25;
}

.blog-meta {
  font-size: 14px;
  color: var(--text-light);
}

.blog-meta a { color: var(--teal); }
.blog-meta a:hover { color: var(--teal-dark); text-decoration: underline; }

.blog-body { font-size: 1.05rem; line-height: 1.75; }

.blog-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.65;
}

.blog-body h2 {
  font-size: 1.5rem;
  margin: 44px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--medium-gray);
}

.blog-body h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.blog-body p { margin-bottom: 18px; }

.blog-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.blog-body ul li { margin-bottom: 8px; }

.blog-body a:not(.btn) { color: var(--teal); }
.blog-body a:not(.btn):hover { color: var(--teal-dark); text-decoration: underline; }

.blog-body .btn {
  display: inline-block;
  margin: 8px 0 20px;
}

/* Blog pricing table */
.blog-pricing-table {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.blog-pricing-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.blog-pricing-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.blog-pricing-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.blog-pricing-table tr:last-child td { border-bottom: none; }
.blog-pricing-table tr:nth-child(even) td { background: var(--light-gray); }

.blog-divider {
  border: none;
  border-top: 2px solid var(--medium-gray);
  margin: 48px 0 40px;
}

/* Blog FAQ */
.blog-faq { margin-top: 16px; }

.blog-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
  background: var(--light-gray);
}

.blog-faq-item h3 {
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--charcoal);
}

.blog-faq-item p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.blog-faq-item a { color: var(--teal); }
.blog-faq-item a:hover { color: var(--teal-dark); text-decoration: underline; }

@media (max-width: 768px) {
  .blog-article { padding-top: 24px; }
  .blog-body h2 { font-size: 1.3rem; }
  .blog-pricing-table th,
  .blog-pricing-table td { padding: 10px 12px; font-size: 0.88rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================
   LOCATION / EVENT PAGE COMPONENTS
   ========================================= */

/* Breadcrumb bar */
.lp-breadcrumb {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  font-size: 13px;
  color: var(--text-light);
}
.lp-breadcrumb a { color: var(--teal-dark); }
.lp-sep { margin: 0 8px; }

/* Narrow container (820px) */
.container-narrow { max-width: 820px; }

/* Heading variants */
.lp-h2     { font-size: clamp(26px,3.5vw,38px); margin-bottom: 20px; }
.lp-h2-sm  { font-size: clamp(26px,3.5vw,38px); margin-bottom: 10px; }
.lp-h2-faq { font-size: clamp(26px,3.5vw,38px); margin-bottom: 32px; }
.lp-h3     { font-size: 22px; margin-bottom: 20px; }

/* Body text */
.lp-body      { font-size: 17px; line-height: 1.8; color: var(--text); margin-bottom: 24px; }
.lp-body-last { font-size: 17px; line-height: 1.8; color: var(--text); margin-bottom: 40px; }
.lp-intro     { font-size: 17px; color: var(--text-light); margin-bottom: 40px; line-height: 1.7; }

/* Package grid (used in dark section) */
.lp-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.lp-pkg-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
}
.lp-pkg-card-featured {
  background: var(--teal-dark);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.lp-pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-light);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.lp-pkg-name  { color: var(--white); margin-bottom: 8px; }
.lp-pkg-price { color: var(--teal-light); font-weight: 600; margin-bottom: 12px; }
.lp-pkg-desc  { color: rgba(255,255,255,0.75); font-size: 15px; }
.lp-pkg-btns  { text-align: center; }
.lp-btn-gap   { margin-right: 16px; }

/* Event types list */
.lp-events-grid { display: grid; gap: 28px; }
.lp-event-item  { border-left: 4px solid var(--teal); padding-left: 24px; }
.lp-event-h3    { font-size: 19px; margin-bottom: 8px; }
.lp-event-p     { font-size: 16px; line-height: 1.75; color: var(--text); }
.lp-event-p a   { color: var(--teal-dark); }

/* Inline FAQ (location/event pages — uses <details>, not the main faq.html accordion) */
.lp-faq-grid    { display: grid; gap: 12px; }
.lp-faq-details { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.lp-faq-summary { padding: 18px 24px; font-weight: 600; font-size: 16px; cursor: pointer; color: var(--charcoal); list-style: none; }
.lp-faq-answer  { padding: 0 24px 18px; color: var(--text); line-height: 1.75; }

/* CTA section (dark background) */
.section-dark .section-tag { color: var(--teal-light); }
.lp-cta-wrap { text-align: center; max-width: 680px; }
.lp-cta-h2   { color: var(--white); font-size: clamp(28px,4vw,42px); margin-bottom: 20px; }
.lp-cta-body { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 16px; }
.lp-cta-fine { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.lp-narrow { max-width: 600px; }
.lp-narrow-lg { max-width: 640px; }
