/* =============================================
   Dr. Alfred Smith — The Self-Image Doctor
   Site Styles
   ============================================= */

:root {
  --navy: #4a2a41;
  --gold: #dda44e;
  --gold-light: #e8b86d;
  --gold-bg: #dda44e;
  --white: #ffffff;
  --off-white: #f9f7f4;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #777777;
  --border-radius: 6px;
  --transition: 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   HEADER / NAV
   ============================================= */

header {
  background: var(--navy);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  gap: 1rem;
}

/* Nav Left */
nav.nav-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

nav.nav-left a {
  color: var(--white);
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

nav.nav-left a:hover,
nav.nav-left a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* Logo Center */
.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(122, 83, 111, 0.95) 0%, rgba(112, 72, 101, 0.96) 62%, rgba(67, 34, 58, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 12px 22px rgba(28, 14, 25, 0.32),
    0 0 14px rgba(245, 231, 255, 0.16);
  position: relative;
  isolation: isolate;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 72% 76%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%);
  background-size: 3px 3px, 4px 4px;
  opacity: 0.34;
  pointer-events: none;
  z-index: -1;
}

.logo-wrap img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.logo-svg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 252, 247, 0.92);
  overflow: hidden;
  box-shadow:
    0 1px 1px rgba(255,255,255,0.38) inset,
    0 3px 10px rgba(24, 10, 21, 0.3),
    1px 2px 0 rgba(36, 18, 31, 0.24);
  position: relative;
}

.logo-svg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  outline: 2px solid rgba(255,255,255,0.95);
  outline-offset: -2px;
  filter:
    contrast(1.03)
    saturate(1.02)
    drop-shadow(0 2px 6px rgba(16, 6, 14, 0.18));
}

/* Social Icons Right */
.social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.social-icons a {
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/backimage.jpeg') center center / cover no-repeat;
  opacity: 0.55;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,42,65,0.3) 0%, rgba(74,42,65,0.6) 50%, rgba(74,42,65,0.85) 100%);
}

.hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-text h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.1rem;
}

.hero-text .tagline {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-text p {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero-buttons .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.hero-buttons .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn {
  display: block;
  text-align: center;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  letter-spacing: 0.01em;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--text-dark);
}

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

.btn-solid {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Hero Image — hidden; background image used instead */
.hero-image {
  display: none;
}

/* =============================================
   EPISODE PLAYER
   ============================================= */

.episode-player {
  background: var(--white);
  border: 1.5px solid #e8e4de;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.episode-now-playing {
  padding: 1.5rem;
  border-bottom: 1px solid #e8e4de;
}

.episode-info {
  margin-bottom: 0.25rem;
}

.episode-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.episode-title {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.25rem 0 0.15rem;
}

.episode-date {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
}

.episode-now-playing audio {
  border-radius: 6px;
}

.episode-list {
  display: flex;
  flex-direction: column;
}

.episode-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border: none;
  border-bottom: 1px solid #f0ede8;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
  font-family: 'Arial', sans-serif;
}

.episode-item:last-child {
  border-bottom: none;
}

.episode-item:hover {
  background: rgba(221,164,78,0.06);
}

.episode-item.active {
  background: rgba(221,164,78,0.08);
}

.ep-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0ccc6;
  flex-shrink: 0;
}

.episode-item.active .ep-dot {
  background: var(--gold);
}

.ep-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.ep-dt {
  font-size: 0.75rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.episode-rss-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  border-top: 1px solid #e8e4de;
  transition: background 0.2s;
}

.episode-rss-link:hover {
  background: rgba(221,164,78,0.06);
}

