/*
 * Spice Up Fitness — Main Stylesheet
 * ─────────────────────────────────────────────────────────
 * Table of Contents
 *
 *  1. Brand Tokens (CSS Variables)
 *  2. Base & Reset
 *  3. Typography Utilities
 *  4. Navbar
 *  5. Mobile Offcanvas Menu
 *  6. Buttons
 *  7. Grain Effect
 *  8. Hero Section
 *  9. Service / Class Cards
 * 10. Team / Instructor Cards
 * 11. CTA Sections
 * 12. Pricing Cards
 * 13. FAQ Accordion
 * 14. Contact Form
 * 15. Footer
 * 16. Page Header (inner pages)
 * 17. Scroll Animations
 * 18. Texture Overlay
 * ─────────────────────────────────────────────────────────
 * Refactored Classes (extracted from inline styles)
 *
 * 19. Hero — index.php
 * 20. Classes — classes.php
 * 21. Rates — rates.php
 * 22. Instructors — instructors.php
 * 23. Brand Story — brand-story.php
 * 24. Contact — contact.php
 * 25. FAQs — faqs.php
 * ─────────────────────────────────────────────────────────
 */


/* ==========================================================
   1. Brand Tokens
   ========================================================== */

:root {
  /* Brand colors */
  --primary:       #C9356F;
  --primary-dark:  #a02558;
  --primary-light: #d44a97;

  /* Backgrounds */
  --bg-light:      #FDF0F5;
  --bg-soft:       #F7E2EC;
  --bg-dark:       #3D2438;
  --bg-darker:     #2D1828;

  /* Text */
  --text-main:     #2D2D2D;
  --text-muted:    rgba(45, 45, 45, 0.55);
  --text-light:    #ffffff;
}


/* ==========================================================
   2. Base & Reset
   ========================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: 'DM Sans', sans-serif;
}


/* ==========================================================
   3. Typography Utilities
   ========================================================== */

.font-display {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

.text-primary-brand {
  color: var(--primary) !important;
}

.bg-primary-brand {
  background-color: var(--primary) !important;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-main);
}

.section-title-light {
  color: var(--text-light);
}


/* ==========================================================
   4. Navbar
   ========================================================== */

#mainNav {
  background-color: var(--bg-light);
  border-bottom: 1px solid rgba(182, 49, 124, 0.12);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  color: var(--primary);
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  padding-bottom: 4px !important;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  border-bottom-color: var(--primary);
}

.nav-socials a {
  color: var(--primary);
  transition: color 0.2s;
}

.nav-socials a:hover {
  color: var(--primary-dark);
}

/* Hamburger icon */
.navbar-toggler {
  border: none !important;
  padding: 4px;
  box-shadow: none !important;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  margin: 5px 0;
  transition: all 0.3s;
}


/* ==========================================================
   5. Mobile Offcanvas Menu
   ========================================================== */

#mobileMenu {
  background: var(--bg-light) !important;
  width: 300px;
}

.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(182, 49, 124, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active-mobile {
  color: var(--primary-dark);
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.nav-socials-mobile a {
  color: rgba(182, 49, 124, 0.5);
  transition: color 0.2s;
}

.nav-socials-mobile a:hover {
  color: var(--primary);
}


/* ==========================================================
   6. Buttons
   ========================================================== */

/* Solid pink */
.btn-brand {
  background: var(--primary);
  color: #fff !important;
  border: 2px solid var(--primary);
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, border-color 0.25s;
}

.btn-brand:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Outline pink */
.btn-outline-brand {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, color 0.25s;
}

.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff !important;
}

/* Light background with pink text (used on dark/pink sections) */
.btn-light-brand {
  background: var(--bg-light);
  color: var(--primary) !important;
  border: 2px solid var(--bg-light);
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, color 0.25s;
}

.btn-light-brand:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff !important;
}

/* Remove border from submit buttons */
.btn-submit {
  border: none;
}


/* ==========================================================
   7. Grain Effect
   ========================================================== */

.grainy {
  position: relative;
}

/* Subtle grain on light sections */
.grainy::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.grainy > * {
  position: relative;
  z-index: 1;
}

/* Stronger grain on pink CTA sections and page headers */
.cta-section.grainy::after,
.page-header.grainy::after {
  opacity: 0.55;
  background-size: 120px 120px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}


