/* ========================================
   Karen L. Cox — Front Porch Website
   Warm, calm, inviting, boutique feel
   ======================================== */

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

:root {
  /* Warm porch palette */
  --porch-cream: #faf6f0;
  --porch-ivory: #f5efe6;
  --porch-warm: #f0e8db;
  --porch-sage: #8a9a8b;
  --porch-sage-light: #a8b8a9;
  --porch-sage-dark: #6a7a6b;
  --porch-terracotta: #c4835a;
  --porch-terracotta-hover: #b0714a;
  --porch-brick: #a05a3c;
  --porch-gold: #b8955a;
  --porch-gold-soft: #c4a46d;

  /* Neutrals */
  --ink: #3a3530;
  --charcoal: #4a4540;
  --text-dark: #3a3530;
  --text-medium: #6a655f;
  --text-light: #9a958f;
  --white: #ffffff;

  /* Fonts */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background-color: var(--porch-cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--porch-terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--porch-terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 131, 90, 0.3);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.25rem 0;
}

#navbar.navbar-solid {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
}

#navbar.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

#navbar.navbar-solid .nav-logo,
#navbar.scrolled .nav-logo {
  color: var(--ink);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a.active {
  color: var(--porch-gold-soft);
}

#navbar.navbar-solid .nav-links a,
#navbar.scrolled .nav-links a {
  color: var(--text-medium);
}

.nav-links a:hover {
  color: var(--porch-terracotta);
}

#navbar.navbar-solid .nav-links a:hover,
#navbar.scrolled .nav-links a:hover {
  color: var(--porch-terracotta);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background var(--transition);
}

#navbar.navbar-solid .hamburger,
#navbar.scrolled .hamburger {
  background: var(--ink);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

#navbar.navbar-solid .hamburger::before,
#navbar.navbar-solid .hamburger::after,
#navbar.scrolled .hamburger::before,
#navbar.scrolled .hamburger::after {
  background: var(--ink);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* --- Porch Hero (Homepage) --- */
.porch-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg,
      rgba(58, 53, 48, 0.45) 0%,
      rgba(58, 53, 48, 0.25) 40%,
      rgba(58, 53, 48, 0.35) 100%
    ),
    url('images/porch-karen.jpg') center / cover no-repeat;
  background-position: center center;
}

.porch-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196, 131, 90, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(184, 149, 90, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.porch-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(58, 53, 48, 0.3) 100%);
}

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

.porch-greeting {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.porch-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.porch-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: gentle-bounce 2.5s ease-in-out infinite;
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Welcome Section --- */
.welcome {
  padding: 6rem 0 5rem;
  background-color: var(--porch-cream);
}

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

.welcome-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.welcome-body p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.welcome-sign {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-medium);
  margin-top: 2rem;
}

.welcome-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--porch-terracotta);
  margin-top: 0.5rem;
}

/* --- Rooms (Homepage Section Preview) --- */
.rooms {
  padding: 5rem 0 7rem;
  background: linear-gradient(180deg, var(--porch-cream) 0%, var(--porch-ivory) 100%);
}

.rooms-heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.rooms-intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 3.5rem;
}

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

.room-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(184, 149, 90, 0.12);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: var(--porch-gold);
}

