/* ============================================
   AVANDRA COACHING — STYLESHEET v2
   Warm Ivory + Gold + Blush Rose
   Professional, Friendly, Feminine
   ============================================ */

:root {
  --ivory: #faf6f0;
  --ivory-dark: #f2ece2;
  --ivory-mid: #ede5d8;
  --warm-white: #fffdf9;
  --gold: #b8922a;
  --gold-light: #d4ab4e;
  --gold-pale: #f5e9cc;
  --blush: #c9747a;
  --blush-light: #e09da2;
  --blush-pale: #fdf0f0;
  --charcoal: #3a3028;
  --text-dark: #4a3f35;
  --text-mid: #7a6a5a;
  --text-muted: #a0907f;
  --border: rgba(184,146,42,0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 4px;
  --transition: 0.3s ease;
  --shadow: 0 4px 30px rgba(58,48,40,0.1);
  --shadow-soft: 0 2px 20px rgba(58,48,40,0.07);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { font-size: 1rem; font-weight: 400; color: var(--text-mid); }
em { font-style: italic; color: var(--gold); }
strong { color: var(--text-dark); font-weight: 700; }

/* CONTAINERS */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.section-pad { padding: 6rem 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { color: var(--charcoal); margin-bottom: 1.5rem; }
.section-sub { color: var(--text-muted); max-width: 580px; margin: 0 auto 3rem; font-size: 1.05rem; }
.center { text-align: center; }
.lead-text { font-size: 1.12rem; color: var(--text-dark); font-family: var(--font-display); font-style: italic; margin-bottom: 1.2rem; line-height: 1.6; }

/* BUTTONS */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 40px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(184,146,42,0.25);
}
.btn-gold:hover { background: transparent; color: var(--gold); box-shadow: none; }
.btn-gold.large { padding: 1rem 2.8rem; font-size: 0.9rem; }
.btn-gold.small { padding: 0.55rem 1.4rem; font-size: 0.75rem; }

.btn-blush {
  display: inline-block;
  background: var(--blush);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--blush);
  border-radius: 40px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,116,122,0.25);
}
.btn-blush:hover { background: transparent; color: var(--blush); box-shadow: none; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--ivory-mid);
  border-radius: 40px;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* NAV */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(250,246,240,0.97);
  padding: 0.75rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(58,48,40,0.08);
}
.nav-inner { width: 100%; max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.site-footer .logo-img {
  height: 48px;
  margin-bottom: 0.5rem;
}
.logo-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.08em; color: var(--charcoal); text-transform: uppercase; }
.logo-text em { font-style: italic; color: var(--gold); font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links li { position: relative; }
.nav-links a { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); padding: 0.5rem 0.9rem; transition: color var(--transition); display: block; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--blush) !important; color: #fff !important; border-radius: 40px; padding: 0.5rem 1.3rem !important; margin-left: 0.5rem; box-shadow: 0 3px 12px rgba(201,116,122,0.3); }
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; box-shadow: none; }

.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--warm-white); border: 1px solid var(--border); border-radius: 10px; min-width: 210px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); z-index: 100; box-shadow: var(--shadow); overflow: hidden; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { font-size: 0.78rem; padding: 0.65rem 1.2rem; border-bottom: 1px solid rgba(184,146,42,0.07); color: var(--text-mid); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--blush-pale); color: var(--blush); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: var(--transition); border-radius: 2px; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(201,116,122,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(184,146,42,0.07) 0%, transparent 50%),
    linear-gradient(160deg, #fff9f2 0%, #faf6f0 50%, #f5ede0 100%);
}
.hero-texture { position: absolute; inset: 0; pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 10%; right: 8%; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(184,146,42,0.12); pointer-events: none; }
.hero::before { content: ''; position: absolute; bottom: 15%; left: 5%; width: 180px; height: 180px; border-radius: 50%; border: 1px solid rgba(201,116,122,0.12); pointer-events: none; }
.hero-content { text-align: center; position: relative; z-index: 1; padding: 2rem; animation: fadeUp 1s ease forwards; }
.hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blush); margin-bottom: 1rem; font-weight: 700; }
.hero-title { color: var(--charcoal); margin-bottom: 1.5rem; line-height: 1.1; }
.hero-title em { display: block; color: var(--gold); font-weight: 400; }
.hero-tagline { font-size: 1.1rem; color: var(--text-mid); max-width: 540px; margin: 0 auto 2rem; line-height: 1.8; }
.hero-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto 1.5rem; }
.hero-divider::before, .hero-divider::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero-divider span { color: var(--gold); font-size: 1rem; opacity: 0.6; }
.hero-sub { font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem; font-weight: 700; font-family: var(--font-display); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 1; }
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--blush), transparent); animation: scrollPulse 2s ease infinite; }

