/* CSS Custom Properties */
:root {
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Avenir', 'Avenir Next', 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Warm, bohemian color palette based on imagery */
  --color-primary: #8B7355;
  --color-primary-dark: #6B5344;
  --color-accent: #B4575B;
  --color-accent-soft: #E8D5C4;
  --color-bg: #FDF8F3;
  --color-bg-alt: #FAF6F0;
  --color-text: #3D3229;
  --color-text-light: #6B5B4F;
  --color-white: #FFFFFF;
  --color-border: #E5DDD3;
}

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

/* Base Typography */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

/* Layout Structure */
.layout-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
  width: 16vw;
  min-width: 200px;
  max-width: 300px;
  background-color: transparent;
  border-right: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 50;
}

.sidebar-logo {
  padding: 1.5vw;
  border-bottom: none;
}

.sidebar-logo img {
  max-width: 100%;
  height: auto;
}

.sidebar-brand-row {
  display: block;
}

.sidebar-brand-link {
  display: inline-flex;
  align-items: center;
}

.sidebar-nav {
  flex: 1;
  padding: 1.5rem 0;
  overflow-y: auto;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin: 0;
}

.sidebar-nav a {
  display: block;
  padding: 0.6rem 1.5vw;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0.3px transparent;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--page-color, var(--color-accent));
}

.sidebar-nav a.active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: var(--page-color, var(--color-accent));
}

.site-language-switcher {
  display: flex;
  gap: 0.35rem;
  padding: 0 1.5vw 1rem;
}

.site-language-switcher--header {
  display: none;
}

.sidebar-nav .site-language-switcher-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sidebar-nav .site-language-switcher-link:hover,
.sidebar-nav .site-language-switcher-link:focus-visible,
.sidebar-nav .site-language-switcher-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.sidebar-footer {
  padding: 1vw 1.5vw;
  border-top: none;
}

.sidebar-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  text-align: center;
  margin-top: 0.75rem;
}

.sidebar-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.sidebar-social {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, transform 0.2s ease;
  border-left: none;
  background: none;
}

.sidebar-social:hover {
  color: #fff;
  transform: scale(1.15);
  background: none;
  border-left: none;
}

.mobile-menu-footer {
  display: none;
}

/* Nav thumbnails, descriptions + backdrop: hidden on desktop */
.nav-thumb {
  display: none;
}

.nav-desc {
  display: none;
}

.nav-cta {
  display: none;
}

.mobile-menu-backdrop {
  display: none;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

/* Page Header (full-screen hero) */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  padding: 4rem;
  background-size: cover;
  background-position: 10% 34%;
  background-repeat: no-repeat;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.page-header-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.page-header-content a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-header-content a:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .page-header {
    min-height: 60vh;
    padding: 5rem 2rem 2rem;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }
}

/* Main Content Area */
.main-content {
  flex: 1;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  width: 100%;
}

