/* ============================================================
   SHE GOES OUTSIDE — Global Stylesheet
   ============================================================ */

:root {
  --trek:       #E07B3F;
  --peach:      #F4B896;
  --bloom:      #F9C89A;
  --teal:       #4A9E8E;
  --forest:     #2A7264;
  --pine:       #1A3D36;
  --cream:      #FFFAF5;
  --warm-white: #FEF3EA;
  --text:       #2C2016;
  --muted:      #7A6A5A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,250,245,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(224,123,63,0.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-text {
  font-size: 20px; font-weight: 900;
  font-family: 'Nunito', sans-serif;
}
.nav-logo-text .she  { color: var(--trek); font-style: italic; }
.nav-logo-text .rest { color: var(--forest); }

.nav-links {
  display: flex; gap: 6px; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 13px; font-weight: 700;
  padding: 8px 12px; border-radius: 20px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--warm-white);
  color: var(--trek);
}
.nav-cta {
  background: var(--trek) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
}
.nav-cta:hover { background: var(--forest) !important; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--pine); border-radius: 2px;
  transition: all 0.3s;
}

/* ─── PAGE WRAPPER ─── */
.page-body { padding-top: 72px; }

/* ─── SHARED SECTION STYLES ─── */
section { padding: 90px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--trek); font-weight: 800; margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--pine);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--trek); }
.section-body {
  font-size: 17px; line-height: 1.8; color: var(--muted);
  max-width: 640px;
}

/* ─── PAGE HERO BANNER ─── */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--pine) 100%);
  padding: 80px 40px 60px;
  text-align: center;
}
.page-hero .section-title { color: var(--warm-white); margin-bottom: 16px; }
.page-hero .section-eyebrow { color: var(--peach); }
.page-hero p {
  color: rgba(254,243,234,0.75); font-size: 17px;
  max-width: 560px; margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 14px; font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.5px;
  border: none;
  font-family: 'Nunito', sans-serif;
}
.btn-primary { background: var(--trek); color: white; }
.btn-primary:hover { background: var(--forest); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--warm-white);
  border: 2px solid rgba(244,184,150,0.5);
}
.btn-outline:hover { border-color: var(--peach); color: var(--peach); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--forest); transform: translateY(-2px); }

