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

:root {
  --forest-green: #2E5E2E;
  --warm-brown: #5C3A1E;
  --rust: #B85C38;
  --sage: #7A9A6D;
  --sage-text: #527245;
  --cream: #FFF9F0;
  --sage-light: #f0f5ed;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--warm-brown);
  background-color: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Caveat', cursive;
  color: var(--forest-green);
  line-height: 1.2;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }

a {
  color: var(--forest-green);
  text-decoration: underline;
}

a:hover {
  color: #9C4E30;
}

/* Remove underlines from navigation, logo, buttons, and footer links —
   these are clearly interactive by context and don't need underlines */
.nav-links a,
.logo,
.btn,
.skip-link,
.footer-links a {
  text-decoration: none;
}

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

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background-color: var(--forest-green);
  color: var(--cream);
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: var(--cream);
}

*:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 2px;
}

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

/* ===== Utility ===== */
.container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--forest-green);
  color: var(--cream);
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46, 94, 46, 0.25);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.btn:hover {
  background-color: #9C4E30;
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(156, 78, 48, 0.3);
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(122, 154, 109, 0.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--forest-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.logo span {
  color: var(--sage);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest-green);
  border-bottom-color: var(--forest-green);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--forest-green);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.12) 0%,
    rgba(0,0,0,.0) 30%,
    rgba(0,0,0,.0) 45%,
    rgba(0,0,0,.6) 100%
  );
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  color: var(--forest-green);
}

.hero .subtitle {
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--warm-brown);
  font-style: italic;
}

/* Photo hero (homepage) — light text over dark image */
.hero--photo h1 {
  color: var(--cream);
}

.hero--photo .subtitle {
  color: rgba(255,249,240,.88);
}

.hero .summer-dates {
  color: rgba(255,249,240,.85);
}

.hero .summer-info {
  color: rgba(255,249,240,.85);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-text-block {
  background-color: rgba(46, 94, 46, 0.65);
  border-radius: 16px;
  padding: 36px 44px;
  max-width: 600px;
  margin: 0 auto 28px;
}

.hero-text-block .summer-details {
  margin-bottom: 0;
}

.btn-hero {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 32px 12px;
  line-height: 1.2;
}

.btn-hero .btn-label {
  font-size: 1rem;
}

.btn-hero .btn-urgency {
  display: inline-block;
  background-color: var(--rust);
  color: var(--cream);
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover .btn-urgency {
  background-color: var(--cream);
  color: var(--rust);
}

/* ===== About: Hero ===== */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.02) 35%,
    rgba(0,0,0,.55) 100%
  );
}

.about-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.about-hero h1 {
  color: var(--cream);
  font-size: 4rem;
  margin-bottom: 12px;
}

.about-hero .subtitle {
  color: rgba(255,249,240,.88);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0;
}

/* ===== Gear: Hero ===== */
.gear-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.gear-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.gear-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.02) 35%,
    rgba(0,0,0,.58) 100%
  );
}

.gear-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.gear-hero h1 {
  color: var(--cream);
  font-size: 4rem;
  margin-bottom: 10px;
}

.gear-hero .subtitle {
  color: rgba(255,249,240,.88);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0;
}

/* ===== Gear Page: Quick-nav ===== */
.gear-quicknav {
  position: sticky;
  top: 73px;
  z-index: 90;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(122,154,109,.2);
}

.gear-quicknav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gear-quicknav-inner::-webkit-scrollbar {
  display: none;
}

.gear-quicknav-inner a {
  display: block;
  padding: 13px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--warm-brown);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.gear-quicknav-inner a:hover,
.gear-quicknav-inner a.active {
  color: var(--forest-green);
  border-bottom-color: var(--forest-green);
}

/* ===== Gear Page: Partner Cards ===== */
.gear-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.gear-partner-card {
  background-color: var(--sage-light);
  border: 1px solid rgba(122,154,109,.25);
  border-radius: 12px;
  padding: 20px 22px;
}

.gear-partner-name {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-green);
  display: block;
  margin-bottom: 6px;
}

.gear-partner-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--warm-brown);
  margin-bottom: 12px;
}

