/*
Theme Name:  Ohanapreneurs
Theme URI:   https://ohanapreneurs.com
Author:      Alex Aanderud / VitalSpark.ai for Sharon Otaguro
Author URI:  https://vitalspark.ai
Description: Custom WordPress theme for the Ohanapreneurs community — vetted, values-aligned fractional teams doing business in the spirit of Aloha. Warm editorial aesthetic with cream, charcoal, burnt orange, and gold branding.
Version:     1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License:     Private — all rights reserved
Text Domain: ohanapreneurs
Tags:        community, coaching, fractional, business, aloha, women-leadership, wellness
*/

/* ═══════════════════════════════════════════════════════════════════
   BRAND SYSTEM — CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════════════ */
:root {
  /* Core Palette */
  --cream:          #FAF6EF;
  --cream-dark:     #F3EDE1;
  --cream-deeper:   #EBE2D4;
  --white:          #FFFFFF;

  --charcoal:       #1A1A1A;
  --charcoal-mid:   #3D3D3D;
  --charcoal-light: #6B6B6B;
  --charcoal-ghost: #9A9A9A;
  --border:         #DDD5C8;
  --border-light:   #EDE5D8;

  --orange:         #C85A1A;
  --orange-dark:    #A84812;
  --orange-light:   #E8703A;
  --orange-pale:    #FAE8DF;

  --gold:           #F5C400;
  --gold-dark:      #D4A800;
  --gold-light:     #FFD740;
  --gold-pale:      #FFFBE6;

  /* Typography */
  --font-display:  'Cormorant Garant', Georgia, 'Times New Roman', serif;
  --font-body:     'Nunito', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-accent:   'Cormorant Garant', Georgia, serif;

  /* Spacing */
  --section-pad:    clamp(4rem, 8vw, 8rem);
  --container:      1200px;
  --container-wide: 1400px;
  --container-narrow: 760px;
  --radius:         6px;
  --radius-lg:      16px;

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --duration:       0.28s;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(26,26,26,0.08);
  --shadow-md:      0 6px 24px rgba(26,26,26,0.10);
  --shadow-lg:      0 16px 48px rgba(26,26,26,0.12);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--orange-dark); }

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY SYSTEM
   ═══════════════════════════════════════════════════════════════════ */

/* Display / Hero Headlines */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}

.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

/* Accent / Italic Emotional Headline — the burnt orange signature move */
.headline-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
  color: var(--charcoal-mid);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  border-left: 4px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.75rem;
  margin: 2rem 0;
  background: none;
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--wide   { max-width: var(--container-wide); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.section { padding: var(--section-pad) 0; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--cream); }
.section--gold   { background: var(--gold); }
.section--orange-pale { background: var(--orange-pale); }
.section--cream-dark { background: var(--cream-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 196, 0, 0.4);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 90, 26, 0.35);
}

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

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

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

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--duration) var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.site-logo__mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.site-logo__tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.primary-nav li { position: relative; }

.primary-nav a {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal-mid);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease);
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--orange);
  background: var(--orange-pale);
}

/* Dropdown */
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  list-style: none;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease);
  z-index: 100;
}
.primary-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .sub-menu a {
  border-radius: var(--radius);
  font-size: 0.85rem;
  padding: 0.5rem 0.875rem;
  white-space: nowrap;
  display: block;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid var(--border-light); }
.mobile-nav ul li a {
  display: block;
  padding: 0.875rem 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  text-decoration: none;
}
.mobile-nav .sub-menu { padding-left: 1rem; }
.mobile-nav .sub-menu a { font-size: 0.9rem; color: var(--charcoal-mid); }

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  padding: clamp(4rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,196,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200,90,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.hero__headline-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.35;
  display: block;
  margin-bottom: 1.75rem;
}

.hero__body {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--charcoal-mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__media {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-dark);
  box-shadow: var(--shadow-lg);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative card floating over the photo */
.hero__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.hero__badge-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.hero__badge-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-ghost);
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--charcoal-ghost);
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST BAR / MARQUEE
   ═══════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--charcoal);
  padding: 1rem 0;
  overflow: hidden;
}

.trust-bar__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.trust-bar__item {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  flex-shrink: 0;
}

.trust-bar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════
   VALUES SECTION
   ═══════════════════════════════════════════════════════════════════ */
.values-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.values-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: width var(--duration) var(--ease);
}

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

.value-card:hover::before {
  width: 8px;
}

.value-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.value-card__subtitle {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.875rem;
}

