@charset "UTF-8";
/* style.scss */
/* _base.scss */
/* Variables */
:root {
  --gold: #d4af37;
  --gold-dark: #b8860b;
  --shadow-light: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.15);
  --focus-outline: 2px solid var(--gold);
}

/* Reset + Box sizing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  background: #f8f9fa;
}

/* Headings */
h1, h2, h3 {
  font-weight: 700;
}

/* =========================
   _layout-individuals.scss
   Shared layout for Individuals page
========================= */
/* -------------------------
   Variables
------------------------- */
:root {
  --gold: #d4af37;
  --gold-dark: #b8860b;
  --shadow-light: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.15);
  --focus-outline: 2px solid var(--gold);
}

/* -------------------------
   Reset & container
------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* -------------------------
   Top Bar / Header
------------------------- */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  /* Logo */
  /* Right cluster (nav + CTA) */
  /* Main navigation */
  /* CTA */
  /* Hamburger menu */
}
@media (max-width: 768px) {
  .top-bar {
    padding: 1rem;
  }
}
.top-bar .logo-area {
  display: flex;
  align-items: center;
}
.top-bar .logo-area .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.top-bar .logo-area .logo {
  height: 48px;
  width: auto;
}
.top-bar .logo-area .logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-left: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.top-bar .header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.top-bar .main-nav {
  display: flex;
  gap: 2rem;
  /* Mobile menu (removed from flex flow) */
}
.top-bar .main-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.top-bar .main-nav a:hover, .top-bar .main-nav a:focus-visible {
  color: var(--gold);
  outline: var(--focus-outline);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .top-bar .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    display: none;
    /* Mobile-only Book a Free Session link */
  }
  .top-bar .main-nav.open {
    display: flex;
  }
  .top-bar .main-nav .mobile-only {
    display: block;
    padding: 1rem 0;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
  }
  .top-bar .main-nav .mobile-only:hover, .top-bar .main-nav .mobile-only:focus-visible {
    color: var(--gold-dark);
    outline: var(--focus-outline);
    outline-offset: 2px;
  }
}
@media (max-width: 768px) {
  .top-bar .top-right .cta-button {
    display: none;
  }
}
.top-bar .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--gold);
}
@media (max-width: 768px) {
  .top-bar .menu-toggle {
    display: block;
  }
}
.top-bar .menu-toggle:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 3px;
}

/* -------------------------
   Footer
------------------------- */
.site-footer {
  background: #000;
  color: white;
  padding: 2rem 2rem 1rem;
  font-family: "Montserrat", sans-serif;
}
.site-footer .footer-inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 0.5rem;
}
.site-footer .footer-inner .footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-footer .footer-inner .footer-left .footer-brand-small {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.site-footer .footer-inner .footer-left .footer-contact p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.85rem;
}
.site-footer .footer-right {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  font-size: 0.85rem;
  white-space: nowrap;
}
.site-footer .footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 0.7rem;
  line-height: 1.2;
}
.site-footer .footer-legal small {
  font-size: 0.65rem;
  opacity: 0.8;
}
.site-footer .footer-legal p {
  margin: 0.2rem 0;
}
.site-footer .footer-legal a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem 1rem;
  }
  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .site-footer .footer-right {
    position: static;
    margin-top: 0.5rem;
  }
  .site-footer .footer-legal {
    text-align: center;
  }
}

/* -------------------------
   Sticky CTA Buttons
------------------------- */
.sticky-cta {
  position: sticky;
  bottom: 2rem;
  margin: 0 auto;
  z-index: 50;
}

/* -------------------------
   Accessibility
------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ==========================
   Hero Section
=========================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 0 15rem;
  overflow: hidden;
  /* Dynamic background using CSS variables */
  --hero-image: url("../images/default-hero.avif");
  --hero-gradient-start: rgba(0,0,0,0.5);
  --hero-gradient-end: rgba(0,0,0,0.4);
  background: linear-gradient(var(--hero-gradient-start), var(--hero-gradient-end)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  /* optional: still allow overlay for extra effect */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--hero-gradient-start), var(--hero-gradient-end));
  z-index: 1;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* ensures proper scaling */
}

.hero-content {
  position: relative;
  z-index: 2; /* content appears above image + overlay */
  color: white; /* Force hero text to be white */
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-subtext,
.hero-stat {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* _components.scss */
.cta-button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
.cta-button:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

.promise-item {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s;
  border-top: 4px solid transparent;
}
.promise-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--gold);
}
.promise-item:focus-within {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Pages */
/* ==========================
   Variables
=========================== */
:root {
  --gold: #d4af37;
  --gold-dark: #b8860b;
  --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.15);
  --focus-outline: 2px solid var(--gold);
}