.room-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.room-author {
  background: linear-gradient(135deg, #6a7a6b 0%, #8a9a8b 50%, #a8b8a9 100%);
}

.room-style {
  background: linear-gradient(135deg, #c4835a 0%, #c4a46d 50%, #d4b07d 100%);
}

.room-movement {
  background: linear-gradient(135deg, #a05a3c 0%, #c4835a 50%, #e0a070 100%);
}

.room-image-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.room-image-placeholder svg {
  stroke: rgba(255, 255, 255, 0.6);
}

.room-content {
  padding: 2rem 1.75rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-content h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.room-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  flex: 1;
}

.room-enter {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--porch-terracotta);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.room-card:hover .room-enter {
  color: var(--porch-brick);
}

/* --- Section Hero (Interior Pages) --- */
.section-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.style-hero {
  background: linear-gradient(180deg, var(--porch-warm) 0%, var(--porch-cream) 100%);
}

.movement-hero {
  background: linear-gradient(180deg, #f0ddd0 0%, var(--porch-cream) 100%);
}

.about-hero {
  background: linear-gradient(180deg, var(--porch-ivory) 0%, var(--porch-cream) 100%);
}

.page-about .section-hero {
  padding-bottom: 2rem;
}

.page-about .content-section {
  padding-top: 2rem;
}

.contact-hero {
  background: linear-gradient(180deg, #e8e0d0 0%, var(--porch-cream) 100%);
}

.page-author .section-hero {
  background: linear-gradient(180deg, #e0e5e0 0%, var(--porch-cream) 100%);
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--porch-terracotta);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

.section-title-accent {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--porch-terracotta);
  margin-bottom: 1.5rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
}

.section-lead-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.section-lead-wrap p {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* --- Content Sections --- */
.content-section {
  padding: 5rem 0;
}

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

.content-section.dark-bg {
  background: linear-gradient(135deg, var(--ink) 0%, #2d2823 100%);
  color: var(--porch-cream);
}

.content-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
}

.content-heading.centered {
  text-align: center;
}

.content-heading.light {
  color: var(--porch-cream);
}

.content-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--porch-gold);
  margin-top: 0.75rem;
}

.content-heading.centered::after {
  margin: 0.75rem auto 0;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.content-section .narrow p {
  font-size: 1.1rem;
}

.dark-bg p {
  color: rgba(245, 239, 230, 0.85);
}

.section-intro-text {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
  max-width: 600px;
}

.dark-bg .section-intro-text {
  color: rgba(245, 239, 230, 0.7);
}

#stories .section-intro-text,
#story-worlds .section-intro-text {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  gap: 2rem;
}

.cards-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(184, 149, 90, 0.15);
  transition: all var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
  border-color: var(--porch-gold);
}

.info-card.subtle {
  background: var(--porch-cream);
  border-color: rgba(184, 149, 90, 0.1);
}

.info-card h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.info-card em {
  font-style: italic;
  color: var(--porch-brick);
}

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--porch-terracotta);
  background: rgba(196, 131, 90, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.card-subtitle {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--porch-brick);
  margin-bottom: 1rem;
}

/* --- Recognition (Author page) --- */
.recognition-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.recognition-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.recognition-text em {
  color: var(--porch-gold-soft);
  font-style: italic;
}

.recognition-date {
  font-size: 0.88rem;
  color: rgba(196, 164, 109, 0.7);
  font-style: italic;
  letter-spacing: 0.03em;
}

.recognition-image-placeholder {
  display: flex;
  justify-content: center;
}

.placeholder-box {
  width: 200px;
  height: 260px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(184, 149, 90, 0.3);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(196, 164, 109, 0.5);
  font-size: 0.8rem;
}

.placeholder-box svg {
  stroke: rgba(196, 164, 109, 0.4);
}

/* --- Author Page Hero Split --- */
.author-hero-split {
  text-align: left;
  padding-top: 8rem;
}

.author-hero-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.author-hero-text .section-title {
  margin-left: 0;
  text-align: left;
}

.author-hero-text .section-lead {
  margin-left: 0;
  text-align: left;
}

.author-hero-text .section-eyebrow {
  margin-bottom: 0.75rem;
}

.author-hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.author-hero-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* --- About Karen (Author page) --- */
.about-karen-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-karen-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-karen-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* --- Recognition Image (real) --- */
.recognition-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0.92;
  border: 1px solid rgba(184, 149, 90, 0.2);
}

/* --- Secondary button --- */
.btn-secondary {
  background-color: transparent;
  color: var(--ink);
  border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--white);
}

