/* ============================================================
   EAB HYPNOSIS — styles.css
   Elevating Awareness & Balance
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Lato:ital,wght@0,300;0,400;0,700;1,300&display=swap');

/* ==================== DESIGN TOKENS ==================== */
:root {
  /* Baltic blue + olive palette — warm accent on cool base */
  --navy:        #2d629a;  /* baltic-blue (primary dark) */
  --gold:        #a09113;  /* olive (warm accent, contrasts blue) */
  --gold-light:  #c4b226;  /* brighter olive for hover */
  --gold-pale:   #6789b0;  /* dusty-denim (pale accent) */
  --carbon:      #52627d;  /* blue-slate (alt dark) */
  --powder:      #1397e6;  /* blue-bell (vibrant secondary accent) */
  --cream:       #f5f5f2;  /* neutral off-white (no warm khaki tint) */
  --warm-white:  #fbfbf9;
  --text:        #2e2e2e;
  --text-light:  #6b6b6b;
  --text-muted:  #9a9a8a;

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

  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;

  --shadow:       0 4px 24px rgba(45,98,154,.09), 0 1px 6px rgba(160,145,19,.07);
  --shadow-card:  0 8px 40px rgba(45,98,154,.11), 0 2px 10px rgba(160,145,19,.08);
  --shadow-hover: 0 20px 60px rgba(45,98,154,.16), 0 4px 20px rgba(160,145,19,.14);

  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --header-h: 124px;
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==================== ACCESSIBILITY ==================== */
.skip-link {
  position: absolute;
  top: -100%; left: 1rem;
  padding: .75rem 1.5rem;
  background: var(--navy); color: #fff;
  font-family: var(--font-body); font-size: .875rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ==================== BOTANICAL PATTERN ==================== */
/* Delicate gold leaf/petal motif — repeated on section headers */
.botanical-bg {
  background-color: var(--navy);
  /* 6-petal bloom + 5-petal bloom + wide leaf + berry dots + curving stem */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23b8943c' stroke-width='0.75' opacity='0.22'%3E%3Cellipse cx='45' cy='31' rx='8' ry='12' transform='rotate(0,45,45)'/%3E%3Cellipse cx='45' cy='31' rx='8' ry='12' transform='rotate(60,45,45)'/%3E%3Cellipse cx='45' cy='31' rx='8' ry='12' transform='rotate(120,45,45)'/%3E%3Cellipse cx='45' cy='31' rx='8' ry='12' transform='rotate(180,45,45)'/%3E%3Cellipse cx='45' cy='31' rx='8' ry='12' transform='rotate(240,45,45)'/%3E%3Cellipse cx='45' cy='31' rx='8' ry='12' transform='rotate(300,45,45)'/%3E%3Ccircle cx='45' cy='45' r='5'/%3E%3Ccircle cx='45' cy='45' r='2' fill='%23b8943c' fill-opacity='0.3'/%3E%3Cellipse cx='118' cy='108' rx='5' ry='8' transform='rotate(0,118,118)'/%3E%3Cellipse cx='118' cy='108' rx='5' ry='8' transform='rotate(72,118,118)'/%3E%3Cellipse cx='118' cy='108' rx='5' ry='8' transform='rotate(144,118,118)'/%3E%3Cellipse cx='118' cy='108' rx='5' ry='8' transform='rotate(216,118,118)'/%3E%3Cellipse cx='118' cy='108' rx='5' ry='8' transform='rotate(288,118,118)'/%3E%3Ccircle cx='118' cy='118' r='3'/%3E%3Cpath d='M126 16 C144 22 146 40 130 46 C114 40 116 22 126 16Z'/%3E%3Cline x1='126' y1='16' x2='130' y2='46' stroke-width='0.5'/%3E%3Ccircle cx='96' cy='30' r='2.5'/%3E%3Ccircle cx='103' cy='24' r='1.5'/%3E%3Ccircle cx='101' cy='37' r='2'/%3E%3Cpath d='M14 150 C17 132 25 120 22 104'/%3E%3Cpath d='M15 137 C25 130 31 138 26 146'/%3E%3Cpath d='M19 119 C10 112 6 119 11 127'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
}

/* ==================== UTILITY ==================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow { max-width: 1000px; }
.section-padding    { padding: 5rem 0; }
.section-padding-sm { padding: 3.5rem 0; }
.text-center        { text-align: center; }

/* Gold divider */
.gold-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem auto; max-width: 300px;
}
.gold-divider::before,
.gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-divider-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* Labels & headings */
.section-label {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: .75rem;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500; line-height: 1.2;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; color: var(--navy);
}
.section-subheading {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 620px; line-height: 1.8;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--r-md);
  transition: var(--transition);
  min-height: 44px; cursor: pointer;
}
.btn-gold {
  background: var(--gold); color: #fff; border: 2px solid var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(160,145,19,.35);
}
.btn-outline-gold {
  background: transparent; color: var(--gold); border: 2px solid var(--gold);
}
.btn-outline-gold:hover, .btn-outline-gold:focus-visible {
  background: var(--gold); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(160,145,19,.3);
}
.btn-outline-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255,255,255,.1); border-color: #fff;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s ease, box-shadow .4s ease;
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(45,98,154,.22);
}
.site-header.solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(45,98,154,.22);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem; gap: 2rem;
}

