/*
Theme Name: Surf Soul Theme
Description: Custom theme for thesurfsoul.com
Version: 1.0.0
*/

/* =====================
   VARIABLES
   ===================== */
:root {
  --navy:     #1A2744;
  --gold:     #C49A4A;
  --gold-dark:#A8823C;
  --teal:     #1A6B7A;
  --sand:     #F5F0E8;
  --cream:    #FDFBF7;
  --white:    #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

/* =====================
   UTILITY
   ===================== */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 12px 0 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary:hover { background: #b8863a; color: var(--white); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); }

.ss-section { padding: 100px 48px; }
.ss-section-inner { max-width: 900px; margin: 0 auto; }
.ss-section-wide { max-width: 1000px; margin: 0 auto; }

/* =====================
   NAVIGATION
   ===================== */
.site-header {
  position: relative;
  z-index: 100;
}

.site-header.overlaid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
}

.site-header:not(.overlaid) .site-nav {
  background: var(--cream);
  border-bottom: 1px solid #F5F0E8;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-header.overlaid .nav-links a { color: rgba(255,255,255,0.55); }

.nav-links a:hover,
.nav-links a.current-menu-item { border-bottom-color: var(--gold); color: var(--gold); }

.site-header.overlaid .nav-links a:hover,
.site-header.overlaid .nav-links a.current-menu-item {
  border-bottom-color: var(--gold);
  color: rgba(255,255,255,0.85);
}

.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: 1.5px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.site-header.overlaid .nav-hamburger span { background: var(--white); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow-y: auto;
  padding: 60px 24px;
}

.nav-mobile-overlay.open { display: flex; }

.nav-mobile-overlay a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav-mobile-overlay a:hover { opacity: 1; }

.nav-mobile-overlay .nav-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.nav-mobile-overlay .nav-mobile-links li { margin: 0; padding: 0; }

.nav-mobile-close {
  position: absolute;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  font-weight: 300;
  line-height: 1;
}

/* =====================
   PAGE HERO
   ===================== */
.page-hero {
  padding: 120px 48px 80px;
  text-align: center;
}

.page-hero.dark {
  background: var(--navy);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  opacity: 0.75;
  max-width: 500px;
  margin: 0 auto;
}

/* =====================
   HOME HERO (Video)
   ===================== */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,0.5) 0%, rgba(10,20,40,0.3) 60%, rgba(10,20,40,0.6) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 700px;
}

.home-hero-content .label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 20px;
  animation: slideDown 0.8s ease both;
  animation-delay: 0.2s;
}

.home-hero-content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: slideDown 0.8s ease both;
  animation-delay: 0.3s;
}

.home-hero-content .tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 200;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.home-hero-content .hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideDown 0.8s ease both;
  animation-delay: 0.7s;
}

/* =====================
   FLIP CARDS (Day cards)
   ===================== */
.days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flip-card {
  height: 200px;
  perspective: 800px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-top: 3px solid var(--gold);
}

.flip-card-front { background: var(--white); }

.flip-card-back {
  background: var(--navy);
  transform: rotateY(180deg);
}

.flip-card-front .day-number {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.flip-card-front .day-theme {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.flip-card-front .day-verse {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 12px;
}

.flip-card-front .day-tap {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ccc;
}

.flip-card-back .day-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.flip-card-back .day-description {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* =====================
   GUIDE CARDS
   ===================== */

/* =====================
   SCHEDULE GRID
   ===================== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}

.schedule-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,39,68,0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.schedule-time {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  min-width: 80px;
  padding-top: 2px;
}

.schedule-activity {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
}

/* =====================
   PRICING
   ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-card {
  border: 1px solid rgba(26,39,68,0.12);
  padding: 48px 40px;
  position: relative;
}

.pricing-card.recommended { border-color: var(--gold); }

.pricing-recommended-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
}

.pricing-tier-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: rgba(26,39,68,0.5);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,39,68,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================
   FAQ
   ===================== */
.faq-list { list-style: none; }

.faq-item { border-bottom: 1px solid rgba(26,39,68,0.1); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,39,68,0.75);
}

.faq-item.open .faq-answer { display: block; }

/* =====================
   BLOG / DEVOTIONALS
   ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card { border-bottom: 2px solid var(--gold); padding-bottom: 24px; }

.blog-card-week {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--navy);
}

.blog-card-verse {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(26,39,68,0.5);
  margin-bottom: 12px;
  font-style: italic;
}

.blog-card-excerpt {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,39,68,0.75);
}

/* =====================
   GALLERY
   ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================
   PARTNERS
   ===================== */
.partners-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.partners-grid-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.partners-grid-item p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,39,68,0.75);
}