@media (max-width: 900px) {
  .author-hero-layout,
  .about-karen-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-hero-text .section-title,
  .author-hero-text .section-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .author-hero-buttons {
    justify-content: center;
  }

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

/* --- Easter Egg Styles --- */
.egg-hero {
  background: linear-gradient(180deg, #e8f0e8 0%, var(--porch-cream) 100%);
  padding: 9rem 0 2rem;
}

.egg-gallery-section {
  padding-top: 2rem;
}

.egg-trivia-section {
  padding-top: 1rem;
}

.egg-surfaced-icon {
 width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: rgba(196, 131, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--porch-terracotta);
}

.egg-surfaced-icon svg {
  stroke: var(--porch-terracotta);
}

.egg-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--porch-sage);
  text-align: center;
  margin-bottom: 1rem;
}

.egg-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: 0.5rem;
}

.egg-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--porch-terracotta);
  text-align: center;
  margin-bottom: 2rem;
}

.egg-body {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.egg-body p {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.egg-gallery {
  max-width: 800px;
  margin: 0 auto;
}

.egg-photo-main img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.egg-back-wrap {
  text-align: center;
  margin-top: 3rem;
}

.egg-back-link {
  font-size: 0.95rem;
  color: var(--porch-terracotta);
  transition: color var(--transition);
}

.egg-back-link:hover {
  color: var(--porch-brick);
}

/* --- Easter Egg Trivia (Landry page) --- */
.egg-trivia {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(184, 149, 90, 0.15);
  margin-top: 1rem;
}

.egg-trivia-question {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.egg-trivia-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.egg-trivia-btn {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  border: 2px solid rgba(58, 53, 48, 0.15);
  background: var(--porch-cream);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.egg-trivia-btn:hover:not(:disabled) {
  border-color: var(--porch-terracotta);
  color: var(--porch-terracotta);
}

.egg-trivia-btn.correct {
  background: #4caf50 !important;
  border-color: #4caf50 !important;
  color: #fff !important;
  animation: egg-pulse 0.6s ease;
}

.egg-trivia-btn.wrong {
  background: #f44336 !important;
  border-color: #f44336 !important;
  color: #fff !important;
  animation: egg-shake 0.4s ease;
}

.egg-trivia-btn.reveal {
  background: #4caf50 !important;
  border-color: #4caf50 !important;
  color: #fff !important;
  opacity: 0.7;
}

.egg-trivia-btn:disabled {
  cursor: default;
  opacity: 0.4;
}

.egg-trivia-btn.correct:disabled,
.egg-trivia-btn.wrong:disabled,
.egg-trivia-btn.reveal:disabled {
  opacity: 1;
}

@keyframes egg-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes egg-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.egg-trivia-result {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  min-height: 1.5rem;
  display: none;
}

.egg-trivia-result.show {
  display: block;
}

.egg-trivia-result.correct-show {
  color: #4caf50;
}

.egg-trivia-result.wrong-show {
  color: #f44336;
}

.egg-trivia-bio {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-medium);
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.egg-trivia-result {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  min-height: 1.5rem;
  display: none;
  line-height: 1.7;
}

.egg-try-again {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  border: 1.5px solid var(--porch-terracotta);
  background: transparent;
  color: var(--porch-terracotta);
  cursor: pointer;
  transition: all var(--transition);
  display: none;
}

.egg-try-again.show {
  display: inline-block;
}

.egg-trivia-progress {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  min-height: 1.5rem;
  display: none;
}

.egg-trivia-progress.show {
  display: block;
}

.egg-trivia-progress.correct-show {
  color: #4caf50;
}

.egg-trivia-progress.wrong-show {
  color: #f44336;
}

#meet-others.show {
  display: inline-block;
  border-color: var(--porch-sage);
  color: var(--porch-sage-dark);
}

#meet-others.show:hover {
  background: var(--porch-sage);
  color: #fff;
}

.egg-coach-info {
  text-align: left;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
}

.egg-coach-info:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.egg-coach-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.egg-try-again:hover {
  background: var(--porch-terracotta);
  color: #fff;
}

@media (max-width: 480px) {
  .egg-trivia-btn {
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
  }
}

/* --- Hidden Easter Egg Icons --- */
.easter-egg {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 10;
  opacity: 0.35;
  transition: opacity 0.5s ease, transform 0.3s ease;
  animation: egg-shimmer 4s ease-in-out infinite;
  cursor: pointer;
}

.easter-egg svg {
  stroke: var(--porch-gold);
  fill: none;
  stroke-width: 1.2;
}

.easter-egg:hover {
  opacity: 1;
  transform: scale(1.25);
}

@keyframes egg-shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.55; }
}