.header-logo { flex-shrink: 0; }
.header-logo img {
  height: 112px; width: auto;
  display: block;
  transition: filter .3s;
  filter: invert(1);
}
.site-header.transparent .header-logo img {
  filter: invert(1) drop-shadow(0 1px 6px rgba(0,0,0,0.4));
}

.header-nav { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
  transition: var(--transition);
  padding: .25rem 0;
  border-bottom: 1.5px solid transparent;
  min-height: 44px; display: flex; align-items: center;
}
.nav-link:hover {
  color: var(--gold-light); border-bottom-color: var(--gold-light);
}
.nav-link.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
  border-bottom-width: 2px;
  font-weight: 800;
}
.mobile-nav-link.active {
  color: var(--gold-light);
  font-weight: 800;
  position: relative;
}
.mobile-nav-link.active::before {
  content: ''; position: absolute; left: -1rem; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 60%;
  background: var(--gold-light);
  border-radius: 2px;
}
.site-header.solid .nav-link,
.site-header.scrolled .nav-link { text-shadow: none; }

.header-contact {
  display: flex; flex-direction: column; align-items: flex-end; gap: .15rem;
  font-size: .75rem; color: rgba(255,255,255,.8);
}
.header-contact a:hover { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.hamburger-line {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem 2rem 2.5rem; z-index: 999;
  border-top: 1px solid rgba(160,145,19,.2);
  box-shadow: 0 8px 24px rgba(45,98,154,.3);
}
.mobile-nav.open { display: block; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link {
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s; min-height: 44px;
  display: flex; align-items: center;
}
.mobile-nav-link:hover { color: var(--gold-light); }
.mobile-nav-contact {
  margin-top: 1.5rem; font-size: .85rem;
  color: rgba(255,255,255,.55);
  display: flex; flex-direction: column; gap: .5rem;
}
.mobile-nav-contact a { color: var(--gold-light); }

/* ==================== HERO (HOME PAGE) ==================== */
.hero {
  position: relative; min-height: 100vh; min-height: calc(var(--vh, 1vh) * 100);
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background: url('../assets/eb-hero.jpg') center 35% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,18,30,.3) 0%, transparent 15%),
    linear-gradient(to top,    rgba(12,18,30,.4) 0%, rgba(12,18,30,.12) 35%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 2rem; padding-top: var(--header-h);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: rgba(255,255,255,.5); flex-shrink: 0;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400; color: #fff;
  line-height: 1.25; max-width: 820px;
  margin-bottom: 1.25rem; letter-spacing: .01em;
}
.hero-title-line {
  display: block;
}
.hero-title-line:nth-child(1) { margin-left: 0; }
.hero-title-line:nth-child(2) { margin-left: clamp(1.5rem, 4vw, 3.5rem); }
.hero-title-line:nth-child(3) { margin-left: clamp(3rem, 8vw, 7rem); }
.hero-subtext {
  font-size: 1.1rem; color: rgba(255,255,255,.82);
  max-width: 450px; line-height: 1.78;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
}
.scroll-indicator-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: .45; transform: scaleY(.5); }
}

