/* ============================================
   HEAL THIS — Global Styles
   ============================================ */

/* --- Color Palette --- */
:root {
  --sage: #95a191;
  --gold: #b48e62;
  --cream: #f6efe2;
  --brown: #7e6346;
  --taupe: #a58a72;
  --dark: #1f1c16;
  --white: #ffffff;
  --mint: #d9f2de;
  --cream-dark: #efe5d4;

  /* Semantic aliases */
  --bg-primary: var(--cream);
  --bg-section-alt: var(--white);
  --text-primary: var(--dark);
  --text-secondary: var(--brown);
  --accent: var(--gold);
  --accent-light: var(--mint);
  --nav-bg: var(--cream);

  /* Typography */
  --font-heading: 'DM Serif Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 5rem 2rem;
  --container-max: 1100px;
  --nav-height: 100px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--brown);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-light);
  color: var(--dark);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--taupe);
}

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

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

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--nav-bg);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background-color: rgba(246, 239, 226, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(31, 28, 22, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 90px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-right a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-right a:hover::after,
.nav-right a.active::after {
  width: 100%;
}

.nav-right a:hover {
  color: var(--gold);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color: var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(31, 28, 22, 0.12);
  padding: 0.75rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background-color: var(--cream);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  transition: all 0.3s var(--ease);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(246, 239, 226, 0.3) 0%,
    rgba(246, 239, 226, 0.15) 50%,
    rgba(31, 28, 22, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(31, 28, 22, 0.3);
  margin-bottom: 0.5rem;
}

.hero h1 .script {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3em;
  display: block;
}

.hero .btn {
  margin-top: 1.5rem;
}

/* Google reviews badge */
.reviews-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--white);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  z-index: 2;
  color: var(--dark);
  transition: box-shadow 0.3s var(--ease);
}

.reviews-badge:hover {
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.reviews-badge .stars {
  color: #f5a623;
  letter-spacing: 1px;
}

.reviews-badge .review-count {
  color: var(--taupe);
  font-size: 0.7rem;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  height: 35vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 28, 22, 0.35);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(31, 28, 22, 0.4);
}

.page-hero--tall {
  height: 28vh;
  min-height: 220px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 1rem;
  text-shadow: 0 1px 10px rgba(31, 28, 22, 0.3);
}

/* --- Sections --- */
.section {
  padding: var(--section-padding);
}

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

.section-cream {
  background-color: var(--cream);
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-bottom: 0.5rem;
}

.section-heading p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-divider {
  width: 60px;
  height: 1.5px;
  background-color: var(--gold);
  margin: 1rem auto;
}

/* --- Services Grid (Home) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 4px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(31, 28, 22, 0.08);
  color: var(--text-primary);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- Home Bio Section --- */
.home-bio {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.home-bio-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 28, 22, 0.12);
}

.home-bio-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.home-bio-text h2 {
  margin-bottom: 0.5rem;
}

.home-bio-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.home-bio-text .btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .home-bio {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-bio-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .home-bio-text .section-divider {
    margin: 1rem auto !important;
  }
}

/* --- Video Section --- */
.video-section {
  text-align: center;
  padding: 3rem 2rem;
}

.video-wrapper {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(31, 28, 22, 0.1);
  aspect-ratio: 16 / 9;
  background: var(--dark);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  font-style: italic;
}

/* --- Consultation CTA --- */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section h2 {
  margin-bottom: 0.5rem;
}

.cta-section .section-divider {
  margin-bottom: 1.5rem;
}

.cta-section p {
  max-width: 650px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Beach Banner --- */
.banner {
  position: relative;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(180, 142, 98, 0.25);
}

.banner h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 20px rgba(31, 28, 22, 0.3);
}

/* --- About Section --- */
.about-section {
  margin-top: var(--nav-height);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 28, 22, 0.12);
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 0.5rem;
}

.about-text .section-divider {
  margin: 1rem 0;
}

/* --- Credentials Row --- */
.credentials-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 2rem;
  flex-wrap: wrap;
}

.credentials-row img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.credentials-row .cred-logo {
  height: 80px;
}

.credentials-row .cred-photo {
  height: 120px;
  width: 100px;
  border-radius: 4px;
  object-fit: cover;
}

/* --- Info & Location --- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Info & Reviews (About page) */
.info-reviews {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4rem;
}

.info-reviews-badges {
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.info-reviews-badge {
  height: auto;
  width: 170px;
  flex-shrink: 0;
}

.google-reviews-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(31, 28, 22, 0.08);
  color: var(--dark);
  transition: box-shadow 0.3s var(--ease);
  flex-shrink: 0;
}

.google-reviews-card:hover {
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(31, 28, 22, 0.14);
}

