/* ============================================================
   INNER SUNSHINE THERAPIES — GLOBAL STYLESHEET
   ============================================================ */

/* --- Reset & CSS Variables --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FAF7F2;
  --cream-dark: #EDE8DE;
  --gold: #C9953C;
  --gold-light: #E8C36A;
  --gold-pale: #F5E6C8;
  --gold-dark: #A67B2E;
  --charcoal: #2A2218;
  --sage: #6B8F6B;
  --sage-light: #8FB88F;
  --sage-pale: #E8F0E8;
  --plum: #3E2D3A;
  --plum-mid: #4E3D4A;
  --plum-light: #6E5566;
  --text-primary: #2A2218;
  --text-secondary: #6B6055;
  --text-light: #9B8E7F;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', Helvetica Neue, sans-serif;

  --shadow-sm: 0 2px 8px rgba(42,34,24,.08);
  --shadow-md: 0 4px 24px rgba(42,34,24,.12);
  --shadow-lg: 0 8px 48px rgba(42,34,24,.18);
  --t: .3s cubic-bezier(.4,0,.2,1);
  --t-slow: .6s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; display: block; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.25rem; }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .6rem;
}
.subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* --- Layout --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.9rem;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,149,60,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,149,60,.42); color: var(--white); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  padding: 1.6rem 0;
  transition: all var(--t-slow);
}
.navbar.scrolled {
  padding: .75rem 0;
  background: rgba(250,247,242,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 24px rgba(42,34,24,.07);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo-sun {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--t-slow);
}
.navbar.scrolled .logo-text .name { color: var(--charcoal); }
.logo-text .tagline {
  font-family: var(--font-body);
  font-size: .56rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
  transition: color var(--t-slow);
}
.navbar.scrolled .logo-text .tagline { color: var(--text-light); }

/* Nav links */
.nav-links { display: flex; gap: 2.4rem; }
.nav-link {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-slow);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.navbar.scrolled .nav-link { color: var(--charcoal); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--gold); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all var(--t);
}
.navbar.scrolled .nav-hamburger span { background: var(--charcoal); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, var(--plum) 0%, #5A4555 45%, #362B34 100%);
}
/* Radiant light orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,149,60,.22) 0%, transparent 68%);
  top: -180px; right: -180px;
  animation: breathe 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,149,60,.14) 0%, transparent 68%);
  bottom: -100px; left: -80px;
  animation: breathe 11s ease-in-out infinite 2s;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(232,195,106,.1) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: breathe 7s ease-in-out infinite 1s;
}
@keyframes breathe {
  0%,100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.18); opacity: 1; }
}

/* Decorative crystal SVGs */
.hero-deco { position: absolute; pointer-events: none; opacity: .055; }