/* ==================== PAGE HEADER (inner pages) ==================== */
.page-header {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 4rem) 0 4.5rem;
  text-align: center; color: #fff;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.28) 50%, rgba(45,98,154,.4) 100%);
}
.page-header.bg-services {
  background: url('../assets/landscape-blue-mountains.jpg') center / cover no-repeat;
}
.page-header.bg-meet {
  background: url('../assets/landscape-forest-rocks.jpg') center / cover no-repeat;
}
.page-header.bg-downloads {
  background: url('../assets/landscape-clouds.jpg') center / cover no-repeat;
}
.page-header.bg-contact {
  background: url('../assets/landscape-autumn.jpg') center 30% / cover no-repeat;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400; color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.28);
}
.page-header-subtitle {
  font-size: 1.05rem; color: #fff;
  max-width: 640px; margin: 0 auto;
  font-weight: 400; line-height: 1.78;
  text-shadow: 0 2px 8px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.6);
}

/* ==================== PHOTO PLACEHOLDER ==================== */
/* Used when no person photo is available yet */
.photo-placeholder {
  width: 100%; height: 100%;
  min-height: 380px;
  background: linear-gradient(145deg, var(--navy) 0%, #1e3048 50%, #243354 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  text-align: center; padding: 2rem;
}
.photo-placeholder-initials {
  font-family: var(--font-display);
  font-size: 6rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  opacity: .85;
}
.photo-placeholder-label {
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ==================== ABOUT SNIPPET ==================== */
.about-snippet {
  position: relative; overflow: hidden;
  background: url('../assets/landscape-mountain-vista.jpg') center / cover no-repeat;
}
.about-snippet::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.about-snippet > .container { position: relative; z-index: 1; }
.about-snippet .about-content {
  background: #eae9e4;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 14px 38px rgba(0,0,0,.22), 0 4px 12px rgba(0,0,0,.12);
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-frame {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,.16), 0 4px 10px rgba(0,0,0,.1);
}
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 80px; height: 80px;
  border: 2px solid var(--gold); border-radius: var(--r-md); z-index: -1;
}
.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-bio-text { font-size: 1.02rem; line-height: 1.88; color: var(--text); }

.credentials-list { display: flex; flex-direction: column; gap: .5rem; }
.credential-item {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9rem; color: var(--text-light);
}
.credential-item::before {
  content: '◆'; color: var(--gold); font-size: .52rem;
  flex-shrink: 0; margin-top: .48em;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); transition: var(--transition);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}
.link-arrow:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); gap: .7rem; }

/* ==================== SERVICES GRID (HOME — 3 col) ==================== */
.services-preview {
  position: relative; overflow: hidden;
  background: url('../assets/landscape-forest-rocks.jpg') center / cover no-repeat;
}
.services-preview::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.services-preview > .container { position: relative; z-index: 1; }
.services-preview .section-label,
.services-preview .section-heading { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.services-preview .section-label { color: var(--gold-light); }

.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--warm-white);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(160,145,19,.08);
  border-top: 2px solid var(--gold);
  transition: var(--transition);
  display: flex; flex-direction: column; gap: .75rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(160,145,19,.2);
}
/* .service-icon removed — emoji icons dropped */
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; color: var(--navy);
}
.service-card-desc { font-size: .9rem; color: var(--text-light); line-height: 1.72; }

