/* =========================================================
   GLOBAL PALETTE – warm tones to match the hero image
   ========================================================= */

:root {
  --color-bg: #faf7f2;        /* warm cream */
  --color-bg-alt: #ffffff;
  --color-bg-soft: #f1ece6;   /* warm beige */

  --color-primary: #5a4a42;           /* warm espresso brown */
  --color-primary-light: #7a675b;     /* lighter warm brown */
  --color-accent: #c7a67f;            /* warm tan/gold */

  --color-text: #3e332e;      /* deep brown */
  --color-muted: #847970;     /* muted mushroom */
  --color-border: #e2d8d0;

  --radius-card: 16px;
  --shadow-soft: 0 14px 30px rgba(48, 38, 32, 0.08);
}

/* =========================================================
   BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

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

.section-soft {
  background: var(--color-bg-soft);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-family: "Lora", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-muted);
}

.section-header-narrow {
  max-width: 600px;
}

.container.narrow {
  max-width: 860px;
}

/* =========================================================
   HEADER & NAV
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 242, 0.9);
  border-bottom: 1px solid rgba(226, 216, 208, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  /* no uppercase – keep it natural */
}

/* Nav */

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--color-muted);
}

.site-nav a:hover {
  color: var(--color-primary);
}

.site-nav a.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  margin: 4px 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease,
    background 0.08s ease,
    color 0.08s ease;
}

/* softer, creamier primary button */
.btn-primary {
  background: linear-gradient(135deg, #d8b98a, #f0cf9a);
  color: #3d3026;
  box-shadow: var(--shadow-soft);
  border-color: #d4b181;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0cf9a, #d8b98a);
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(48, 38, 32, 0.12);
}

.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary-light);
}

.btn-secondary:hover {
  background: #f4eee7;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: rgba(90, 74, 66, 0.08);
}

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.83rem;
}

.btn-large {
  padding: 0.9rem 1.8rem;
}

.full-width {
  width: 100%;
}

/* =========================================================
   HERO WITH BACKGROUND IMAGE
   ========================================================= */

.hero {
  padding: 4rem 0;
}

/* Photo hero */
.hero-photo {
  position: relative;
  min-height: 72vh;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(25, 20, 17, 0.55),
    rgba(25, 20, 17, 0.28)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

/* responsive H1: Where courage meets clarity */
.hero-text-block h1 {
  font-family: "Lora", serif;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.8rem); /* smart scaling */
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 600px;
}

.hero-lead {
  color: #f5efe8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions-centered {
  justify-content: flex-start;
}

/* Eyebrow text above headline */
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e7ddd3;
  margin-bottom: 0.75rem;
}

/* Hero logo overlay (top-left) */
.hero-logo-wrapper {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
}

/* Responsive hero logo – desktop default */
.hero-logo {
  width: 140px;  /* desktop size */
  height: auto;
  opacity: 0.96;
}

/* =========================================================
   GRID, CARDS, TEXT LINKS
   ========================================================= */

