/*
Theme Name: Fresh Start Pathways
Theme URI: http://freshstartpathways.co.uk/
Author: Maddie Ford
Description: A refined, nature-inspired WordPress theme for Fresh Start Pathways wellness consultancy. Concept 1 — dark forest green, cream, and elegant serif typography.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fsp
Tags: wellness, minimal, nature, green, serif
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --forest:        #2B3E2D;
  --forest-dark:   #1E2D20;
  --forest-light:  #3A5540;
  --sage:          #8FA98A;
  --sage-light:    #C5D5C0;
  --cream:         #F4EFE6;
  --cream-dark:    #E8E0D0;
  --gold:          #C4A96A;
  --gold-light:    #D9C28A;
  --white:         #FFFFFF;
  --text:          #2B3E2D;
  --text-muted:    #6B7C68;
  --text-light:    #9BAA97;

  --font-head:     'Playfair Display', Georgia, serif;
  --font-script:   'Great Vibes', cursive;
  --font-body:     'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-label:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --max-width:     1200px;
  --section-pad:   5rem 2rem;
  --card-radius:   6px;
  --transition:    all 0.3s ease;
  --shadow:        0 4px 24px rgba(43,62,45,0.10);
  --shadow-hover:  0 10px 40px rgba(43,62,45,0.18);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.fsp-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.fsp-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--forest);
  font-weight: 400;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.fsp-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.fsp-section {
  padding: var(--section-pad);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.fsp-btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.fsp-btn--dark {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.fsp-btn--dark:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.fsp-btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.fsp-btn--outline:hover {
  background: var(--cream);
  color: var(--forest);
}

.fsp-btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.fsp-btn--outline-dark:hover {
  background: var(--forest);
  color: var(--cream);
}

.fsp-btn--gold {
  background: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}
.fsp-btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ============================================================
   DIVIDERS
   ============================================================ */
.fsp-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.fsp-rule::before,
.fsp-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.fsp-rule__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.fsp-site-header {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.fsp-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}

/* Logo */
.fsp-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.fsp-logo__leaf {
  width: 36px;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}
.fsp-logo__wordmark {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}
.fsp-logo__text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Gold thin accent bar at very top */
.fsp-site-header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--forest));
}

/* Nav */
.fsp-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.fsp-nav__item a {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.85);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.fsp-nav__item a:hover,
.fsp-nav__item.current-menu-item a {
  color: var(--cream);
  border-bottom-color: var(--gold);
}

/* Tagline bar beneath header nav */
.fsp-header-tagline {
  background: var(--forest-dark);
  text-align: center;
  padding: 0.4rem 1rem;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--sage-light);
  text-transform: uppercase;
}

/* Hamburger for mobile */
.fsp-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.fsp-nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.fsp-hero {
  position: relative;
  min-height: 90vh;
  background-color: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.fsp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(143,169,138,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,169,106,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative leaf shadow overlay */
.fsp-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 45%;
  height: 80%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 300'%3E%3Cellipse cx='100' cy='150' rx='80' ry='140' fill='none' stroke='rgba(143,169,138,0.08)' stroke-width='1'/%3E%3Cellipse cx='100' cy='150' rx='55' ry='100' fill='none' stroke='rgba(143,169,138,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.fsp-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 4rem 5rem 5rem;
}

.fsp-hero__logo-area {
  margin-bottom: 2.5rem;
}
.fsp-hero__leaf-img {
  width: 70px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1) opacity(0.9);
}
.fsp-hero__wordmark-img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}

.fsp-hero__divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.fsp-hero__divider::before,
.fsp-hero__divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.fsp-hero__divider-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.fsp-hero__tagline {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--sage-light);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.fsp-hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--cream);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.fsp-hero__sub {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}

.fsp-hero__image {
  position: relative;
  overflow: hidden;
}
.fsp-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Vignette on hero image */
.fsp-hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest) 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.fsp-services {
  background: var(--cream);
  padding: 5rem 2rem 6rem;
}

.fsp-services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.fsp-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fsp-service-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(43,62,45,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.fsp-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Square image container — works for all orientations without cutting key content */
.fsp-service-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--forest);
  flex-shrink: 0;
}
.fsp-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* anchors to top so faces/subjects aren't clipped */
  transition: transform 0.5s ease;
  display: block;
}
.fsp-service-card:hover .fsp-service-card__image img {
  transform: scale(1.04);
}