/* ==========================
   Base Styles
=========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  background: #f8f9fa;
}

h1, h2, h3 {
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================
   Family-Run Section
=========================== */
.family-run {
  background: white;
  padding: 1rem 0;
  margin: 0.05rem 0;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
}

.family-run h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.1rem;
}

/* ==========================
   Financial Struggle Section
=========================== */
.problem-section {
  padding: 0.1rem 0;
}

.problem-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem-list {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.problem-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.problem-note {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* ==========================
   Situations Section
=========================== */
.who-section {
  background: white;
  padding: 1rem 0;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
}

.who-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.who-section ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.who-section li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

.who-section .cta-button {
  margin-top: 1rem;
}

/* ==========================
   Our Simple Solution
=========================== */
.solution-section {
  padding: 0.5rem 0;
  background: #f8f9fa;
}

.solution-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.solution-lead {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.promise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.promise-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  flex: 1 1 200px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

.promise-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.promise-item .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.promise-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.promise-item p {
  font-size: 1rem;
  color: #333;
}

/* Mobile emoji list */
.promise-list-mobile {
  display: none;
}

/* ==========================
   Results Section
=========================== */
.results {
  width: 100%; /* full viewport width */ /* white stripe */
  padding: 2rem 0; /* vertical padding */
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05); /* subtle separator */
  text-align: center;
}

.results h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.results p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.results-button .cta-button {
  margin-top: 0.5rem;
}

/* ==========================
   Final CTA
=========================== */
.final-cta {
  width: 100%;
  padding: 3rem 0; /* bigger padding for CTA */
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
}

.final-cta .cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ==========================
   Responsive Adjustments (Mobile)
=========================== */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem !important; /* safe padding */
    min-height: 50vh !important; /* fixed height for consistency */
    max-height: 80vh; /* prevent runaway height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically center content */
    align-items: center;
    overflow: hidden;
  }
  .hero-media,
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* ensures proper scaling */
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-align: center;
    padding: 1rem;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.25;
    margin: 0.5rem 0;
  }
  .hero-subtext,
  .hero-stat {
    font-size: clamp(0.9rem, 4vw, 1rem) !important;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .hero-cta {
    font-size: 0.95rem !important;
    padding: 0.65rem 1.25rem !important;
  }
  /* Family-Run */
  .family-run h2 {
    font-size: 1.75rem;
    text-align: center;
  }
  /* Problem Section */
  #problem .problem-list {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #problem .problem-note {
    padding: 0 1rem;
    font-size: 0.95rem;
  }
  /* Hide desktop promise grid, show emoji list */
  .promise-grid {
    display: none;
  }
  .promise-list-mobile {
    display: block;
    list-style: none;
    padding: 0 1rem;
    text-align: left;
  }
  .promise-list-mobile li {
    padding: 0.5rem 0;
    font-size: 1rem;
  }
  /* Real Results centered */
  .results {
    text-align: center;
    padding: 1rem;
  }
  .results h3 {
    font-size: 1.4rem;
  }
  .results-button {
    display: flex;
    justify-content: center;
  }
  .results-button .cta-button {
    text-align: center;
  }
}
/* _services.scss */
/* ==========================
   Container
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================
   Services Overview Cards
=========================== */
.promise-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem; /* tightened from 2rem */
}

.promise-item {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1 1 calc(33.333% - 1.33rem);
}

.promise-item .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.promise-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.promise-item p {
  font-size: 1rem;
  color: #333;
}

@media (max-width: 1024px) {
  .promise-item {
    flex: 1 1 calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .promise-item {
    flex: 1 1 100%;
  }
}
/* ==========================
   Shared Lead Text
=========================== */
.solution-lead {
  margin-top: 1.5rem; /* tightened from 3rem */
}

.solution-lead h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.solution-lead ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.solution-lead ul li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}

/* ==========================
   Adjust spacing before service-detail
=========================== */
#our-services .solution-lead {
  margin-bottom: 1.5rem; /* tightened space before service cards */
}

/* ==========================
   Detailed Service Cards
=========================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 2rem; /* tightened from 3rem */
}

/* Image side */
.service-detail .service-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Text side */
.service-detail .service-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.service-detail h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-detail h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
  color: #333;
}

.service-detail p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-detail .goal-card {
  font-size: 0.95rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
}