/* ==========================================================
   8. Hero Section
   ========================================================== */

.hero-img-box {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid rgba(182, 49, 124, 0.15);
}

.hero-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
}

.hero-stat {
  position: absolute;
  left: -16px;
  top: 38%;
  background: var(--bg-dark);
  color: #fff;
  padding: 12px 18px;
}

/* Animated pulse dot */
.ping-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: ping 1.5s ease-in-out infinite;
}

@keyframes ping {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ==========================================================
   9. Service / Class Cards
   ========================================================== */

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card-img {
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45, 45, 45, 0.25);
  font-size: 0.85rem;
}

/* Dark gradient overlay so card text is readable */
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(45, 45, 45, 0.75));
}

.service-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}


/* ==========================================================
   10. Team / Instructor Cards
   ========================================================== */

/* Equal height instructor cards — column must be flex */
.team-col {
  display: flex;
}

.team-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.team-avatar {
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(45, 45, 45, 0.15);
  position: relative;
  overflow: hidden;
}

.team-card .card-body {
  background: var(--bg-dark);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  flex: 1; /* makes card body stretch to fill available height */
}

/* Subtle grain on dark card body */
.team-card .card-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  opacity: 0.22;
  pointer-events: none;
}


/* ==========================================================
   11. CTA Sections
   ========================================================== */

.cta-section {
  background: #C9356F;
  position: relative;
  overflow: hidden;
}


/* ==========================================================
   12. Pricing Cards
   ========================================================== */

.price-card {
  /* border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 0; */
  padding: 2rem;
  height: 100%;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Gap between price value and feature list */
.price-card .price-value {
  margin-bottom: 1.25rem !important;
}

/* List fills remaining space so button always sits at bottom */
.price-card .list-unstyled {
  flex: 1;
  margin-bottom: 1.5rem;
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
}

.price-check {
  color: var(--primary);
  margin-right: 8px;
}


/* ==========================================================
   13. FAQ Accordion
   ========================================================== */

.accordion-item {
  border: none;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 0 !important;
  background: transparent;
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main) !important;
  background: transparent !important;
  padding: 18px 0;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9356F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 0 18px 0;
  background: transparent;
}


/* ==========================================================
   14. Contact Form
   ========================================================== */

.form-control,
.form-select {
  border-radius: 0;
  border: 1px solid rgba(45, 45, 45, 0.15);
  background: var(--bg-soft);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-main);
  padding: 12px 16px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: none;
  background: var(--bg-soft);
}

.form-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(182, 49, 124, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ==========================================================
   15. Footer
   ========================================================== */

footer {
  background: var(--bg-dark);
}

.footer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}


/* ==========================================================
   16. Page Header (inner pages)
   ========================================================== */

.page-header {
  background: #C9356F;
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-header .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.page-header .section-title {
  color: #fff;
}


/* ==========================================================
   17. Scroll Animations
   ========================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

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


/* ==========================================================
   18. Texture Overlay
   ========================================================== */

.with-texture {
  position: relative;
}

.with-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('includes/images/texture.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.with-texture > * {
  position: relative;
  z-index: 1;
}


/* ==========================================================
   19. Refactored — index.php
   ========================================================== */

/* Hero section wrapper */
.hero-section {
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-light);
}

/* "Now accepting bookings" badge */
.hero-badge {
  background: rgba(182, 49, 124, 0.08);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Main headline */
.hero-title {
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.92;
  color: var(--text-main);
  font-weight: 700;
}

.hero-title-in {
  font-size: 1em;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 600;
}

.hero-title-accent {
  color: var(--primary);
}

/* Subtitle paragraph */
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
}

/* Image box aspect ratio */
.hero-img-ratio {
  aspect-ratio: 4/5;
}

/* Placeholder text inside image box */
.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45, 45, 45, 0.2);
  font-size: 0.85rem;
}

/* Hero video — fills the box, covers like a background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Label overlay on image */
.hero-label-title {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-label-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

/* Stats badge */
.hero-stat-num {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Section background helpers */
.bg-light-section { background: var(--bg-light); }
.bg-dark-section  { background: var(--bg-dark); }

/* "Browse All" link */
.link-browse {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.link-browse:hover {
  color: var(--primary-dark);
}

/* Class card text */
.card-level {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.card-title {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}

.card-price {
  color: rgba(255, 255, 255, 0.85);
}

/* CTA section text */
.cta-label {
  color: rgba(255, 255, 255, 0.65);
}

.cta-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.95;
  font-weight: 700;
}

.cta-body {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Founder photo block */
.founder-wrap {
  position: relative;
}

.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.founder-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(74, 48, 64, 0.95) 0%, transparent 100%);
  padding: 30px 24px 20px;
}

.founder-name {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
}

.founder-role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}

/* Brand story text on dark section */
.story-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
}