/* ==================== SERVICES — FULL CARDS (services.html) ==================== */
.services-full-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2rem; margin-top: 3rem;
}
.services-detail-section {
  position: relative; overflow: hidden;
  background: url('../assets/landscape-mountain-vista.jpg') center / cover no-repeat;
}
.services-detail-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.services-detail-section > .container { position: relative; z-index: 1; }
.services-detail-section .section-label,
.services-detail-section .section-heading { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.services-detail-section .section-label { color: var(--gold-light); }

.service-card-full {
  background: #eae9e4;
  padding: 2rem 2.25rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.22), 0 4px 10px rgba(0,0,0,.14);
  border-radius: 4px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.service-card-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,.22), 0 6px 14px rgba(0,0,0,.14);
}

.service-card-full-icon {
  font-size: 2rem; flex-shrink: 0; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(160,145,19,.1); border-radius: var(--r-md);
}
.service-card-full-body { flex: 1; }
.service-card-full-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: .55rem;
}
.service-card-full-desc { font-size: .92rem; color: var(--text-light); line-height: 1.78; }

/* ==================== DISCLAIMER BOX ==================== */
.disclaimer-box {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.75rem 2rem; margin: 3rem 0;
}
.disclaimer-box p {
  font-size: .9rem; color: var(--text-light);
  line-height: 1.82; font-style: italic;
}

/* ==================== DOWNLOAD BANNER (Home) ==================== */
.download-banner {
  background: linear-gradient(135deg, #a07a2e 0%, var(--gold) 50%, #c8a445 100%);
  position: relative; overflow: hidden;
}
.download-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 18% 50%, rgba(0,0,0,.1) 0%, transparent 70%);
}
.download-banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.download-banner-image {
  width: 160px; height: 160px;
  border-radius: var(--r-lg); object-fit: cover; flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
}
.download-banner-content { flex: 1; min-width: 260px; }
.download-banner-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: .5rem;
}
.download-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500; color: #fff;
  margin-bottom: .75rem; font-style: italic;
}
.download-banner-desc {
  font-size: .95rem; color: rgba(255,255,255,.85);
  max-width: 380px; margin-bottom: 1.5rem; font-weight: 300;
}

/* ==================== YOUTUBE SECTION ==================== */
.youtube-section { background: var(--navy); }
.youtube-section .section-label  { color: var(--gold-light); }
.youtube-section .section-heading { color: #fff; }

.youtube-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2rem; margin-top: 2.5rem;
}
.youtube-embed-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.04);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  border: 1px solid rgba(160,145,19,.18);
  position: relative;
}
.youtube-embed-wrap iframe {
  width: 100%; height: 100%; border: none; display: block;
}
/* Placeholder when no src set */
.youtube-embed-wrap.empty-embed {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .75rem;
  color: rgba(255,255,255,.35); font-size: .85rem;
  text-align: center;
}
.youtube-embed-wrap.empty-embed::before {
  content: '▶';
  font-size: 2.5rem;
  opacity: .25;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.72);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(160,145,19,.14);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand img {
  height: 60px; filter: invert(1);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: rgba(255,255,255,.55);
  line-height: 1.5; margin-bottom: 1rem;
}
.footer-contact-info { display: flex; flex-direction: column; gap: .35rem; font-size: .86rem; }
.footer-contact-info a { color: var(--gold-light); transition: color .2s; }
.footer-contact-info a:hover { color: #fff; }

.footer-nav-title {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-nav-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav-link { font-size: .86rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-nav-link:hover { color: rgba(255,255,255,.95); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: flex-start; justify-content: space-between;
}
.footer-disclaimer {
  font-size: .75rem; color: rgba(255,255,255,.38);
  max-width: 620px; line-height: 1.68;
}
.footer-copyright { font-size: .75rem; color: rgba(255,255,255,.38); white-space: nowrap; }

/* ==================== MEET ELIZABETH PAGE — COLLAGE ==================== */
.bio-section {
  position: relative; overflow: hidden;
  background: url('../assets/landscape-kelly-golden.jpg') center / cover no-repeat;
  padding: 6rem 0;
}
.bio-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.bio-section > .container { position: relative; z-index: 1; }
.bio-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem;
  align-items: start;
  background: var(--warm-white);
  padding: 3rem;
  border-radius: 4px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.35),
    0 10px 30px rgba(0,0,0,.25),
    0 4px 8px rgba(0,0,0,.15);
}

.bio-photo-frame {
  box-shadow: 0 10px 24px rgba(0,0,0,.18), 0 4px 8px rgba(0,0,0,.12);
}
.bio-photo-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }

.bio-credential-badge {
  margin-top: 1.5rem; background: var(--cream);
  border: 1px solid rgba(160,145,19,.22); border-radius: var(--r-md);
  padding: 1.25rem 1.5rem; text-align: center;
}
.bio-credential-badge-title {
  font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem;
}
.bio-credential-badge-sub { font-size: .8rem; color: var(--text-light); }

.bio-content-col h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500; color: var(--navy); margin-bottom: .25rem;
}
.bio-title-line {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; display: block;
}
.bio-text { font-size: 1rem; line-height: 1.9; color: var(--text); margin-bottom: 1.25rem; }

.bio-pull-quote {
  margin: 2rem 0; padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.bio-pull-quote p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.22rem; color: var(--navy); line-height: 1.62;
}
.bio-pull-quote-cite {
  display: block; margin-top: .9rem;
  font-family: var(--font-body); font-style: normal;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}

.credentials-grid-title {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.credential-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.credential-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem;
  background: var(--cream);
  border: 1px solid rgba(160,145,19,.25); border-radius: 100px;
  font-size: .8rem; color: var(--navy); font-weight: 400;
}
.credential-tag::before { content: '✦'; color: var(--gold); font-size: .58rem; }

/* ==================== WHITE PAPER SECTION ==================== */
.white-paper-section {
  position: relative; overflow: hidden;
  background: url('../assets/eb-valley.jpg') center / cover no-repeat;
  padding: 7rem 0;
}
.white-paper-section::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
  pointer-events: none;
}
.white-paper-section > .container { position: relative; z-index: 1; }
.white-paper-section .section-label,
.white-paper-section .section-heading { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.white-paper-section .section-label { color: var(--gold-light); }

/* ==================== LANDSCAPE BREAK SECTION ==================== */
.landscape-break {
  position: relative; min-height: 55vh;
  background: url('../assets/landscape-misty.jpg') center 40% / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 5rem 0;
}
.landscape-break::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.landscape-break .container { position: relative; z-index: 1; }
.brand-badge {
  width: clamp(240px, 32vw, 420px);
  height: clamp(240px, 32vw, 420px);
  margin: 0 auto 2.5rem;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.brand-badge img {
  width: 100%; height: 100%; object-fit: contain;
  filter: invert(1) drop-shadow(0 4px 12px rgba(0,0,0,.4));
}

/* Hero splash — full-bleed landscape + giant centered logo (home page) */
.hero-splash {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: calc(var(--vh, 1vh) * 100);
  background: url('../assets/landscape-autumn.jpg') center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--header-h);
}
.hero-splash::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.hero-splash .brand-badge {
  position: relative; z-index: 1;
  width: clamp(260px, 36vw, 480px);
  height: clamp(260px, 36vw, 480px);
}

/* Tagline strip — right under the hero splash, holds CTAs */
.tagline-strip {
  background: var(--navy);
  padding: 2.5rem 0 3rem;
  border-bottom: none;
}
.tagline-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 500; color: #fff;
  line-height: 1.35; margin-bottom: .85rem;
}
.tagline-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  margin-bottom: 1.75rem; line-height: 1.7;
}
.tagline-ctas {
  display: inline-flex; flex-wrap: wrap;
  gap: 1rem; justify-content: center;
}