.value-card__body {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   WHO WE ARE SECTION (split image + content)
   ═══════════════════════════════════════════════════════════════════ */
.about-split {
  padding: var(--section-pad) 0;
}

.about-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
}

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

.about-split__deco {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.25;
}

.about-split__content {}
.about-split__content .eyebrow { margin-bottom: 0.75rem; }

.about-split__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--orange);
  border-left: 3px solid var(--gold);
  padding: 0.1rem 0 0.1rem 1.25rem;
  margin: 2rem 0;
  background: none;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICES / WHAT WE OFFER
   ═══════════════════════════════════════════════════════════════════ */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--cream-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card__body {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
  flex: 1;
  margin: 0 0 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
}

.testimonials-section .eyebrow { color: var(--gold); }
.testimonials-section h2 { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--cream);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: rgba(250,246,239,0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════════ */
.cta-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'ALOHA';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(0,0,0,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--charcoal-mid);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG / POSTS
   ═══════════════════════════════════════════════════════════════════ */
.blog-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.post-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

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

.post-card__thumbnail {
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}

.post-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.post-card:hover .post-card__thumbnail img {
  transform: scale(1.04);
}

.post-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
}

.post-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.post-card__date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-ghost);
}

.post-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--charcoal-ghost);
}

.post-card__read-time {
  font-size: 0.75rem;
  color: var(--charcoal-ghost);
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

.post-card__excerpt {
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1.5rem;
}

.post-card__link {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--duration) var(--ease);
}
.post-card__link:hover { gap: 0.7rem; color: var(--orange-dark); }
.post-card__link::after { content: '→'; }

/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST / PAGE LAYOUT
   ═══════════════════════════════════════════════════════════════════ */
.entry-header {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

.entry-header__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.entry-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  max-width: 860px;
}

.entry-header__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--charcoal-light);
}

.entry-header__author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.entry-header__author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  object-fit: cover;
}

.entry-header__author-name {
  font-weight: 700;
  color: var(--charcoal);
}

/* Featured Image */
.entry-featured-image {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
}

.entry-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content with Sidebar */
.entry-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0 6rem;
}

/* Entry Content Styles */
.entry-content {
  max-width: 720px;
}

.entry-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
}

.entry-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2rem 0 0.875rem;
}

.entry-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 1.5rem;
}

.entry-content a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
  margin: 1.25rem 0 1.5rem 1.5rem;
}

.entry-content li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal-mid);
  margin-bottom: 0.5rem;
}

.entry-content ul li::marker { color: var(--orange); }
.entry-content ol li::marker { color: var(--orange); font-weight: 700; }

.entry-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.entry-content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  border-left: 4px solid var(--gold);
  background: none;
  padding: 0.25rem 0 0.25rem 1.75rem;
  margin: 2rem 0;
}

.entry-content hr {
  border: none;
  border-top: 2px solid var(--border-light);
  margin: 3rem 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════════ */
.sidebar { position: sticky; top: 100px; }

.widget {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.widget:last-child { margin-bottom: 0; }

.widget-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.widget--highlight {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.widget ul { list-style: none; }
.widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--charcoal-mid); }
.widget ul li a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════════════
   AUTHOR BIO BOX
   ═══════════════════════════════════════════════════════════════════ */
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3rem;
}

.author-bio__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold);
  flex-shrink: 0;
}

.author-bio__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.author-bio__role {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.author-bio__text {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 0;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding: 0 1rem;
}

/* ═══════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--duration) var(--ease);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Form 7 overrides */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.2);
}

.wpcf7-form input[type="submit"] {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand__mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.footer-brand__desc {
  font-size: 0.875rem;
  color: rgba(250,246,239,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.75rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,239,0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(250,246,239,0.6);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(250,246,239,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(250,246,239,0.35);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════════════
   SPECIAL COMPONENTS
   ═══════════════════════════════════════════════════════════════════ */

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-ghost);
}

/* Podcast Banner */
.podcast-banner {
  background: var(--orange-pale);
  border: 1px solid rgba(200,90,26,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.podcast-banner__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.podcast-banner__icon {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.podcast-banner__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.podcast-banner__subtitle {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}

/* Membership Tiers */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.membership-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--border-light);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease);
}

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

.membership-card--featured {
  border-color: var(--gold);
  background: var(--gold-pale);
  position: relative;
}

.membership-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.membership-card__tier {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.membership-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.membership-card__desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.membership-card__benefits {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.membership-card__benefits li {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.membership-card__benefits li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   ARCHIVE PAGE
   ═══════════════════════════════════════════════════════════════════ */
.archive-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

.archive-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.archive-header p {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  margin: 0;
}

.archive-content {
  padding: 3rem 0 6rem;
}

/* Category filter pills */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.category-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--charcoal-mid);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}

.category-pill:hover,
.category-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════════ */
.error-404 {
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
}

.error-404__number {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 700;
  color: var(--border-light);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: -1rem;
}

.error-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.error-404__accent {
  font-style: italic;
  color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.no-scroll { overflow: hidden; }

.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 3rem 0;
}

.divider--gold {
  border-top: 3px solid var(--gold);
  max-width: 60px;
  margin: 1.5rem 0;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  background: var(--cream-dark);
  color: var(--charcoal-light);
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
}
.tag:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--charcoal); }

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  animation: fadeUp 0.6s var(--ease) forwards;
}