/* STRIP */
.intro-strip { background: var(--charcoal); padding: 2.5rem 2rem; position: relative; z-index: 1; }
.strip-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 1rem; flex-wrap: wrap; }
.strip-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.strip-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.strip-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; }
.strip-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ABOUT PREVIEW */
.about-preview { background: var(--warm-white); }
.about-img-wrap { position: relative; }
.about-img-frame { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--ivory-mid); border-radius: 16px; box-shadow: var(--shadow); }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 5rem; color: var(--gold); opacity: 0.25; }
.about-img-frame.no-img img { display: none; }
.about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 110px; height: 110px; background: var(--blush); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; text-align: center; box-shadow: 0 4px 20px rgba(201,116,122,0.35); }
.about-badge span { font-size: 1.3rem; color: #fff; }
.about-badge p { font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9); line-height: 1.4; font-weight: 700; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; }
.pull-quote { font-family: var(--font-display); font-size: 1.7rem; font-style: italic; color: var(--gold); border-left: 3px solid var(--blush); padding-left: 1.5rem; margin: 2rem 0; line-height: 1.3; }

/* SERVICES */
.dark-section { background: var(--ivory-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem 2rem; transition: all var(--transition); position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--blush)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(58,48,40,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 1.6rem; color: var(--blush); margin-bottom: 1.2rem; }
.service-card h3 { color: var(--charcoal); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.card-link { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; text-transform: uppercase; transition: color var(--transition); }
.card-link:hover { color: var(--blush); }

/* TESTIMONIALS */
.testimonials { background: var(--warm-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--ivory); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem 2rem; position: relative; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.quote-mark { font-family: var(--font-display); font-size: 5rem; color: var(--blush); opacity: 0.2; line-height: 0.5; margin-bottom: 1.5rem; }
.testimonial-card p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-initial { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--blush)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; color: #fff; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { color: var(--charcoal); font-size: 0.88rem; display: block; }

/* CTA */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--charcoal) 0%, #4a3a2e 100%); padding: 6rem 0; }
.cta-texture { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,116,122,0.12) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(184,146,42,0.1) 0%, transparent 55%); pointer-events: none; }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; font-size: 1.1rem; }

/* FOOTER */
.site-footer { background: var(--charcoal); padding: 4rem 0 0; border-top: 3px solid var(--gold); position: relative; z-index: 1; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo-text { display: block; margin-bottom: 1rem; color: var(--ivory); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; max-width: 280px; line-height: 1.8; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush-light); margin-bottom: 1.2rem; font-weight: 700; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; }
.social-link { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--transition); }
.social-link:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.2rem 2rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-bottom a { color: var(--gold-light); }