/* Standalone logo splash section — landscape + giant centered badge */
.brand-splash {
  position: relative; overflow: hidden;
  min-height: 70vh; padding: 6rem 0;
  background: url('../assets/landscape-aerial-forest.jpg') center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.brand-splash::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.brand-splash .brand-badge {
  width: clamp(260px, 38vw, 520px);
  height: clamp(260px, 38vw, 520px);
  position: relative; z-index: 1;
  margin: 0 auto;
}
.landscape-break-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-style: italic; line-height: 1.4; font-weight: 400;
  max-width: 800px; margin: 0 auto 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.landscape-break-cite {
  display: block; margin-top: 1.25rem;
  font-family: var(--font-body); font-size: .82rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light);
}
@media (max-width: 768px) {
  .landscape-break { background-attachment: scroll; min-height: 45vh; }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  position: relative; overflow: hidden;
  background: url('../assets/landscape-clouds.jpg') center / cover no-repeat;
}
.testimonials::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.testimonials > .container { position: relative; z-index: 1; }
.testimonials .section-label,
.testimonials .section-heading { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.testimonials .section-label { color: var(--gold-light); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 2rem;
  margin: 2.75rem auto 0;
  max-width: 1100px;
}

.testimonial-card {
  position: relative;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: 3rem 2.25rem 2.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.testimonial-quote-mark {
  position: absolute;
  top: .25rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: var(--gold);
  opacity: .55;
  pointer-events: none;
  user-select: none;
}

.testimonial-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  flex: 1;
  background: #6789b0;
  padding: 1.5rem 1.75rem;
  border-radius: var(--r-md);
}
.testimonial-body p + p { margin-top: 1rem; }

.testimonial-cite {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(160, 145, 19, .35);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 640px) {
  .testimonial-card { padding: 2.5rem 1.5rem 1.75rem; }
  .testimonial-body { font-size: 1.02rem; }
  .testimonial-quote-mark { font-size: 4rem; }
}

.white-paper-card {
  background: #eae9e4; border-radius: 4px;
  overflow: visible;
  box-shadow:
    0 28px 70px rgba(0,0,0,.4),
    0 10px 24px rgba(0,0,0,.22);
  display: grid; grid-template-columns: 260px 1fr;
}
.white-paper-card > *:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); overflow: hidden; }
.white-paper-image { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.white-paper-content {
  padding: 3rem; display: flex; flex-direction: column;
  justify-content: center; gap: 1rem;
}
.white-paper-category {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.white-paper-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 500; color: var(--navy); line-height: 1.3;
}
.white-paper-title em { font-style: italic; color: var(--gold); }
.white-paper-desc { font-size: .94rem; color: var(--text-light); line-height: 1.8; max-width: 500px; }

/* ==================== DOWNLOADS PAGE ==================== */
.downloads-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 2rem; margin-top: 3rem;
}
.download-card {
  background: var(--warm-white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1px solid rgba(160,145,19,.08);
  transition: var(--transition);
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.download-card-image {
  width: 100%; aspect-ratio: 4/5; object-fit: contain;
  background: #eae9e4;
}
.download-card-body { padding: 2rem; }
.download-card-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.badge {
  display: inline-flex; align-items: center;
  padding: .25rem .75rem; border-radius: 100px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.badge-gold {
  background: rgba(160,145,19,.12); color: var(--gold);
  border: 1px solid rgba(160,145,19,.3);
}
.badge-navy {
  background: rgba(45,98,154,.08); color: var(--navy);
  border: 1px solid rgba(45,98,154,.15);
}
.download-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  color: var(--navy); margin-bottom: .75rem; font-style: italic;
}
.download-card-desc {
  font-size: .92rem; color: var(--text-light);
  line-height: 1.78; margin-bottom: 1.5rem;
}
.download-card-icons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.download-icon-item { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--text-light); }

/* Ghost / Coming Soon card */
.download-card-ghost {
  border: 2px dashed rgba(160,145,19,.25);
  background: transparent;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem; min-height: 300px;
}
.download-card-ghost:hover { border-color: rgba(160,145,19,.5); transform: none; box-shadow: none; }
.ghost-icon { font-size: 3rem; margin-bottom: 1rem; opacity: .35; }
.ghost-title {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--text-light); font-style: italic; margin-bottom: .5rem;
}
.ghost-sub { font-size: .85rem; color: var(--text-muted); }