.google-reviews-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.google-reviews-score {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.google-reviews-stars {
  color: #f5a623;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.google-reviews-count {
  font-size: 0.8rem;
  color: var(--taupe);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-reviews .contact-details {
  justify-self: center;
}

.info-reviews .google-reviews-card {
  justify-self: center;
}

.contact-details a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-details a svg {
  margin-top: 0.15rem;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-details svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--dark);
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(31, 28, 22, 0.08);
  aspect-ratio: 16 / 7;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Services List (Services Page) --- */
.service-listing {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(165, 138, 114, 0.2);
}

.service-listing:first-child {
  padding-top: 0;
}

.service-listing:last-child {
  border-bottom: none;
}

.service-listing h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.service-listing p {
  max-width: 750px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.service-listing .cta-buttons {
  margin-top: 1rem;
}

/* --- Individual Service Page --- */
.service-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-content .cta-buttons {
  margin-top: 2rem;
  text-align: center;
}

/* --- Public Speaking --- */
.speaking-topics {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
}

.speaking-topics li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.speaking-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
}

.speaking-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: var(--cream);
  border-radius: 8px;
}

/* --- Contact Form --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: var(--white);
  border: 1px solid rgba(165, 138, 114, 0.3);
  border-radius: 2px;
  transition: border-color 0.3s var(--ease);
}

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

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

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

.form-submit {
  width: 100%;
}

.contact-layout h2 {
  margin-bottom: 1.5rem;
}

.contact-layout .contact-details {
  margin-bottom: 2rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--cream-dark);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(165, 138, 114, 0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-left img.badge {
  height: 96px;
  width: auto;
  flex-shrink: 0;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

.footer-badges img.badge {
  height: 80px;
  width: auto;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-address a {
  color: var(--text-secondary);
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

.footer-center img {
  height: 120px;
  width: auto;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-self: end;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--dark);
  color: var(--white);
  transition: background-color 0.3s var(--ease);
}

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

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

.footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--taupe);
  padding-top: 1rem;
  border-top: 1px solid rgba(165, 138, 114, 0.15);
}

/* --- Featured Episodes --- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.featured-grid .featured-card:first-child {
  grid-column: 1 / -1;
  background-color: var(--mint);
  box-shadow: none;
}

.featured-grid .featured-card:first-child .featured-tag {
  background-color: var(--white);
  color: var(--dark);
}

.featured-grid .featured-card:first-child:hover {
  box-shadow: 0 8px 30px rgba(31, 28, 22, 0.1);
}

.featured-grid .featured-card:first-child .btn-primary {
  background-color: var(--white);
  color: var(--dark);
}

.featured-grid .featured-card:first-child .btn-primary:hover {
  background-color: var(--sage);
  color: var(--white);
}

.featured-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(31, 28, 22, 0.06);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  cursor: pointer;
}

.featured-card:hover {
  box-shadow: 0 8px 30px rgba(31, 28, 22, 0.1);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.featured-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background-color: var(--mint);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.featured-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.featured-card h3 {
  color: var(--text-primary);
}

.featured-card > p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

.featured-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid .featured-card:first-child {
    grid-column: 1;
  }
}

/* --- Podcast Index --- */
.podcast-feed {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: rgba(165, 138, 114, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.podcast-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background-color: var(--white);
  color: var(--text-primary);
  transition: background-color 0.2s var(--ease);
}

.podcast-card:hover {
  background-color: var(--mint);
  color: var(--text-primary);
}


.podcast-card-content {
  flex: 1;
  min-width: 0;
}

.podcast-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.podcast-card-meta {
  font-size: 0.95rem;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.podcast-card-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.podcast-card-arrow {
  font-size: 1.4rem;
  color: var(--taupe);
  flex-shrink: 0;
}

/* --- Podcast Episode Page --- */
.episode-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.episode-back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--taupe);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.episode-back:hover {
  color: var(--gold);
}

.episode-page h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.episode-meta {
  font-size: 0.85rem;
  color: var(--taupe);
  margin-bottom: 2rem;
}

.podcast-player {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31, 28, 22, 0.1);
}

.podcast-player iframe {
  display: block;
  border-radius: 12px;
}

.episode-description {
  margin-bottom: 2rem;
}

.episode-description p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.episode-description h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.episode-description h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.episode-description strong {
  color: var(--text-primary);
}

/* Pullquote / highlight block */
.pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background-color: var(--cream);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
}

.pullquote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--taupe);
}

/* Key takeaways box */
.key-takeaways {
  background-color: var(--cream);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.key-takeaways h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.key-takeaways ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.key-takeaways li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  color: var(--text-secondary);
}

.key-takeaways li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
}

/* Guest bio card */
.guest-bio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid rgba(165, 138, 114, 0.2);
  border-radius: 8px;
  margin: 2rem 0;
}

.guest-bio-text {
  flex: 1;
}

.guest-bio-text h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.guest-bio-text p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.guest-bio-text a {
  font-size: 0.85rem;
}

/* Listen CTA block */
.listen-cta {
  text-align: center;
  padding: 2rem;
  background-color: var(--mint);
  border-radius: 8px;
  margin: 2.5rem 0 1rem;
}

.listen-cta p {
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.episode-chapters {
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background-color: var(--cream);
  border-radius: 6px;
}

.episode-chapters h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.episode-chapters ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.episode-chapters li {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.chapter-time {
  display: inline-block;
  width: 60px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

.episode-links {
  margin-bottom: 2rem;
}

.episode-links h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.episode-links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- "Get in Touch" bar --- */
.get-in-touch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(165, 138, 114, 0.2);
}

.get-in-touch h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.get-in-touch .cta-buttons {
  gap: 0.75rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout,
  .contact-layout,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .about-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-text .section-divider {
    margin: 1rem auto;
  }

  .info-reviews {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
    --section-padding: 3.5rem 1.5rem;
  }

  /* Mobile nav */
  .nav-logo img {
    height: 50px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right 0.4s var(--ease);
    box-shadow: -5px 0 30px rgba(31, 28, 22, 0.1);
    z-index: 999;
  }

  .nav-right.open {
    right: 0;
  }

  /* Center-align all nav items in mobile slide-out */
  .nav-right > a,
  .nav-dropdown {
    text-align: center;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-dropdown > a {
    align-self: center;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease), opacity 0.3s var(--ease);
    opacity: 0;
    visibility: visible;
    text-align: center;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 400px;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
  }

  /* Mobile hero */
  .hero {
    height: 70vh;
  }

  .reviews-badge {
    bottom: 1rem;
    right: 1rem;
  }

  /* Mobile footer */
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
  }

  .footer-right {
    align-items: center;
    justify-self: center;
  }

  .get-in-touch {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 .script {
    font-size: 1.2em;
  }
}
