/* ============================================
   Finding Our Forest - Page Styles
   Styles for About and Acknowledgements pages
   ============================================ */

/* Page Body */
.page-body {
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  padding-top: 70px; /* Space for fixed nav */
}

/* ============================================
   Navigation
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-logo:hover {
  color: var(--color-accent);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link.active {
  color: var(--color-accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--color-bg-elevated-strong);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  display: block;
  padding: 1rem 2rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-link.a11y-toggle {
  text-align: left;
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.03);
}

/* ============================================
   Hero Section
   ============================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(16, 12, 10, 1) 0%, rgba(30, 22, 18, 1) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201, 166, 107, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-accent-dim);
  border-radius: 20px;
  background: rgba(201, 166, 107, 0.1);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: var(--size-body);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   Page Content
   ============================================ */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-block {
  margin-bottom: 4rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.content-block p {
  font-size: var(--size-body);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* Styled List */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.styled-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: var(--size-body);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.8;
}

/* Character Grid */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.character-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.character-card--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.character-card--link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.character-portrait {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(201, 166, 107, 0.08);
  border: 1px solid rgba(201, 166, 107, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.character-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.character-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 166, 107, 0.2);
  transform: translateY(-2px);
}

.character-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.character-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Featured Quote */
.featured-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  margin: 2rem 0;
  background: rgba(201, 166, 107, 0.05);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 12px 12px 0;
}

.featured-quote.personal {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  background: rgba(255, 255, 255, 0.02);
}

/* Acknowledgement Sections */
.acknowledgement-section .names-highlight {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-accent);
  margin: 1.5rem 0;
}

.acknowledgement-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.acknowledgement-card:last-child {
  margin-bottom: 0;
}

.acknowledgement-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.acknowledgement-card p {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.acknowledgement-card p:last-child {
  margin-bottom: 0;
}

/* Signature */
.signature {
  text-align: center;
}

.signature p {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.signature .signature-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 0;
}

/* CTA Button */
.page-cta {
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #dbb77a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 166, 107, 0.3);
}

/* ============================================
   Letter Page
   ============================================ */
.letter-body .page-hero {
  background: linear-gradient(180deg, rgba(18, 13, 11, 1) 0%, rgba(26, 20, 16, 1) 100%);
}

.letter-content {
  max-width: 920px;
}

.letter-sheet {
  background: linear-gradient(160deg, #f2e7d6 0%, #e7d7c3 100%);
  color: #2b241b;
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 2px 0 rgba(255, 255, 255, 0.15) inset;
  border: 1px solid rgba(58, 45, 32, 0.18);
  position: relative;
  transform-origin: center;
}

@media screen not mobile {
  transform: rotate(-1.2deg);
}

.letter-sheet::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(43, 36, 27, 0.15);
  border-radius: 14px;
  pointer-events: none;
}

.letter-sheet::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 60%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  border-top-right-radius: 16px;
  pointer-events: none;
  opacity: 0.6;
}

.letter-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.letter-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-top: 0.5rem;
}

.letter-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(43, 36, 27, 0.55);
}

.letter-poem {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(201, 166, 107, 0.12);
  border-left: 3px solid rgba(201, 166, 107, 0.7);
  border-radius: 12px;
}

.letter-poem p {
  margin-bottom: 1rem;
  color: #3a3024;
}

.letter-poem p:last-child {
  margin-bottom: 0;
}

.letter-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: rgba(43, 36, 27, 0.9);
}

.letter-text p:last-child {
  margin-bottom: 0;
}

.letter-signature {
  margin-top: 2.5rem;
  text-align: right;
  font-family: var(--font-display);
  font-style: italic;
}

.letter-signature .signature-name {
  font-size: 1.6rem;
  font-weight: 500;
  color: #2b241b;
}

/* ============================================
   Photo Gallery
   ============================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.photo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.photo-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.photo-card--letter img {
  object-fit: contain;
  background: rgba(201, 166, 107, 0.08);
}

.photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 166, 107, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

/* ============================================
   Tab Switcher (Our Story page)
   ============================================ */