/* --- Subsections Grid (Style & Movement pages) --- */
.subsections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.subsection-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(184, 149, 90, 0.12);
  transition: all var(--transition);
}

.subsection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--porch-gold);
}

.subsection-card.highlight {
  background: linear-gradient(145deg, #faf5ec 0%, #f5ede0 100%);
  border-color: rgba(196, 131, 90, 0.2);
}

.subsection-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--porch-ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--porch-terracotta);
}

.subsection-card.highlight .subsection-icon {
  background: rgba(196, 131, 90, 0.1);
}

.subsection-icon svg {
  stroke: var(--porch-terracotta);
}

.subsection-card h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.subsection-card p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.coming-soon {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--porch-sage);
  background: rgba(138, 154, 139, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

/* --- About Page --- */
.about-block {
  margin-bottom: 4rem;
}

.about-block p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-rooms {
  margin-top: 3rem;
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-link {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(184, 149, 90, 0.12);
  transition: all var(--transition);
}

.about-link:hover {
  transform: translateX(4px);
  border-color: var(--porch-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.about-link-label {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

.about-link-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-top: 0.25rem;
}

/* --- Contact Form --- */
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid rgba(58, 53, 48, 0.12);
  border-radius: 4px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--porch-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 131, 90, 0.1);
}

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

.contact-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  font-style: italic;
}

/* --- Footer --- */
.footer {
  padding: 2.5rem 0;
  background-color: var(--ink);
  text-align: center;
}

.footer-text {
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.55);
  letter-spacing: 0.03em;
}

.footer-sub {
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.4);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

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

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

/* --- Closet Philosophy --- */

.closet-philosophy-section {
  background: var(--porch-cream);
}

.philosophy-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.philosophy-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--porch-gold);
  margin-bottom: 1rem;
}

.philosophy-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.philosophy-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--porch-terracotta);
}

.philosophy-story {
  max-width: 620px;
  margin: 0 auto 4rem;
}

.philosophy-story-text p {
  font-size: 1.08rem;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.philosophy-story-text p:last-child {
  font-style: italic;
  color: var(--porch-brick);
}

/* 10 Principles Grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.principle-item {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(184, 149, 90, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: background var(--transition);
}

.principle-item:nth-child(odd) {
  border-right: 1px solid rgba(184, 149, 90, 0.12);
}

.principle-item:hover {
  background: rgba(184, 149, 90, 0.03);
}

.principle-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.principle-number {
  position: absolute;
  top: 1.75rem;
  right: 1.5rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(184, 149, 90, 0.3);
  line-height: 1;
}

.principle-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.principle-name {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  padding-right: 2.5rem;
}

.principle-text {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.75;
}

/* Article Links */
.philosophy-articles {
  margin-top: 4rem;
  text-align: center;
}

.philosophy-articles-heading {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.philosophy-articles-sub {
  font-size: 0.92rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.article-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.article-link-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(184, 149, 90, 0.12);
  transition: all var(--transition);
  text-align: center;
}

.article-link-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--porch-gold);
}

.article-link-emoji {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.article-link-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-link-soon {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--porch-sage);
  background: rgba(138, 154, 139, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}

.article-link-read {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--porch-terracotta);
  transition: color var(--transition);
}

.article-link-box:hover .article-link-read {
  color: var(--porch-brick);
}

/* --- Article Pages --- */