.gear-partner-code {
  display: inline-block;
  background-color: var(--forest-green);
  color: var(--cream);
  font-family: 'Lora', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

.gear-partner-code:hover {
  background-color: #234923;
  color: var(--cream);
}

.gear-partner-code-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--sage-text);
  font-style: italic;
  margin-top: 5px;
}

.gear-partner-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-green);
  text-decoration: underline;
}

/* ===== Gear Page: Section Headers ===== */
.gear-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.gear-section-label h2 {
  font-size: 2.2rem;
  margin: 0;
  white-space: nowrap;
}

.gear-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: rgba(122,154,109,.3);
}

.gear-section-season {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--sage-text);
  margin-bottom: 20px;
}

/* ===== Gear Page: Affiliate Note ===== */
.gear-affiliate-note {
  text-align: center;
  padding: 20px 5%;
  background-color: var(--sage-light);
  border-top: 1px solid rgba(122,154,109,.2);
}

.gear-affiliate-note p {
  font-size: 0.8rem;
  color: var(--sage-text);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Gear Page: Start Callout ===== */
.gear-start-callout {
  max-width: 800px;
  margin: 32px auto 0;
  background-color: var(--sage-light);
  border: 2px solid rgba(46, 94, 46, .35);
  border-radius: 12px;
  padding: 24px 28px;
}

.gear-start-callout-title {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 12px;
}

.gear-start-callout ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gear-start-callout li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  color: var(--warm-brown);
}

.gear-start-callout li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--sage-text);
  top: 2px;
}

.gear-start-callout a {
  color: var(--forest-green);
  font-weight: 600;
  text-underline-offset: 2px;
}

/* ===== Gear Page: Packing Checklist ===== */
.gear-checklist {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--sage-light);
  border: 2px solid rgba(46, 94, 46, .35);
  border-radius: 12px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.gear-checklist-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gear-checklist-label {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-green);
  margin: 0 0 8px;
}

.gear-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gear-checklist li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  color: var(--warm-brown);
}

.gear-checklist li::before {
  content: '\2610';
  position: absolute;
  left: 0;
  color: var(--sage-text);
  font-size: 0.85rem;
  top: 1px;
}

.gear-checklist-supply {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(46, 94, 46, .25);
  margin-top: 20px;
  padding-top: 16px;
}

.gear-checklist-supply p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--warm-brown);
  margin: 0;
}

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

/* ===== Approach: Hero ===== */
.approach-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.approach-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: 0;
}

.approach-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.02) 35%,
    rgba(0,0,0,.55) 100%
  );
}

.approach-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.approach-hero h1 {
  color: var(--cream);
  font-size: 4rem;
  margin-bottom: 12px;
}

.approach-hero .subtitle {
  color: rgba(255,249,240,.88);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0;
}

/* ===== Register: Hero ===== */
.register-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.register-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* hand and mossy stump sit center-right in the portrait frame */
  object-position: 62% 45%;
  z-index: 0;
}

.register-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.02) 35%,
    rgba(0,0,0,.55) 100%
  );
}

.register-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.register-hero h1 {
  color: var(--cream);
  font-size: 4rem;
  margin-bottom: 12px;
}

.register-hero .subtitle {
  color: rgba(255,249,240,.88);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0;
}

/* ===== FAQ: Hero ===== */
.faq-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.faq-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* sign fills most of the frame; keep it centred with a slight upward lean so "FOREST LOOP TRAIL" text stays visible above the overlay */
  object-position: center 40%;
  z-index: 0;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.02) 35%,
    rgba(0,0,0,.55) 100%
  );
}

.faq-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.faq-hero h1 {
  color: var(--cream);
  font-size: 4rem;
  margin-bottom: 12px;
}

.faq-hero .subtitle {
  color: rgba(255,249,240,.88);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0;
}