.main-content main {
  flex: 1;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--page-color, #B26F6F);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* Alert/Notice Styles */
.flash-messages {
  padding: 1rem 2rem;
}

.flash-notice {
  background-color: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #166534;
  padding: 1rem;
  border-radius: 6px;
}

.flash-alert {
  background-color: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  padding: 1rem;
  border-radius: 6px;
}

/* Email Capture */
/* Subscribe form (used globally) */
.hero-subscribe-form {
  display: flex;
}

.hero-subscribe-input {
  height: 40px;
  padding: 0 0.75rem;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  background-color: rgba(216, 216, 216, 0.2);
  outline: none;
  flex: 1;
  max-width: 260px;
}

.hero-subscribe-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.hero-subscribe-btn {
  height: 40px;
  padding: 0 1.25rem;
  background-color: var(--page-color, #B26F6F);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.hero-subscribe-btn:hover {
  background-color: #9a5e5e;
}

.hero-subscribe-message {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.75rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 6rem 4rem;
  background-color: var(--color-white);
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--color-primary-dark), var(--color-accent), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-content p {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.newsletter-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-content a:hover {
  color: var(--color-primary-dark);
}

.newsletter-content .hero-subscribe-form {
  justify-content: center;
}

.newsletter-content .hero-subscribe-input {
  background-color: var(--color-bg-alt);
  color: var(--color-text);
}

.newsletter-content .hero-subscribe-input::placeholder {
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 3rem 2rem 10rem;
  }

  .newsletter-content h2 {
    font-size: 2rem;
  }
}

/* Content Page Sections */
.content-section {
  padding: 5rem 4rem;
  background-color: var(--color-white);
}

.content-section:nth-child(even) {
  background-color: var(--color-bg-alt);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.content-container p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-container a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-container a:hover {
  color: var(--color-primary-dark);
}

.content-container a.mark-link,
.content-container a.mark-link:hover {
  text-decoration: none;
  color: #332e2e;
}

/* Marker-highlighted links */
.mark-link {
  position: relative;
  text-decoration: none;
  color: #332e2e;
  padding: 0 0.18em;
  margin: 0 -0.05em;
  white-space: normal;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  --mark-color: 178 111 111;
  background:
    linear-gradient(
      104deg,
      rgb(var(--mark-color) / 0%) 0.25em,
      rgb(var(--mark-color) / 22%) 0.25em,
      rgb(var(--mark-color) / 38%) 82%,
      rgb(var(--mark-color) / 12%) 96%,
      rgb(var(--mark-color) / 0%) 100%
    ) 0 78% / 100% 0.78em no-repeat;
  border-radius: 0.18em;
  text-shadow: 0 1px 0 rgb(255 255 255 / 34%);
}

.mark-link:hover {
  color: #332e2e;
  text-decoration: none;
}

.mark-link::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 3px 5px 3px 5px;
  scale: 1.04;
  transform: skew(-1deg);
  --mark-color: 178 111 111;
  --mark-bg-angle: 50deg;
  background:
    conic-gradient(at 0 100%, rgb(var(--mark-color) / 100%) 1%, #fff0 3%) no-repeat 0 0 / auto 120%,
    conic-gradient(from 180deg at 100% 0, #fff0, rgb(var(--mark-color) / 100%) 1%, #fff0 4%) no-repeat 100% 100% / auto 120%,
    linear-gradient(var(--mark-bg-angle), rgb(var(--mark-color) / 60%), rgb(var(--mark-color) / 20%) 75%, rgb(var(--mark-color) / 55%)) no-repeat center / auto;
}

.mark-link--green::before {
  --mark-color: 134 197 134;
  --mark-bg-angle: 30deg;
  transform: skew(1deg);
}

.mark-link--green {
  --mark-color: 134 197 134;
}

.mark-link--rose::before {
  --mark-color: 196 140 140;
  --mark-bg-angle: 150deg;
  transform: skew(1deg);
}

.mark-link--rose {
  --mark-color: 196 140 140;
}

.mark-link--gold::before {
  --mark-color: 221 158 57;
  --mark-bg-angle: 40deg;
  transform: skew(-1deg);
}

.mark-link--gold {
  --mark-color: 221 158 57;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.content-grid img {
  width: 100%;
  border-radius: 12px;
}

.content-section--full-bleed {
  padding: 0;
}

.content-grid--full-bleed {
  gap: 0;
  max-width: none;
  align-items: stretch;
}

.content-grid--full-bleed .content-grid-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.content-grid--full-bleed .content-grid-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.content-grid--full-bleed .content-grid-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.content-grid--full-bleed .content-container {
  padding: 4rem;
}

.journal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.journal-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-container a.journal-card,
.content-container a.journal-card:hover {
  color: inherit;
  text-decoration: none;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.journal-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.journal-card-image .journal-card-date {
  position: absolute;
  top: 1rem;
  bottom: auto;
  left: 1.25rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  z-index: 1;
}

.journal-card-image h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 4rem 1.25rem 1rem;
  font-size: clamp(1.2rem, 3.4vw, 1.55rem);
  line-height: 1.12;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.05);
}

.journal-card-content {
  padding: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.journal-card-content p {
  text-decoration: none;
  color: var(--color-text-light);
}

.journal-card-excerpt {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.journal-card-chevron {
  flex-shrink: 0;
  color: var(--color-text-light);
  transition: transform 0.2s ease, color 0.2s ease;
}

.journal-card:hover .journal-card-chevron {
  transform: translateX(3px);
  color: var(--color-primary);
}

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

.content-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.875rem 2rem;
  border: 1px solid var(--color-accent);
  border-radius: 0.75rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--site-body, var(--font-body));
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.content-container a.content-cta,
.content-container a.content-cta:hover,
.content-container a.content-cta:focus-visible {
  color: var(--color-white);
  text-decoration: none;
}

.content-cta:hover {
  background: #94474B;
  color: var(--color-white);
  box-shadow: 0 10px 26px rgba(38, 20, 21, 0.2);
  transform: translateY(-1px);
}

.content-cta:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-accent), white 42%);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .content-section {
    padding: 3rem 2rem;
  }

  .content-section--full-bleed {
    padding: 0;
  }

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

  .content-grid--full-bleed .content-grid-image {
    order: 2;
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .content-grid--full-bleed .content-container {
    padding: 3rem 2rem;
  }
}

/* ═══════════════════════════════════════════════
   Cal.com-style Booking Calendar
   ═══════════════════════════════════════════════ */

.cal-booking {
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  min-height: calc(100vh - 80px);
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 60;
}

/* ── Left Panel: Event Info ── */
.cal-info {
  border-right: 1px solid var(--color-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.cal-info-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cal-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.cal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cal-host {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin: 0;
  font-weight: 500;
}

.cal-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0.25rem 0 0.75rem;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.cal-description {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.cal-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.cal-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.cal-meta-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.cal-back-link {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-decoration: none;
  margin-top: auto;
  padding-top: 1.5rem;
  transition: color 0.2s ease;
}

.cal-back-link:hover {
  color: var(--color-primary);
}

/* ── Center Panel: Calendar ── */
.cal-calendar {
  padding: 2rem;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.cal-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.cal-month-label {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all 0.15s ease;
}

.cal-nav-btn:hover {
  background: var(--color-bg);
  border-color: var(--color-accent);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}

.cal-weekdays span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50%;
  border: none;
  background: none;
  padding: 0;
  cursor: default;
  position: relative;
  color: var(--color-text);
}

.cal-day--other {
  color: var(--color-border);
}

.cal-day--disabled {
  color: var(--color-text-light);
  opacity: 0.35;
}

.cal-day--available {
  cursor: pointer;
  font-weight: 600;
  background: var(--color-bg-alt);
  transition: all 0.15s ease;
}

.cal-day--available:hover {
  background: var(--color-accent-soft);
  color: var(--color-primary-dark);
}

.cal-day--today {
  font-weight: 700;
}

.cal-day--today::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
}

.cal-day--selected {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.cal-day--selected::after {
  background: var(--color-white);
}

.cal-empty {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1rem;
}

.cal-empty p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin: 0;
}

.cal-empty-sub {
  font-size: 0.8125rem;
  margin-top: 0.5rem !important;
  opacity: 0.7;
}

/* ── Right Panel: Time Slots ── */
.cal-right {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.cal-slots {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cal-slots-header {
  margin-bottom: 1.25rem;
}

.cal-slots-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-heading);
}

.cal-slots-placeholder {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  text-align: center;
  padding: 2rem 0;
}

.cal-slots-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cal-slot-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s ease;
  text-align: center;
}

.cal-slot-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-alt);
}

.cal-slot-btn--selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.cal-slot-btn--selected:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* ── Booking Form (right panel) ── */
.cal-form {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--color-border);
}

.cal-form-heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
}

.cal-form-time {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin: 0 0 1.25rem;
}

.cal-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.cal-form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.15s ease;
}

.cal-form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.cal-form-input::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

.cal-form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.cal-tag {
  padding: 0.375rem 0.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.75rem;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s ease;
}

.cal-tag:hover {
  border-color: var(--color-accent);
}

