@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600&display=swap');

/* ── Custom Properties ── */
:root {
  --color-cream: #F7F5F0;
  --color-sage: #8FAF8A;
  --color-sage-light: #A8C4A3;
  --color-sage-dark: #7A9B75;
  --color-taupe: #C4B9A8;
  --color-taupe-light: #D6CEC1;
  --color-olive: #4A5E46;
  --color-amber: #E8AA14;
  --color-rust: #D74E09;
  --color-slate: #3A5683;
  --color-text: #3D3B37;
  --color-text-light: #6B6760;
  --color-cream-dark: #EDE9E0;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width-text: 720px;
  --max-width-wide: 1080px;
  --section-padding: 6rem 2rem;
  --section-padding-mobile: 3.5rem 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--color-sage-dark);
}

ul, ol {
  list-style: none;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-olive);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

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

/* ── Utility ── */
.container {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: var(--max-width-wide);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-sage);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--color-sage-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 94, 70, 0.2);
}

.btn--amber {
  background-color: var(--color-amber);
  color: #fff;
  font-weight: 600;
}

.btn--amber:hover {
  background-color: #f0b82e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 170, 20, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-olive);
  border: 1.5px solid var(--color-sage);
}

.btn--outline:hover {
  background-color: var(--color-sage);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Header / Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.site-header--scrolled {
  box-shadow: 0 1px 8px rgba(74, 94, 70, 0.08);
}

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

.site-header__logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-olive);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.site-header__logo:hover {
  opacity: 0.8;
  color: var(--color-olive);
}

.site-nav__list {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.site-nav__link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-sage);
  transition: width 0.3s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--color-olive);
}

.site-nav__link:hover::after,
.site-nav__link--active::after {
  width: 100%;
}

.site-nav__cta {
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
}

/* ── Mobile Menu Toggle ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-olive);
  font-size: 1.25rem;
}

/* ── Hero Section ── */
.hero {
  padding: 9rem 2rem 5rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero__content {
  flex: 1;
}

.hero__photo {
  flex: 0 0 340px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin: 0 0 1.5rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 0 2.5rem;
  line-height: 1.8;
}

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

/* ── Photo Placeholder ── */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--color-cream-dark);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-taupe);
  font-size: 0.875rem;
}

.photo-placeholder i {
  font-size: 2rem;
  opacity: 0.5;
}

.photo-placeholder span {
  opacity: 0.6;
  font-style: italic;
}

/* ── Color Accent Utilities ── */
.icon--sage { color: var(--color-sage); }
.icon--amber { color: var(--color-amber); }
.icon--rust { color: var(--color-rust); }
.icon--slate { color: var(--color-slate); }
.icon--olive { color: var(--color-olive); }

/* ── Section Styles ── */
.section {
  padding: var(--section-padding);
}

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

.section--warm {
  background-color: #F0ECE3;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 1rem;
}

.section__label--amber {
  color: var(--color-amber);
}

.section__header {
  max-width: var(--max-width-text);
  margin: 0 auto 3rem;
}

/* ── Who I Work With (Home) ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.audience-card {
  padding: 1.5rem 0;
}

.audience-card__icon {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ── Services Preview (Home) ── */
.services-preview {
  max-width: var(--max-width-text);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-preview-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.service-preview-item__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-top: 0.35rem;
}

.service-preview-item h3 {
  margin-bottom: 0.5rem;
}

.service-preview-item p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ── CTA Banner ── */
.cta-banner {
  padding: var(--section-padding);
  text-align: center;
  background-color: var(--color-olive);
  color: rgba(247, 245, 240, 0.9);
}

.cta-banner h2 {
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(247, 245, 240, 0.75);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}

.cta-banner .btn--primary {
  background-color: var(--color-amber);
  color: #fff;
  font-weight: 600;
}

.cta-banner .btn--primary:hover {
  background-color: #f0b82e;
  box-shadow: 0 4px 16px rgba(232, 170, 20, 0.3);
}