.hero-content { position: relative; z-index: 2; width: 100%; padding: 10rem 0 6rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero text */
.hero-text .section-label { color: var(--gold-light); margin-bottom: 1rem; }
.hero-text h1 { color: var(--white); font-weight: 300; line-height: 1.12; margin-bottom: 1.5rem; }
.hero-text h1 em { font-style: italic; color: var(--gold-light); }
.hero-text p { color: rgba(255,255,255,.68); font-size: .98rem; line-height: 1.9; max-width: 540px; margin-bottom: 2rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1E1410; font-weight: 700; box-shadow: 0 4px 22px rgba(201,149,60,.4); }
.btn-hero:hover { color: #1E1410; box-shadow: 0 7px 32px rgba(201,149,60,.52); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white); }

/* Hero feature card */
.hero-visual { display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  padding: 2.4rem;
  max-width: 380px;
  width: 100%;
  animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.card-emoji { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.hero-card h3 { color: var(--white); font-size: 1.55rem; margin-bottom: .7rem; }
.hero-card p { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.75; margin-bottom: 1.1rem; }
.hero-card .price { color: var(--gold-light); font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.hero-card .price span { font-size: .8rem; color: rgba(255,255,255,.42); font-family: var(--font-body); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: 9.5rem 0 4.5rem;
  background: linear-gradient(150deg, var(--plum) 0%, #5A4555 55%, #362B34 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero-orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,60,.18) 0%, transparent 68%);
  top: -220px; left: 50%; transform: translateX(-50%);
  animation: breathe 9s ease-in-out infinite;
  pointer-events: none;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--white); font-weight: 300; margin-bottom: .4rem; position: relative; z-index:1; }
.page-hero .subtitle { color: rgba(255,255,255,.55); font-size: 1.1rem; position: relative; z-index:1; }

/* Enhanced page hero with image */
.page-hero-enhanced { text-align: left; padding: 8rem 0 5rem; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.page-hero-text { position: relative; z-index: 1; }
.page-hero-image {
  position: relative;
  z-index: 1;
}
.hero-profile-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .page-hero-enhanced { text-align: center; }
}

/* ============================================================
   ABOUT / INTRO
   ============================================================ */
.intro-section { padding: 6rem 0; background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.intro-visual { position: relative; }
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--cream-dark), #E0DAD0);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .8rem;
  color: var(--text-light);
}
.img-placeholder .ph-icon { font-size: 2.8rem; opacity: .38; }
.img-placeholder .ph-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }

.profile-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-md);
}

/* Floating badge */
.intro-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .7rem;
  max-width: 230px;
}
.badge-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, var(--gold-pale), #F0D8A0);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.badge-text { line-height: 1.45; }
.badge-text strong { display: block; font-size: .8rem; color: var(--charcoal); }
.badge-text span { font-size: .7rem; color: var(--text-secondary); }

/* Intro text */
.intro-text h2 { margin-bottom: .7rem; }
.intro-text p { color: var(--text-secondary); font-size: .92rem; line-height: 1.9; margin-bottom: .9rem; }
.intro-text p strong { color: var(--charcoal); }