/* ===== Sections ===== */
.section {
  padding: 72px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-divider {
  border: 0;
  border-top: 1px solid var(--sage);
  max-width: 240px;
  margin: 0 auto;
  opacity: 0.5;
}

/* ===== What Is Little Roots ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-text p {
  margin-bottom: 20px;
}

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

.pullquote {
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  color: var(--forest-green);
  border-left: 3px solid var(--sage);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  line-height: 1.4;
}

/* Photo placeholder */
.photo-placeholder {
  background-color: var(--sage);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  color: var(--cream);
  font-size: 0.9rem;
  gap: 8px;
  opacity: 0.7;
}

.photo-placeholder svg {
  width: 40px;
  height: 40px;
  fill: var(--cream);
}

.intro-photo-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* ===== About: Our Story ===== */
.about-story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}

.about-story-photo {
  position: sticky;
  top: 96px;
}

.about-story-photo-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 16px;
  display: block;
}

.about-story-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.78;
}

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

.about-signoff {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(122,154,109,.3);
}

.about-signoff-em {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--forest-green);
  display: block;
  margin-bottom: 14px;
}

.about-signoff-name {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--warm-brown);
}

.about-signoff-name strong {
  display: block;
  font-weight: 600;
}

.caterpillar-crop {
  clip-path: inset(10% 0 30% 0);
}

/* ===== Timeline ===== */
.timeline {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
}

.tl-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 20px;
  padding-bottom: 28px;
}

.tl-time {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  color: var(--sage-text);
  text-align: right;
  padding-top: 2px;
}

.tl-body {
  border-left: 1px solid rgba(122, 154, 109, .35);
  padding-left: 20px;
}

.tl-item:last-child .tl-body {
  border-left-color: transparent;
}

.tl-body h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.tl-body p {
  font-size: .93rem;
  line-height: 1.65;
}

/* ===== FAQ Accordion ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(122, 154, 109, 0.2);
}

.faq-item:first-child {
  border-top: 1px solid rgba(122, 154, 109, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--forest-green);
  cursor: pointer;
  list-style: none;
  line-height: 1.3;
  font-weight: 600;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-text);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] > .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 4px 20px;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-bottom 0.3s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== About: Teacher Cards ===== */
.teacher-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.teacher-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(92, 58, 30, 0.06);
}

.teacher-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--sage);
  box-shadow: 0 4px 16px rgba(92, 58, 30, 0.12);
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.teacher-card h3 {
  margin-bottom: 4px;
}

.teacher-role {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--sage-text);
  margin-bottom: 12px;
}

.teacher-card > p:last-child {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== About: Teachers (redesign) ===== */
.about-teachers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 840px;
  margin: 0 auto;
}

.about-teacher-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.about-teacher h3 {
  font-size: 1.9rem;
  margin-bottom: 2px;
}

.about-teacher-role {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--sage-text);
  margin-bottom: 16px;
  display: block;
}

.about-teacher-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(122,154,109,.25);
}

.about-teacher-creds li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--warm-brown);
  padding-left: 14px;
  position: relative;
}

.about-teacher-creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--sage);
}

/* ===== About: What We Believe ===== */
.belief-block {
  max-width: 800px;
  margin: 0 auto 12px;
  padding: 28px 32px;
  border-radius: 12px;
}

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

.belief-block--tinted {
  background-color: var(--sage-light);
}

.section--alt .belief-block--tinted {
  background-color: white;
}

.belief-block h3 {
  margin-bottom: 8px;
}

.belief-block p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== About: What We Believe (redesign) ===== */
.about-beliefs {
  max-width: 720px;
  margin: 0 auto;
}

.about-belief {
  padding: 32px 0;
  border-bottom: 1px solid rgba(122,154,109,.18);
}

.about-belief:first-child {
  padding-top: 0;
}

.about-belief:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-belief h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.15;
}

.about-belief p {
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 62ch;
}

/* ===== Approach: Intro Text ===== */
.approach-intro {
  max-width: 800px;
  margin: 0 auto;
}

.approach-intro p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.approach-intro p:last-child {
  margin-bottom: 0;
}

.approach-intro + .belief-block,
.approach-intro + .belief-block.belief-block--tinted {
  margin-top: 24px;
}

/* ===== About: Crown Celebration ===== */
.crown-ceremony {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184, 92, 56, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(122, 154, 109, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--sage-light) 0%, var(--cream) 100%);
}