/* ── About Page ── */
.about-intro-split {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.about-intro-split__text {
  flex: 1;
  max-width: var(--max-width-text);
}

.about-intro-split__photo {
  flex: 0 0 280px;
  position: sticky;
  top: 6rem;
}

.about-intro {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.about-intro p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.approach-card {
  padding: 2rem 0;
}

.approach-card__icon {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.approach-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.values-list {
  max-width: var(--max-width-text);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.values-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.values-list__marker {
  flex-shrink: 0;
  color: var(--color-amber);
  font-size: 0.75rem;
  margin-top: 0.4rem;
}

.values-list__item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.values-list__item p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ── Services Page ── */
.service-detail {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.service-detail + .service-detail {
  margin-top: 4rem;
}

.service-detail__icon {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.service-detail h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-detail p {
  font-size: 1rem;
  color: var(--color-text-light);
}

.service-detail .focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.focus-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  background-color: rgba(143, 175, 138, 0.1);
  color: var(--color-olive);
  transition: transform 0.2s ease;
}

.focus-tag:nth-child(3n+2) {
  background-color: rgba(232, 170, 20, 0.1);
  color: #8a6a10;
}

.focus-tag:nth-child(3n+3) {
  background-color: rgba(196, 185, 168, 0.25);
  color: var(--color-text);
}

.focus-tag:hover {
  transform: translateY(-1px);
}

.session-format {
  max-width: var(--max-width-text);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.session-format__option {
  padding: 2rem;
  text-align: center;
}

.session-format__option i {
  font-size: 1.5rem;
  color: var(--color-sage);
  margin-bottom: 1rem;
  display: block;
}

.session-format__option h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.session-format__option p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ── Book Page ── */
.book-content {
  max-width: var(--max-width-text);
  margin: 0 auto;
  text-align: center;
}

.book-content p {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

.booking-placeholder {
  margin: 3rem auto;
  padding: 3rem 2rem;
  border: 2px dashed var(--color-taupe);
  border-radius: 10px;
  background-color: rgba(196, 185, 168, 0.08);
  max-width: 500px;
}

.booking-placeholder p {
  font-size: 0.9375rem;
  color: var(--color-taupe);
  font-style: italic;
}

.book-steps {
  max-width: var(--max-width-text);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.book-step__number {
  color: var(--color-amber);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto 0.75rem;
}

.book-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.book-step p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ── Page Header (inner pages) ── */
.page-header {
  padding: 9rem 2rem 4rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Footer ── */
.site-footer {
  padding: 3.5rem 2rem 2.5rem;
  border-top: 1px solid rgba(196, 185, 168, 0.3);
}

.site-footer__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.site-footer__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-olive);
  margin-bottom: 0.5rem;
}

.site-footer__contact {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.site-footer__contact a {
  color: var(--color-text-light);
}

.site-footer__contact a:hover {
  color: var(--color-olive);
}

.site-footer__nav {
  display: flex;
  gap: 1.75rem;
}

.site-footer__nav a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.site-footer__nav a:hover {
  color: var(--color-olive);
}

.site-footer__bottom {
  max-width: var(--max-width-wide);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 185, 168, 0.2);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-taupe);
}

/* ── Fade-in Animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .site-header__inner {
    padding: 0.875rem 1.25rem;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: var(--color-cream);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background-color: var(--color-cream-dark);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 999;
    border-left: 1px solid rgba(196, 185, 168, 0.3);
  }

  .site-nav--open {
    transform: translateX(0);
  }

  .site-nav__list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .site-nav__link {
    font-size: 1.0625rem;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 998;
  }

  .menu-overlay--visible {
    display: block;
  }

  .hero {
    padding: 7rem 1.25rem 3rem;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .hero__photo {
    flex: none;
    width: 220px;
    order: -1;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .about-intro-split {
    flex-direction: column;
    gap: 2rem;
  }

  .about-intro-split__photo {
    flex: none;
    width: 200px;
    margin: 0 auto;
    position: static;
  }

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

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

  .session-format {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .page-header {
    padding: 7rem 1.25rem 3rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .book-steps {
    grid-template-columns: 1fr;
  }
}