.hero-photo-wrap {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gold-bg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(201, 133, 26, 0.25);
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Photo placeholder if image not loaded */
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8a020 0%, #c97810 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   SECTION SHARED
   ============================================= */

section {
  padding: 4rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.section-lead {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2.5rem;
}

/* =============================================
   ABOUT STRIP
   ============================================= */

.about-strip {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 2rem;
}

.about-strip .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-strip h2 {
  font-family: 'Georgia', serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.about-strip .gold {
  color: var(--gold);
}

.about-strip p {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.about-strip .btn-outline {
  color: var(--white);
  border-color: var(--gold);
  display: inline-block;
  width: auto;
  padding: 0.75rem 2rem;
  margin-top: 0.5rem;
}

.about-strip .btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* =============================================
   BOOKS / LIBRARY
   ============================================= */

.library-section {
  background: linear-gradient(180deg, rgba(249,247,244,0.98) 0%, rgba(249,247,244,0.94) 100%);
  position: relative;
  overflow: hidden;
}

.library-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(249,247,244,0.9) 0%, rgba(249,247,244,0.95) 100%),
    url('../images/content3.jpg') center 30% / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.library-section .section-inner {
  position: relative;
  z-index: 1;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.book-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.book-cover {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, #6b3d5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.book-cover-text {
  color: var(--white);
}

.book-cover-text .book-title-display {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.book-cover-text .book-author-display {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.book-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-info h3 {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.book-info p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.book-info .btn {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
}

/* =============================================
   LIBRARY PAGE — BOOK CATEGORIES & COVER IMAGES
   ============================================= */

.book-category {
  margin-bottom: 4rem;
}

.book-category-title {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

/* 3-column grid for categories with 3 books */
.books-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* 2-column grid centered for categories with 2 books */
.books-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Real cover image wrapper — 2:3 aspect ratio */
.book-cover-img-wrap {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--off-white);
}

.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease;
}

.book-card:hover .book-cover-img {
  transform: scale(1.03);
}

/* Tagline text below cover */
.book-tagline {
  font-family: 'Georgia', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem !important;
}

/* Amazon button — gold, rounded pill */
.btn-amazon {
  border-radius: 25px !important;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  width: 100%;
  text-align: center;
}

/* Audio section spacing */
.library-audio-section {
  margin-top: 4rem;
}

/* Footer CTA block */
.library-footer-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.library-footer-cta h2 {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.library-footer-cta p {
  font-family: 'Arial', sans-serif;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.library-footer-cta .btn {
  display: inline-block;
  width: auto;
  padding: 0.9rem 2.5rem;
}

/* Responsive: collapse to 2-col then 1-col on smaller screens */
@media (max-width: 900px) {
  .books-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .books-grid--3,
  .books-grid--2 {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================
   DAILY AUDIO / RESOURCES
   ============================================= */

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.resource-card {
  background: var(--white);
  border: 2px solid #e8e4de;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 133, 26, 0.12);
}

.resource-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.resource-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.resource-card h3 {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.resource-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(74,42,65,0.92) 0%, rgba(74,42,65,0.97) 100%),
    url('../images/content6.jpg') center 35% / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.testimonials .section-inner {
  position: relative;
  z-index: 1;
}

.testimonials .section-title {
  color: var(--white);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 133, 26, 0.3);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-align: left;
}

.testimonial-card p {
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section {
  max-width: 700px;
  margin: 3.25rem auto 4rem;
  padding: 0 2rem;
}

.contact-hero-band {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background: var(--navy);
}

.contact-hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/onstage2.jpeg') center 34% / cover no-repeat;
  opacity: 0.32;
}

.contact-hero-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,42,65,0.55) 0%, rgba(74,42,65,0.82) 100%);
}

.contact-hero-band-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.contact-hero-band h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.contact-hero-band .gold { color: var(--gold); }

.contact-hero-band p {
  font-family: 'Arial', sans-serif;
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.contact-section h1 {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-section .gold {
  color: var(--gold);
}

.contact-section p.lead {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid #d0ccc6;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.contact-form .btn {
  align-self: flex-start;
  min-width: 180px;
  padding: 0.9rem 2rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about-photo-wrap {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-bg);
  overflow: hidden;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-content h1 {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-content .gold {
  color: var(--gold);
}

.about-content .role {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-content p {
  font-family: 'Arial', sans-serif;
  font-size: 0.975rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.credential-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.credential-list li {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.credential-list li::before {
  content: '▸';
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
}

/* =============================================
   LIBRARY PAGE
   ============================================= */

.library-page-hero {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.library-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/onstage.jpeg') center 25% / cover no-repeat;
  opacity: 0.24;
}

.library-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,42,65,0.65) 0%, rgba(74,42,65,0.86) 100%);
}

.library-page-hero h1 {
  font-family: 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.library-page-hero p {
  font-family: 'Arial', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.library-page-hero .gold { color: var(--gold); }

.library-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.library-content h2 {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.library-content .section-sub {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 2rem;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-svg {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-family: 'Arial', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 1.25rem;
}

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

.footer-social a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  display: flex;
}

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

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-family: 'Arial', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-admin-link {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-admin-link:hover { color: rgba(255,255,255,0.55); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-family: 'Georgia', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-family: 'Arial', sans-serif;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.page-hero .gold { color: var(--gold); }

/* =============================================
   ACCESSIBILITY & UX
   ============================================= */

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.75rem;
}

/* Focus states for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Cursor pointer on all clickable elements */
a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
select {
  cursor: pointer;
}

/* Social icons — meet 44x44 minimum touch target */
.social-icons a {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .hero {
    min-height: 85vh;
    padding: 5rem 1.5rem 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-strip .section-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo-wrap {
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  nav.nav-left {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  nav.nav-left.open {
    display: flex;
  }

  .social-icons {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
  }

  .logo-wrap {
    grid-column: 1;
    justify-content: flex-start;
  }

  .hero-text h1 { font-size: 1.8rem; }
  .hero-text .tagline { font-size: 1.7rem; }
}

/* =============================================
   RIVERSIDE EMBED
   ============================================= */

.riverside-embed-wrap {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
}

/* =============================================
   RESOURCES GRID — SINGLE CARD CENTERED
   ============================================= */

.resources-grid--single {
  justify-content: center;
  max-width: 360px;
  margin: 0 auto;
}

/* =============================================
   OFFERINGS TILES — HOMEPAGE
   ============================================= */

.offerings-section {
  background: var(--white);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.offerings-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.95) 100%),
    url('../images/content1.jpg') center 28% / cover no-repeat;
  opacity: 0.24;
  pointer-events: none;
}

.offerings-section .section-inner {
  position: relative;
  z-index: 1;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.offering-tile {
  background: var(--off-white);
  border: 2px solid #e8e4de;
  border-radius: 10px;
  padding: 2rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: block;
  color: inherit;
}

.offering-tile--featured {
  border-color: rgba(221, 164, 78, 0.75);
  background: linear-gradient(180deg, #fffaf1 0%, var(--off-white) 100%);
  box-shadow: 0 8px 24px rgba(201,133,26,0.12);
}

.offering-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offering-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,133,26,0.12);
  transform: translateY(-4px);
}

.offering-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.offering-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.offering-tile h3 {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.offering-tile p {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .offerings-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* =============================================
   ABOUT STRIP — PHOTO
   ============================================= */

.about-strip-photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.about-strip-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   SELF-IMAGE AUDIO LAB — HOMEPAGE FEATURE
   ============================================= */

.audio-lab-section {
  background: linear-gradient(135deg, var(--navy) 0%, #6b3d5e 60%, #8a5070 100%);
  padding: 5rem 2rem;
}

.audio-lab-feature {
  max-width: 900px;
  margin: 0 auto;
}

.audio-lab-desc {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.audio-lab-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.audio-lab-two-cards--single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

.audio-lab-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,133,26,0.3);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.audio-lab-card:hover {
  background: rgba(201,133,26,0.08);
  border-color: var(--gold);
}

.audio-lab-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

.audio-lab-card-icon svg {
  width: 24px;
  height: 24px;
}

.audio-lab-card h3 {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.audio-lab-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* =============================================
   BESPOKE FEATURE — HOMEPAGE SECTION
   ============================================= */

.bespoke-feature {
  background: var(--off-white);
  padding: 5rem 2rem;
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.bespoke-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(249,247,244,0.95) 0%, rgba(249,247,244,0.9) 40%, rgba(249,247,244,0.98) 100%),
    url('../images/content2.jpg') center 24% / cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
}

.bespoke-feature .section-inner {
  position: relative;
  z-index: 1;
}

.bespoke-feature-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.bespoke-feature-eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.bespoke-feature h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.bespoke-feature p {
  font-family: 'Arial', sans-serif;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.bespoke-feature strong { color: var(--navy); }

.bespoke-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.bespoke-feature-list li {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.bespoke-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.bespoke-feature-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Aside */
.bespoke-feature-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
}

.bespoke-feature-quote {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1.75rem 1.5rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
}

.bespoke-feature-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-style: normal;
  color: rgba(255,255,255,0.45);
  font-family: 'Arial', sans-serif;
}

.bespoke-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bespoke-feature-tags span {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid #e0d0f0;
  color: var(--navy);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .bespoke-feature-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bespoke-feature-aside {
    position: static;
  }
  .bespoke-feature-list {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SCROLL REVEAL SYSTEM (Global)
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children inside .stagger container */
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.6s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