/* ===== Summer Details (Hero) ===== */
.summer-details {
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: center;
}

.summer-dates {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--forest-green);
  margin-bottom: 4px;
}

.summer-info {
  font-size: 0.92rem;
  color: var(--warm-brown);
  margin-bottom: 8px;
}

.summer-pricing {
  font-size: 1rem;
  font-weight: 600;
  color: var(--warm-brown);
  margin-bottom: 4px;
}

.summer-note {
  font-size: 0.82rem;
  color: var(--sage-text);
  font-style: italic;
}

/* ===== Founding Banner ===== */
.founding-banner {
  background-color: var(--forest-green);
  color: var(--cream);
  text-align: center;
  padding: 14px 5%;
  font-size: .92rem;
}

.founding-banner strong {
  color: #c8e6b8;
}

.founding-banner a {
  color: #c8e6b8;
  text-decoration: underline;
}

/* ===== Pricing Block (What Is section) ===== */
.pricing-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(122, 154, 109, .3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .95rem;
}

.price-amount {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-green);
}

/* ===== Schedule Note ===== */
.schedule-note {
  text-align: center;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--sage-text);
  margin-top: -28px;
  margin-bottom: 36px;
}


/* ===== Crown Callout (Homepage) ===== */
.crown-callout {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184, 92, 56, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(122, 154, 109, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--sage-light) 0%, var(--cream) 100%);
}

.crown-callout-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.crown-callout-content .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.crown-callout-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--warm-brown);
}

.crown-photo-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.crown-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* left keeps rainbow/stump visible; bottom keeps lily-of-the-valley in frame */
  object-position: 20% bottom;
  z-index: 0;
}

.crown-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,32,14,.15) 0%, rgba(12,32,14,.88) 100%);
  z-index: 1;
}

.crown-photo-section .container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.crown-photo-section .crown-callout-content {
  text-align: left;
}

.crown-photo-section .section-title,
.crown-photo-section p {
  color: var(--cream);
}

.crown-photo-section .section-title {
  font-size: 2.2rem;
  text-align: left;
}

/* ===== About: CTA ===== */
.about-cta {
  background-color: var(--sage-light);
  text-align: center;
  padding: 72px 0;
}

.about-cta .section-title {
  margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1.5rem;
}

.site-footer {
  background-color: var(--forest-green);
  color: var(--cream);
  text-align: center;
  padding: 48px 0 32px;
}

.footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.footer-details {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--cream);
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }

  .hero {
    padding: 56px 0 48px;
  }

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

  .hero .subtitle {
    font-size: 1.05rem;
  }

  .hero-text-block {
    padding: 28px 28px;
  }

  .about-hero,
  .approach-hero,
  .register-hero,
  .faq-hero {
    min-height: 360px;
  }

  .gear-hero {
    min-height: 340px;
  }

  .gear-quicknav {
    top: 65px;
  }

  .gear-quicknav-inner {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }

  .gear-quicknav-inner a {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .gear-partners {
    grid-template-columns: 1fr;
  }

  .gear-start-callout {
    padding: 20px;
  }

  .about-hero h1,
  .gear-hero h1,
  .approach-hero h1,
  .register-hero h1,
  .faq-hero h1 {
    font-size: 2.8rem;
  }

  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream);
    padding: 16px 5%;
    gap: 16px;
    border-bottom: 1px solid rgba(122, 154, 109, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

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

  .nav-wrapper {
    position: relative;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Intro */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-photo {
    order: -1;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story-photo {
    position: static;
  }

  .about-story-photo-img {
    aspect-ratio: 4 / 3;
  }

  /* Teacher Cards */
  .teacher-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .about-teachers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .about-teacher-photo {
    aspect-ratio: 1 / 1;
  }

  /* Belief Blocks */
  .belief-block {
    padding: 24px 20px;
  }

  .about-belief h3 {
    font-size: 1.7rem;
  }

  .section {
    padding: 56px 0;
  }
}

/* ===== Recommended Page ===== */
/* Scoped to .page-recommended so it only affects the gear page.
   Section/subcategory headings use a clean sans-serif so the long product
   guide is easier to scan, while the hero h1 stays in Caveat. */
.page-recommended .section-title,
.page-recommended .subcategory-title,
.page-recommended .product-block h3,
.page-recommended .product-block h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.page-recommended .section-title {
  font-size: 1.85rem;
}

.page-recommended .subcategory-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.page-recommended .product-block h3,
.page-recommended .product-block h4 {
  font-size: 1.1rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .page-recommended .section-title {
    font-size: 1.6rem;
  }

  .page-recommended .subcategory-title {
    font-size: 1.15rem;
  }

  .page-recommended .product-block h3,
  .page-recommended .product-block h4 {
    font-size: 1.05rem;
  }
}

.recommended-intro {
  max-width: 800px;
  margin: 0 auto;
}

.recommended-intro p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.recommended-intro p:last-child {
  margin-bottom: 0;
}

.look-for {
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 0 8px;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sage-text);
  text-align: center;
  line-height: 1.6;
}

.subcategory-title {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 12px;
}

.recommended-intro + .subcategory-title {
  margin-top: 32px;
}

.gear-note {
  border-top: 1px solid rgba(122, 154, 109, 0.2);
  border-bottom: 1px solid rgba(122, 154, 109, 0.2);
}

.gear-note h3 {
  padding: 20px 4px;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.gear-note .recommended-intro {
  padding: 0 4px 20px;
}

.product-block h3,
.product-block h4 {
  margin-bottom: 2px;
  line-height: 1.3;
  font-size: 1.6rem;
}

.product-block h3 + h3,
.product-block h4 + h4 {
  margin-top: 4px;
}

.product-block h3 a,
.product-block h4 a {
  text-decoration: underline;
  color: var(--forest-green);
  transition: color 0.2s;
}

.product-block h3 a:hover,
.product-block h4 a:hover {
  color: #9C4E30;
}

.product-block > p {
  margin-top: 14px;
}

/* ===== Gear Page: Product Blocks ===== */
.gear-product {
  padding: 18px 0;
  border-bottom: 1px solid rgba(122,154,109,.15);
}

.gear-product:last-of-type {
  border-bottom: none;
}

.gear-product h3,
.gear-product h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--warm-brown);
}

.gear-product h3 a,
.gear-product h4 a {
  color: var(--forest-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(46,94,46,.3);
  transition: text-decoration-color 0.2s, color 0.2s;
}

.gear-product h3 a:hover,
.gear-product h4 a:hover {
  color: #9C4E30;
  text-decoration-color: rgba(156,78,48,.5);
}

.gear-product p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--warm-brown);
  max-width: 68ch;
}

.tip-callout {
  max-width: 800px;
  margin: 24px auto 0;
  background-color: var(--sage-light);
  border-left: 4px solid var(--forest-green);
  border-radius: 8px;
  padding: 20px 24px;
}

.section--alt .tip-callout {
  background-color: white;
}

.tip-callout p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.tip-label {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-right: 6px;
}

/* ===== Register Page ===== */
.register-content {
  max-width: 800px;
}

.founding-callout {
  background-color: var(--sage-light);
  border-left: 4px solid var(--sage);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.founding-callout p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.register-perk-note {
  border-left: 3px solid var(--sage);
  padding: 4px 14px;
  margin: -4px 0 24px;
}

.register-perk-note p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--sage-text);
  margin: 0;
}

.register-perk-note a {
  color: var(--forest-green);
}

.register-spots {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--sage-text);
  margin-bottom: 32px;
}

.register-form-area {
  margin-bottom: 8px;
}

.register-form-area iframe {
  width: 100%;
  height: 1200px;
  border: none;
  display: block;
}

.register-payment {
  text-align: center;
  padding: 32px;
  background-color: var(--sage-light);
  border-radius: 12px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.register-payment p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.register-bundle-note {
  font-size: 0.85rem;
  color: var(--sage-text);
  font-style: italic;
  margin-top: 8px;
}

.register-contact {
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

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

  .gear-hero h1,
  .approach-hero h1,
  .register-hero h1,
  .faq-hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    padding: 12px 28px;
  }
}