/* Arbonne logo card — centred logo on green, same square proportions */
.fsp-service-card__image--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: var(--forest);
  aspect-ratio: 1 / 1;
}
.fsp-service-card__image--logo img {
  max-height: 90px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fsp-service-card__body {
  padding: 1.4rem 1.6rem 1.8rem;
  border-top: 3px solid var(--forest);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fsp-service-card__label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.fsp-service-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.fsp-cta {
  background: var(--forest);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.fsp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(143,169,138,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(196,169,106,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.fsp-cta__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.fsp-cta__eyebrow {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.2rem;
}

.fsp-cta__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.fsp-cta__script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 2rem;
}

/* ============================================================
   QUOTES SECTION
   ============================================================ */
.fsp-quotes {
  background: var(--cream);
  padding: 5rem 2rem;
}

.fsp-quotes__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fsp-quote {
  padding: 3.5rem 3rem;
  border-bottom: 1px solid var(--cream-dark);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.fsp-quote:last-child { border-bottom: none; }

.fsp-quote--alt {
  background: var(--white);
}

.fsp-quote__openmark {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--sage-light);
  line-height: 0.8;
  grid-row: 1 / 3;
  padding-top: 0.5rem;
  font-style: italic;
}

.fsp-quote__text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.5;
  margin: 0;
}

.fsp-quote__author {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
}

/* ============================================================
   PAGE BANNER (interior pages)
   ============================================================ */
.fsp-page-banner {
  background: var(--forest);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fsp-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(143,169,138,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.fsp-page-banner__eyebrow {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1rem;
}
.fsp-page-banner__title {
  font-family: var(--font-head);
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  position: relative;
}
.fsp-page-banner__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  opacity: 0.7;
}

/* ============================================================
   ABOUT PAGE — INTRO
   ============================================================ */
.fsp-about-intro {
  background: var(--white);
  padding: 5rem 2rem;
}
.fsp-about-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.fsp-about-intro__body {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.85;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.fsp-video {
  background: var(--forest-dark);
  padding: 4rem 2rem;
}
.fsp-video__inner {
  max-width: 860px;
  margin: 0 auto;
}
.fsp-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  border: 3px solid rgba(196,169,106,0.25);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.fsp-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   ABOUT PAGE — STORY & WHAT WE DO
   ============================================================ */
.fsp-text-section {
  padding: 5rem 2rem;
}
.fsp-text-section--alt {
  background: var(--cream);
}
.fsp-text-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.fsp-text-section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1.2rem;
}
.fsp-text-section__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
}
.fsp-text-section__body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}
.fsp-text-section__body p + p {
  margin-top: 1.2em;
}

/* ============================================================
   WELLNESS IMAGE GRID
   ============================================================ */
.fsp-image-grid {
  background: var(--forest);
  padding: 4rem 2rem 5rem;
}
.fsp-image-grid__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.fsp-image-grid__heading {
  text-align: center;
  color: var(--cream);
  font-size: 0.65rem;
  font-family: var(--font-label);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: var(--sage-light);
}
.fsp-image-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.fsp-image-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  aspect-ratio: 3/4;
}
.fsp-image-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fsp-image-grid__item:hover img {
  transform: scale(1.05);
}
.fsp-image-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30,45,32,0.9));
  padding: 2rem 1.2rem 1.2rem;
  color: var(--cream);
}
.fsp-image-grid__caption-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.fsp-site-footer {
  background: var(--forest-dark);
  color: rgba(244,239,230,0.75);
}

/* Gold top accent */
.fsp-site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-dark), var(--gold), var(--forest-dark));
}

.fsp-footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.fsp-footer__col-title {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(196,169,106,0.2);
}

.fsp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fsp-footer__links a {
  font-size: 0.85rem;
  color: rgba(244,239,230,0.7);
  transition: var(--transition);
}
.fsp-footer__links a:hover { color: var(--cream); }

.fsp-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: rgba(244,239,230,0.7);
  margin-bottom: 0.7rem;
}
.fsp-footer__contact-item a:hover { color: var(--cream); }