.service-detail .goal-card::before {
  content: "•";
  color: #d4af37;
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-detail .cta-button {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Alternate image/text sides on desktop */
.service-detail:nth-child(even) .service-img {
  order: 2;
}

.service-detail:nth-child(even) .service-text {
  order: 1;
}

/* ==========================
   Responsive – Stack Cards with Image on Top
=========================== */
@media (max-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr; /* stack vertically */
  }
  .service-detail .service-img {
    height: 260px;
    order: 0 !important; /* always first on mobile/tablet */
  }
  .service-detail .service-text {
    padding: 1.75rem;
    order: 1 !important; /* always after image */
  }
}
@media (max-width: 768px) {
  .service-detail .service-img {
    height: 220px;
  }
  .service-detail .service-text {
    padding: 1.25rem;
  }
  .hero {
    padding: 2rem 1rem !important; /* safe padding */
    min-height: 50vh !important; /* fixed height for consistency */
    max-height: 80vh; /* prevent runaway height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically center content */
    align-items: center;
    overflow: hidden;
  }
  .hero-media,
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* ensures proper scaling */
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-align: center;
    padding: 1rem;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.25;
    margin: 0.5rem 0;
  }
  .hero-subtext,
  .hero-stat {
    font-size: clamp(0.9rem, 4vw, 1rem) !important;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .hero-cta {
    font-size: 0.95rem !important;
    padding: 0.65rem 1.25rem !important;
  }
}
/* ==========================
   Fit / Not Fit Section
=========================== */
.fit-full {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.fit-full .fit-good,
.fit-full .fit-not {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  flex: 1 1 280px;
}

.fit-full .fit-good h3,
.fit-full .fit-not h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.fit-full .fit-good ul,
.fit-full .fit-not ul {
  list-style: none;
  padding: 0;
}

.fit-full .fit-good ul li,
.fit-full .fit-not ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.fit-full .fit-good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.fit-full .fit-not li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* ==========================
   Final CTA
=========================== */
.final-cta {
  text-align: center;
  margin-top: 2rem;
}

.final-cta .cta-button.large {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
}

.final-cta p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #666;
}

/* _faq.scss */
/* =========================
   FAQ Section
========================= */
#faq {
  padding: 4rem 0 5rem; /* extra bottom spacing for footer rhythm */
  background: #fff;
}
#faq .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
#faq .faq-item {
  margin-bottom: 1.25rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #e9ecef;
}
#faq .faq-item input[type=checkbox] {
  display: none;
}
#faq .faq-item input[type=checkbox]:checked ~ .faq-answer {
  max-height: 1000px;
  padding-top: 1rem;
}
#faq .faq-item input[type=checkbox]:checked + label::after {
  transform: rotate(45deg);
}
#faq .faq-item label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 2.5rem;
  transition: color 0.2s ease;
}
#faq .faq-item label:hover {
  color: var(--gold);
}
#faq .faq-item label::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
#faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0;
}
#faq .faq-item .faq-answer p {
  margin-bottom: 0.75rem;
}
#faq .faq-item .faq-answer ul {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}
#faq .faq-item .faq-answer ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
#faq .faq-item .faq-answer ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* =========================
   FAQ Contact / CTA Section
========================= */
.faq-contact {
  margin-top: 3rem;
  padding: 3rem 2rem;
  background: #f8f9fa;
  text-align: center;
  border-radius: 8px;
}
.faq-contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.faq-contact a:hover {
  text-decoration: underline;
}
.faq-contact .cta-button {
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
}
.faq-contact .cta-button:hover {
  text-decoration: none;
}
.faq-contact p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

/* =========================
   Responsive Adjustments
========================= */
/* Tablet & below */
@media (max-width: 1024px) {
  .page-faq .hero {
    padding: 0 4rem;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem !important; /* safe padding */
    min-height: 50vh !important; /* fixed height for consistency */
    max-height: 80vh; /* prevent runaway height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically center content */
    align-items: center;
    overflow: hidden;
  }
  .hero-media,
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* ensures proper scaling */
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-align: center;
    padding: 1rem;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.25;
    margin: 0.5rem 0;
  }
  .hero-subtext,
  .hero-stat {
    font-size: clamp(0.9rem, 4vw, 1rem) !important;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .hero-cta {
    font-size: 0.95rem !important;
    padding: 0.65rem 1.25rem !important;
  }
  #faq {
    padding: 3rem 0 4rem;
  }
  #faq .faq-item label {
    font-size: 1.1rem;
  }
  #faq .faq-answer {
    font-size: 0.95rem;
  }
  .faq-contact p {
    font-size: 0.9rem;
  }
}
/* Small mobile */
@media (max-width: 480px) {
  .page-faq .hero .hero-content h1 {
    font-size: 1.75rem;
  }
}
/* _prices.scss */
/* ==========================
   Pricing Section
=========================== */
#pricing {
  padding: 5rem 0;
  /* Always 3 columns on desktop */
}
#pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
#pricing .solution-lead {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}
#pricing .promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 0 auto;
  max-width: 1200px;
}
#pricing .promise-grid .promise-item {
  background: white;
  padding: 2.5rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.2s ease;
}
#pricing .promise-grid .promise-item:hover {
  transform: translateY(-4px);
}
#pricing .promise-grid .promise-item .icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
#pricing .promise-grid .promise-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
#pricing .promise-grid .promise-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
#pricing .promise-grid .promise-item strong {
  color: #333;
  font-weight: 600;
  display: block;
  margin-top: 0.75rem;
}
#pricing .final-cta {
  text-align: center;
  margin-top: 4rem;
}
#pricing .final-cta .cta-button {
  font-size: 1.2rem;
  padding: 1.25rem 3rem;
  color: #fff;
}
#pricing .final-cta p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #666;
}