.animate-stagger > * {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards;
}
.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }
.animate-stagger > *:nth-child(7) { animation-delay: 0.7s; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner      { grid-template-columns: 1fr; }
  .hero__media      { display: none; }
  .hero__body       { max-width: 100%; }

  .about-split__inner { grid-template-columns: 1fr; }
  .about-split__image { display: none; }

  .entry-layout     { grid-template-columns: 1fr; }
  .sidebar          { display: none; }

  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .stats-row        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav      { display: none; }
  .header-cta       { display: none; }
  .nav-toggle       { display: flex; }

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

  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom    { flex-direction: column; text-align: center; }

  .podcast-banner   { flex-direction: column; }

  .hero__badge      { display: none; }

  .trust-bar__track { animation-duration: 20s; }
}

@media (max-width: 480px) {
  .btn-group        { flex-direction: column; align-items: flex-start; }
  .stats-row        { grid-template-columns: 1fr 1fr; }
  .membership-card--featured::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   WIDE & FULL ALIGNMENT — required for Gutenberg align-wide/full
   ═══════════════════════════════════════════════════════════════════ */

/* The page/post content wrapper must allow overflow */
.entry-content,
.wp-block-post-content,
main > .container {
  overflow: visible;
}

/* Full-width blocks break out of the container entirely */
.alignfull,
.wp-block-cover.alignfull,
.wp-block-group.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Wide blocks extend beyond the content column */
.alignwide,
.wp-block-cover.alignwide,
.wp-block-group.alignwide {
  width: calc(100% + 6rem);
  max-width: calc(100% + 6rem);
  margin-left: -3rem;
  margin-right: -3rem;
}

/* ── Block editor colour classes (from registered palette) ── */
.has-cream-background-color          { background-color: #FAF6EF !important; }
.has-charcoal-background-color       { background-color: #1A1A1A !important; }
.has-orange-background-color         { background-color: #C85A1A !important; }
.has-gold-background-color           { background-color: #F5C400 !important; }
.has-white-background-color          { background-color: #FFFFFF !important; }
.has-cream-dark-background-color     { background-color: #F3EDE1 !important; }
.has-charcoal-mid-background-color   { background-color: #3D3D3D !important; }

.has-cream-color                     { color: #FAF6EF !important; }
.has-charcoal-color                  { color: #1A1A1A !important; }
.has-orange-color                    { color: #C85A1A !important; }
.has-gold-color                      { color: #F5C400 !important; }
.has-white-color                     { color: #FFFFFF !important; }
.has-cream-dark-color                { color: #F3EDE1 !important; }
.has-charcoal-mid-color              { color: #3D3D3D !important; }

/* ── wp:cover fix — ensure inner container is centred ── */
.wp-block-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
  z-index: 1;
}

/* ── wp:columns — responsive stacking ── */
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.wp-block-column {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column;
  }
  .wp-block-column {
    flex: 1 1 100%;
  }
  .alignwide {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── wp:group — constrained layout max-width ── */
.wp-block-group.is-layout-constrained > * {
  max-width: var(--container, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── wp:buttons ── */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.28s ease;
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
}

/* ── wp:separator ── */
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2rem 0;
}

/* ── wp:quote — override WP defaults ── */
.wp-block-quote {
  margin: 2rem 0;
  padding: 0.1rem 0 0.1rem 1.25rem;
  border-left: 3px solid #F5C400;
  background: none;
  font-style: italic;
}

.wp-block-quote p {
  font-family: 'Cormorant Garant', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #C85A1A;
  line-height: 1.6;
  margin: 0;
}

/* ── wp:image ── */
.wp-block-image img {
  border-radius: inherit;
}

.wp-block-image.aligncenter {
  text-align: center;
}

/* ── Responsive embeds (podcast players, YouTube, etc.) ── */
.wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── wp:spacer ── */
.wp-block-spacer {
  display: block;
}

/* ── Code Editor toggle — don't hide the HTML editor ── */
.editor-post-switch-to-draft,
.block-editor-writing-flow {
  outline: none;
}

/* ═══════════════════════════════════════════════════════════════════
   FULL-WIDTH BLOCK PAGES
   Let blocks control their own width — no wrapping container on pages
   ═══════════════════════════════════════════════════════════════════ */

/* Remove any max-width restriction from the main content area */
#main-content {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Page content — full width, no padding, blocks handle their own spacing */
.page #main-content,
.home #main-content,
.front-page #main-content {
  width: 100%;
  max-width: 100%;
}

/* Block groups and covers go edge to edge */
.wp-block-group,
.wp-block-cover {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Constrained inner content inside blocks */
.wp-block-group.is-layout-constrained > *:not(.alignwide):not(.alignfull) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

/* Full-bleed sections with no side padding */
.wp-block-cover.alignfull,
.wp-block-group.alignfull {
  padding-left: 0;
  padding-right: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOCK LAYOUT FIX — FINAL OVERRIDE
   Undoes all conflicting block CSS and lets WordPress handle layout.
   This section must stay at the very bottom of style.css.
   ═══════════════════════════════════════════════════════════════════ */

/* 1. Main content area — truly full width, no constraints at all */
#main-content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
}

/* 2. Body and html — no accidental overflow */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* 3. Stop wp-block-cover from collapsing — reset display so WP handles it */
.wp-block-cover {
  display: flex !important;
  position: relative !important;
  align-items: center !important;
  min-height: 430px;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
}

/* 4. Inner container of cover block must have full width */
.wp-block-cover__inner-container {
  width: 100% !important;
  max-width: 100% !important;
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
  overflow: visible !important;
}

/* 5. Group blocks — full width */
.wp-block-group {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
}

/* 6. Columns must not collapse */
.wp-block-columns {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100% !important;
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
}

.wp-block-column {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  word-break: normal !important;
  writing-mode: horizontal-tb !important;
}

/* 7. Prevent constrained layout from strangling children */
.is-layout-constrained > * {
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
}

/* 8. Buttons stay inline */
.wp-block-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 1rem !important;
  writing-mode: horizontal-tb !important;
}

/* 9. All text elements — horizontal only */
p, h1, h2, h3, h4, h5, h6, span, a, li, blockquote {
  writing-mode: horizontal-tb;
  word-break: normal;
  overflow-wrap: break-word;
}

/* 10. Remove the constrained layout padding override that was
       applying padding to ALL children and breaking widths */
.wp-block-group.is-layout-constrained > * {
  max-width: none;
  margin-left: unset;
  margin-right: unset;
  padding-left: unset;
  padding-right: unset;
}

/* 11. Mobile — stack columns */
@media (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column !important;
  }
  .wp-block-column {
    width: 100% !important;
    flex: 1 1 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   2026 VISUAL SYSTEM — GRADIENTS, ANIMATIONS, EFFECTS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Gradient Mesh Variables ───────────────────────────────────────── */
:root {
  --glow-gold:   radial-gradient(ellipse 60% 50% at 70% 20%, rgba(245,196,0,0.18) 0%, transparent 70%);
  --glow-orange: radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200,90,26,0.12) 0%, transparent 70%);
  --glow-warm:   radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,196,0,0.08) 0%, transparent 100%);
  --noise: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}


/* ── SCROLL ANIMATIONS ─────────────────────────────────────────────── */
.ohana-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.ohana-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.ohana-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.ohana-reveal-left.revealed { opacity: 1; transform: translateX(0); }

.ohana-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.ohana-reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* Staggered children */
.ohana-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.ohana-stagger.revealed > *:nth-child(1)  { opacity:1; transform:none; transition-delay: 0.05s; }
.ohana-stagger.revealed > *:nth-child(2)  { opacity:1; transform:none; transition-delay: 0.12s; }
.ohana-stagger.revealed > *:nth-child(3)  { opacity:1; transform:none; transition-delay: 0.19s; }
.ohana-stagger.revealed > *:nth-child(4)  { opacity:1; transform:none; transition-delay: 0.26s; }
.ohana-stagger.revealed > *:nth-child(5)  { opacity:1; transform:none; transition-delay: 0.33s; }
.ohana-stagger.revealed > *:nth-child(6)  { opacity:1; transform:none; transition-delay: 0.40s; }
.ohana-stagger.revealed > *:nth-child(7)  { opacity:1; transform:none; transition-delay: 0.47s; }


/* ── HERO GRADIENT MESH ────────────────────────────────────────────── */
.wp-block-cover,
.hero {
  position: relative;
}

/* Warm golden glow behind hero content */
.wp-block-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glow-gold), var(--glow-orange);
  pointer-events: none;
  z-index: 0;
}
.wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
}

/* Noise texture layer for depth */
.wp-block-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}


/* ── GRADIENT TEXT ─────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #C85A1A 0%, #F5C400 60%, #C85A1A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Auto-apply gradient to the orange italic accent lines */
.wp-block-cover em,
.wp-block-cover p[style*="font-style:italic"][style*="color:#C85A1A"],
.wp-block-cover p[style*="italic"][style*="C85A1A"] {
  background: linear-gradient(120deg, #C85A1A 0%, #E8A040 50%, #C85A1A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
}


/* ── BUTTONS — SHIMMER & LIFT ──────────────────────────────────────── */
.wp-block-button__link {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              background-color 0.25s ease !important;
}

/* Gold button shimmer sweep */
.wp-block-button__link[style*="background:#F5C400"],
.wp-block-button__link[style*="background-color:#F5C400"],
.wp-block-button__link[style*="background: #F5C400"] {
  box-shadow: 0 2px 12px rgba(245,196,0,0.3);
}
.wp-block-button__link[style*="background:#F5C400"]::before,
.wp-block-button__link[style*="background-color:#F5C400"]::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transition: left 0.5s ease;
  pointer-events: none;
}
.wp-block-button__link[style*="background:#F5C400"]:hover::before,
.wp-block-button__link[style*="background-color:#F5C400"]:hover::before {
  left: 100%;
}
.wp-block-button__link[style*="background:#F5C400"]:hover,
.wp-block-button__link[style*="background-color:#F5C400"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(245,196,0,0.45) !important;
}

/* Orange button */
.wp-block-button__link[style*="background:#C85A1A"]:hover,
.wp-block-button__link[style*="background-color:#C85A1A"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(200,90,26,0.4) !important;
}

/* Outline button hover fill */
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(26,26,26,0.12) !important;
}


/* ── CARDS — GLASSMORPHISM & HOVER LIFT ───────────────────────────── */
.wp-block-group[style*="background:#FFFFFF"],
.wp-block-group[style*="background: #FFFFFF"],
.wp-block-group[style*="background-color:#FFFFFF"],
.wp-block-group[style*="background:#FAF6EF"],
.wp-block-group[style*="background: #FAF6EF"] {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease !important;
}

/* Cards inside columns lift on hover */
.wp-block-column .wp-block-group:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(26,26,26,0.1) !important;
}

/* Value cards — gold shimmer border on hover */
.wp-block-column .wp-block-group[style*="border-left: 4px solid #F5C400"]:hover,
.wp-block-column .wp-block-group[style*="border-left:4px solid #F5C400"]:hover {
  box-shadow: 0 20px 50px rgba(245,196,0,0.15),
              0 0 0 1px rgba(245,196,0,0.3) !important;
}


/* ── HEADER — BLUR GLASSMORPHISM ON SCROLL ────────────────────────── */
.site-header.scrolled {
  background: rgba(250,246,239,0.85) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(26,26,26,0.06), 0 8px 32px rgba(26,26,26,0.06);
}


/* ── MARQUEE / TRUST BAR POLISH ───────────────────────────────────── */
.wp-block-group[style*="background:#1A1A1A"] p,
.wp-block-group[style*="background: #1A1A1A"] p {
  background: linear-gradient(90deg,
    rgba(250,246,239,0.4) 0%,
    rgba(250,246,239,0.7) 30%,
    rgba(245,196,0,0.8) 50%,
    rgba(250,246,239,0.7) 70%,
    rgba(250,246,239,0.4) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: marquee-shimmer 6s linear infinite;
}

@keyframes marquee-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: 0% center; }
}


/* ── STAT NUMBERS — GLOW ON SCROLL ────────────────────────────────── */
.wp-block-column h3 {
  transition: color 0.4s ease;
}
.wp-block-column:hover h3 {
  color: #C85A1A;
}


/* ── BLOCKQUOTE — GRADIENT ACCENT LINE ────────────────────────────── */
.wp-block-quote {
  border-image: linear-gradient(180deg, #F5C400 0%, #C85A1A 100%) 1 !important;
  position: relative;
}


/* ── IMAGE BLOCKS — WARM OVERLAY ON HOVER ─────────────────────────── */
.wp-block-image {
  overflow: hidden;
  border-radius: 16px;
  transition: box-shadow 0.4s ease;
}
.wp-block-image:hover {
  box-shadow: 0 24px 60px rgba(200,90,26,0.15);
}
.wp-block-image img {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.wp-block-image:hover img {
  transform: scale(1.03);
}


/* ── SECTION TRANSITIONS — WAVE DIVIDERS ──────────────────────────── */
.ohana-wave-top {
  position: relative;
  margin-top: -2px;
}
.ohana-wave-top::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0; right: 0;
  height: 40px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
}


/* ── FLOATING ORBS — decorative background elements ───────────────── */
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -15px) scale(1.05); }
  66%       { transform: translate(-15px, 10px) scale(0.96); }
}
@keyframes float-orb-slow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%       { transform: translate(-25px, 20px) scale(1.08); opacity: 0.8; }
}

.ohana-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float-orb 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.ohana-orb-gold {
  background: radial-gradient(circle, rgba(245,196,0,0.3) 0%, transparent 70%);
  animation-name: float-orb;
}
.ohana-orb-orange {
  background: radial-gradient(circle, rgba(200,90,26,0.2) 0%, transparent 70%);
  animation-name: float-orb-slow;
  animation-duration: 11s;
}


/* ── HEADLINE ANIMATION — hero h1 word-by-word ────────────────────── */
@keyframes word-up {
  0%   { opacity: 0; transform: translateY(30px) rotateX(-15deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); }
}

.ohana-animate-headline .word {
  display: inline-block;
  opacity: 0;
  animation: word-up 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}


/* ── LINK HOVER — animated underline ──────────────────────────────── */
.entry-content a,
.wp-block-navigation a {
  position: relative;
  text-decoration: none;
}
.entry-content a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C85A1A;
  transition: width 0.3s ease;
}
.entry-content a:hover::after { width: 100%; }