/* ─── EVENT CARDS ─── */
.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,61,54,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(74,158,142,0.1);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(224,123,63,0.15);
}
.event-img {
  height: 200px; position: relative; overflow: hidden;
}
.event-img svg { width: 100%; height: 100%; }
.event-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--trek); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
}
.event-body { padding: 24px; }
.event-date {
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 8px;
}
.event-title  { font-size: 19px; font-weight: 900; color: var(--pine); margin-bottom: 10px; }
.event-desc   { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.event-meta   {
  display: flex; gap: 16px; margin-bottom: 20px;
  font-size: 12px; color: var(--muted); font-weight: 700; flex-wrap: wrap;
}

/* ─── NEWSLETTER BANNER ─── */
.newsletter-banner {
  background: linear-gradient(135deg, var(--trek) 0%, var(--forest) 100%);
  padding: 64px 40px; text-align: center;
}
.newsletter-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 400; color: white; margin-bottom: 12px;
}
.newsletter-banner h3 em { font-style: italic; color: var(--bloom); }
.newsletter-banner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 14px 20px;
  border-radius: 50px; border: none;
  font-size: 15px; font-family: 'Nunito', sans-serif;
  background: rgba(255,255,255,0.15); color: white;
  outline: none; backdrop-filter: blur(8px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { background: rgba(255,255,255,0.22); }
.newsletter-form .btn { background: white; color: var(--trek); padding: 14px 28px; }
.newsletter-form .btn:hover { background: var(--bloom); }

/* ─── FOOTER ─── */
footer {
  background: var(--pine);
  padding: 64px 40px 32px;
  color: rgba(254,243,234,0.75);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo {
  font-size: 24px; font-weight: 900; margin-bottom: 16px; display: block;
  font-family: 'Nunito', sans-serif;
}
.footer-brand .logo .she  { color: var(--peach); font-style: italic; }
.footer-brand .logo .rest { color: rgba(254,243,234,0.9); }
.footer-brand p {
  font-size: 14px; line-height: 1.7; margin-bottom: 24px;
  color: rgba(254,243,234,0.65);
}
.footer-col h5 {
  font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--peach); margin-bottom: 18px;
  font-family: 'Nunito', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(254,243,234,0.7); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--peach); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(254,243,234,0.45);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom .tagline {
  color: var(--peach); font-weight: 800;
  letter-spacing: 2px; font-size: 11px; text-transform: uppercase;
}

/* ─── SOCIAL LINKS ─── */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.social-link {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(244,184,150,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none; transition: all 0.2s; cursor: pointer;
  color: var(--peach);
}
.social-link:hover { background: var(--trek); transform: translateY(-3px); }

/* ─── PILLARS / VALUE CARDS ─── */
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; margin-top: 60px;
}
.pillar {
  background: white; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(42,114,100,0.07);
  border: 1px solid rgba(244,184,150,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(224,123,63,0.13); }
.pillar-icon  { font-size: 36px; margin-bottom: 18px; }
.pillar-title { font-size: 17px; font-weight: 800; color: var(--pine); margin-bottom: 10px; }
.pillar-body  { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--pine); }
.testimonials-section .section-title   { color: var(--warm-white); }
.testimonials-section .section-eyebrow { color: var(--peach); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 52px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(244,184,150,0.2);
  border-radius: 20px; padding: 32px;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-style: italic; line-height: 1.75;
  color: rgba(254,243,234,0.9); margin-bottom: 20px;
}
.testimonial-author { font-size: 13px; font-weight: 800; color: var(--peach); letter-spacing: 1px; }
.stars { color: var(--bloom); font-size: 13px; margin-bottom: 14px; }

/* ─── FILTER BAR ─── */
.filter-bar {
  padding: 32px 40px;
  background: white; border-bottom: 1px solid rgba(224,123,63,0.1);
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.filter-btn {
  padding: 9px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  border: 2px solid rgba(74,158,142,0.3);
  background: transparent; color: var(--forest);
  transition: all 0.2s;
  font-family: 'Nunito', sans-serif;
}
.filter-btn:hover,
.filter-btn.active { background: var(--teal); color: white; border-color: var(--teal); }

/* ─── EVENTS GRIDS ─── */
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin-top: 52px;
}
.events-page-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px; padding: 52px 40px;
}

/* ─── BLOG ─── */
.blog-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px; padding: 52px 40px;
}
.blog-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,61,54,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(224,123,63,0.12); }
.blog-img { height: 220px; position: relative; overflow: hidden; }
.blog-img svg { width: 100%; height: 100%; }
.blog-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--forest); color: white;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.blog-body    { padding: 26px; }
.blog-date    { font-size: 11px; font-weight: 800; color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.blog-title   { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--pine); margin-bottom: 12px; line-height: 1.3; }
.blog-excerpt { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.blog-author  { display: flex; align-items: center; gap: 10px; }
.blog-avatar  { width: 32px; height: 32px; border-radius: 50%; background: var(--peach); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.blog-author-name { font-size: 13px; font-weight: 700; color: var(--pine); }

/* ─── FAQ ─── */
.faq-wrap { max-width: 760px; margin: 0 auto; padding: 52px 40px; }
.faq-item { border-bottom: 1px solid rgba(224,123,63,0.15); padding: 24px 0; }
.faq-q {
  font-size: 17px; font-weight: 800; color: var(--pine);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--warm-white); border: 2px solid var(--peach);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--trek); font-weight: 900;
  flex-shrink: 0; transition: all 0.2s;
}
.faq-item.open .toggle { background: var(--trek); color: white; border-color: var(--trek); transform: rotate(45deg); }
.faq-a {
  font-size: 15px; line-height: 1.8; color: var(--muted);
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding-top: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 16px; }

/* ─── CONTACT ─── */
.contact-wrap {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
  padding: 60px 40px;
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--pine); margin-bottom: 20px; }
.contact-info p  { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }
.contact-detail  { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-icon    { width: 42px; height: 42px; border-radius: 12px; background: var(--warm-white); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-detail-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--pine); }
.contact-detail-text span   { font-size: 13px; color: var(--muted); }
.contact-form    { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 8px 40px rgba(26,61,54,0.08); }
.contact-form h4 { font-size: 20px; font-weight: 800; color: var(--pine); margin-bottom: 28px; font-family: 'Nunito', sans-serif; }
.form-row        { margin-bottom: 18px; }
.form-row label  { display: block; font-size: 12px; font-weight: 800; color: var(--forest); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; padding: 13px 16px;
  border: 2px solid rgba(224,123,63,0.2);
  border-radius: 12px; font-size: 15px;
  font-family: 'Nunito', sans-serif;
  background: var(--cream); color: var(--text);
  transition: border-color 0.2s; outline: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--teal); }