.article-hero {
  padding-bottom: 3rem;
}

.article-principle-ref {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--porch-gold);
  margin-bottom: 1rem;
}

.article-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.article-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--porch-terracotta);
}

.article-body-section {
  padding-top: 3rem;
}

.article-body-section p {
  font-size: 1.12rem;
  color: var(--text-dark);
  line-height: 1.95;
  margin-bottom: 1.5rem;
}

.article-body-section p:first-of-type {
  font-size: 1.2rem;
  color: var(--ink);
}

.article-h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.article-pullquote {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--porch-brick);
  line-height: 1.8;
  border-left: 3px solid var(--porch-gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

.article-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.article-list li {
  font-size: 1.08rem;
  color: var(--text-dark);
  line-height: 1.9;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.article-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--porch-gold);
  font-size: 1.2rem;
  line-height: 1.7;
}

.article-back-section {
  padding: 3.5rem 0;
}

.article-back-intro {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.25rem;
}

.article-back-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .article-body-section p {
    font-size: 1.05rem;
  }

  .article-pullquote {
    font-size: 1.6rem;
    padding-left: 1rem;
  }

  .article-list li {
    font-size: 1rem;
  }
}

/* --- Seasonal Style Sessions --- */

.seasonal-signature-section {
  background: linear-gradient(180deg, var(--porch-cream) 0%, var(--porch-ivory) 100%);
}

.seasonal-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.seasonal-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--porch-gold);
  margin-bottom: 0.75rem;
}

.seasonal-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink);
  margin-bottom: 0.25rem;
  position: relative;
  display: inline-block;
}

.seasonal-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--porch-gold);
  margin: 0.75rem auto 0;
}

.seasonal-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--porch-terracotta);
  margin-bottom: 1.5rem;
}

.seasonal-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.9;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.season-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(184, 149, 90, 0.12);
  display: flex;
  flex-direction: column;
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.09);
}

/* Per-season color themes */
.season-spring {
  background: linear-gradient(160deg, #f4f0e8 0%, #eef0e4 100%);
}
.season-spring:hover {
  border-color: #b8c4a0;
}

.season-summer {
  background: linear-gradient(160deg, #fbf3e8 0%, #fdf2e4 100%);
}
.season-summer:hover {
  border-color: #e8b87a;
}

.season-autumn {
  background: linear-gradient(160deg, #f5ebe0 0%, #f0e0d0 100%);
}
.season-autumn:hover {
  border-color: #c4835a;
}

.season-sparkle {
  background: linear-gradient(160deg, #f3eee8 0%, #ede5f0 100%);
}
.season-sparkle:hover {
  border-color: #b8955a;
}

.season-card-header {
  padding: 2.25rem 1.75rem 0.75rem;
  text-align: center;
}

.season-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.season-name {
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.season-subtitle {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--porch-terracotta);
}

.season-card-body {
  padding: 0.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.season-card-body p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.seasonal-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.seasonal-cta-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}

.more-closet-header {
  text-align: center;
  margin-bottom: 3rem;
}

.more-closet-header .content-heading {
  margin-bottom: 1rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .cards-grid.three-col {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .porch-hero {
    background-position: 65% center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

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

  .nav-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(58, 53, 48, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    color: var(--text-dark);
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: block;
  }

  .section-hero {
    padding: 7rem 0 3rem;
  }

  .content-section {
    padding: 4rem 0;
  }

  .welcome {
    padding: 4rem 0 3rem;
  }

  .rooms {
    padding: 3rem 0 5rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .principle-item:nth-child(odd) {
    border-right: none;
  }

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

  .article-links-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .subsections-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .seasons-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .welcome-body p {
    font-size: 1rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }

  .subsection-card {
    padding: 2rem 1.25rem;
  }

  .season-card-header {
    padding: 1.75rem 1.25rem 0.5rem;
  }

  .season-card-body {
    padding: 0.5rem 1.25rem 1.75rem;
  }
}