.story-body {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.story-body-sm {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Read Full Story button override */
.story-btn {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}


/* ==========================================================
   20. Refactored — classes.php
   ========================================================== */

/* Full-cover image inside class card */
.card-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

/* Smaller CTA title for classes page */
.cta-title-md {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.95;
  font-weight: 700;
}

/* Slightly lighter CTA body text */
.cta-body-sm {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin: 0;
}


/* ==========================================================
   21. Refactored — rates.php
   ========================================================== */

/* Price card label (e.g. "Single Class") */
.price-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Price value color variants */
.price-val-light { color: var(--text-main); }
.price-val-dark  { color: #fff; }

/* Per-session descriptor */
.price-per {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-per-dark {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

/* Feature list items */
.price-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.price-item-dark {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

/* Featured card negative margin */
.price-featured-mt {
  margin-top: -8px;
}

/* "Most Popular" badge */
.price-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* Payment method icons */
.payment-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.payment-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  border-radius: 50%;
}

.payment-icon-square {
  border-radius: 4px;
  font-style: italic;
  font-size: 0.65rem;
}

.payment-name {
  color: #fff;
  font-weight: 600;
}

.payment-more {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.85rem;
}


/* ==========================================================
   22. Refactored — instructors.php
   ========================================================== */

/* Instructor photo */
.instructor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Card body text */
.instructor-name {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 700;
}

.instructor-role {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.instructor-bio {
  font-size: 0.82rem;
  color: #F5EFED;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================
   23. Refactored — brand-story.php
   ========================================================== */

/* Slightly larger founder name on brand story page */
.founder-name-lg {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
}

/* Body text on light section */
.body-main {
  color: var(--text-main);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.body-muted {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* GIA highlight box */
.gia-box {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.gia-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.gia-body {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  font-size: 0.92rem;
}

/* Mission statement quote */
.mission-quote {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
}

.mission-attr {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* ==========================================================
   24. Refactored — contact.php
   ========================================================== */

/* Intro paragraph */
.contact-intro {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Contact detail labels and values */
.contact-detail-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0;
}

.contact-detail-value {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-detail-link {
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
}

/* Form background wrap */
.contact-form-wrap {
  background: var(--bg-soft);
  padding: 2rem 2.5rem;
}

/* Success alert */
.alert-success-brand {
  background: rgba(182, 49, 124, 0.08);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
}

/* Error alert */
.alert-error-brand {
  background: rgba(220, 53, 69, 0.08);
  border-left: 4px solid #dc3545;
  padding: 1rem 1.25rem;
}


/* ==========================================================
   25. Refactored — faqs.php
   ========================================================== */

/* FAQ inline CTA block */
.faq-cta {
  position: relative;
}

.faq-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.faq-cta-body {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
/* ==========================================================
   Packages & Rates Page
   ========================================================== */

.pkg-section-header { border-left: 4px solid var(--primary); padding-left: 1.25rem; }
.pkg-rate-main { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--primary); margin: 0.5rem 0 0; line-height: 1; }
.pkg-rate-unit { font-size: 1.2rem; color: var(--text-muted); font-weight: 400; }
.pkg-divider   { border-color: rgba(45,45,45,0.1); margin: 3rem 0; }

.pkg-card { background: var(--bg-soft); height: 100%; display: flex; flex-direction: column; }
.pkg-card-img { position: relative; overflow: hidden; background: var(--bg-soft); }
.pkg-card-img img { width: 100%; height: auto; display: block; object-fit: contain; }
.pkg-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pkg-card-title { font-size: 1.8rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.75rem; }
.pkg-card-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.pkg-features   { list-style: none; padding: 0; margin: 0; }
.pkg-features li { font-size: 0.82rem; color: var(--text-muted); padding: 0.3rem 0; border-bottom: 1px solid rgba(45,45,45,0.08); }
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before { content: '✓'; color: var(--primary); margin-right: 8px; font-weight: 700; }