.form-row textarea { height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; font-weight: 800; }

/* ─── CALENDAR ─── */
.calendar-wrap { max-width: 900px; margin: 0 auto; padding: 52px 40px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.cal-header h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--pine); }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--teal); background: white;
  color: var(--teal); font-size: 16px; cursor: pointer;
  font-weight: 800; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cal-nav button:hover { background: var(--teal); color: white; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-label {
  text-align: center; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); padding: 12px 0;
}
.cal-day {
  aspect-ratio: 1; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--text);
  cursor: pointer; transition: all 0.15s; position: relative;
  background: white; border: 1px solid rgba(224,123,63,0.08); padding: 6px;
}
.cal-day:hover { background: var(--warm-white); border-color: var(--peach); }
.cal-day.empty { background: transparent; border-color: transparent; cursor: default; }
.cal-day.has-event { background: rgba(249,200,154,0.3); border-color: var(--peach); }
.cal-day.has-event::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--trek); margin-top: 4px;
}
.cal-day.today { background: var(--trek); color: white; border-color: var(--trek); }
.cal-day.today::after { background: white; }
.cal-events-list { margin-top: 40px; }
.cal-events-list h4 { font-size: 14px; font-weight: 800; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-family: 'Nunito', sans-serif; }
.cal-event-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: white; border-radius: 12px;
  margin-bottom: 10px; border-left: 4px solid var(--trek);
  box-shadow: 0 2px 12px rgba(26,61,54,0.06);
}
.cal-event-date { min-width: 48px; text-align: center; font-size: 11px; font-weight: 800; color: var(--trek); letter-spacing: 1px; text-transform: uppercase; }
.cal-event-title { font-size: 15px; font-weight: 800; color: var(--pine); font-family: 'Nunito', sans-serif; }
.cal-event-meta  { font-size: 12px; color: var(--muted); }

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: var(--forest);
  padding: 100px 40px 80px;
  text-align: center;
}
.about-hero .section-title  { color: var(--warm-white); }
.about-hero .section-eyebrow { color: var(--peach); }
.about-hero p { color: rgba(254,243,234,0.8); font-size: 18px; line-height: 1.8; max-width: 640px; margin: 0 auto; }

.founder-section { padding: 80px 40px; }
.founder-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
}
.founder-img-wrap { position: relative; }
.founder-img {
  width: 100%; aspect-ratio: 3/4; border-radius: 24px;
  overflow: hidden; position: relative;
}
.founder-img svg { width: 100%; height: 100%; }
.founder-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--trek); display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.founder-text .section-eyebrow { margin-bottom: 8px; }
.founder-text h2  { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 400; color: var(--pine); margin-bottom: 6px; }
.founder-title    { font-size: 13px; font-weight: 800; color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.founder-text p   { font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }

.values-section { background: var(--warm-white); padding: 80px 40px; }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-top: 52px;
}
.value-item { text-align: center; padding: 32px 20px; background: white; border-radius: 16px; border: 1px solid rgba(224,123,63,0.1); }
.value-item .icon { font-size: 40px; margin-bottom: 14px; }
.value-item h4  { font-size: 16px; font-weight: 800; color: var(--pine); margin-bottom: 8px; font-family: 'Nunito', sans-serif; }
.value-item p   { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.6;
}
.scroll-hint span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--peach); font-weight: 700; }
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--peach); border-bottom: 2px solid var(--peach);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--cream); padding: 20px 28px 28px;
    border-bottom: 2px solid rgba(224,123,63,0.15);
    gap: 4px;
  }
  .nav-links.open a { padding: 12px 16px; }
}
@media (max-width: 860px) {
  nav { padding: 0 20px; }
  section { padding: 60px 20px; }
  .founder-inner { grid-template-columns: 1fr; }
  .contact-wrap  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .filter-bar { padding: 20px; }
  .events-page-grid { padding: 32px 20px; }
  .blog-grid { padding: 32px 20px; }
  .faq-wrap  { padding: 40px 20px; }
  .contact-wrap { padding: 40px 20px; }
  .calendar-wrap { padding: 40px 20px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