.how-it-works { counter-reset: steps; list-style: none; }

.how-it-works li {
  counter-increment: steps;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26,39,68,0.08);
}

.how-it-works li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  min-width: 48px;
  line-height: 1;
}

/* =====================
   PARTNERSHIP KIT
   ===================== */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.kit-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.kit-item p {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(26,39,68,0.7);
}

/* =====================
   COVENANT SECTION
   ===================== */
.covenant-section {
  background: #1A2744;
  padding: 60px 48px;
  text-align: center;
}

/* =====================
   FORM
   ===================== */
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1A6B7A;
  display: block;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  border: 1px solid #d5d0c8;
  background: white;
  color: #1A2744;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #C49A4A; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbb; }

.form-field textarea { min-height: 120px; resize: vertical; }
.form-field.full-width { grid-column: 1 / -1; }

/* WPForms overrides — match site design */
.wpforms-container .wpforms-field-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #1A6B7A !important;
  font-weight: 400 !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
}
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="number"],
.wpforms-container select,
.wpforms-container textarea {
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  padding: 14px 18px !important;
  border: 1px solid #d5d0c8 !important;
  border-radius: 0 !important;
  background: white !important;
  color: #1A2744 !important;
  box-shadow: none !important;
  transition: border-color 0.3s !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
  border-color: #C49A4A !important;
  box-shadow: none !important;
  outline: none !important;
}
.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder { color: #bbb !important; }
.wpforms-container .wpforms-submit {
  display: inline-block !important;
  padding: 16px 48px !important;
  background: #C49A4A !important;
  color: white !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
}
.wpforms-container .wpforms-submit:hover { background: #b8863a !important; }
.wpforms-container .wpforms-submit-container { text-align: center !important; margin-top: 8px !important; }
.wpforms-container .wpforms-submit-container::after {
  content: "We respond personally to every inquiry. No auto-responders. No spam. Ever.";
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: #bbbbbb;
  text-align: center;
  margin-top: 16px;
}
.wpforms-container .wpforms-field { margin-bottom: 16px !important; padding: 0 !important; }
.wpforms-container .wpforms-field-one-half { width: calc(50% - 10px) !important; }
.wpforms-container .wpforms-field-one-half.wpforms-list-3-columns,
.wpforms-container .wpforms-field-one-half + .wpforms-field-one-half { margin-left: 20px !important; }
.wpforms-container select { height: 48px !important; -webkit-appearance: auto !important; appearance: auto !important; }
.wpforms-container .wpforms-error-container { margin-bottom: 16px !important; }
.wpforms-container .wpforms-error { font-family: 'Outfit', sans-serif !important; font-size: 11px !important; color: #c0392b !important; margin-top: 4px !important; }
.wpforms-container .wpforms-required-label { color: #c0392b !important; }

/* =====================
   CTA DARK SECTION
   ===================== */
.cta-dark {
  background: var(--navy);
  color: var(--white);
  padding: 80px 48px;
  text-align: center;
}

.cta-dark h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-dark p {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.75;
  margin-bottom: 32px;
}

/* Dark Section native block overrides (navy group block) */
.wp-block-group[style*="background-color:#1A2744"] {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.wp-block-group[style*="background-color:#1A2744"] p.has-text-align-center:first-of-type {
  margin-bottom: 24px !important;
}
.wp-block-group[style*="background-color:#1A2744"] h2.wp-block-heading {
  margin-bottom: 16px !important;
}
.wp-block-group[style*="background-color:#1A2744"] h1.wp-block-heading ~ p,
.wp-block-group[style*="background-color:#1A2744"] h2.wp-block-heading ~ p {
  opacity: 0.75 !important;
  margin-bottom: 32px !important;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: #111B2E;
  padding: 50px 48px 36px;
  text-align: center;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  list-style: none;
  margin-bottom: 16px;
}

.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: rgba(255,255,255,0.6); }

.footer-copy {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
}

/* =====================
   WORDPRESS BLOCK OVERRIDES
   ===================== */
.wp-block-button__link {
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  padding: 16px 48px !important;
  border-radius: 0 !important;
  transition: all 0.3s !important;
}

.wp-block-buttons {
  justify-content: center;
}

.wp-block-button {
  width: auto !important;
}

.wp-block-heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
  line-height: 1.3 !important;
  color: var(--navy);
}

h1.wp-block-heading { font-size: clamp(36px, 5vw, 64px) !important; margin-bottom: 20px !important; }
h2.wp-block-heading { font-size: clamp(26px, 3vw, 38px) !important; margin-bottom: 28px !important; }
h3.wp-block-heading { font-size: clamp(20px, 2.5vw, 28px) !important; margin-bottom: 14px !important; }

.section-body {
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 2 !important;
  color: #777 !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.body-light {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: #666;
  margin-bottom: 32px;
}

.body-small {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: #777;
}

.bg-navy  { background-color: #1A2744; }
.bg-sand  { background-color: #F5F0E8; }
.bg-cream { background-color: #FDFBF7; }
.bg-dark  { background-color: #111B2E; }

/* =====================
   INNER PAGE — REUSABLE SECTIONS
   ===================== */
.page-hero-dark {
  background: #1A2744;
  padding: 140px 48px 80px;
  text-align: center;
}
.light-section {
  padding: 100px 48px;
}
.sand-section {
  background: #F5F0E8;
  padding: 100px 48px;
}
/* About-specific (centered 3-col) */
.mission-section {
  background: #F5F0E8;
  padding: 100px 48px;
  text-align: center;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
/* Experience daily rhythm — 3-col grid */
.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
/* Guides — 2-col card grid */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.guide-card { transition: transform 0.3s ease; }
.guide-card:hover { transform: translateY(-4px); }

/* Partners — 3-col card grid */
.partners-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Book — 2-col pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  /* Section padding */
  .page-hero-dark   { padding: 120px 24px 60px; }
  .light-section    { padding: 60px 24px; }
  .sand-section     { padding: 60px 24px; }
  .mission-section  { padding: 60px 24px; }
  .covenant-section { padding: 48px 24px; }

  /* Grid collapse */
  .mission-grid    { grid-template-columns: 1fr; gap: 40px; }
  .rhythm-grid     { grid-template-columns: 1fr; }
  .guide-grid      { grid-template-columns: 1fr; }
  .partners-grid-3 { grid-template-columns: 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr; }
  .kit-grid        { grid-template-columns: 1fr; }
  .form-grid-2     { grid-template-columns: 1fr; }

  /* Guide card: gradient becomes top bar instead of side panel */
  .guide-card                { flex-direction: column !important; }
  .guide-card > div:first-child { width: 100% !important; min-height: 80px !important; }

  /* Gallery: uniform height in single column */
  .gallery-grid > div { height: 220px !important; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .post-hero-content { padding: 120px 24px 60px; }
  .post-hero-image { min-height: 360px; }
  .post-content p,
  .post-content ul,
  .post-content ol { font-size: 15px; }

  /* WPForms: stack half-width fields on mobile */
  .wpforms-container .wpforms-field-one-half,
  .wpforms-container .wpforms-field-one-third,
  .wpforms-container .wpforms-field-one-fourth {
    width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .wpforms-container .wpforms-field-row,
  .wpforms-container .wpforms-field-row-block {
    display: block !important;
    flex-wrap: nowrap !important;
  }
}

.wp-block-separator.gold-line {
  border: none !important;
  border-top: none !important;
  background-color: #C49A4A !important;
  height: 1px !important;
  width: 40px !important;
  max-width: 40px !important;
  margin: 12px auto 24px !important;
  opacity: 1 !important;
}

p.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}

/* =====================
   BLOG ARCHIVE
   ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.blog-card {
  background: white;
  border-top: 3px solid #C49A4A;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-image-link { display: block; }

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.03); }

.blog-card-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #1A2744, #1A6B7A);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-category {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C49A4A;
  margin-bottom: 10px;
  line-height: 1.2;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: #1A2744;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-card-title a:hover { color: #1A6B7A; }

.blog-card-excerpt {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0ebe3;
  padding-top: 16px;
}

.blog-card-date {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 1px;
  line-height: 1.2;
}

.blog-card-read-more {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1A6B7A;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.2;
}

.blog-card-read-more:hover { color: #C49A4A; }

.blog-pagination { text-align: center; }

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1A2744;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid #d5d0c8;
  transition: all 0.2s;
  line-height: 1.2;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: #C49A4A;
  color: white;
  border-color: #C49A4A;
}

/* =====================
   SINGLE POST
   ===================== */
.post-hero {
  position: relative;
  background: #1A2744;
  text-align: center;
}

.post-hero-image { min-height: 480px; display: flex; align-items: flex-end; }

.post-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.post-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.4;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.85), rgba(26,39,68,0.3));
}

.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 48px 80px;
  width: 100%;
}

.post-hero-category {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #C49A4A;
  margin-bottom: 16px;
  line-height: 1.2;
}

.post-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.post-hero-meta {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Post body content */
.post-content {
  max-width: 750px;
  margin: 0 auto;
}

.post-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}

.post-content h2,
.post-content h2.wp-block-heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  color: #1A2744 !important;
  margin-top: 48px !important;
  margin-bottom: 16px !important;
  line-height: 1.2 !important;
}

.post-content h3,
.post-content h3.wp-block-heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #1A2744 !important;
  margin-top: 36px !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
}

.post-content blockquote,
.post-content .wp-block-quote {
  border-left: 3px solid #C49A4A !important;
  border-right: none !important;
  margin: 40px 0 !important;
  padding: 8px 0 8px 28px !important;
  background: none !important;
}

.post-content blockquote p,
.post-content .wp-block-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: #1A2744;
  line-height: 1.6;
  margin-bottom: 0;
}

.post-content .wp-block-image { margin: 40px 0; }
.post-content .wp-block-image img { width: 100%; height: auto; display: block; }

.post-content ul,
.post-content ol {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
  padding-left: 28px;
}

.post-content li { margin-bottom: 8px; }

.post-content a { color: #1A6B7A; text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: #C49A4A; }

.post-content hr,
.post-content .wp-block-separator {
  border: none !important;
  border-top: 1px solid #e8e3da !important;
  margin: 48px 0 !important;
}

.post-nav {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #f0ebe3;
}

.post-nav-back {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1A6B7A;
  text-decoration: none;
  transition: color 0.2s;
}

.post-nav-back:hover { color: #C49A4A; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .ss-section   { padding: 64px 24px; }
  .site-nav     { padding: 20px 24px; }
  .page-hero    { padding: 100px 24px 60px; }
  .cta-dark     { padding: 60px 24px; }
  .site-footer  { padding: 40px 24px; }

  .days-grid,
  .guides-grid,
  .blog-grid,
  .schedule-grid { grid-template-columns: 1fr; }

  .home-hero-content .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* =====================
   NATIVE BLOCK SUPPORT
   ===================== */

/* FAQ entries — wp:group(.faq-entry) + wp:heading h3 + wp:paragraph */
.faq-entry {
  padding-bottom: 32px;
}
.faq-entry + .faq-entry {
  border-top: 1px solid rgba(196,154,74,0.13);
  padding-top: 32px;
}
.faq-entry h3.wp-block-heading {
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #1A2744 !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
}
.faq-entry p {
  font-size: 14px !important;
  font-weight: 300 !important;
  color: #666666 !important;
  line-height: 1.9 !important;
  margin: 0 !important;
}
.faq-contact {
  text-align: center;
  margin-top: 32px;
}
.faq-contact p {
  font-size: 13px !important;
  font-weight: 300 !important;
  color: #999999 !important;
  margin-bottom: 20px !important;
}

/* Page hero — wp:group + wp:paragraph (label) + wp:heading (h1) */
.page-hero-dark p {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #C49A4A;
  margin: 0 auto 16px;
  line-height: 1.2;
}
.page-hero-dark h1.wp-block-heading {
  color: #ffffff !important;
  font-size: clamp(32px, 5vw, 56px) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  margin: 0 !important;
}

/* CTA cream — button-only section on cream background */
.cta-cream {
  background: #FDFBF7;
  padding: 80px 48px;
  text-align: center;
}

/* CTA dark — native heading + em override */
.cta-dark h2.wp-block-heading {
  font-size: clamp(22px, 4vw, 32px) !important;
  font-weight: 300 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
}
.cta-dark h2.wp-block-heading em { color: #C49A4A; font-style: italic; }

/* Covenant section — native block support */
.covenant-section h2.wp-block-heading {
  color: #ffffff !important;
  font-size: clamp(24px, 3.5vw, 38px) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}
.covenant-section h2.wp-block-heading em { color: #C49A4A; font-style: italic; }

/* rgba(255,255,255,0.5) on #1A2744 composites to #8D93A2 */
.covenant-body {
  font-size: 14px !important;
  font-weight: 200 !important;
  color: #8D93A2 !important;
  line-height: 1.9 !important;
  max-width: 550px;
  margin: 0 auto !important;
}

/* Native wp:button — solid gold to match .btn-primary */
.wp-block-button__link {
  background: var(--gold) !important;
  color: var(--white) !important;
  border: none !important;
  cursor: pointer !important;
}
.wp-block-button__link:hover {
  background: #b8863a !important;
  color: var(--white) !important;
}

/* Italic teal pull-quote */
.quote-teal {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 20px !important;
  font-style: italic !important;
  color: #1A6B7A !important;
  line-height: 1.6 !important;
  margin-top: 20px !important;
  margin-bottom: 30px !important;
}

/* Contact info lines */
.contact-intro {
  font-size: 13px !important;
  font-weight: 300 !important;
  color: #999999 !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}
.contact-info {
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin-bottom: 8px !important;
}
.contact-teal { color: #1A6B7A !important; margin-bottom: 4px !important; }
.contact-muted { color: #999999 !important; }

/* Prevent .cta-dark p opacity from washing out the gold section label */
.cta-dark p.section-label {
  font-size: 11px !important;
  color: #C49A4A !important;
  opacity: 1 !important;
  margin-bottom: 24px !important;
}

@media (max-width: 768px) {
  .cta-cream { padding: 60px 24px; }
}

/* =====================
   AVAILABLE WEEKS — Book page
   ===================== */
.available-weeks-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.available-weeks-row:last-child { border-bottom: none; }

.week-date {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 300;
  color: #ffffff;
  flex: 1;
  text-align: left;
}

.week-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.week-pill--available  { background: #1A6B7A; }
.week-pill--filling-up { background: #C47A20; }
.week-pill--sold-out   { background: #888888; }
.week-pill--waitlist   { background: #1A6B7A; }

.week-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C49A4A;
  border: 1px solid #C49A4A;
  padding: 8px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.week-cta:hover { background: #C49A4A; color: #ffffff; }

@media (max-width: 640px) {
  .available-weeks-row {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
  }
  .week-date { text-align: center; }
}