.cal-tag--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.cal-form-submit {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: var(--color-border);
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: not-allowed;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.cal-form-submit--ready {
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
}

.cal-form-submit--ready:hover {
  background: var(--color-primary-dark);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cal-booking {
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: 0;
    border: none;
    min-height: auto;
    z-index: 110;
    position: relative;
  }

  .cal-info {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
  }

  .cal-info-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }

  .cal-avatar {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

  .cal-host {
    display: none;
  }

  .cal-title {
    font-size: 1.125rem;
    margin: 0;
    flex: 1;
  }

  .cal-description {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cal-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0;
    width: 100%;
  }

  .cal-back-link {
    display: none;
  }

  .cal-calendar {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
  }

  .cal-right {
    min-height: 200px;
  }

  .cal-slots {
    padding: 1.5rem;
  }

  .cal-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cal-calendar {
    padding: 1rem;
  }

  .cal-slots {
    padding: 1rem;
  }

  .cal-form {
    padding: 1rem;
  }

  .cal-day {
    font-size: 0.8125rem;
  }
}

/* ═══════════════════════════════════════════════ */

/* Booking Pages */
/* Booking Page (standalone) */
.booking-page {
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.booking-page-header {
  margin-bottom: 2rem;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--color-primary-dark);
}

.booking-page-header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.booking-page-header p {
  color: var(--color-text-light);
}

/* Step indicator */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.booking-step.active {
  color: var(--color-primary);
}

.booking-step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-bg-alt);
  color: var(--color-text-light);
}

