/* ==========================================================================
   Break Thru Your Health — Global Stylesheet
   Clean & Modern Design System

   HOW TO USE IN WORDPRESS:
   Option A: Paste into Appearance > Customize > Additional CSS
   Option B: Add to child theme's style.css
   Option C: Enqueue via functions.php in a child theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-primary: #0D7377;        /* Deep teal — trust, health */
  --color-primary-dark: #095455;
  --color-primary-light: #E8F5F5;
  --color-accent: #D4956A;         /* Warm coral/gold — warmth, energy */
  --color-accent-dark: #B87A52;
  --color-accent-light: #FDF3EC;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-bg: #FAFBFC;
  --color-bg-alt: #F3F5F7;
  --color-border: #E2E6EA;
  --color-text: #2D3436;
  --color-text-light: #636E72;
  --color-text-lighter: #949EA3;

  /* Status */
  --color-success: #27AE60;
  --color-warning: #F39C12;
  --color-error: #E74C3C;

  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --leading-tight: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
.btyh *,
.btyh *::before,
.btyh *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.btyh {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btyh img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btyh a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.btyh h1, .btyh h2, .btyh h3, .btyh h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: var(--leading-tight);
}

.btyh h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.btyh h2 {
  font-size: var(--text-3xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.btyh h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.btyh h4 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.btyh p {
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
}

.btyh .lead {
  font-size: var(--text-xl);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}

.btyh .overline {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   4. Layout Components
   -------------------------------------------------------------------------- */
.btyh .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.btyh .container--narrow {
  max-width: var(--max-width-narrow);
}

.btyh .section {
  padding: var(--space-4xl) 0;
}

.btyh .section--bg {
  background: var(--color-bg-alt);
}

.btyh .section--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btyh .section--primary h2,
.btyh .section--primary h3 {
  color: var(--color-white);
}

.btyh .section--primary .lead {
  color: rgba(255, 255, 255, 0.85);
}

.btyh .section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.btyh .grid {
  display: grid;
  gap: var(--space-xl);
}

.btyh .grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.btyh .grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.btyh .grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.btyh .flex {
  display: flex;
  gap: var(--space-xl);
}

.btyh .flex--center {
  align-items: center;
}

.btyh .flex--between {
  justify-content: space-between;
}

.btyh .text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   5a. Site Header & Navigation
   -------------------------------------------------------------------------- */
.btyh .site-header {
  background: linear-gradient(135deg, #0B2027 0%, #0D3B3F 100%);
  padding: var(--space-lg) 0;
}

.btyh .site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btyh .site-header__logo img {
  height: 60px;
  width: auto;
}

.btyh .site-header__cta .btn {
  border-radius: var(--radius-full);
}

.btyh .site-nav {
  background: var(--color-primary-dark);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btyh .site-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.btyh .site-nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-sm) var(--space-lg);
  transition: all var(--transition);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.btyh .site-nav__link:hover,
.btyh .site-nav__link--active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.btyh .site-nav__dropdown {
  position: relative;
}

.btyh .site-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: var(--space-sm) 0;
  z-index: 200;
}

.btyh .site-nav__dropdown:hover .site-nav__dropdown-menu {
  display: block;
}

.btyh .site-nav__dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: background var(--transition);
}

.btyh .site-nav__dropdown-menu a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   5b. Social Proof / Stat Strip
   -------------------------------------------------------------------------- */
.btyh .stat-strip {
  background: var(--color-primary);
  padding: var(--space-lg) 0;
  border-bottom: 3px solid var(--color-accent);
}

.btyh .stat-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.btyh .stat-strip__item {
  text-align: center;
  color: var(--color-white);
}

.btyh .stat-strip__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.btyh .stat-strip__label {
  font-size: var(--text-sm);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   5c. Hero Component
   -------------------------------------------------------------------------- */
.btyh .hero {
  padding: var(--space-4xl) 0;
  text-align: center;
  background: linear-gradient(160deg, #0B2027 0%, var(--color-primary-dark) 40%, var(--color-primary) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.btyh .hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 149, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.btyh .hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 115, 119, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.btyh .hero--large {
  padding: 5rem 0;
}

.btyh .hero h1 {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.btyh .hero p {
  position: relative;
  z-index: 1;
}

.btyh .hero .lead {
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  color: rgba(255, 255, 255, 0.9);
}

.btyh .hero .btn {
  position: relative;
  z-index: 1;
}

.btyh .hero .btn--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

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

/* --------------------------------------------------------------------------
   6. Card Component
   -------------------------------------------------------------------------- */
.btyh .card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.btyh .card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btyh .card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: var(--text-2xl);
}

.btyh .card__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.btyh .card__text {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.btyh .card--link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.btyh .card--link:hover {
  color: inherit;
}

/* --------------------------------------------------------------------------
   7. Testimonial Component
   -------------------------------------------------------------------------- */
.btyh .testimonial {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
  position: relative;
}

.btyh .testimonial::before {
  content: "\201C";
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--color-primary-light);
  position: absolute;
  top: var(--space-md);
  left: var(--space-xl);
  line-height: 1;
}

.btyh .testimonial__body {
  padding-top: var(--space-xl);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
}

.btyh .testimonial__body p {
  margin-bottom: var(--space-md);
}

.btyh .testimonial__attribution {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-weight: 600;
  color: var(--color-primary);
}

.btyh .testimonial__condition {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* Compact testimonial (for homepage previews) */
.btyh .testimonial--compact {
  padding: var(--space-xl);
}

.btyh .testimonial--compact .testimonial__body {
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   8. FAQ / Accordion Component
   -------------------------------------------------------------------------- */
.btyh .faq {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.btyh .faq__item {
  border-bottom: 1px solid var(--color-border);
}

.btyh .faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-lg);
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
}

.btyh .faq__question:hover {
  color: var(--color-primary);
}

.btyh .faq__question::after {
  content: "+";
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.btyh .faq__item.is-open .faq__question::after {
  transform: rotate(45deg);
}

.btyh .faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.btyh .faq__item.is-open .faq__answer {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.btyh .faq__answer p {
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------------------------
   9. Button Component
   -------------------------------------------------------------------------- */
.btyh .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btyh .btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btyh .btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btyh .btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btyh .btn--accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

.btyh .btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btyh .btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btyh .btn--white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btyh .btn--white:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.btyh .btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-lg);
}

.btyh .btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   10. Feature List Component
   -------------------------------------------------------------------------- */
.btyh .feature-list {
  list-style: none;
  padding: 0;
}

.btyh .feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
}

.btyh .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. Reference / Citation Card
   -------------------------------------------------------------------------- */
.btyh .reference {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.btyh .reference__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-md);
  display: block;
  border: 3px solid var(--color-primary-light);
}

.btyh .reference__name {
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.btyh .reference__title {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.btyh .reference__body {
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  text-align: left;
}

/* --------------------------------------------------------------------------
   12. Video Embed Component
   -------------------------------------------------------------------------- */
.btyh .video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
}

.btyh .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   13. Disclaimer Component
   -------------------------------------------------------------------------- */
.btyh .disclaimer {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  margin: var(--space-2xl) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}

.btyh .disclaimer strong {
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   14. Placeholder Block (for missing content)
   -------------------------------------------------------------------------- */
.btyh .placeholder {
  background: repeating-linear-gradient(
    -45deg,
    #FFF8E1,
    #FFF8E1 10px,
    #FFFDE7 10px,
    #FFFDE7 20px
  );
  border: 2px dashed var(--color-warning);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--color-warning);
  font-weight: 600;
  margin: var(--space-xl) 0;
}

.btyh .placeholder::before {
  content: "⚠ CONTENT NEEDED";
  display: block;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   15. Split Layout (image + text side by side)
   -------------------------------------------------------------------------- */
.btyh .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.btyh .split--reverse {
  direction: rtl;
}

.btyh .split--reverse > * {
  direction: ltr;
}

.btyh .split__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.btyh .split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   16. Page Header Component
   -------------------------------------------------------------------------- */
.btyh .page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.btyh .page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.btyh .page-header .lead {
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   17. Site Footer
   -------------------------------------------------------------------------- */
.btyh .site-footer {
  background: linear-gradient(135deg, #0B2027 0%, #0D3B3F 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.btyh .site-footer h4 {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.btyh .site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.btyh .site-footer__brand p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, 0.6);
}

.btyh .site-footer__logo {
  height: 45px;
  width: auto;
}

.btyh .site-footer__links {
  display: flex;
  flex-direction: column;
}

.btyh .site-footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
  transition: color var(--transition);
  text-decoration: none;
}

.btyh .site-footer__links a:hover {
  color: var(--color-accent);
}

.btyh .site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  text-align: center;
}

.btyh .site-footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-sm);
}

.btyh .site-footer__disclaimer {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   18. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .btyh .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .btyh .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .btyh .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .btyh .stat-strip .container {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
  }

  .btyh .container {
    padding: 0 var(--space-md);
  }

  .btyh .section {
    padding: var(--space-3xl) 0;
  }

  .btyh .hero--large {
    padding: var(--space-3xl) 0;
  }

  .btyh .grid--2,
  .btyh .grid--3,
  .btyh .grid--4 {
    grid-template-columns: 1fr;
  }

  .btyh .split {
    grid-template-columns: 1fr;
  }

  .btyh .split--reverse {
    direction: ltr;
  }

  .btyh .flex {
    flex-direction: column;
  }

  /* Header responsive */
  .btyh .site-header {
    padding: var(--space-md) 0;
  }
  .btyh .site-header__logo img {
    height: 45px;
  }
  .btyh .site-nav .container {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .btyh .site-nav__link {
    white-space: nowrap;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-xs);
  }

  /* Stat strip responsive */
  .btyh .stat-strip .container {
    gap: var(--space-lg);
  }
  .btyh .stat-strip__number {
    font-size: var(--text-2xl);
  }
  .btyh .stat-strip__label {
    font-size: var(--text-xs);
  }

  /* Footer responsive */
  .btyh .site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  :root {
    --text-5xl: 1.875rem;
    --text-4xl: 1.5rem;
    --text-3xl: 1.25rem;
  }

  .btyh .btn--lg {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   18. Utility Classes
   -------------------------------------------------------------------------- */
.btyh .mt-0 { margin-top: 0; }
.btyh .mt-md { margin-top: var(--space-md); }
.btyh .mt-lg { margin-top: var(--space-lg); }
.btyh .mt-xl { margin-top: var(--space-xl); }
.btyh .mt-2xl { margin-top: var(--space-2xl); }

.btyh .mb-0 { margin-bottom: 0; }
.btyh .mb-md { margin-bottom: var(--space-md); }
.btyh .mb-lg { margin-bottom: var(--space-lg); }
.btyh .mb-xl { margin-bottom: var(--space-xl); }
.btyh .mb-2xl { margin-bottom: var(--space-2xl); }

/* --------------------------------------------------------------------------
   19. FAQ JavaScript (inline, add to page or child theme)
   -------------------------------------------------------------------------- */
/*
  Add this script to the page or child theme footer:

  <script>
  document.querySelectorAll('.btyh .faq__question').forEach(function(btn) {
    btn.addEventListener('click', function() {
      this.closest('.faq__item').classList.toggle('is-open');
    });
  });
  </script>
*/
