/* ===== WHIMSICAL WOMBLE YOGA — Victorian Witch Grandma ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --hearthstone: #1E1B18;
  --espresso: #3D2B1F;
  --burnt-orange: #B8612A;
  --amber-gold: #C9A86E;
  --dried-rose: #A67A7E;
  --herbal-sage: #7A8B6F;
  --antique-lace: #EDE3D5;
  --parchment: #F5EFE6;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  color: var(--espresso);
  background: var(--parchment);
  line-height: 1.75;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: var(--burnt-orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber-gold); }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.3; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--hearthstone); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--hearthstone); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); color: var(--espresso); }
p { margin-bottom: 1rem; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(30,27,24,0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,110,0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 500; color: var(--antique-lace); text-decoration: none;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--antique-lace); opacity: 0.75; text-decoration: none; transition: all 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--amber-gold); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--antique-lace); opacity: 1; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--antique-lace); margin: 5px 0; transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 90vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 120px 32px 80px; position: relative; overflow: hidden;
  background: var(--hearthstone); color: var(--antique-lace);
}
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.hero > *:not(.hero-bg) { position: relative; z-index: 1; }
.hero h1 {
  color: var(--antique-lace); font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400; margin-bottom: 12px; letter-spacing: 0.01em;
}
.hero-subtitle {
  font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-gold); margin-bottom: 20px;
}
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: var(--antique-lace);
  opacity: 0.88; max-width: 520px; margin-bottom: 48px; text-wrap: balance;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* PAGE HERO */
.page-hero {
  padding: 160px 32px 80px; text-align: center; position: relative; overflow: hidden;
  background: var(--hearthstone); color: var(--antique-lace);
}
.page-hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center; opacity: 0.2;
}
.page-hero > *:not(.page-hero-bg) { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--antique-lace); font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 12px;
}
.page-hero p {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 1.2rem; color: var(--antique-lace); opacity: 0.85;
  max-width: 540px; margin: 0 auto; text-wrap: balance;
}

/* LAYOUT */
.container { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
section { padding: 80px 0; }
.section-cream { background: var(--antique-lace); }
.section-white { background: var(--parchment); }
.section-forest { background: var(--hearthstone); color: var(--antique-lace); }

/* BUTTONS */
.btn {
  display: inline-block; padding: 14px 36px; border-radius: 6px;
  font-family: 'Lora', Georgia, serif; font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-primary { background: var(--burnt-orange); color: var(--antique-lace); }
.btn-primary:hover {
  background: #9E5322; color: var(--antique-lace); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,97,42,0.35);
}
.btn-outline { background: transparent; color: var(--antique-lace); border: 1.5px solid var(--amber-gold); }
.btn-outline:hover { background: var(--amber-gold); color: var(--hearthstone); }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 20px; }
.section-subtitle { text-align: center; font-size: 1.05rem; color: var(--dried-rose); margin-bottom: 12px; text-wrap: balance; }

/* PULL QUOTE */
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem); color: var(--hearthstone);
  text-align: center; padding: 20px; max-width: 650px;
  margin: 0 auto 24px; line-height: 1.5; border: none; text-wrap: balance;
}
.intro-text { text-align: center; max-width: 650px; margin: 0 auto; color: #6B5B4F; font-size: 1.05rem; text-wrap: balance; }

/* FULL-WIDTH IMAGE */
.full-image {
  width: 100%; height: 400px; object-fit: cover; border-radius: 12px;
  margin: 20px 0;
}
.full-image-wide {
  width: 100%; height: 500px; object-fit: cover;
}

/* PHOTO GRID */
.photo-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0;
}
.photo-row img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 10px;
}
.photo-row.three { grid-template-columns: 1fr 1fr 1fr; }
.photo-row.three img { height: 240px; }

/* CARDS */
.card {
  background: var(--antique-lace); border-radius: 12px; padding: 36px;
  border: 1px solid rgba(61,43,31,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,27,24,0.1); }
.card h3 { margin-bottom: 8px; }
.card-meta { font-size: 0.85rem; color: var(--burnt-orange); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 14px; }
.card p { font-size: 0.98rem; color: #6B5B4F; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }

/* PRICING */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 32px;
}
.pricing-card {
  background: var(--antique-lace); border-radius: 12px; padding: 32px 24px;
  text-align: center; border: 1px solid rgba(61,43,31,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,27,24,0.1); }
