/* ============================================
   BETTER WITH KARO — Global Stylesheet
   Palette: Emerald + Gold + Champagne
   Typography: Playfair Display + Montserrat
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --emerald:        #0F3B2E;
  --emerald-deep:   #0A2E23;
  --emerald-light:  #114B3A;
  --gold:           #C6A664;
  --gold-light:     #D4B16A;
  --gold-hover:     #D9C27A;
  --ivory:          #F6F3EE;
  --ivory-alt:      #F4EFE7;
  --charcoal:       #1F1F1F;
  --taupe:          #8C8175;
  --near-black:     #141414;
  --white:          #FFFFFF;
  --soft-white:     #F5F0EB;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Montserrat', 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --section-pad:     100px 0;
  --section-pad-sm:  60px 0;
  --container-width: 1200px;
  --container-narrow: 900px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--ivory);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.italic { font-style: italic; }
.gold { color: var(--gold); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--soft-white);
  border-color: var(--gold);
}
.btn-outline:hover {
  background-color: var(--gold);
  color: var(--near-black);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background-color: var(--charcoal);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-emerald {
  background-color: var(--emerald);
  color: var(--soft-white);
  border-color: var(--emerald);
}
.btn-emerald:hover {
  background-color: var(--emerald-light);
  border-color: var(--emerald-light);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 59, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 166, 100, 0.15);
  transition: background 0.3s var(--ease);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 24px;
}

.nav-logo-monogram {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--soft-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-white);
  opacity: 0.85;
  white-space: nowrap;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--near-black) !important;
  background: var(--gold);
  padding: 10px 24px;
  opacity: 1 !important;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--soft-white);
  transition: all 0.3s var(--ease);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--near-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.15) 0%,
    rgba(10, 10, 10, 0.05) 45%,
    rgba(10, 10, 10, 0.7) 65%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-text {
  grid-column: 2;
  padding: 120px 0 80px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--soft-white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.hero p {
  color: rgba(245, 240, 235, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   PILLARS / WHAT I HELP WITH
   ============================================ */
.pillars {
  padding: var(--section-pad);
  background: var(--ivory);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pillar-item {
  text-align: center;
  padding: 20px 12px;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--emerald);
  stroke-width: 1.5;
  fill: none;
}

.pillar-item h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.pillar-item p {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.5;
}

/* ============================================
   THREE PILLARS (ELEVATE / AMPLIFY / ARCHITECT)
   ============================================ */
.three-pillars {
  padding: var(--section-pad);
  background: var(--emerald);
  color: var(--soft-white);
}

.three-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.three-pillar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(198, 166, 100, 0.2);
  padding: 48px 36px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.three-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.three-pillar-card .pillar-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.three-pillar-card h3 {
  color: var(--soft-white);
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.three-pillar-card p {
  color: rgba(245, 240, 235, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.three-pillar-card .pillar-audience {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   WAYS TO WORK TOGETHER
   ============================================ */
.services {
  padding: var(--section-pad);
  background: var(--ivory-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-image .placeholder-icon {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

.service-card-body {
  padding: 32px 28px;
  text-align: center;
}

.service-card-body h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad);
  background: var(--ivory);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.testimonial-card {
  position: relative;
  padding: 36px 28px 28px;
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -10px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}

/* ============================================
   EMAIL CAPTURE / CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--emerald-deep);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(198, 166, 100, 0.08), transparent);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section h2 {
  color: var(--soft-white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(245, 240, 235, 0.7);
  font-size: 1rem;
  margin-bottom: 32px;
}

.email-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(198, 166, 100, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.email-form input[type="email"]::placeholder {
  color: rgba(245, 240, 235, 0.4);
}

.email-form input[type="email"]:focus {
  border-color: var(--gold);
}

.email-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease);
}

.email-form button:hover {
  background: var(--gold-hover);
}

.cta-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.cta-social a {
  color: rgba(245, 240, 235, 0.5);
  transition: color 0.3s var(--ease);
}

.cta-social a:hover {
  color: var(--gold);
}

.cta-social svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--near-black);
  padding: 48px 0 32px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .nav-logo-monogram {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}

.footer-logo .nav-logo-text {
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 235, 0.08);
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.3);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--emerald);
  color: var(--soft-white);
}

.page-hero h1 {
  color: var(--soft-white);
}

.page-hero p {
  color: rgba(245, 240, 235, 0.7);
  max-width: 600px;
}

.about-story {
  padding: var(--section-pad);
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--charcoal);
  line-height: 1.8;
}

.about-text p.highlight {
  font-size: 1.15rem;
  color: var(--emerald);
  font-weight: 500;
  font-style: italic;
}

/* Beliefs section */
.beliefs {
  padding: var(--section-pad);
  background: var(--ivory-alt);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.belief-card {
  padding: 32px 24px;
  background: var(--white);
  border-top: 3px solid var(--gold);
}

.belief-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.belief-card p {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.6;
}

/* ============================================
   WORK WITH ME / COACHING PAGE
   ============================================ */
.coaching-types {
  padding: var(--section-pad);
  background: var(--ivory);
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.coaching-card {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.coaching-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.coaching-card .price-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  margin-bottom: 20px;
}

.coaching-card h3 {
  margin-bottom: 16px;
  color: var(--charcoal);
}

.coaching-card p {
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 16px;
}

.coaching-card ul {
  margin-bottom: 24px;
}

.coaching-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.coaching-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* Application form styling */
.apply-section {
  padding: var(--section-pad);
  background: var(--emerald);
  color: var(--soft-white);
}

.apply-form {
  max-width: 600px;
  margin: 40px auto 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 166, 100, 0.25);
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

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

/* ============================================
   CORPORATE PAGE
   ============================================ */
.corp-stats {
  padding: 60px 0;
  background: var(--emerald-deep);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.corp-offerings {
  padding: var(--section-pad);
  background: var(--ivory);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.offering-card {
  padding: 40px 36px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  transition: transform 0.3s var(--ease);
}

.offering-card:hover {
  transform: translateX(4px);
}

.offering-card h3 {
  color: var(--emerald);
  margin-bottom: 12px;
}

.offering-card p {
  color: var(--taupe);
  line-height: 1.7;
}

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

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.blog-card-image {
  height: 200px;
  background: var(--emerald);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body .blog-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  transition: color 0.3s var(--ease);
}

.blog-card:hover h3 {
  color: var(--emerald);
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info h3 {
  color: var(--charcoal);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-info .contact-category {
  margin-bottom: 24px;
}

.contact-info .contact-category h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 4px;
}

.contact-form .form-group label {
  color: var(--emerald);
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  background: var(--white);
  border: 1px solid rgba(31, 31, 31, 0.12);
  color: var(--charcoal);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--emerald);
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .three-pillars-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 60px 0;
  }

  .nav {
    padding: 0 20px;
    height: 70px;
    transition: height 0.3s ease;
  }

  .nav.menu-open {
    height: auto;
    flex-wrap: wrap;
    align-content: flex-start;
    background: #0A2E23 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 40px 28px;
  }

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

  .nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .hero-text {
    grid-column: 1;
    padding: 140px 0 60px;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.8) 100%
    );
  }

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

  .services-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid,
  .coaching-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .email-form {
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pillar-item {
    padding: 16px 8px;
  }
}
