/*
 * ARCHETYPE: Editorial-magazine — elegant, personal, serene
 * LAYOUT DNA: Text-only hero with massive typography, Asymmetric grid, Sticky sidebar with scrolling content, Full-width image bands
 * SIGNATURE DETAIL: Scroll-triggered color theme shift — warm cream to deep teal on the philosophy section, like day turning to night
 * WHY: A 5-star solo practitioner needs a site that feels intimate and personal, like a private consultation. The editorial layout emphasizes her words and philosophy over flashy visuals, building the trust that defines her brand.
 */

@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=Karla:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  --teal: #0D5C63;
  --teal-dark: #094449;
  --teal-light: #1A7A82;
  --rose-gold: #C4956A;
  --rose-gold-light: #D4AD8B;
  --gold: #C5A55A;
  --sage: #8BAA8E;
  --sage-light: #D3E0D4;
  --cream: #FBF7F0;
  --blush: #F2E0D5;
  --ivory: #F5F1EA;
  --charcoal: #2C2C2C;
  --text-muted: #7A7A7A;
  --text-light: #A3A3A3;
  --white: #FFFFFF;
  --border: #E8E2D9;
}

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

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

body {
  font-family: 'Karla', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-light); }

/* ═══════════════════════════════════════
   NAVIGATION — minimal, elegant
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s ease;
}

.nav.scrolled { border-bottom: 1px solid var(--border); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--rose-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--teal-dark) !important; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════
   HERO — Text-only with massive typography
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 60px;
  background: var(--cream);
  position: relative;
}

.hero-content {
  max-width: 800px;
  text-align: center;
}

.hero-eyebrow {
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose-gold);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 4.5rem;
  color: var(--teal);
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-gold);
  font-weight: 400;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--rose-gold);
  margin: 0 auto 32px;
}

.hero-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-contact-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-contact-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-contact-item a { color: var(--teal); }

/* ═══════════════════════════════════════
   ABOUT — Asymmetric with sticky text
   ═══════════════════════════════════════ */

.about {
  padding: 120px 0;
  background: var(--white);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 80px;
  align-items: start;
}

.about-image-col {
  position: sticky;
  top: 120px;
}

.about-image-col img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
}

.about-image-caption {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.about-text h2 {
  font-size: 2.8rem;
  color: var(--teal);
  margin-bottom: 24px;
  font-weight: 500;
}

.about-text h2 em {
  font-style: italic;
  color: var(--rose-gold);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-text .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-divider {
  width: 40px;
  height: 1px;
  background: var(--rose-gold);
  margin: 32px 0;
}

/* ═══════════════════════════════════════
   PHILOSOPHY — Dark teal section (theme shift)
   ═══════════════════════════════════════ */

.philosophy {
  padding: 120px 0;
  background: var(--teal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(196, 149, 106, 0.08) 0%, transparent 60%);
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.philosophy-eyebrow {
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--rose-gold-light);
  margin-bottom: 32px;
}

.philosophy h2 {
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.3;
}

.philosophy p {
  font-size: 1.1rem;
  color: rgba(251, 247, 240, 0.75);
  line-height: 1.85;
  margin-bottom: 20px;
}

.philosophy-quote {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(196, 149, 106, 0.3);
}

.philosophy-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
}

.philosophy-quote cite {
  display: block;
  margin-top: 16px;
  font-family: 'Karla', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--rose-gold-light);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   SERVICES — Clean editorial grid
   ═══════════════════════════════════════ */

.services {
  padding: 120px 0;
  background: var(--cream);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.services-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: 2.8rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-item {
  background: var(--cream);
  padding: 40px;
  transition: background 0.4s ease;
}

.service-item:hover { background: var(--white); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--rose-gold);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   GALLERY — Full-width image band
   ═══════════════════════════════════════ */

.gallery {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.gallery img:hover { opacity: 0.85; }

/* ═══════════════════════════════════════
   EXPERIENCE — Testimonial / trust
   ═══════════════════════════════════════ */

.experience {
  padding: 120px 0;
  background: var(--white);
}

.experience-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.experience-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.experience h2 {
  font-size: 2.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 24px;
}

.experience blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}

.experience cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.experience-rating {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.experience-rating strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--teal);
  font-weight: 600;
}

.experience-rating span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */

.cta {
  padding: 120px 0;
  background: var(--blush);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta h2 {
  font-size: 2.8rem;
  color: var(--teal);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-block;
  background: var(--teal);
  color: var(--cream);
  padding: 18px 48px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--teal-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.cta-phone {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 600;
}

.cta-address {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  background: var(--teal-dark);
  color: rgba(251, 247, 240, 0.6);
  padding: 48px 0;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 247, 240, 0.1);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════
   SCROLL REVEALS
   ═══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .about-inner { gap: 48px; }
  .philosophy h2 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 24px 32px;
    gap: 20px;
  }

  .hero { padding: 80px 24px 40px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.15rem; }
  .hero-contact { flex-direction: column; gap: 20px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-image-col { position: relative; top: auto; }
  .about-image-col img { height: 400px; }

  .philosophy h2 { font-size: 2rem; }
  .philosophy-quote blockquote { font-size: 1.3rem; }

  .services-grid { grid-template-columns: 1fr; }
  .services-header h2 { font-size: 2.2rem; }

  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 200px; }

  .experience h2 { font-size: 2rem; }
  .cta h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 250px; }
}
