/* Moore than Coaching
   Custom site styling
*/

/* -----------------------------
   Base
----------------------------- */

:root {
  --teal: #004f5f;
  --teal-dark: #003b46;
  --sage: #7f9f8a;
  --sage-light: #edf5f0;
  --river: #9fc5d8;
  --river-light: #eef7fa;
  --cream: #fbfaf7;
  --stone: #f4f1ec;
  --text: #263238;
  --muted: #5f6f73;
  --white: #ffffff;
  --border: #dde7e2;
  --shadow: 0 18px 45px rgba(0, 79, 95, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--teal-dark);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}


/* -----------------------------
   Header
----------------------------- */

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  width: 155px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.site-nav a {
  color: var(--teal-dark);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  border-bottom-color: var(--sage);
}


/* -----------------------------
   Hero
----------------------------- */

.hero {
  padding: 92px 0;
  background:
    radial-gradient(circle at top right, rgba(159, 197, 216, 0.38), transparent 34%),
    linear-gradient(135deg, var(--white) 0%, var(--river-light) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--teal-dark);
  line-height: 1.15;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.55rem;
}

.hero-text {
  max-width: 670px;
  margin: 0 0 34px;
  font-size: 1.28rem;
  color: var(--muted);
}

.hero-card {
  position: relative;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(127, 159, 138, 0.35);
  border-radius: 22px;
  pointer-events: none;
}

.hero-card p {
  position: relative;
  margin: 0;
  font-size: 1.25rem;
  color: var(--teal-dark);
}


/* -----------------------------
   Buttons
----------------------------- */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--teal);
  border: 2px solid var(--teal);
}

.primary-button:hover {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.secondary-button {
  color: var(--teal-dark);
  background: transparent;
  border: 2px solid var(--sage);
}

.secondary-button:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}


/* -----------------------------
   Quote
----------------------------- */

.quote-section {
  padding: 72px 0;
  background:
    linear-gradient(rgba(0, 79, 95, 0.72), rgba(0, 79, 95, 0.72)),
    url("../images/river-rocks.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.quote-inner {
  max-width: 920px;
  text-align: center;
}

blockquote {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.35;
}

.quote-author {
  margin: 22px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.86);
}


/* -----------------------------
   Intro
----------------------------- */

.intro-section {
  padding: 96px 0;
  background: var(--cream);
}

.intro-section p {
  font-size: 1.16rem;
  color: var(--muted);
}

.intro-section h2 {
  margin-bottom: 24px;
}


/* -----------------------------
   Services Preview
----------------------------- */

.services-preview {
  padding: 96px 0;
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  padding: 34px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(0, 79, 95, 0.06);
}

.service-card h3 {
  margin-bottom: 10px;
}

.price {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--sage);
}

.service-card p {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid var(--river);
}


/* -----------------------------
   CTA
----------------------------- */

.cta-section {
  padding: 88px 0;
  background: var(--sage-light);
}

.cta-inner {
  max-width: 860px;
  text-align: center;
}

.cta-inner p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 1.16rem;
  color: var(--muted);
}


/* -----------------------------
   Footer
----------------------------- */

.site-footer {
  padding: 32px 0;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.84);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-note {
  color: rgba(255, 255, 255, 0.64);
}


/* -----------------------------
   Responsive
----------------------------- */

@media (max-width: 880px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-card {
    padding: 32px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .services-preview {
    padding: 72px 0;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .site-logo {
    width: 165px;
  }

  .site-nav {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-text {
    font-size: 1.12rem;
  }

  .button {
    width: 100%;
  }

  .quote-section {
    padding: 56px 0;
  }

  .service-card {
    padding: 26px;
  }
}

/* -----------------------------
   Interior Pages
----------------------------- */

.page-hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(159, 197, 216, 0.32), transparent 34%),
    linear-gradient(135deg, var(--white) 0%, var(--river-light) 100%);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  margin-bottom: 24px;
}

.service-detail-section {
  padding: 86px 0;
  background: var(--cream);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
  padding: 46px;
  margin-bottom: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 14px 34px rgba(0, 79, 95, 0.07);
}

.service-detail-card h2 {
  margin-bottom: 12px;
}

.service-detail-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.featured-service {
  border-top: 6px solid var(--sage);
}

.discovery-card {
  background: var(--sage-light);
}

.large-price {
  font-size: 1.05rem;
}

.styled-list {
  margin: 22px 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.06rem;
}

.styled-list li {
  margin-bottom: 8px;
}

.small-note {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--teal-dark) !important;
}

