/* ==========================================================================
   Little Spark Events — Global Stylesheet
   ========================================================================== */

:root {
  --teal:        #6B9E9B;
  --teal-dark:   #4A7D7A;
  --teal-deeper: #2E5C59;
  --teal-light:  #A8C8C6;
  --teal-pale:   #EAF2F2;
  --teal-bg:     #F2F7F7;
  --sand:        #F5EFE6;
  --sand-dark:   #E8DDD0;
  --warm-white:  #FDFAF7;
  --text-dark:   #2A3B3A;
  --text-mid:    #4E6362;
  --text-light:  #7A9190;
  --white:       #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

/* Metric-matched fallback fonts: sized so the fallback occupies the same
   space as the real Google Font, preventing layout shift when the real
   font swaps in (display: swap). The browser renders the fallback first,
   then swaps the glyphs only — the box size doesn't change. */
@font-face {
  font-family: 'Playfair Display Fallback';
  src: local('Georgia'), local('Times New Roman');
  size-adjust: 112%;
  ascent-override: 90%;
  descent-override: 22%;
}
@font-face {
  font-family: 'Lato Fallback';
  src: local('Arial'), local('Helvetica');
  size-adjust: 100%;
  ascent-override: 92%;
  descent-override: 22%;
}

body {
  font-family: 'Lato', 'Lato Fallback', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,247,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-dark);
  height: 72px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(42,59,58,0.1); }

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-book {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-book:hover { background: var(--teal-dark) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
/* Hamburger animates into an X when the mobile menu is open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  background: var(--teal-bg);
}
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-dark); }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', 'Playfair Display Fallback', Georgia, serif;
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--teal-dark);
}
.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-transform: uppercase;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--teal);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-transform: uppercase;
}
.btn-outline:hover { background: var(--teal-pale); transform: translateY(-2px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.stars { color: var(--teal); letter-spacing: 1px; }

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: rgba(253,250,247,0.93);
  backdrop-filter: blur(6px);
  padding: 0.9rem 1.4rem;
  border-radius: 10px;
  border-left: 3px solid var(--teal);
}
.hero-badge p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.15rem;
}
.hero-badge h3 {
  font-family: 'Playfair Display', 'Playfair Display Fallback', serif;
  font-size: 1rem;
  color: var(--text-dark);
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  text-align: center;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', 'Playfair Display Fallback', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--text-dark);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.section-intro {
  font-size: 1rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ── SERVICES ── */
.services { background: var(--sand); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--warm-white);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 2px 14px rgba(42,59,58,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(42,59,58,0.13);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 {
  font-family: 'Playfair Display', 'Playfair Display Fallback', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.card-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .card-link::after { transform: translateX(4px); }

/* ── HOW IT WORKS ── */
.how { background: var(--warm-white); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--teal-light);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Playfair Display', 'Playfair Display Fallback', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ── GALLERY STRIP ── */
.gallery { background: var(--teal-deeper); padding: 4rem 0; }
.gallery:has(+ .faq-signpost) { padding-bottom: 2rem; }
.gallery .section-label { color: var(--teal-light); padding: 0 2rem; }
.gallery .section-title { color: var(--white); padding: 0 2rem; margin-bottom: 2rem; }
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 280px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── AREA ── */
.area { background: var(--teal-pale); text-align: center; }
.area p.body {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  font-weight: 300;
}
.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.town {
  background: var(--white);
  border: 1px solid var(--teal-light);
  color: var(--teal-deeper);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--sand); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--warm-white);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(42,59,58,0.06);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', 'Playfair Display Fallback', serif;
  font-size: 4rem;
  color: var(--teal-light);
  position: absolute;
  top: 0.5rem; left: 1.2rem;
  line-height: 1;
}
.testi-stars { color: var(--teal); margin-bottom: 1rem; margin-top: 0.5rem; }
.testi-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 300;
}
.testi-author { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--teal);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-strip .section-label { color: var(--teal-pale); }
.cta-strip .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-strip p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: var(--teal-pale); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--teal-deeper); color: rgba(255,255,255,0.65); padding: 3.5rem 2rem 2rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 52px; margin-bottom: 1rem; opacity: 0.9; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; font-weight: 300; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.8rem; font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--teal-light); color: var(--teal-light); }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 0.88rem; font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--teal-light); }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── FAQ SIGNPOST ── */
/* Understated bridge between gallery and CTA on service pages */
.faq-signpost {
  background: var(--teal-deeper);
  padding: 3rem 2rem;
  text-align: center;
}
.faq-signpost .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.faq-signpost-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.faq-signpost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--teal-light);
  border-radius: 50px;
  color: var(--teal-light);
  font-family: 'Lato', 'Lato Fallback', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.faq-signpost-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.faq-signpost-arrow {
  transition: transform 0.2s;
}
.faq-signpost-link:hover .faq-signpost-arrow {
  transform: translateX(3px);
}

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; }
.fd2 { transition-delay: 0.2s; }
.fd3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 3rem 2rem; }
  .hero-image { height: 60vw; min-height: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Mobile nav panel: hidden off-screen by default, slides in as a
     full-width dropdown under the header when .nav-links has .open */
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--warm-white);
    border-top: 1px solid var(--sand-dark);
    box-shadow: 0 12px 24px rgba(42,59,58,0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    z-index: 99;
  }
  .nav-links.open {
    max-height: calc(100vh - 72px);
    opacity: 1;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--sand);
  }
  .nav-links a {
    display: block;
    padding: 1.1rem 2rem;
  }
  .nav-links .nav-book {
    margin: 1rem 2rem;
    text-align: center;
    border-radius: 50px;
  }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
}