.booking-step.active .booking-step-number {
  background-color: var(--page-color, #B26F6F);
  color: var(--color-white);
}

.booking-step.completed {
  color: var(--color-primary);
}

.booking-step.completed .booking-step-number {
  background: var(--color-accent-soft);
  color: var(--color-primary);
  font-size: 0.875rem;
}

.booking-step-divider {
  width: 24px;
  height: 1px;
  background: var(--color-border);
}

/* Topic Cards */
.topics-grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.topic-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 1rem 1.125rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.topic-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.topic-card--unavailable {
  cursor: not-allowed;
  opacity: 0.72;
}

.topic-card--unavailable:hover {
  border-color: var(--color-border);
  box-shadow: none;
}

.topic-admission-status {
  color: var(--color-text-light);
  font-size: 0.75rem;
  line-height: 1.45;
  margin: 0.25rem 0 0;
}

.topic-card-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.topic-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.topic-card-header h2 {
  font-size: 0.975rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.topic-description {
  color: var(--color-text-light);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
}

.topic-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.125rem;
}

.topic-meta {
  font-size: 0.775rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.topic-card-arrow {
  color: var(--color-text-light);
  transition: transform 0.2s ease;
  display: flex;
}

.topic-card:hover .topic-card-arrow {
  transform: translateX(3px);
  color: var(--color-primary);
}

/* Package Detail */
.package-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hidden {
  display: none !important;
}

.package-categories {
  padding: 0.5rem 0;
}

.package-categories-hint {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

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

.interest-tag {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.interest-tag:hover {
  border-color: var(--color-accent);
}

.interest-tag.active {
  background-color: var(--page-color, #B26F6F);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.package-continue {
  align-self: flex-end;
  font-size: 0.9375rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.package-continue:hover {
  color: var(--page-color, #B26F6F);
}

/* Topic Summary (times page) */
.topic-summary {
  color: var(--color-text-light);
}

.topic-summary strong {
  color: var(--color-text);
}

/* Date group headers */
.date-group {
  margin-bottom: 1.5rem;
}

.time-filter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.time-filter-btn {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.time-filter-btn:hover {
  border-color: var(--color-accent);
}

.time-filter-btn.active {
  background-color: var(--page-color, #B26F6F);
  border-color: var(--page-color, #B26F6F);
  color: var(--color-white);
}

.date-group-header {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

/* Time Slots */
.time-slots-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-slot-card {
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.time-slot-card:hover {
  border-color: var(--color-accent);
}

.time-slot-card.selected {
  border-color: var(--page-color, #B26F6F);
  box-shadow: 0 0 0 1px var(--page-color, #B26F6F);
  cursor: default;
  grid-column: 1 / -1;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.time-slot-time {
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
}

.time-slot-form {
  display: flex;
  flex-direction: column;
}

.time-slot-booking {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.refined-topics-label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin: 0.5rem 0 0.25rem;
}

.refined-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.refined-tag {
  padding: 0.35rem 0.75rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.refined-tag:hover {
  border-color: var(--color-accent);
}

.refined-tag.active {
  background-color: var(--page-color, #B26F6F);
  border-color: var(--page-color, #B26F6F);
  color: var(--color-white);
}

.refined-other {
  min-height: 60px;
  resize: vertical;
  margin-top: 0.25rem;
}

.time-slot-info {
  flex: 1;
  min-width: 160px;
}

.time-slot-date {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 0.125rem;
}

.time-slot-time {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.form-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  min-width: 140px;
  background: var(--color-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.btn-secondary {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: var(--page-color, #B26F6F);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--color-primary-dark);
}

.btn-submit {
  padding: 0.5rem 1.125rem;
  background-color: var(--page-color, #B26F6F);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background-color: var(--color-primary-dark);
}

.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--color-bg);
  border-radius: 12px;
}

.empty-state img {
  max-width: 160px;
  margin-bottom: 1.25rem;
}

.empty-state h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--color-text-light);
  max-width: 360px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .booking-page {
    padding: 1.5rem;
  }


  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-input, .btn-submit {
    width: 100%;
  }
}

/* Booking assistant panel styles live in booking_assistant.css. */

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle-wrapper {
  display: none;
}

/* Responsive: switch to hamburger menu at tablet + mobile */
@media (max-width: 1024px) {
  .layout-container {
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ── Logo bar: small, fixed, always on top ── */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    border-bottom: none;
    z-index: 120;
    isolation: isolate;
  }

  .sidebar-logo {
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    position: relative;
    z-index: 122;
    transition: background-color 0.3s ease;
  }

  .sidebar-brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
  }

  .sidebar-brand-link {
    flex: 0 1 auto;
    min-width: 0;
  }

  .site-language-switcher--nav {
    display: none;
  }

  .site-language-switcher--header {
    display: flex;
    position: static;
    flex: 0 0 auto;
    margin-top: 6px;
    padding: 0;
    gap: 0.3rem;
  }

  .site-language-switcher--header .site-language-switcher-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    padding: 0.28rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .site-language-switcher--header .site-language-switcher-link.active,
  .site-language-switcher--header .site-language-switcher-link:hover,
  .site-language-switcher--header .site-language-switcher-link:focus-visible {
    color: #fff;
    background: rgba(212, 165, 116, 0.28);
    border-color: rgba(212, 165, 116, 0.6);
  }

  .sidebar--scrolled:not(.sidebar--menu-open) .sidebar-logo {
    background: rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .sidebar-logo img {
    transition: filter 0.3s ease;
  }

  /* ── Toggle button: sits inside logo bar ── */
  .menu-toggle-wrapper {
    display: block;
    padding: 0;
  }

  .menu-divider {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 123;
    background: rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    padding: 0.4rem 0.875rem;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .menu-toggle-chevron {
    transition: transform 0.3s ease;
  }

  .menu-toggle--open .menu-toggle-chevron {
    transform: rotate(180deg);
  }

  .menu-toggle:hover,
  .menu-toggle--open {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
  }

  /* ── Backdrop: warm dark overlay ── */
  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .sidebar--menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Nav panel: full-screen centered overlay ── */
  .sidebar-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    overflow: hidden;
  }

  .sidebar--menu-open .sidebar-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar-nav ul {
    display: grid;
    grid-template-columns: 100vw;
    grid-template-rows: repeat(9, minmax(0, 1fr));
    width: 100vw;
    height: calc(100dvh - 8.75rem);
    min-height: 0;
    margin: 4.75rem 0 4rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0;
  }

  .sidebar-nav li {
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    margin: 0;
    width: 100vw;
    min-width: 0;
    padding: 0;
  }

  .sidebar-nav a {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 0.75rem 0.85rem;
    margin: 0;
    border-left: none;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 4.4vw, 1.5rem);
    color: rgba(255, 255, 255, 0.86);
    letter-spacing: -0.02em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .sidebar-nav a:hover,
  .sidebar-nav a:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.24), rgba(255, 255, 255, 0.05));
    border-left: none;
  }

  .sidebar-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.32), rgba(255, 255, 255, 0.07));
    border-left: none;
  }

  /* ── Nav thumbnails ── */
  .nav-thumb {
    display: block;
    width: 72px;
    height: 100%;
    min-height: 0;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
  }

  .nav-thumb--story img { object-position: center 36%; }
  .nav-thumb--founder img { object-position: center 16%; }
  .nav-thumb--mentoring img { object-position: center 34%; }
  .nav-thumb--motherhood img { object-position: center 18%; }
  .nav-thumb--journal img { object-position: center 16%; }
  .nav-thumb--podcasts img { object-position: center 44%; }
  .nav-thumb--talks img { object-position: center 42%; }
  .nav-thumb--contact img { object-position: center 12%; }

  .sidebar-nav a:hover .nav-thumb,
  .sidebar-nav a:focus-visible .nav-thumb,
  .sidebar-nav a.active .nav-thumb {
    border-color: rgba(212, 165, 116, 0.75);
    transform: scale(1.02);
  }

  .nav-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-left: 8px;
  }

  .nav-desc {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(0.68rem, 2.7vw, 0.83rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.54);
    margin: 0.2rem 0 0;
    line-height: 1.25;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .sidebar-nav a:hover .nav-cta,
  .sidebar-nav a:focus-visible .nav-cta,
  .sidebar-nav a.active .nav-cta {
    background: rgba(212, 165, 116, 0.35);
    transform: translateX(2px);
  }

  .sidebar-footer {
    display: none;
  }

  /* ── Footer: lives inside the mobile menu panel ── */
  .mobile-menu-footer {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .sidebar--menu-open .mobile-menu-footer {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-footer .sidebar-copyright {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1;
  }

  .mobile-menu-footer .sidebar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    flex: 0 0 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
    min-height: 0;
    grid-template-columns: none;
    gap: 0;
    padding: 0 !important;
    margin: 0 0 0 auto !important;
    border-left: none;
    background: none !important;
  }

  .mobile-menu-footer .sidebar-social--instagram svg {
    display: block;
    width: 24px;
    height: 24px;
  }

  .mobile-menu-footer .sidebar-social:hover,
  .mobile-menu-footer .sidebar-social:focus-visible {
    color: #fff;
    background: none !important;
    border-left: none;
  }

  .sidebar-social {
    background: none !important;
    padding: 0.5rem !important;
    margin: 0 !important;
  }

  .sidebar-social--youtube {
    display: none;
  }

  .sidebar-social--instagram svg {
    width: 40px;
    height: 40px;
  }

  .main-content {
    margin-top: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 720px) {
  .sidebar-nav ul {
    grid-template-columns: 100vw;
    grid-template-rows: repeat(9, minmax(0, 1fr));
    height: calc(100dvh - 8.5rem);
    margin-top: 4.5rem;
  }

  .sidebar-nav a {
    grid-template-columns: 34vw minmax(0, 1fr) 50px;
    gap: 0.55rem;
    min-height: 0;
    padding: 0.65rem;
  }

  .nav-thumb {
    width: 34vw;
    min-height: 0;
    border-radius: 10px;
  }

  .nav-cta {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px) {
  .sidebar {
    --phone-menu-top: 6.6rem;
    --phone-menu-inset: 0.75rem;
    --phone-menu-radius: 22px;
  }

  .mobile-menu-backdrop {
    background: rgba(0, 0, 0, 0.58);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .sidebar-nav {
    top: var(--phone-menu-top);
    right: var(--phone-menu-inset);
    bottom: var(--phone-menu-inset);
    left: var(--phone-menu-inset);
    width: auto;
    height: auto;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--phone-menu-radius);
    background: rgba(0, 0, 0, 0.88);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  }

  .sidebar-nav ul {
    width: 100%;
    height: calc(100% - 4rem);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(9, minmax(64px, 1fr));
    margin: 0;
  }

  .sidebar-nav li {
    width: 100%;
  }

  .sidebar-nav a {
    grid-template-columns: 82px minmax(0, 1fr) 32px;
    gap: 0.7rem;
    padding: 0.7rem 0.85rem;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .nav-thumb {
    width: 82px;
    border-radius: 12px;
  }

  .nav-text {
    padding-left: 0;
  }

  .nav-desc {
    font-size: clamp(0.68rem, 3.1vw, 0.78rem);
  }

  .nav-cta {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-footer {
    right: 1.1rem;
    bottom: 0.7rem;
    left: 1.1rem;
    min-height: 2.6rem;
  }
}

@media (max-width: 360px) {
  .sidebar-nav a {
    grid-template-columns: 74px minmax(0, 1fr) 30px;
    gap: 0.6rem;
    padding: 0.65rem 0.75rem;
  }

  .nav-thumb {
    width: 74px;
  }

  .nav-cta {
    width: 30px;
    height: 30px;
  }
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.language-switcher--inline {
  margin-bottom: 0;
}

.lang-link {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.lang-link:hover {
  color: var(--color-text);
  background-color: var(--color-bg-alt);
}

.lang-active {
  color: var(--color-text);
  background-color: var(--color-bg-alt);
  font-weight: 600;
}

/* Blog Post Hero */
.blog-post-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 70vh;
  padding: 6rem 4rem 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.blog-post-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.blog-post-hero-date {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.blog-post-hero-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.blog-post-body {
  padding: 2.5rem 4rem 6rem;
}

.blog-post-container {
  max-width: 700px;
  margin: 0 auto;
}

.blog-post-container .trix-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.blog-post-container .trix-content p:last-child {
  margin-bottom: 0;
}

.blog-post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blog-post-back {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.blog-post-back:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 768px) {
  .blog-post-hero {
    min-height: 56vh;
    padding: 6.5rem 1.5rem 2rem;
  }

  .blog-post-hero-title {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
    line-height: 1.08;
  }

  .blog-post-body {
    padding: 1.5rem 2rem 4rem;
  }
}

/* Blog Post Inline Images */
.blog-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.blog-image-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-post-container .trix-content figure,
.blog-post-container figure {
  margin: 2.5rem auto;
  max-width: 480px;
  text-align: center;
}

.blog-post-container .trix-content figure img,
.blog-post-container figure img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.blog-post-container .trix-content figcaption,
.blog-post-container figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .blog-image-row {
    grid-template-columns: 1fr;
  }

  .blog-image-row img {
    height: 220px;
  }

  .blog-post-container .trix-content figure,
  .blog-post-container figure {
    max-width: 100%;
  }
}

/* ── Audio Course: Mini Retreat ── */

.audio-course-section {
  padding: 5rem 4rem;
  background: linear-gradient(135deg, #FDF8F3 0%, #F5EDE4 50%, #FDF8F3 100%);
}

.audio-course-inner {
  max-width: 700px;
  margin: 0 auto;
}

.audio-course-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.audio-course-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.audio-course-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.audio-course-meta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.audio-course-badge {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.audio-course-intro {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* Enrollment form */
.audio-course-enroll {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.audio-course-enroll-form {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(139, 115, 85, 0.08);
}

.audio-course-enroll-input {
  min-height: 54px;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  flex: 1;
  min-width: 0;
}

.audio-course-enroll-input--name {
  border-radius: 8px 0 0 8px;
}

.audio-course-enroll-input--email {
  border-radius: 0;
}

.audio-course-enroll-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.audio-course-enroll-input:focus {
  border-color: var(--color-accent);
}

.audio-course-enroll-btn {
  min-height: 54px;
  padding: 0 1.5rem;
  background: linear-gradient(135deg, #D4A574, #C4955F);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.audio-course-enroll-btn:hover {
  opacity: 0.9;
}

.audio-course-enroll-hint {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

.audio-course-enroll-hint.is-error {
  color: #991B1B;
}

.audio-course-guide-link {
  margin: 0 0 0.5rem;
  text-align: center;
}

.audio-course-guide-link a {
  color: #7E4C4E;
  font-weight: 700;
  text-underline-offset: 3px;
}

/* Lesson cards */
.audio-course-lessons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.audio-lesson-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.audio-lesson-card.unlocked:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.audio-lesson-card.playing {
  border-color: #D4A574;
  box-shadow: 0 0 0 1px #D4A574, 0 4px 20px rgba(212, 165, 116, 0.15);
}

/* Locked state */
.audio-lesson-card.locked {
  opacity: 0.55;
  pointer-events: none;
}

.audio-lesson-card.locked .audio-play-button {
  display: none;
}

.audio-lesson-card.locked .audio-lesson-lock-icon {
  display: flex;
}

.audio-lesson-card.locked .audio-lesson-player {
  display: none;
}

/* Lock icon (hidden by default, shown when locked) */
.audio-lesson-lock-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--color-text-light);
}

/* Completed state */
.audio-lesson-card .audio-lesson-check {
  display: none;
}

.audio-lesson-card.completed .audio-lesson-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: #86EFAC;
  color: #166534;
  border-radius: 50%;
}

/* Lesson row layout */
.audio-lesson-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audio-lesson-info {
  flex: 1;
  min-width: 0;
}

.audio-lesson-day {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.audio-lesson-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin: 0.125rem 0 0.25rem;
  line-height: 1.3;
}

.audio-lesson-desc {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

/* Play button */
.audio-play-button {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A574, #C4955F);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.audio-play-button:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.4);
}

/* Expandable player (shown when playing) */
.audio-lesson-player {
  display: none;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.audio-lesson-card.expanded .audio-lesson-player,
.audio-lesson-card.playing .audio-lesson-player {
  display: block;
}

/* Progress bar */
.audio-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--color-bg-alt);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.audio-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #D4A574, #C4955F);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.audio-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 0.375rem;
}

/* Responsive */
@media (max-width: 768px) {
  .audio-course-section {
    padding: 3rem 1.5rem;
  }

  .audio-course-header h2 {
    font-size: 1.75rem;
  }

  .audio-course-meta {
    gap: 0.5rem;
  }

  .audio-course-enroll-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    box-shadow: none;
  }

  .audio-course-enroll-input {
    border-right: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 0;
  }

  .audio-course-enroll-btn {
    border-radius: 8px;
  }

  .audio-play-button {
    width: 42px;
    height: 42px;
  }

  .audio-lesson-lock-icon {
    width: 42px;
    height: 42px;
  }

  .audio-lesson-desc {
    display: none;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  width: 100%;
  min-height: 100vh;
  padding: 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--home {
  background-image: url("/design/images/maria-frisch.webp");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-highlight {
  font-family: "Avenir Next", "Avenir", var(--font-body);
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-subscribe-form {
  display: flex;
}

.hero-subscribe-input {
  height: 40px;
  padding: 0 0.75rem;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(216, 216, 216, 0.2);
  outline: none;
  flex: 1;
  max-width: 260px;
}

.hero-subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-subscribe-btn {
  height: 40px;
  padding: 0 1.25rem;
  background-color: var(--page-color, #B26F6F);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.hero-subscribe-btn:hover {
  background-color: #9a5e5e;
}

.hero-subscribe-message {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.75rem;
}

.about-section {
  padding: 6rem 4rem;
  background-color: var(--color-white);
}

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

.about-image img {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-image {
  align-self: start;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-content a:hover {
  color: var(--color-primary-dark);
}

.about-content a.mark-link,
.about-content a.mark-link:hover {
  text-decoration: none;
  color: #332e2e;
}

.offerings-section {
  padding: 6rem 4rem;
  background-color: var(--color-bg-alt);
}

.offerings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.offerings-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.offering-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.offering-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.offering-image--rooted img {
  object-position: center 38%;
}

.offering-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.offerings-section .offering-image h2 {
  position: absolute;
  bottom: 0.75rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  text-align: left;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.offering-content {
  padding: 1.5rem;
}

.offering-content p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.offering-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.offering-link:hover {
  color: var(--color-primary-dark);
}

.instagram-section {
  padding: 5rem 4rem;
  background-color: var(--color-bg-alt);
  text-align: center;
}

.instagram-container {
  max-width: 900px;
  margin: 0 auto;
}

.instagram-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instagram-handle {
  display: inline-block;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.instagram-handle:hover {
  color: var(--color-primary);
}

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

.instagram-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-tile:hover img {
  transform: scale(1.03);
}

.instagram-cta {
  display: inline-block;
  margin-top: 2rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.instagram-cta:hover {
  color: var(--color-primary-dark);
}

.page-header--blog {
  background-image: url("/design/images/all-family.webp");
}

.blog-section {
  padding: 2rem 4rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.post-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card,
.post-card:hover,
.post-card:focus-visible {
  color: inherit;
  text-decoration: none;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.post-card:hover h2 {
  color: var(--color-primary);
}

.post-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-image .post-date {
  position: absolute;
  top: 1rem;
  bottom: auto;
  left: 1.25rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  z-index: 1;
}

.post-image h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 4.5rem 1.25rem 1rem;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  line-height: 1.12;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
}

.post-content {
  padding: 1.25rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.post-excerpt {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
}

.post-chevron {
  flex-shrink: 0;
  color: var(--color-text-light);
  transition: transform 0.2s ease, color 0.2s ease;
}

.post-card:hover .post-chevron {
  transform: translateX(3px);
  color: var(--color-primary);
}

.page-header--podcasts {
  background-image: url("/design/images/maria-sitting.webp");
}

.episodes-section {
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.episodes-section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.episode-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

.episode-card--with-image {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1rem 1.25rem 1rem 1rem;
}

.episode-image {
  min-height: 170px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.episode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.episode-card:hover {
  border-color: var(--color-accent);
}

.episode-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.episode-header h2 {
  font-size: 1.375rem;
  margin: 0;
  flex: 1;
}

.episode-platform {
  background-color: var(--color-accent-soft);
  color: var(--color-primary-dark);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.episode-show {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.episode-description {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.episode-date {
  font-size: 0.875rem;
  color: var(--color-text-light);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.episode-link {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.episode-link:hover {
  color: var(--color-primary-dark);
}

.episode-player iframe {
  border-radius: 8px;
}

.success-page {
  padding: 6rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content {
  max-width: 500px;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.success-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.success-message strong {
  color: var(--color-text);
}

.booking-details {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.booking-details h2 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-text);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 500;
  color: var(--color-text-light);
}

.detail-value {
  font-weight: 600;
  color: var(--color-text);
}

.status-confirmed {
  color: #059669;
}

@media (max-width: 900px) {
  .about-section,
  .offerings-section {
    padding: 3rem 2rem;
  }

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

  .about-content h2,
  .offerings-section h2 {
    font-size: 2rem;
  }

  .offerings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 768px) {
  .hero {
    padding: 2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subscribe-input {
    max-width: none;
  }

  .instagram-section {
    padding: 3rem 2rem;
  }

  .instagram-section h2 {
    font-size: 2rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-section {
    padding: 1rem 2rem 4rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .episodes-section {
    padding: 2rem 1.5rem;
  }

  .episode-card {
    padding: 1.5rem;
  }

  .episode-card--with-image {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .episode-image {
    min-height: 210px;
  }

  .episode-header {
    flex-direction: column;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .sidebar {
    --tablet-menu-top: clamp(5.5rem, 10dvh, 7rem);
    --tablet-menu-right: 1rem;
    --tablet-menu-width: min(calc(100vw - 20rem), 760px);
    --tablet-menu-height: min(calc(100dvh - 7rem), 720px);
    --tablet-menu-radius: 24px;
  }

  .sidebar-nav {
    top: var(--tablet-menu-top);
    right: var(--tablet-menu-right);
    left: auto;
    width: var(--tablet-menu-width);
    height: var(--tablet-menu-height);
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--tablet-menu-radius);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    transform: none;
  }

  .mobile-menu-backdrop {
    background: transparent;
  }

  .mobile-menu-backdrop::before {
    content: "";
    position: absolute;
    top: var(--tablet-menu-top);
    right: var(--tablet-menu-right);
    width: var(--tablet-menu-width);
    height: var(--tablet-menu-height);
    border-radius: var(--tablet-menu-radius);
    background: rgba(0, 0, 0, 0.9);
  }

  .sidebar-nav ul {
    width: 100%;
    height: calc(100% - 4.25rem);
    margin: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(9, minmax(64px, 1fr));
  }

  .sidebar-nav li {
    width: 100%;
  }

  .sidebar-nav a {
    grid-template-columns: 86px minmax(0, 1fr) 40px;
    padding: 0.85rem 1rem;
  }

  .nav-thumb {
    width: 86px;
  }

  .hero-content {
    box-sizing: border-box;
    width: min(100%, 680px);
    padding-inline: clamp(3rem, 7vw, 5rem);
  }

  .newsletter-section .hero-subscribe-form {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .newsletter-section .hero-subscribe-input {
    max-width: none;
  }

  .about-section {
    padding: 3.5rem 2rem;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .about-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .instagram-container {
    max-width: 720px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .success-page {
    padding: 3rem 1.5rem;
  }

  .success-content h1 {
    font-size: 2rem;
  }

  .booking-details {
    padding: 1.5rem;
  }
}

/* Admin Website Assistant */
.admin-assistant {
  position: fixed;
  right: 1.25rem;
  bottom: 6.25rem;
  z-index: 120;
  font-family: var(--font-body);
}

.admin-assistant__bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(61, 50, 41, 0.12);
  border-radius: 999px;
  background: #3D3229;
  color: #FFFFFF;
  box-shadow: 0 16px 45px rgba(61, 50, 41, 0.22);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 1rem;
}

.admin-assistant__spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #3D3229;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.admin-assistant__panel {
  position: absolute;
  right: 0;
  bottom: 3.8rem;
  width: min(360px, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid rgba(61, 50, 41, 0.12);
  border-radius: 22px;
  background: #FDF8F3;
  box-shadow: 0 24px 60px rgba(61, 50, 41, 0.22);
}

.admin-assistant__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.admin-assistant__header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.admin-assistant__eyebrow {
  margin: 0 0 0.15rem;
  color: var(--color-text-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-assistant__close {
  border: 0;
  background: transparent;
  color: var(--color-text-light);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.admin-assistant__messages {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem;
}

.admin-assistant__message {
  max-width: 88%;
  margin: 0;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
  padding: 0.75rem 0.85rem;
}

.admin-assistant__message--assistant {
  align-self: flex-start;
  background: #FFFFFF;
  color: var(--color-text);
}

.admin-assistant__message--user {
  align-self: flex-end;
  background: var(--color-primary-dark);
  color: #FFFFFF;
}

.admin-assistant__form {
  display: grid;
  gap: 0.65rem;
  padding: 0 1rem 1rem;
}

.admin-assistant__input {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--color-text);
  font: inherit;
  min-height: 5rem;
  padding: 0.8rem;
}

.admin-assistant__send {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary-dark);
  color: #FFFFFF;
  cursor: pointer;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
}

@media (max-width: 768px) {
  .admin-assistant {
    right: 0.75rem;
    bottom: 5.5rem;
  }

  .admin-assistant__bubble {
    padding: 0.7rem 0.85rem;
  }
}

/* Guide lead magnet */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.lead-signup-form {
  position: relative;
}

.lead-signup-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-signup-fields {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(190px, 1.25fr) auto;
  gap: 0.65rem;
  align-items: stretch;
}

.lead-signup-field,
.lead-signup-input {
  min-width: 0;
  width: 100%;
}

.lead-signup-input {
  min-height: 52px;
  border: 1px solid rgba(61, 50, 41, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  font: 500 0.95rem/1.2 var(--font-body);
  padding: 0 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-signup-input::placeholder {
  color: rgba(61, 50, 41, 0.52);
}

.lead-signup-input:focus {
  outline: none;
  border-color: #A96668;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(169, 102, 104, 0.14);
}

.lead-signup-button {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: var(--color-accent);
  color: #FFFFFF;
  cursor: pointer;
  font: 700 0.83rem / 1 var(--font-body);
  letter-spacing: 0.035em;
  padding: 0 1.25rem;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.lead-signup-button:hover {
  background: #683D3F;
  box-shadow: 0 8px 20px rgba(80, 41, 42, 0.2);
  transform: translateY(-1px);
}

.lead-signup-button:focus-visible,
.guide-download-link:focus-visible,
.guide-quote-cta:focus-visible {
  outline: 3px solid #D4A574;
  outline-offset: 3px;
}

.lead-signup-consent {
  margin: 0.75rem 0 0;
  color: rgba(61, 50, 41, 0.68);
  font-size: 0.75rem;
  line-height: 1.45;
}

.lead-signup-errors {
  margin-bottom: 0.75rem;
  border-left: 3px solid #A83F45;
  background: #FFF5F4;
  color: #7A272D;
  padding: 0.65rem 0.8rem;
}

.lead-signup-errors p {
  margin: 0;
  color: inherit;
  font-size: 0.82rem;
}

.hero-subscribe-offer {
  margin: 0 0 0.65rem;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lead-signup--home .lead-signup-input {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(33, 25, 20, 0.42);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.lead-signup--home .lead-signup-input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.lead-signup--home .lead-signup-input:focus {
  border-color: #FFFFFF;
  background: rgba(33, 25, 20, 0.62);
}

.lead-signup--home .lead-signup-consent {
  color: rgba(255, 255, 255, 0.78);
}

.newsletter-content {
  max-width: 760px;
}

.newsletter-content .lead-signup-consent {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
}

@media (min-width: 1025px) {
  .sidebar-nav {
    padding: 0.75rem 0;
  }

  .sidebar-nav a {
    padding-block: 0.42rem;
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  }

  .site-language-switcher {
    padding-bottom: 0.5rem;
  }

  .guide-resource-page {
    --guide-sidebar-width: clamp(200px, 16vw, 300px);
  }

  .guide-resource-page .sidebar {
    position: fixed;
    width: var(--guide-sidebar-width);
    background: #4A342F;
  }

  .guide-resource-page .main-content {
    flex: 0 0 auto;
    width: calc(100% - var(--guide-sidebar-width));
    margin-left: var(--guide-sidebar-width);
  }
}

.guide-landing-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(135deg, #F8EEE8 0%, #F2DED8 52%, #D8A5A1 100%);
  padding: clamp(7rem, 10vw, 10rem) clamp(2rem, 7vw, 7rem) clamp(5rem, 8vw, 8rem);
}

.guide-landing-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -24vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(126, 76, 78, 0.18);
  border-radius: 50%;
}

.guide-landing-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.guide-landing-copy {
  animation: guide-rise 650ms ease both;
}

.guide-eyebrow {
  margin: 0 0 1rem;
  color: #7E4C4E;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-landing-copy h1,
.guide-access-heading h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.guide-subtitle {
  margin: 1.5rem 0 0;
  color: #7E4C4E;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
}

.guide-intro {
  max-width: 700px;
  margin: 1rem 0 0;
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}

.guide-format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.guide-format-list li {
  border: 1px solid rgba(126, 76, 78, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  color: #683D3F;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.42rem 0.75rem;
}

.guide-signup-panel {
  max-width: 760px;
  margin-top: 2rem;
  border-top: 1px solid rgba(61, 50, 41, 0.15);
  padding-top: 1.5rem;
}

.guide-signup-panel h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.guide-signup-panel > p {
  margin: 0 0 1rem;
  color: var(--color-text-light);
}

.guide-language-note {
  margin: 0.85rem 0 0;
  color: var(--color-text-light);
  font-size: 0.76rem;
  font-style: italic;
}

.guide-cover-stage {
  position: relative;
  width: min(430px, 100%);
  margin: 0 auto;
  perspective: 1200px;
  animation: guide-cover-settle 850ms 120ms cubic-bezier(.2, .75, .25, 1) both;
}

.guide-cover-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 30px 65px rgba(73, 43, 38, 0.24), 0 5px 12px rgba(73, 43, 38, 0.14);
  transform: rotate(1.2deg);
}

.guide-cover-shadow {
  position: absolute;
  inset: 8% -10% -6% 12%;
  border-radius: 50%;
  background: rgba(104, 61, 63, 0.2);
  filter: blur(34px);
  transform: rotate(-6deg);
}

.guide-inside-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 5rem);
}

.guide-inside-heading h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.guide-inside-heading > p:last-child {
  color: var(--color-text-light);
  font-size: 1.04rem;
  line-height: 1.75;
}

.guide-inside-list {
  border-top: 1px solid var(--color-border);
}

.guide-inside-item {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding: 1.65rem 0;
}

.guide-inside-item > span {
  color: #A96668;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.guide-inside-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.guide-inside-item p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.7;
}

.guide-quote-section {
  display: grid;
  justify-items: center;
  gap: 2rem;
  background: #4A3530;
  color: #FFFFFF;
  padding: clamp(5rem, 9vw, 9rem) 1.5rem;
  text-align: center;
}

.guide-quote-section blockquote {
  max-width: 920px;
  margin: 0;
}

.guide-quote-section blockquote p {
  margin: 0;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.8vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.guide-quote-section cite {
  display: block;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-quote-cta {
  border-color: rgba(255, 255, 255, 0.25);
  background: #FFFFFF;
  color: #4A3530;
}

.guide-access-hero {
  background: linear-gradient(145deg, #F8EEE8 0%, #F0D9D3 100%);
  padding: clamp(8rem, 12vw, 11rem) clamp(1.5rem, 7vw, 7rem) clamp(4rem, 7vw, 7rem);
}

.guide-access-heading {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.guide-access-heading > p:not(.guide-eyebrow):not(.guide-access-status) {
  max-width: 680px;
  margin: 1.25rem auto 0;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.guide-access-status {
  display: inline-block;
  margin: 1.5rem auto 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
}

.guide-access-status.is-confirmed {
  background: #E5F3E8;
  color: #2D6A3D;
}

.guide-access-status.is-pending {
  background: rgba(255, 255, 255, 0.62);
  color: #683D3F;
}

.guide-access-resources {
  display: grid;
  gap: 2rem;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4rem) 8rem;
}

.guide-resource {
  overflow: hidden;
  border: 1px solid rgba(61, 50, 41, 0.1);
  border-radius: 20px;
  background: #FFFFFF;
}

.guide-resource--pdf {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  align-items: center;
}

.guide-resource-visual {
  align-self: stretch;
  padding: 2.5rem;
  background: #E3B2AE;
}

.guide-resource-visual img {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin: 0 auto;
  box-shadow: 0 18px 36px rgba(77, 44, 39, 0.2);
}

.guide-resource-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.guide-resource-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.guide-resource-copy > p:not(.guide-resource-meta):not(.guide-language-note) {
  max-width: 650px;
  color: var(--color-text-light);
  line-height: 1.75;
}

.guide-resource-meta {
  margin: 0 0 0.8rem;
  color: #A96668;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-resource--audio {
  background: #4A3530;
  color: #FFFFFF;
}

.guide-resource--audio h2,
.guide-resource--audio p {
  color: #FFFFFF;
}

.guide-resource--audio .guide-resource-meta,
.guide-resource--audio .guide-language-note {
  color: rgba(255, 255, 255, 0.65);
}

.guide-resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.guide-download-link {
  color: #7E4C4E;
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.guide-audio-player {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  accent-color: #D4A574;
}

.newsletter-preferences-section {
  min-height: 70vh;
  padding-top: 10rem;
}

.newsletter-preferences-card {
  max-width: 620px;
  text-align: center;
}

.newsletter-preferences-card h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.newsletter-preferences-status {
  border-radius: 12px;
  background: #F0F8F2;
  color: #2D6A3D;
  padding: 1rem;
}

.newsletter-unsubscribe-button {
  border: 0;
  cursor: pointer;
}

.nav-thumb--guide img {
  object-position: 50% 18%;
}

@keyframes guide-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes guide-cover-settle {
  from { opacity: 0; transform: translateY(24px) rotate(-2deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@media (max-width: 980px) {
  .guide-landing-inner,
  .guide-inside-section {
    grid-template-columns: 1fr;
  }

  .guide-cover-stage {
    grid-row: 1;
    width: min(340px, 72vw);
  }

  .guide-landing-copy {
    text-align: center;
  }

  .guide-intro,
  .guide-signup-panel {
    margin-inline: auto;
  }

  .guide-format-list,
  .lead-signup--guide .lead-signup-fields {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .lead-signup-fields {
    grid-template-columns: 1fr;
  }

  .lead-signup-button {
    min-height: 50px;
  }

  .guide-landing-hero {
    padding: 7rem 1.25rem 4rem;
  }

  .guide-landing-copy h1,
  .guide-access-heading h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .guide-cover-stage {
    width: min(290px, 78vw);
  }

  .guide-inside-section {
    padding: 4.5rem 1.5rem;
  }

  .guide-resource--pdf {
    grid-template-columns: 1fr;
  }

  .guide-resource-visual {
    padding: 2rem;
  }

  .guide-resource-copy {
    padding: 2rem 1.4rem;
  }

  .guide-access-resources {
    padding-bottom: 10rem;
  }

  .guide-quote-section {
    padding-bottom: 10rem;
  }

  .newsletter-section .lead-signup-fields {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-landing-copy,
  .guide-cover-stage {
    animation: none;
  }

  .lead-signup-button {
    transition: none;
  }
}