.tab-switcher {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tab-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.tab-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.tab-btn[aria-selected="true"] {
  color: var(--color-accent);
}

.tab-btn[aria-selected="true"]::after {
  transform: translateX(-50%) scaleX(1);
}

.tab-panel {
  display: none;
  animation: tabFadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Immersive Reflection Prompts (Carousel)
   ============================================ */
.reflection-immersive {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.reflection-preamble {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.6s ease;
}

.reflection-preamble h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.reflection-preamble p {
  font-size: var(--size-body);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.begin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.begin-btn:hover {
  background: #dbb77a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 166, 107, 0.3);
}

.prompt-stage {
  position: relative;
  min-height: 50vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prompt-stage.active {
  display: flex;
}

.prompt-viewport {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-height: 320px;
  overflow: hidden;
}

.prompt-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.prompt-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.prompt-slide.exit-left {
  opacity: 0;
  transform: translateX(-80px);
}

.prompt-slide.exit-right {
  opacity: 0;
  transform: translateX(80px);
}

.prompt-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.5rem;
  user-select: none;
}

.prompt-question {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.prompt-description {
  font-size: var(--size-body);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* Prompt Navigation */
.prompt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.prompt-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prompt-nav-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(201, 166, 107, 0.08);
}

.prompt-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.prompt-nav-btn:disabled:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
}

.prompt-nav-btn svg {
  width: 20px;
  height: 20px;
}

.prompt-dots {
  display: flex;
  gap: 0.5rem;
}

.prompt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.prompt-dot:hover {
  background: rgba(255, 255, 255, 0.35);
}

.prompt-dot.active {
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(201, 166, 107, 0.4);
}

/* Ambient Glow */
.prompt-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
  pointer-events: none;
  animation: ambientRotate 12s linear infinite;
  transition: background 0.8s ease;
}

.prompt-ambient[data-color="0"] { background: radial-gradient(circle, #c9a66b, transparent 70%); }
.prompt-ambient[data-color="1"] { background: radial-gradient(circle, #7ba68c, transparent 70%); }
.prompt-ambient[data-color="2"] { background: radial-gradient(circle, #8b7ec8, transparent 70%); }
.prompt-ambient[data-color="3"] { background: radial-gradient(circle, #c87e7e, transparent 70%); }
.prompt-ambient[data-color="4"] { background: radial-gradient(circle, #7eb5c8, transparent 70%); }
.prompt-ambient[data-color="5"] { background: radial-gradient(circle, #c8b07e, transparent 70%); }
.prompt-ambient[data-color="6"] { background: radial-gradient(circle, #a67bb5, transparent 70%); }
.prompt-ambient[data-color="7"] { background: radial-gradient(circle, #8cc87e, transparent 70%); }

@keyframes ambientRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Journey Links (cross-page navigation)
   ============================================ */
.journey-links {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.journey-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.journey-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 166, 107, 0.25);
  transform: translateY(-3px);
}

.journey-card-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.7;
}

.journey-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
}

.journey-card-hint {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Footer
   ============================================ */
.page-footer {
  position: relative;
  background: rgba(18, 13, 11, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem 2rem;
}

/* Inspiration citation */
.footer-inspiration {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.footer-inspiration-inner {
  position: relative;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.06), rgba(201, 166, 107, 0.02));
  border: 1px solid rgba(201, 166, 107, 0.12);
  border-radius: 12px;
}

.footer-inspiration-leaf {
  display: block;
  margin: 0 auto 0.75rem;
  width: 24px;
  height: 24px;
  opacity: 0.4;
  background: var(--color-accent, #c9a66b);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer-inspiration-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  font-style: normal;
}

.footer-inspiration-text em {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.footer-inspiration-text a {
  color: var(--color-accent-dim, #b89a5a);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 166, 107, 0.2);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-inspiration-text a:hover {
  color: var(--color-accent, #c9a66b);
  border-bottom-color: var(--color-accent, #c9a66b);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.footer-brand .brand-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-a11y {
  text-align: center;
  padding-bottom: 1.5rem;
}

.a11y-toggle--footer {
  font-size: 0.75rem;
}

.footer-bottom {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom p + p {
  margin-top: 0.5rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

.footer-byline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

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

.footer-byline a:hover {
  color: var(--color-accent);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-logo:hover img {
  opacity: 0.8;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .page-body {
    padding-top: 60px;
  }

  .site-nav {
    padding: 0.6rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .page-hero {
    min-height: 40vh;
    padding: 3rem 1.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-content {
    padding: 3rem 1.5rem;
  }

  .content-block {
    margin-bottom: 3rem;
  }

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

  .featured-quote {
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  /* Tabs responsive */
  .tab-switcher {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .tab-btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.25rem;
  }

  /* Carousel responsive */
  .prompt-viewport {
    min-height: 280px;
  }

  .prompt-nav {
    gap: 1.25rem;
  }

  .prompt-nav-btn {
    width: 42px;
    height: 42px;
  }

  .prompt-ambient {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .site-nav {
    padding: 0.6rem 1rem;
  }

  .nav-logo {
    font-size: 0.9rem;
  }

  .hero-label {
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
  }

  .content-block h2 {
    font-size: 1.3rem;
  }

  .content-block p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }

  /* Carousel responsive - small */
  .prompt-number {
    font-size: 3.5rem;
  }

  .prompt-question {
    font-size: 1.3rem;
  }

  .prompt-slide {
    padding: 1.5rem 0.5rem;
  }

  .prompt-viewport {
    min-height: 260px;
  }

  .prompt-dots {
    gap: 0.4rem;
  }

  .prompt-dot {
    width: 8px;
    height: 8px;
  }
}