.session-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.session-item {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.session-item h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.session-item p {
  margin-bottom: 0;
}

.note-section {
  padding: 78px 0;
  background: var(--river-light);
  text-align: center;
}

.note-section p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.16rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px;
  }

  .page-hero {
    padding: 66px 0 58px;
  }
}

@media (max-width: 520px) {
  .service-detail-section {
    padding: 62px 0;
  }

  .service-detail-card {
    padding: 26px;
  }
}

/* -----------------------------
   About Page
----------------------------- */

.about-section {
  padding: 94px 0;
  background: var(--cream);
}

.about-profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}

.about-content p {
  font-size: 1.14rem;
  color: var(--muted);
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--sage-light);
  border-radius: 32px;
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  display: block;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
}

.credentials-section {
  padding: 94px 0;
  background: var(--white);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.credential-card {
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 79, 95, 0.06);
}

.credential-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.credential-card p {
  margin: 0;
  color: var(--muted);
}

.credentials-note {
  max-width: 780px;
  margin: 36px 0 0;
  padding-left: 22px;
  border-left: 4px solid var(--sage);
  font-size: 1.08rem;
  color: var(--muted);
}

.values-section {
  padding: 94px 0;
  background: var(--cream);
}

.small-quote {
  padding: 58px 0;
}

.small-quote blockquote {
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}

@media (max-width: 860px) {
  .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-photo-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-photo {
    height: 500px;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .about-section,
  .credentials-section,
  .values-section {
    padding: 72px 0;
  }
}

@media (max-width: 520px) {
  .about-photo {
    height: 430px;
  }
}

/* -----------------------------
   Contact Page
----------------------------- */

.contact-hero {
  background:
    radial-gradient(circle at top right, rgba(127, 159, 138, 0.26), transparent 34%),
    linear-gradient(135deg, var(--white) 0%, var(--sage-light) 100%);
}

.contact-section {
  padding: 88px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: stretch;
}

.contact-card {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 14px 34px rgba(0, 79, 95, 0.07);
}

.main-contact-card {
  border-top: 6px solid var(--sage);
}

.contact-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-info-card h3 {
  margin-bottom: 26px;
}

.contact-item {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.contact-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-item p {
  margin: 0;
}

.contact-label {
  margin-bottom: 6px !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage) !important;
}

.contact-prompt-section {
  padding: 86px 0;
  background: var(--white);
}

.message-example {
  margin-top: 30px;
  padding: 34px;
  background: var(--river-light);
  border: 1px solid var(--border);
  border-radius: 26px;
}

.message-example p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section,
  .contact-prompt-section {
    padding: 68px 0;
  }
}

@media (max-width: 520px) {
  .contact-card,
  .message-example {
    padding: 26px;
  }
}

/* -----------------------------
   Testimonials
----------------------------- */

.testimonial-section {
  padding: 0 0 30px;
  background: transparent;
}

.testimonial-section .narrow {
  width: 100%;
  padding: 42px 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--sage);
}

.testimonial-quote {
  margin: 0;
  max-width: 920px;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
}

.testimonial-author {
  margin: 24px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

@media (max-width: 520px) {
  .testimonial-section .narrow {
    padding: 30px;
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }
}

/* -----------------------------
   Policies Page
----------------------------- */

.policy-section {
  padding: 94px 0;
  background: var(--cream);
}

.policy-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 118px;
  padding: 30px;
  background: var(--sage-light);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(0, 79, 95, 0.06);
}

.policy-sidebar p {
  color: var(--muted);
}

.policy-content {
  display: grid;
  gap: 24px;
}

.policy-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(0, 79, 95, 0.06);
}

.policy-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.policy-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-updated {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--sage) !important;
}

@media (max-width: 860px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }

  .policy-section {
    padding: 72px 0;
  }
}

@media (max-width: 520px) {
  .policy-card,
  .policy-sidebar {
    padding: 26px;
  }
}