.grid {
  display: grid;
  gap: 1.8rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.card-stack {
  margin-top: 1.5rem;
}

/* Focus cards */
.card-focus {
  border-top: 4px solid var(--color-accent);
}

/* Inline text link */
.text-link {
  font-size: 0.9rem;
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.85rem;
  color: var(--color-primary-light);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
}

.steps-vertical {
  grid-template-columns: minmax(0, 1fr);
}

.step {
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.step-soft {
  background: #ffffff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* CTA section */
.section-cta {
  background: linear-gradient(135deg, #2b211b, #5a4a42);
  color: #f2e9de;
}

.section-cta-soft {
  background: linear-gradient(135deg, #30251f, #5a4a42);
}

.section-cta .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-cta h2 {
  font-family: "Lora", serif;
  margin-bottom: 0.5rem;
}

.section-cta p {
  color: #e7ddd3;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}

.page-hero h1 {
  font-family: "Lora", serif;
  font-size: 2rem;
  margin: 0.75rem 0 0.5rem;
}

.page-hero p {
  max-width: 640px;
  color: var(--color-muted);
}

/* Back home button */
.back-home {
  margin-bottom: 1rem;
}

/* Forms */
.contact-form {
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.required {
  color: #e11d48;
  margin-left: 0.15rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fdfbf8;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(90, 74, 66, 0.25);
  border-color: var(--color-primary-light);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

/* Lists */
.numbered-list {
  padding-left: 1.1rem;
}

.numbered-list li {
  margin-bottom: 0.5rem;
}

.testimonial-toggle {
  margin-top: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-light);
  cursor: pointer;
}

.testimonial-toggle:hover {
  text-decoration: underline;
}

/* Testimonials Layout */
.testimonials-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* allows stacking on mobile */
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  width: 31%;
  min-width: 280px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.testimonial-card h3 {
  margin-bottom: 0.75rem;
}

.testimonial-toggle {
  margin-top: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--color-primary-light, #6a6de0);
  font-weight: 600;
  cursor: pointer;
}

.testimonial-toggle:hover {
  text-decoration: underline;
}

.testimonial-more {
  margin-top: 1rem;
}



/* =========================================================
   ABOUT PAGE – COACH BIO INLINE IMAGE
   ========================================================= */

.coach-bio-inline p {
  text-align: justify;
  line-height: 1.65;
}

/* square, clearly visible inline headshot */
.coach-inline-photo {
  float: left;
  width: 250px;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  margin: 0 1.8rem 1.2rem 0;
  border: 4px solid #e8dfd2;
  box-shadow: 0 10px 22px rgba(48, 38, 32, 0.12);
}

.coach-quote {
  margin: 1.75rem 0 1.25rem;
  font-style: italic;
  color: var(--color-muted);
  border-left: 3px solid var(--color-accent);
  padding-left: 0.9rem;
}

.coach-values-card {
  margin-top: 1rem;
  background: #f8f1e8;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  border: 1px solid #e2d1bd;
}

.coach-values-card h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.coach-values-card ul {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
}

.coach-values-card li {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.coach-summary {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Section title helper */
.section-title-centered {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title-centered h2 {
  margin-bottom: 0;
  font-family: "Lora", serif;
}

.section-divider {
  width: 64px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.8rem auto 1.5rem;
  border-radius: 999px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--color-border);
  background: #19151a;
  color: #e1d8f0;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.site-footer .logo-mark {
  background: #fff;
  color: #19151a;
}

.site-footer .logo-text {
  color: #f5f2ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #e1d8f0;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-meta {
  font-size: 0.8rem;
  color: #c0b5d2;
}

.centered {
  text-align: center;
  margin-top: 1.5rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .hero-photo {
    min-height: 80vh;
    padding: 4rem 0 3rem;
  }

  .hero-actions-centered {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .container.narrow,
  .page-hero .container {
    padding: 0 1.25rem;
  }

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

  .section-cta .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  /* logo slightly smaller on tablets */
  .hero-logo {
    width: 115px;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: rgba(250, 247, 242, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transform: translateY(-200%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.16s ease, opacity 0.16s ease, visibility 0.16s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: block;
  }

  /* mobile hero adjustments */

  .hero-photo {
    background-position: top center;
    padding-top: 5rem;
    padding-bottom: 3.25rem;
  }

  .hero-content {
    text-align: center;
    padding-top: 1.5rem;
  }

  .hero-text-block h1 {
    line-height: 1.2;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    font-size: 0.95rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    max-width: 260px;
  }

  /* hero logo smaller and tucked in nicely for phones */
  .hero-logo-wrapper {
    top: 10px;
    left: 10px;
  }

  .hero-logo {
    width: 75px;
  }

  .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-item h3 {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  margin: 0.25rem 0;
  color: var(--color-muted);
}


  /* inline coach photo behavior on mobile */
  .coach-inline-photo {
    float: none;
    display: block;
    margin: 0 auto 1.5rem;
    width: 90%;
    height: auto;
  }

  .coach-bio-inline p {
    text-align: left;
  }
}

/* very small phones */
@media (max-width: 420px) {
  .hero-logo {
    width: 60px;
  }
}
/* =========================================
   Social Icons
   ========================================= */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.social-icon img {
  width: 28px;
  height: 28px;
}

.social-icon:hover {
  opacity: 0.75;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.footer-social img {
  width: 26px;
  height: 26px;
  opacity: 0.9;
}

.footer-social img:hover {
  opacity: 1;
}