/* Subscribe form */
.fsp-subscribe__form {
  display: flex;
  gap: 0;
  margin-top: 1rem;
}
.fsp-subscribe__input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(244,239,230,0.2);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.fsp-subscribe__input::placeholder { color: rgba(244,239,230,0.35); }
.fsp-subscribe__input:focus {
  border-color: rgba(196,169,106,0.5);
  background: rgba(255,255,255,0.1);
}
.fsp-subscribe__btn {
  padding: 0.75rem 1.4rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--forest-dark);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.fsp-subscribe__btn:hover { background: var(--gold-light); }

/* Footer bottom bar */
.fsp-footer__bottom {
  border-top: 1px solid rgba(244,239,230,0.08);
  padding: 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fsp-footer__copy {
  font-size: 0.75rem;
  color: rgba(244,239,230,0.4);
}

.fsp-footer__social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.fsp-footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244,239,230,0.15);
  border-radius: 50%;
  color: rgba(244,239,230,0.5);
  font-size: 0.75rem;
  transition: var(--transition);
}
.fsp-footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,169,106,0.08);
}

/* ============================================================
   FSP MONOGRAM WATERMARK (business card motif)
   ============================================================ */

/* Shared mixin — applied to sections that need the FSP mark */
.fsp-has-monogram {
  position: relative;
}
.fsp-has-monogram::after {
  content: 'FSP';
  position: absolute;
  right: -2rem;
  bottom: -1.5rem;
  font-family: var(--font-head);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}
.fsp-has-monogram--dark::after {
  color: rgba(43,62,45,0.04);
}

/* ============================================================
   FSP BRANDED DIVIDER (from business card)
   ============================================================ */
.fsp-brand-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 1.8rem 0;
}
.fsp-brand-rule__line {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.fsp-brand-rule__leaf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fsp-brand-rule__dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
}

/* Business card tagline separator */
.fsp-tagline-sep {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.fsp-tagline-sep::before,
.fsp-tagline-sep::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

/* ============================================================
   ARCH PORTRAIT FRAME  (tombstone motif from business card)
   ============================================================ */
.fsp-portrait-wrap {
  display: flex;
  justify-content: center;
}
.fsp-portrait {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}
.fsp-portrait__arch {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 120px 120px 0 0;
  overflow: hidden;
  background: var(--forest-light);
  box-shadow: 0 12px 40px rgba(43,62,45,0.25);
}
.fsp-portrait__arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Gold ring accent at base of arch */
.fsp-portrait__arch::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 3px rgba(196,169,106,0.3);
  pointer-events: none;
}
.fsp-portrait__base {
  height: 6px;
  background: var(--gold);
  opacity: 0.6;
  border-radius: 0 0 3px 3px;
}
/* Name badge beneath arch */
.fsp-portrait__badge {
  text-align: center;
  padding: 1.1rem 1rem 0;
}
.fsp-portrait__name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--forest);
  line-height: 1.1;
}
.fsp-portrait__role {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.25rem;
}

/* ============================================================
   MEET THE TEAM — section on About page
   ============================================================ */