/* ==========================
   Footer spacing consistency
=========================== */
.site-footer {
  padding: 2rem 2rem 1rem;
}

/* ==========================
   Responsive Adjustments
=========================== */
/* Tablet & below: stack pricing cards */
@media (max-width: 1024px) {
  .page-prices .hero .hero-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  #pricing .promise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Mobile adjustments */
@media (max-width: 768px) {
  #pricing {
    padding: 3rem 1rem;
  }
  .page-prices .hero {
    padding: 3rem 1rem;
  }
  .page-prices .hero .hero-content {
    padding: 2rem 1rem;
    text-align: center;
  }
  /* ✅ Final CTA mobile sizing (Option A) */
  #pricing .final-cta {
    margin-top: 2rem;
  }
  #pricing .final-cta .cta-button.large {
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
    border-radius: 10px;
  }
  #pricing .final-cta p {
    font-size: 0.95rem;
    margin-top: 0.75rem;
  }
}
/* ==========================
   Reduced Motion
=========================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 768px) {
  .page-prices #pricing .final-cta .cta-button {
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
    border-radius: 10px;
  }
  .page-prices #pricing .final-cta p {
    font-size: 0.95rem;
    margin-top: 0.75rem;
  }
  .hero {
    padding: 2rem 1rem !important; /* safe padding */
    min-height: 50vh !important; /* fixed height for consistency */
    max-height: 80vh; /* prevent runaway height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically center content */
    align-items: center;
    overflow: hidden;
  }
  .hero-media,
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* ensures proper scaling */
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-align: center;
    padding: 1rem;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.25;
    margin: 0.5rem 0;
  }
  .hero-subtext,
  .hero-stat {
    font-size: clamp(0.9rem, 4vw, 1rem) !important;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .hero-cta {
    font-size: 0.95rem !important;
    padding: 0.65rem 1.25rem !important;
  }
}
/* _book.scss */
/* ==========================
   Mobile Hero Adjustments
=========================== */
@media (max-width: 1024px) {
  .page-book .hero {
    padding: 0 5rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem !important; /* safe padding */
    min-height: 50vh !important; /* fixed height for consistency */
    max-height: 80vh; /* prevent runaway height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically center content */
    align-items: center;
    overflow: hidden;
  }
  .hero-media,
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* ensures proper scaling */
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-align: center;
    padding: 1rem;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.25;
    margin: 0.5rem 0;
  }
  .hero-subtext,
  .hero-stat {
    font-size: clamp(0.9rem, 4vw, 1rem) !important;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }
  .hero-cta {
    font-size: 0.95rem !important;
    padding: 0.65rem 1.25rem !important;
  }
}
/* ==========================
   Container for Form & Content
=========================== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

@media (max-width: 480px) {
  .container {
    padding: 3rem 1rem;
  }
}
/* ==========================
   Section Titles
=========================== */
section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* ==========================
   Book Form
=========================== */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.book-form label {
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}
.book-form input, .book-form select, .book-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border 0.2s;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none;
  border-color: var(--gold, #d4af37);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}
.book-form textarea {
  min-height: 120px;
  resize: vertical;
}
.book-form .cta-button {
  width: -moz-max-content;
  width: max-content;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--gold, #d4af37), var(--gold-dark, #b8860b));
  color: #fff;
  text-align: center;
}
.book-form .cta-button:hover {
  background: linear-gradient(135deg, var(--gold-dark, #b8860b), var(--gold, #d4af37));
}

@media (max-width: 768px) {
  .book-form {
    padding: 2rem;
  }
}
/* ==========================
   Contact Info Below Form
=========================== */
.contact-info {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}
.contact-info p {
  margin: 0.25rem 0;
}
.contact-info a {
  color: var(--gold, #d4af37);
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* ==========================
   Mobile-only gold link CTA
=========================== */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    background: none;
    color: var(--gold, #d4af37);
    text-decoration: underline;
    border-radius: 0;
    padding: 0;
    text-align: center;
  }
  /* Hide desktop CTA */
  .top-right {
    display: none;
  }
}
/* ==========================
   Footer
=========================== */
.site-footer {
  padding: 2rem 2rem 1rem;
}

/* ==========================
   Responsive Adjustments
=========================== */
@media (max-width: 768px) {
  .hero-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 3rem 1rem;
  }
}/*# sourceMappingURL=style.css.map */