/* PAGE HERO */
.page-hero { padding: 10rem 0 5rem; background: linear-gradient(160deg, #fff9f2 0%, var(--ivory-dark) 100%); border-bottom: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(201,116,122,0.1); pointer-events: none; }
.page-hero h1 { color: var(--charcoal); margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; position: relative; z-index: 1; }

/* COACHING */
.coaching-services { background: var(--ivory); }
.coaching-service { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.coaching-service:last-child { border-bottom: none; }
.coaching-service:nth-child(even) { background: var(--warm-white); }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-layout.reverse { direction: rtl; }
.service-layout.reverse > * { direction: ltr; }
.service-content .tag { display: inline-block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush); border: 1px solid rgba(201,116,122,0.3); border-radius: 40px; padding: 0.3rem 1rem; margin-bottom: 1.2rem; font-weight: 700; }
.service-content h2 { color: var(--charcoal); margin-bottom: 1.2rem; }
.service-content p { color: var(--text-mid); margin-bottom: 1rem; }
.service-visual { background: linear-gradient(135deg, var(--ivory-dark), var(--ivory-mid)); border: 1px solid var(--border); border-radius: 16px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); overflow: hidden; position: relative; }
.service-visual-inner { text-align: center; padding: 2rem; }
.service-visual-inner .big-icon { font-family: var(--font-display); font-size: 6rem; color: var(--gold); opacity: 0.18; line-height: 1; }
.service-visual-inner h3 { color: var(--blush); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 1rem; font-family: var(--font-body); font-weight: 700; }

/* MENTORING */
.mentoring-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.mentoring-section:last-child { border-bottom: none; }
.mentoring-section:nth-child(even) { background: var(--warm-white); }
.mentoring-layout { display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: start; }
.mentoring-label { font-family: var(--font-display); font-size: 6rem; color: var(--blush); opacity: 0.1; line-height: 1; user-select: none; font-weight: 700; }
.mentoring-content h2 { color: var(--charcoal); margin-bottom: 1.5rem; }
.mentoring-content p { color: var(--text-mid); margin-bottom: 1rem; }

/* ABOUT */
.about-main { background: var(--warm-white); }
.about-story { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.about-photo-wrap { position: sticky; top: 100px; }
.about-photo { aspect-ratio: 3/4; background: var(--ivory-mid); border-radius: 16px; overflow: hidden; position: relative; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-photo .img-placeholder { font-size: 6rem; }
.about-story-text p { color: var(--text-mid); margin-bottom: 1rem; }

.credentials-section { background: var(--ivory-dark); }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.credential-item { background: var(--warm-white); border: 1px solid var(--border); border-radius: 10px; border-left: 4px solid var(--gold); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.credential-item h4 { color: var(--charcoal); font-size: 0.92rem; margin-bottom: 0.3rem; font-family: var(--font-body); font-weight: 700; }
.credential-item p { color: var(--text-muted); font-size: 0.82rem; }

/* CONTACT */
.contact-main { background: var(--warm-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info h2 { color: var(--charcoal); margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--blush-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blush); font-size: 1rem; flex-shrink: 0; }
.contact-detail-text strong { color: var(--charcoal); display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; font-family: var(--font-body); font-weight: 700; }
.contact-detail-text span { color: var(--text-mid); font-size: 0.9rem; }
.contact-form-wrap { background: var(--ivory); border: 1px solid var(--border); border-radius: 16px; padding: 3rem; box-shadow: var(--shadow-soft); }
.contact-form-wrap h3 { color: var(--charcoal); margin-bottom: 0.5rem; }
.contact-form-wrap .form-sub { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 700; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--warm-white); border: 1.5px solid var(--ivory-mid); color: var(--text-dark); padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.92rem; outline: none; transition: border-color var(--transition); border-radius: 8px; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blush); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: var(--gold-pale); border: 1px solid var(--gold); border-radius: 10px; padding: 1.5rem; text-align: center; margin-top: 1rem; }
.form-success p { color: var(--gold); font-weight: 600; }
.calendly-section { background: var(--ivory-dark); }
.calendly-wrap { background: var(--warm-white); border: 1px solid var(--border); border-radius: 16px; padding: 3rem; text-align: center; box-shadow: var(--shadow-soft); }
.calendly-placeholder { border: 2px dashed rgba(184,146,42,0.25); border-radius: 12px; padding: 4rem 2rem; }
.calendly-placeholder p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; }

/* WHAT IS COACHING GRID */
.what-coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.what-card { display: flex; flex-direction: column; }
.what-card-img {
  margin-bottom: 2rem;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.what-card p { color: var(--text-mid); margin-bottom: 1rem; }
.what-card .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.coaching-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}
.coaching-list li {
  color: var(--text-mid);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.coaching-list li:last-child { border-bottom: none; }
.coaching-list li::before {
  content: '⟡';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.65rem;
}

/* AVANDRA MODEL */
.avandra-model-section {
  background: var(--ivory-dark);
}
.avandra-model {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  align-items: start;
}
.avandra-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}
.avandra-diamond {
  width: 72px;
  height: 72px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(58,48,40,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.avandra-diamond:hover {
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 8px 25px rgba(58,48,40,0.2);
}
.avandra-diamond.gold { background: var(--gold); }
.avandra-diamond.blush { background: var(--blush); }
.avandra-diamond.dark { background: #7a5c6e; }
.avandra-diamond.charcoal { background: var(--charcoal); }
.avandra-letter {
  transform: rotate(-45deg);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.avandra-step-content h3 {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.avandra-step-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Connector line between diamonds */
.avandra-model::before {
  display: none;
}

@media (max-width: 1024px) {
  .what-coaching-grid { grid-template-columns: 1fr; gap: 3rem; }
  .avandra-model { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
@media (max-width: 600px) {
  .avandra-model { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* WHY SECTION */
.why-section { background: var(--ivory); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(58,48,40,0.1); }
.why-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 1rem; opacity: 0.7; }
.why-card h3 { color: var(--charcoal); margin-bottom: 0.75rem; font-size: 1.1rem; }
.why-card p { font-size: 0.88rem; line-height: 1.75; }

/* FEATURED QUOTE */
.featured-quote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.featured-quote-mark {
  font-family: var(--font-display);
  font-size: 7rem;
  color: var(--blush);
  opacity: 0.15;
  line-height: 0.4;
  margin-bottom: 1.5rem;
}
.featured-quote-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.featured-quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .featured-quote-inner { padding: 2rem 1.5rem; }
  .featured-quote-text { font-size: 1rem; }
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-logo {
  height: 140px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 20px rgba(184,146,42,0.3));
}
.hero-brand .hero-title {
  margin-bottom: 0;
  text-align: left;
}

.credential-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.credential-content > div { flex: 1; }
.credential-badge {
  height: 70px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.credential-badge:hover { transform: scale(1.08); }

.mentoring-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  display: block;
}

/* BADGES */
.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 1.5rem 0;
}
.badge-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(58,48,40,0.1));
}
.badge-img:hover { transform: scale(1.05); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout, .service-layout.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .service-layout.reverse .service-visual { order: -1; }
  .mentoring-layout { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 380px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 82%; max-width: 320px; height: 100vh; background: var(--warm-white); flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; gap: 0; transition: right var(--transition); z-index: 999; box-shadow: -4px 0 30px rgba(58,48,40,0.12); }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; box-shadow: none; border-left: 3px solid var(--blush); margin-left: 1rem; border-radius: 0; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { margin-left: 0; margin-top: 1rem; display: inline-block; width: auto; }
  .two-col, .credentials-grid, .form-row, .footer-inner { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .strip-divider { display: none; }
  .about-badge { bottom: -1rem; right: -0.5rem; width: 85px; height: 85px; }
  .contact-form-wrap { padding: 1.8rem 1.4rem; }
}