.pricing-card.featured { border: 2px solid var(--burnt-orange); position: relative; }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--burnt-orange); color: var(--antique-lace); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 16px;
  border-radius: 20px; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pricing-amount {
  font-family: 'Playfair Display', Georgia, serif; font-size: 2.4rem;
  font-weight: 600; color: var(--hearthstone); margin: 12px 0 4px;
}
.pricing-period { font-size: 0.9rem; font-weight: 400; }
.pricing-per { font-size: 0.85rem; color: var(--burnt-orange); font-weight: 600; margin-bottom: 8px; }
.pricing-desc { font-size: 0.92rem; color: #6B5B4F; }
.private-pricing {
  text-align: center; margin-top: 32px; padding: 24px;
  background: var(--antique-lace); border-radius: 10px; font-size: 0.95rem; color: #6B5B4F;
  border: 1px solid rgba(61,43,31,0.08);
}
.private-pricing strong { color: var(--hearthstone); }

/* ABOUT */
.about-body { max-width: 700px; margin: 0 auto; }
.about-body p { font-size: 1.08rem; line-height: 1.85; color: #5C4A3E; }
.about-body p:first-child {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 1.35rem; color: var(--hearthstone); line-height: 1.6;
}
.about-sign-off {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 1.15rem; color: var(--dried-rose); text-align: center;
  margin-top: 40px; padding-top: 32px; border-top: 2px solid var(--amber-gold);
}
.about-portrait {
  width: 100%; max-width: 500px; margin: 0 auto 40px;
  border-radius: 12px; object-fit: cover;
}

/* VALUES */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 32px;
}
.value-item {
  text-align: center; padding: 28px 20px; background: var(--antique-lace); border-radius: 12px;
  border: 1px solid rgba(61,43,31,0.08);
}
.value-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-item p { font-size: 0.92rem; color: #6B5B4F; margin-bottom: 0; }

/* CALLOUT */
.callout {
  background: var(--antique-lace); border-left: 3px solid var(--burnt-orange);
  padding: 28px 32px; border-radius: 0 10px 10px 0; margin: 24px 0;
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 1.2rem; color: var(--hearthstone); line-height: 1.6; text-wrap: balance;
}
.callout p { margin-bottom: 0; }

/* NEW HERE */
.new-here {
  background: var(--antique-lace); border-radius: 12px; padding: 48px 40px; text-align: center;
  border: 1px solid rgba(61,43,31,0.08);
}
.new-here h2 { margin-bottom: 16px; }
.new-here p { max-width: 640px; margin: 0 auto 28px; font-size: 1.05rem; color: #6B5B4F; line-height: 1.8; }

/* QUOTE BAND */
.quote-band { text-align: center; padding: 20px 0; border: none; }
.quote-band p {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--antique-lace);
  max-width: 600px; margin: 0 auto 12px; line-height: 1.5;
  text-wrap: balance;
}
.quote-attr { font-family: 'Lora', Georgia, serif; font-style: normal; font-size: 0.9rem; color: var(--amber-gold); letter-spacing: 0.05em; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-block { margin-bottom: 32px; }
.contact-block h3 { margin-bottom: 12px; }
.contact-block p { color: #6B5B4F; margin-bottom: 16px; }
.contact-details { list-style: none; }
.contact-details li { margin-bottom: 14px; line-height: 1.5; }
.contact-details strong { color: var(--espresso); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.signup-row { display: flex; gap: 8px; margin-top: 8px; }
.signup-row input {
  flex: 1; padding: 10px 14px; border: 1.5px solid rgba(61,43,31,0.2); border-radius: 6px;
  font-family: 'Lora', Georgia, serif; font-size: 0.9rem; background: var(--parchment);
}
.signup-row input:focus { outline: none; border-color: var(--burnt-orange); }
.signup-row .btn { padding: 10px 20px; font-size: 0.85rem; }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--espresso);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(61,43,31,0.2); border-radius: 8px;
  font-family: 'Lora', Georgia, serif; font-size: 0.95rem; background: var(--parchment); transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--burnt-orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 16px; font-size: 0.88rem; color: var(--dried-rose); font-style: italic; }

/* FAQ */
.faq-item { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(61,43,31,0.1); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--hearthstone); }
.faq-item p { color: #6B5B4F; font-size: 0.98rem; margin-bottom: 0; }

/* FOOTER */
.footer { background: var(--hearthstone); color: var(--antique-lace); padding: 60px 32px 40px; }
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer h4 { color: var(--amber-gold); font-size: 1rem; margin-bottom: 14px; }
.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif; font-style: italic;
  font-size: 1.1rem; margin-bottom: 8px;
}
.footer p { font-size: 0.92rem; opacity: 0.85; line-height: 1.6; }
.footer a { color: var(--antique-lace); opacity: 0.75; font-size: 0.92rem; display: block; margin-bottom: 8px; text-decoration: none; }
.footer a:hover { opacity: 1; color: var(--amber-gold); }
.footer ul { list-style: none; padding: 0; }
.footer-bottom {
  max-width: 960px; margin: 36px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(237,227,213,0.12); text-align: center; font-size: 0.82rem; opacity: 0.6;
}

/* IMAGE PLACEHOLDER */
.img-placeholder {
  width: 100%; background: var(--antique-lace); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso); font-size: 0.85rem; font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--hearthstone); padding: 20px 32px; gap: 16px;
    border-bottom: 1px solid rgba(201,168,110,0.15); box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .hero { min-height: 80vh; padding: 120px 24px 60px; }
  .page-hero { padding: 120px 24px 48px; }
  section { padding: 56px 0; }
  .container, .container-wide { padding: 0 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .photo-row { grid-template-columns: 1fr; }
  .photo-row.three { grid-template-columns: 1fr; }
  .photo-row img, .photo-row.three img { height: 240px; }
  .full-image { height: 280px; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .signup-row { flex-direction: column; }
}