/* Patreon section */
.patreon-section {
  background: linear-gradient(135deg, var(--navy) 0%, #243350 100%);
  text-align: center; position: relative; overflow: hidden;
}
.patreon-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(160,145,19,.08) 0%, transparent 70%);
}
.patreon-section .container { position: relative; z-index: 1; }
.patreon-section .section-heading { color: #fff; margin-bottom: 1rem; }
.patreon-section .section-subheading { color: rgba(255,255,255,.72); margin: 0 auto 2rem; }
.patreon-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .bio-grid { gap: 3rem; }
  .white-paper-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .header-nav, .header-contact { display: none; }
  .hamburger { display: flex; }

  .about-grid, .bio-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 1.75rem; }
  .bio-section { padding: 3rem 0; }
  .bio-photo-frame { transform: rotate(0); max-width: 280px; margin: 0 auto; }
  .service-card-full:nth-child(odd),
  .service-card-full:nth-child(even) { transform: rotate(0); }
  .about-image-accent { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .youtube-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .download-banner-inner { flex-direction: column; text-align: center; }
  .download-banner-image { width: 120px; height: 120px; align-self: center; }
  .download-banner-desc { max-width: 100%; }
  .white-paper-card { grid-template-columns: 1fr; }
  .white-paper-image { aspect-ratio: 16/9; max-height: 220px; width: 100%; }
  .downloads-grid { grid-template-columns: 1fr; }
  .section-padding { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .service-card-full { flex-direction: column; padding: 1.75rem; }
  .bio-grid { gap: 2rem; }
  .white-paper-content { padding: 1.75rem; }
}


/* ==================== CONTACT PAGE ==================== */
.contact-section {
  position: relative; overflow: hidden;
  background: url('../assets/landscape-blue-mountains.jpg') center / cover no-repeat;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.contact-section > .container { position: relative; z-index: 1; }
.contact-section .section-label,
.contact-section .section-heading { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.contact-section .section-label { color: var(--gold-light); }
.contact-section .contact-intro-text { color: rgba(255,255,255,.92); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem;
  align-items: start;
}
.contact-intro-text {
  font-size: 1.02rem; line-height: 1.88;
  color: var(--text); margin-bottom: 2rem;
}
.contact-direct {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.contact-direct-item { display: flex; flex-direction: column; gap: .15rem; }
.contact-direct-label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.contact-direct-link {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--navy); text-decoration: none;
}
.contact-direct-link:hover { color: var(--gold); }

.contact-form-wrap {
  background: #fff; padding: 2.5rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(160,145,19,.1);
}
.contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.contact-form .form-field {
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 1.25rem;
}
.contact-form label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy);
}
.contact-form .required { color: var(--gold); margin-left: 2px; }
.contact-form .optional {
  font-weight: 400; text-transform: none;
  letter-spacing: 0; color: var(--text-light);
  font-size: .72rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body); font-size: 1rem;
  color: var(--text);
  padding: .85rem 1rem;
  background: var(--warm-white);
  border: 1.5px solid rgba(160,145,19,.25);
  border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(160,145,19,.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form select {
  appearance: none; -webkit-appearance: none;
  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='%23b8943c' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px 6px;
  padding-right: 2.5rem;
}
.contact-form .botcheck {
  position: absolute; left: -9999px; opacity: 0;
  pointer-events: none;
}
.contact-form .form-actions { margin-top: 1.5rem; }
.contact-form #cf-submit { min-width: 200px; position: relative; }
.contact-form #cf-submit[disabled] { opacity: .7; cursor: wait; }
.contact-form .form-status {
  margin-top: 1.25rem; min-height: 1.5rem;
  font-size: .95rem; line-height: 1.5;
}
.contact-form .form-status.success {
  color: #1f6f3b; padding: 1rem 1.25rem;
  background: #eaf5ee; border-left: 3px solid #1f6f3b;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.contact-form .form-status.error {
  color: #8b1f1f; padding: 1rem 1.25rem;
  background: #fbeaea; border-left: 3px solid #8b1f1f;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.contact-form .form-privacy {
  margin-top: 1.5rem; font-size: .82rem;
  color: var(--text-light); line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
}

/* ==================== LANDSCAPE SECTION DIVIDER ==================== */
/* Thin gold strip masks the hard cut between adjacent landscape sections */
.hero-splash,
.page-header,
.bio-section,
.brand-splash,
.white-paper-section,
.landscape-break,
.services-detail-section,
.about-snippet,
.services-preview,
.testimonials,
.contact-section,
.downloads-cards-section {
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 1px 0 rgba(160,145,19,.4), 0 6px 18px rgba(45,98,154,.2);
}

/* ==================== ACCENT CONTRAST BOOST ==================== */
/* Section labels and dividers on landscape backgrounds get the lighter */
/* high-contrast accent + drop shadow so the green pops against busy photos */
.hero-splash .section-label, .hero-splash .gold-divider-icon,
.page-header .section-label, .page-header .gold-divider-icon,
.bio-section .section-label, .bio-section .gold-divider-icon,
.brand-splash .section-label, .brand-splash .gold-divider-icon,
.white-paper-section .section-label, .white-paper-section .gold-divider-icon,
.landscape-break .section-label, .landscape-break .gold-divider-icon,
.services-detail-section .section-label, .services-detail-section .gold-divider-icon {
  color: var(--gold-light) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.35);
  font-weight: 800;
}

/* Free Downloads cards � landscape backed */
.downloads-cards-section {
  position: relative; overflow: hidden;
  background: url('../assets/landscape-aerial-forest.jpg') center / cover no-repeat;
}
.downloads-cards-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(45,98,154,.35) 0%, rgba(45,98,154,.22) 100%);
}
.downloads-cards-section > .container { position: relative; z-index: 1; }
.downloads-cards-section .section-label,
.downloads-cards-section .section-heading { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.downloads-cards-section .section-label { color: var(--gold-light); }

/* ==================== MOTION LAYER ==================== */
/* Parallax on landscape sections — anchored feel, GPU-hinted */
@media (min-width: 900px) {
  .hero-splash,
  .page-header,
  .bio-section,
  .brand-splash,
  .white-paper-section,
  .landscape-break,
  .services-detail-section,
  .about-snippet,
  .services-preview,
  .contact-section,
  .downloads-cards-section,
  .testimonials {
    background-attachment: fixed;
  }
}

/* Ken Burns � slow zoom on hero landscape */
.hero-splash {
  background-size: 110% auto;
  animation: kenBurns 24s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { background-size: 110% auto; background-position: center 30%; }
  100% { background-size: 125% auto; background-position: center 40%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-splash { animation: none; }
}

/* Section-level scroll reveal */
.section-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.section-reveal.revealed { opacity: 1; transform: translateY(0); }

/* Back-to-top button */
.back-to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem;
  width: 48px; height: 48px;
  background: var(--navy); color: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1;
  cursor: pointer; z-index: 990;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease, background .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); border-color: var(--gold-light); }
@media (max-width: 600px) {
  .back-to-top { right: 1rem; bottom: 1rem; width: 44px; height: 44px; }
}