.values-list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: .6rem; }
.values-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .87rem; color: var(--text-secondary); }
.values-list .check {
  width: 21px; height: 21px; min-width: 21px;
  background: linear-gradient(135deg, var(--sage-pale), #D4ECD4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage); font-size: .68rem;
  margin-top: 1px;
}

/* ============================================================
   SERVICES PREVIEW (HOME)
   ============================================================ */
.services-preview { padding: 6rem 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .3rem; }
.section-divider { width: 52px; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: .9rem auto; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }

.svc-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.svc-card.featured { border: 1px solid var(--gold-pale); background: linear-gradient(180deg, #FFFDF7 0%, var(--white) 100%); }
.svc-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 50px;
  margin-bottom: .9rem;
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: .9rem;
}
.ico-gold { background: linear-gradient(135deg, var(--gold-pale), #FFF0D8); }
.ico-sage { background: linear-gradient(135deg, var(--sage-pale), #DDE9DD); }
.ico-plum { background: linear-gradient(135deg, #F2E8ED, #E5D5DE); }

.svc-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.svc-card p { color: var(--text-secondary); font-size: .85rem; line-height: 1.75; margin-bottom: 1rem; flex-grow: 1; }
.card-link {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap var(--t);
  margin-top: auto;
}
.card-link:hover { gap: .6rem; color: var(--gold); }

/* ============================================================
   ANIMAL COMMUNICATION FEATURE (SERVICES PAGE)
   ============================================================ */
.ac-feature {
  background: linear-gradient(150deg, var(--plum) 0%, #3E2D3A 100%);
  padding: 5.5rem 0;
  position: relative; overflow: hidden;
}
.ac-orb {
  position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,60,.11) 0%, transparent 68%);
  bottom: -200px; left: -100px;
  animation: breathe 11s ease-in-out infinite;
  pointer-events: none;
}
.ac-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: start;
  position: relative; z-index: 1;
}

.ac-text .section-label { color: var(--gold-light); }
.ac-text h2 { color: var(--white); font-weight: 300; margin-bottom: .8rem; }
.ac-text > p { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.9; margin-bottom: 1rem; }

.ac-label {
  color: rgba(255,255,255,.7);
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  margin: 1.6rem 0 .6rem;
}
.ac-helps {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: .45rem;
  margin-bottom: 1.8rem;
}
.ac-helps li {
  color: rgba(255,255,255,.58);
  font-size: .8rem;
  display: flex; align-items: center; gap: .45rem;
}
.ac-helps li::before { content: '✦'; color: var(--gold-light); font-size: .55rem; }

/* ac-helps on light backgrounds (standalone pages) */
:not(.ac-feature) > .container-narrow .ac-helps li { color: var(--text-secondary); }
:not(.ac-feature) > .container-narrow .ac-helps li::before { color: var(--gold); }

/* Session cards */
.sessions { display: flex; flex-direction: column; gap: .75rem; padding-top: 1.8rem; }
.sessions-title {
  color: rgba(255,255,255,.75);
  font-family: var(--font-body);
  font-size: .66rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  margin-bottom: .2rem;
}
.sess-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  transition: all var(--t);
}
.sess-card:hover { background: rgba(255,255,255,.1); border-color: rgba(201,149,60,.35); }
.sess-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .3rem; }
.sess-card h4 { color: var(--white); font-family: var(--font-body); font-size: .84rem; font-weight: 500; }
.sess-price { color: var(--gold-light); font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.sess-card p { color: rgba(255,255,255,.46); font-size: .76rem; line-height: 1.55; }
.sess-card.highlight { border-color: rgba(201,149,60,.45); background: rgba(201,149,60,.08); }

/* ============================================================
   SERVICES — ALTERNATING SECTIONS
   ============================================================ */
.svc-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.svc-full.reverse .svc-visual { order: 2; }
.svc-full.reverse .svc-text { order: 1; }

.svc-visual { position: relative; }
.svc-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .7rem;
  color: var(--text-light);
}
.svc-img .ph-icon { font-size: 2.2rem; opacity: .38; }
.svc-img .ph-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.svc-img-gold { background: linear-gradient(145deg, #F0EBF5, #E6DDE8); }
.svc-img-default { background: linear-gradient(145deg, var(--cream-dark), #E0DAD0); }
.svc-img-sage { background: linear-gradient(145deg, #EBF0EB, #DFE9DF); }
.svc-img-warm { background: linear-gradient(145deg, #F5F0E5, #EBE4D5); }

/* When .svc-img is an actual img element */
img.svc-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: var(--shadow-md);
}

.svc-text h2 { margin-bottom: .4rem; }
.price-tag { display: inline-block; color: var(--gold); font-family: var(--font-display); font-size: 1.25rem; margin-bottom: .8rem; }
.svc-text p { color: var(--text-secondary); font-size: .9rem; line-height: 1.88; margin-bottom: .8rem; }

/* ============================================================
   EVENTS
   ============================================================ */
.events-section { padding: 5.5rem 0; background: var(--cream); }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }

.evt-card {
  background: var(--white);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  display: flex; flex-direction: column;
}
.evt-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.evt-img {
  width: 100%; aspect-ratio: 16/9;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .6rem;
  color: var(--text-light);
}
.evt-img > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.evt-img-1 { background: linear-gradient(145deg, #F5F0E5, #EBE4D5); }
.evt-img-2 { background: linear-gradient(145deg, var(--plum-mid), #5A4555); }
.evt-img-3 { background: linear-gradient(145deg, #E8F0E8, #D5E8D5); }
.evt-img .ph-icon { font-size: 1.8rem; opacity: .4; }
.evt-img-2 .ph-icon { opacity: .3; }

/* Date badge */
.evt-date {
  position: absolute; top: .9rem; left: .9rem;
  background: var(--white); border-radius: 10px;
  padding: .4rem .65rem; text-align: center;
  box-shadow: var(--shadow-sm); min-width: 44px;
}
.evt-date .month { font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; }
.evt-date .day { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--charcoal); line-height: 1.2; display: block; }

.evt-body { padding: 1.7rem; flex: 1; display: flex; flex-direction: column; }
.evt-tag {
  display: inline-block;
  background: var(--gold-pale); color: var(--gold-dark);
  font-size: .64rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 50px;
  margin-bottom: .7rem; align-self: flex-start;
}
.evt-tag.tag-new { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); }
.evt-tag.tag-weekly { background: linear-gradient(135deg, var(--sage-pale), #D4ECD4); color: var(--sage); }
.evt-body h3 { font-size: 1.25rem; margin-bottom: .45rem; }
.evt-meta { display: flex; flex-direction: column; gap: .28rem; margin-bottom: .8rem; }
.evt-meta span { font-size: .77rem; color: var(--text-secondary); display: flex; align-items: center; gap: .38rem; }
.evt-meta .mi { color: var(--gold); font-size: .68rem; }
.evt-body p { color: var(--text-secondary); font-size: .82rem; line-height: 1.7; margin-bottom: 1rem; flex: 1; }
.evt-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.evt-price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); font-weight: 500; }
.evt-seats { font-size: .68rem; color: var(--text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 5rem 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}
.testimonials-visual {
  position: relative;
  position: sticky;
  top: 100px;
}
.testimonial-img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.testimonial-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .7rem;
  max-width: 230px;
}
.testimonial-badge .badge-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.testimonial-badge .badge-text strong {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .15rem;
}
.testimonial-badge .badge-text span {
  display: block;
  font-size: .68rem;
  color: var(--text-secondary);
}
.testimonials-content h2 {
  margin-bottom: 2rem;
}
.testimonial-card {
  background: var(--white);
  padding: 1.8rem 2rem;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: .8rem;
  letter-spacing: .1em;
}
.testimonial-text {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-style: italic;
}
/* Expandable testimonial */
.testimonial-expandable .testimonial-full { display: none; }
.testimonial-expandable .testimonial-preview { display: block; }
.testimonial-expandable.expanded .testimonial-full { display: block; }
.testimonial-expandable.expanded .testimonial-preview { display: none; }
.testimonial-toggle {
  background: none;
  border: none;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  transition: color .2s ease;
}
.testimonial-toggle:hover { color: var(--gold-dark); }

.testimonial-author strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .2rem;
}
.testimonial-author span {
  font-size: .78rem;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testimonials-visual {
    position: static;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(140deg, var(--plum) 0%, #5A4555 100%);
  position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 550px; height: 550px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,60,.14) 0%, transparent 68%);
  top: -180px; right: -140px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.cta-inner .section-label { color: var(--gold-light); }
.cta-inner h2 { color: var(--white); font-weight: 300; margin-bottom: .4rem; }
.cta-inner p { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 1.8rem; line-height: 1.85; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-outline { border-color: rgba(255,255,255,.38); color: var(--white); }
.btn-cta-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white); }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  transform: translateY(100px);
  transition: transform var(--t-slow);
}
.floating-cta.visible { transform: translateY(0); }
.floating-cta a {
  display: flex; align-items: center; gap: .55rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: .8rem 1.5rem;
  border-radius: 50px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 6px 28px rgba(201,149,60,.42);
  transition: all var(--t);
  text-decoration: none;
}
.floating-cta a:hover { transform: translateY(-3px); box-shadow: 0 10px 38px rgba(201,149,60,.52); color: var(--white); }
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--white); border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.75); }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4.5rem;
  padding: 5.5rem 0;
}

.contact-form-wrap h2 { margin-bottom: .3rem; }
.contact-form-wrap .subtitle { margin-bottom: 1.8rem; }

/* Netlify hidden form for build-time detection */
.netlify-hidden { display: none; }

.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .68rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .82rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .86rem;
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--t);
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,60,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236B6055' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}
/* Honeypot — accessible but visually hidden */
.bot-field { position: absolute; left: -9999px; opacity: 0; width: 0; height: 0; overflow: hidden; }

.pet-field { transition: all .35s ease; overflow: hidden; }
.pet-field.hidden { max-height: 0; opacity: 0; margin: 0; padding: 0; }
.pet-field.visible { max-height: 120px; opacity: 1; }

.form-submit { margin-top: .4rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: .95rem; font-size: .78rem; }
.form-submit .btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

/* Status messages */
.form-status { padding: .9rem 1.1rem; border-radius: 12px; font-size: .82rem; display: none; align-items: flex-start; gap: .65rem; line-height: 1.5; }
.form-status.success { display: flex; background: var(--sage-pale); color: #3D6B3D; border: 1px solid rgba(107,143,107,.2); }
.form-status.error { display: flex; background: #FFF0F0; color: #C0392B; border: 1px solid rgba(192,57,43,.2); }
.form-status .si { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.form-status strong { display: block; margin-bottom: 1px; }

/* Contact info panel */
.contact-info { padding-top: 2rem; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: .25rem; }
.contact-info > .subtitle { margin-bottom: 1.6rem; }

.contact-profile-img {
  margin: 1.5rem 0 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ci-item { display: flex; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--cream-dark); }
.ci-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--gold-pale); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold-dark);
}
.ci-text h4 { font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: .2rem; }
.ci-text p, .ci-text a { color: var(--charcoal); font-size: .88rem; }
.ci-text a:hover { color: var(--gold); }

/* Mini upcoming events on contact page */
.upcoming-mini {
  margin-top: 2rem;
  background: var(--cream);
  border-radius: 16px;
  padding: 1.4rem;
}
.upcoming-mini h4 { font-family: var(--font-body); font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .7rem; }
.mini-evt { display: flex; gap: .7rem; align-items: center; padding: .45rem 0; }
.mini-evt-date {
  font-family: var(--font-display); font-size: .88rem; color: var(--gold); font-weight: 500;
  background: var(--gold-pale); border-radius: 8px; padding: .28rem .5rem;
  text-align: center; min-width: 42px;
}
.mini-evt strong { display: block; font-size: .8rem; color: var(--charcoal); font-family: var(--font-body); }
.mini-evt span { font-size: .72rem; color: var(--text-secondary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); color: rgba(255,255,255,.65); padding: 4rem 0 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: .45rem; }
.footer-brand p { font-size: .82rem; line-height: 1.8; max-width: 280px; margin-bottom: 1rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .78rem;
  transition: all var(--t); text-decoration: none;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-col h4 { font-family: var(--font-body); font-size: .64rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--white); margin-bottom: .8rem; }
.footer-col a { display: block; color: rgba(255,255,255,.48); font-size: .82rem; margin-bottom: .6rem; transition: color var(--t); text-decoration: none; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom { padding-top: 1.6rem; display: flex; justify-content: space-between; align-items: center; font-size: .7rem; color: rgba(255,255,255,.3); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .ac-grid { grid-template-columns: 1fr; }
  .sessions { padding-top: 0; }
  .svc-full { grid-template-columns: 1fr; }
  .svc-full.reverse .svc-visual, .svc-full.reverse .svc-text { order: unset; }
  .events-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 9999;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { color: var(--charcoal); font-size: .9rem; }
  .nav-hamburger { display: flex; z-index: 10000; }
  .nav-hamburger.active span { background: var(--charcoal); }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero-content { padding-top: 8rem; padding-bottom: 4rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .events-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .ac-helps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .intro-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; }
  .testimonial-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; }

  /* Reduce padding on mobile */
  .intro-section, .testimonials-section { padding: 4rem 0; }
  .cta-section { padding: 4rem 0; }

  /* Contact page image sizing */
  .contact-profile-img { margin: 1rem 0 1.5rem; }
}

@media (max-width: 480px) {
  .page-hero { padding-top: 7.5rem; padding-bottom: 3rem; }
  .hero-card { padding: 1.8rem; }
  .floating-cta { bottom: 1.2rem; right: 1.2rem; }

  /* Typography adjustments */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  /* Service cards */
  .svc-card { padding: 1.8rem 1.5rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem 1.3rem; }
  .testimonials-section { padding: 3rem 0; }

  /* Hero sections */
  .hero-content { padding-top: 6rem; padding-bottom: 3rem; }
  .page-hero-enhanced { padding: 6rem 0 4rem; }

  /* Contact info */
  .contact-info { padding-top: 1.5rem; }
}