/* ── FOCUS / ACCESSIBILITY ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #F5C400;
  outline-offset: 3px;
  border-radius: 4px;
}


/* ── SMOOTH PAGE ENTRY ─────────────────────────────────────────────── */
@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

body {
  animation: page-in 0.5s ease forwards;
}


/* ── CURSOR GLOW (desktop) ─────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}
@media (hover: none) {
  .cursor-glow { display: none; }
}


/* ── GOLD SEPARATOR PULSE ──────────────────────────────────────────── */
@keyframes sep-pulse {
  0%, 100% { width: 48px; opacity: 1; }
  50%       { width: 80px; opacity: 0.6; }
}
.ohana-sep {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #F5C400, #C85A1A);
  border-radius: 3px;
  animation: sep-pulse 3s ease-in-out infinite;
  margin: 1.25rem 0;
}


/* ── STAT COUNTER ANIMATION ────────────────────────────────────────── */
@keyframes count-up-glow {
  0%   { text-shadow: none; }
  50%  { text-shadow: 0 0 30px rgba(245,196,0,0.4); }
  100% { text-shadow: none; }
}
.ohana-stat-counting {
  animation: count-up-glow 0.8s ease;
}


/* ── DARK SECTION POLISH ───────────────────────────────────────────── */
.wp-block-cover[style*="background:#1A1A1A"],
.wp-block-cover[style*="background: #1A1A1A"],
.wp-block-group[style*="background:#1A1A1A"],
.wp-block-group[style*="background: #1A1A1A"] {
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245,196,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,90,26,0.06) 0%, transparent 60%) !important;
  background-color: #1A1A1A;
}


/* ── GOLD SECTION POLISH ───────────────────────────────────────────── */
.wp-block-cover[style*="background:#F5C400"],
.wp-block-cover[style*="background: #F5C400"] {
  background-image:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(255,255,255,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(200,90,26,0.12) 0%, transparent 60%) !important;
  background-color: #F5C400;
}


/* ── ORANGE PALE SECTION POLISH ───────────────────────────────────── */
.wp-block-group[style*="background:#FAE8DF"],
.wp-block-cover[style*="background:#FAE8DF"] {
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245,196,0,0.1) 0%, transparent 70%) !important;
  background-color: #FAE8DF;
}