.fsp-team {
  background: var(--forest);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.fsp-team.fsp-has-monogram::after {
  color: rgba(255,255,255,0.04);
  bottom: -2rem;
  right: -1rem;
}

.fsp-team__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.fsp-team__eyebrow {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.8rem;
}
.fsp-team__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--cream);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.fsp-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Team card — styled like the back of the business card */
.fsp-team-card {
  background: var(--cream);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem 2.2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.fsp-team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
/* Gold top accent strip — like the business card line */
.fsp-team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.fsp-team-card__portrait {
  width: 160px;
  aspect-ratio: 3/4;
  border-radius: 80px 80px 0 0;
  overflow: hidden;
  background: var(--forest);
  margin-bottom: 0;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(43,62,45,0.18);
}
.fsp-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.fsp-team-card__portrait-base {
  width: 160px;
  height: 4px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.2rem;
}

.fsp-team-card__name {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.fsp-team-card__role {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.fsp-team-card__rule {
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1rem;
  opacity: 0.6;
}
.fsp-team-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fsp-team-card__link {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}
.fsp-team-card__link:hover {
  color: var(--forest-dark);
  border-bottom-color: var(--forest);
}

/* ============================================================
   TEAM MEMBER — Individual page
   ============================================================ */
.fsp-member-hero {
  background: var(--forest);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
/* Large FSP background monogram */
.fsp-member-hero::before {
  content: 'FSP';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(10rem, 22vw, 20rem);
  font-weight: 700;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}
/* Botanical leaf motif top-right */
.fsp-member-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 320px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(143,169,138,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fsp-member-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.fsp-member-hero__details {
  display: flex;
  flex-direction: column;
}
.fsp-member-hero__eyebrow {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.8rem;
}
.fsp-member-hero__name {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--cream);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.fsp-member-hero__role {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.fsp-member-hero__tagline {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  opacity: 0.7;
}
.fsp-member-hero__tagline span { margin: 0 0.4rem; opacity: 0.5; }

/* ============================================================
   TEAM MEMBER — Bio section
   ============================================================ */
.fsp-member-bio {
  background: var(--white);
  padding: 5rem 2rem;
}
.fsp-member-bio__inner {
  max-width: 780px;
  margin: 0 auto;
}
.fsp-member-bio__heading {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}
.fsp-member-bio__text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}
.fsp-member-bio__text p + p { margin-top: 1.2em; }

/* ============================================================
   TEAM MEMBER — Contact details
   ============================================================ */
.fsp-member-contact {
  background: var(--cream);
  padding: 4rem 2rem 5rem;
}
.fsp-member-contact__inner {
  max-width: 780px;
  margin: 0 auto;
}
.fsp-member-contact__heading {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.fsp-member-contact__sub {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2.5rem;
}
.fsp-member-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fsp-contact-item {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 1.6rem 1.4rem;
  border-left: 3px solid var(--forest);
  transition: var(--transition);
}
.fsp-contact-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.fsp-contact-item__icon {
  width: 32px;
  height: 32px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--cream);
}
.fsp-contact-item__label {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.fsp-contact-item__value {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}
.fsp-contact-item__placeholder {
  display: inline-block;
  width: 80%;
  height: 14px;
  background: var(--cream-dark);
  border-radius: 2px;
  animation: fsp-shimmer 1.8s ease-in-out infinite;
}
@keyframes fsp-shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================================
   RESPONSIVE — Team
   ============================================================ */
@media (max-width: 900px) {
  .fsp-team__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }
}
@media (max-width: 768px) {
  .fsp-team__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .fsp-member-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fsp-portrait-wrap { margin: 0 auto; }
  .fsp-member-contact__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .fsp-team-card__portrait { width: 130px; }
  .fsp-team-card__portrait-base { width: 130px; }
}

/* ============================================================
   GENERIC PAGE CONTENT
   ============================================================ */
.fsp-page-content {
  background: var(--white);
  padding: 4rem 2rem;
}
.fsp-page-content__inner {
  max-width: 780px;
  margin: 0 auto;
}
.fsp-page-content__inner h1,
.fsp-page-content__inner h2,
.fsp-page-content__inner h3 {
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.fsp-page-content__inner h1:first-child { margin-top: 0; }
.fsp-page-content__inner a { color: var(--forest); border-bottom: 1px solid var(--sage-light); }
.fsp-page-content__inner a:hover { color: var(--forest-dark); border-bottom-color: var(--forest); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fsp-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .fsp-image-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fsp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .fsp-hero__content {
    padding: 4rem 2rem;
    align-items: center;
    text-align: center;
  }
  .fsp-hero__divider { justify-content: center; }
  .fsp-hero__image {
    height: 55vw;
  }
  .fsp-hero__image::before {
    background: linear-gradient(to bottom, var(--forest) 0%, transparent 20%);
  }
  .fsp-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fsp-footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .fsp-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest-dark);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-top: 1px solid rgba(196,169,106,0.2);
  }
  .fsp-nav.is-open { display: flex; }
  .fsp-nav-toggle { display: flex; }
  .fsp-site-header__inner { position: relative; }
  .fsp-services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .fsp-quote {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
  }
  .fsp-quote__openmark { display: none; }
}

@media (max-width: 480px) {
  .fsp-services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .fsp-image-grid__grid {
    grid-template-columns: 1fr 1fr;
  }
  .fsp-hero__leaf-img { width: 50px; }
}
