:root { --adobe-white: #F8F3ED; --pale-oats: #EBD7C2; --creamy-orange: #E4C09E; --soft-pumpkin: #D4935E; --bronze-tone: #994121; --deep-plum: #4C1130; --plum-light: #6B2A4A; --ivory: #FFF8F0; --warm-gray: #8A7B6E; --warm-gray-light: #A89B8E; --text-dark: #3A2820; --text-mid: #5E4D42; --marigold: #D4952B; --teal-accent: #2D7A7A; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Pontano Sans", sans-serif; color: var(--text-dark); background: var(--ivory); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1.25rem 2.5rem; display: flex; justify-content: space-between; align-items: center; transition: 0.4s; }
nav.scrolled { background: rgba(255, 248, 240, 0.93); backdrop-filter: blur(14px); box-shadow: rgba(76, 17, 48, 0.06) 0px 1px 24px; padding: 0.85rem 2.5rem; }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 2.2rem; width: auto; filter: brightness(0) invert(1); transition: filter 0.4s; }
nav.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: rgba(235, 215, 194, 0.85); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.3s; }
.nav-links a:hover { color: var(--ivory); }
nav.scrolled .nav-links a { color: var(--text-mid); }
nav.scrolled .nav-links a:hover { color: var(--bronze-tone); }
.nav-cta { padding: 0.6rem 1.4rem; border-radius: 100px; background: rgba(235, 215, 194, 0.15) !important; color: var(--ivory) !important; border: 1.5px solid rgba(235, 215, 194, 0.35) !important; transition: background 0.3s, border-color 0.3s, transform 0.2s !important; }
.nav-cta:hover { transform: translateY(-1px); background: rgba(235, 215, 194, 0.25) !important; border-color: rgba(235, 215, 194, 0.6) !important; }
nav.scrolled .nav-cta { background: var(--deep-plum) !important; color: var(--ivory) !important; border-color: var(--deep-plum) !important; }
nav.scrolled .nav-cta:hover { background: var(--plum-light) !important; border-color: var(--plum-light) !important; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.mobile-toggle span { display: block; width: 100%; height: 2px; background: var(--adobe-white); position: absolute; left: 0; transition: 0.3s; }
nav.scrolled .mobile-toggle span { background: var(--deep-plum); }
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--deep-plum); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg::before { content: ""; position: absolute; top: -25%; right: -15%; width: 65vw; height: 65vw; border-radius: 50%; background: radial-gradient(circle, rgba(212, 147, 94, 0.12) 0%, transparent 65%); }
.hero-bg::after { content: ""; position: absolute; bottom: -25%; left: -10%; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(107, 42, 74, 0.4) 0%, transparent 65%); }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(235, 215, 194, 0.06) 0.8px, transparent 0px); background-size: 36px 36px; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 8rem 2.5rem 5rem; width: 100%; }
.hero-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--creamy-orange); margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards; }
.hero-label::before { content: ""; width: 2rem; height: 1.5px; background: var(--creamy-orange); }
.hero h1 { font-family: "Playfair Display", serif; font-size: clamp(2.8rem, 6.5vw, 5.2rem); line-height: 1.08; color: var(--adobe-white); max-width: 780px; margin-bottom: 1.8rem; letter-spacing: -0.02em; font-weight: 400; opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards; }
.hero h1 em { font-style: italic; color: var(--soft-pumpkin); }
.hero-sub { font-size: 1.15rem; line-height: 1.75; color: var(--pale-oats); max-width: 530px; margin-bottom: 2.5rem; font-weight: 300; opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 100px; font-family: "Pontano Sans", sans-serif; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: 0.3s; cursor: pointer; border: none; }
.btn-warm { background: var(--soft-pumpkin); color: var(--ivory); }
.btn-warm:hover { background: var(--bronze-tone); transform: translateY(-2px); box-shadow: rgba(153, 65, 33, 0.35) 0px 8px 30px; }
.btn-outline-light { background: transparent; color: var(--pale-oats); border: 1.5px solid rgba(235, 215, 194, 0.3); }
.btn-outline-light:hover { border-color: var(--pale-oats); background: rgba(235, 215, 194, 0.08); transform: translateY(-2px); }
.btn-primary { background: var(--deep-plum); color: var(--ivory); }
.btn-primary:hover { background: var(--plum-light); transform: translateY(-2px); box-shadow: rgba(76, 17, 48, 0.25) 0px 8px 30px; }
.btn-light { background: var(--ivory); color: var(--deep-plum); }
.btn-light:hover { background: var(--adobe-white); transform: translateY(-2px); box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 30px; }
.btn-ghost { background: transparent; color: var(--pale-oats); border: 1.5px solid rgba(235, 215, 194, 0.2); }
.btn-ghost:hover { border-color: var(--pale-oats); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(235, 215, 194, 0.12); opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards; }
.stat-item h3 { font-family: "Playfair Display", serif; font-size: 2rem; color: var(--soft-pumpkin); font-weight: 400; }
.stat-item p { font-size: 0.83rem; color: var(--warm-gray-light); font-weight: 400; margin-top: 0.25rem; }

section { padding: 7rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-tone); margin-bottom: 1.5rem; }
.section-label::before { content: ""; width: 1.5rem; height: 1.5px; background: var(--bronze-tone); }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); line-height: 1.15; margin-bottom: 1.5rem; font-weight: 400; }
.section-desc { font-size: 1.05rem; line-height: 1.75; color: var(--text-mid); max-width: 580px; font-weight: 300; }

.values { background: var(--ivory); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.value-card { background: var(--adobe-white); border-radius: 24px; padding: 2.2rem; transition: 0.4s; position: relative; overflow: hidden; }
.value-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; transform: scaleX(0); transform-origin: left center; transition: transform 0.4s; }
.value-card:nth-child(1)::before { background: var(--soft-pumpkin); }
.value-card:nth-child(2)::before { background: var(--deep-plum); }
.value-card:nth-child(3)::before { background: var(--teal-accent); }
.value-card:nth-child(4)::before { background: var(--marigold); }
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-4px); box-shadow: rgba(76, 17, 48, 0.06) 0px 12px 40px; }
.value-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--ivory); }
.vi-1 { background: var(--soft-pumpkin); }
.vi-2 { background: var(--deep-plum); }
.vi-3 { background: var(--teal-accent); }
.vi-4 { background: var(--marigold); }
.value-card h3 { font-family: "Playfair Display", serif; font-size: 1.25rem; margin-bottom: 0.7rem; color: var(--text-dark); font-weight: 600; }
.value-card p { font-size: 0.93rem; line-height: 1.65; color: var(--text-mid); font-weight: 300; }

.space { background: var(--pale-oats); position: relative; overflow: hidden; }
.space::before { content: ""; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(at right top, rgba(76, 17, 48, 0.04), transparent 70%); }
.space-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.space-features { display: flex; flex-direction: column; gap: 1rem; }
.space-feature { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem; background: rgba(255, 248, 240, 0.65); border-radius: 14px; transition: 0.3s; }
.space-feature:hover { background: var(--ivory); box-shadow: rgba(76, 17, 48, 0.05) 0px 4px 20px; }
.feature-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--bronze-tone); margin-top: 0.45rem; flex-shrink: 0; }
.space-feature h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.2rem; }
.space-feature p { font-size: 0.88rem; color: var(--text-mid); font-weight: 300; line-height: 1.5; }

.space-card { background: var(--ivory); border-radius: 24px; padding: 2.8rem; position: relative; overflow: hidden; border: 1px solid rgba(76, 17, 48, 0.05); }
.space-card-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-tone); margin-bottom: 1.5rem; }
.space-card h3 { font-family: "Playfair Display", serif; font-size: 2.1rem; color: var(--text-dark); margin-bottom: 0.4rem; font-weight: 400; }
.space-card-loc { font-size: 0.95rem; color: var(--bronze-tone); font-weight: 500; margin-bottom: 2rem; }
.space-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.scd-item { padding: 1rem; background: var(--adobe-white); border-radius: 12px; text-align: center; }
.scd-item strong { display: block; font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--deep-plum); margin-bottom: 0.15rem; font-weight: 400; }
.scd-item span { font-size: 0.78rem; color: var(--warm-gray); font-weight: 400; }

.membership { background: var(--ivory); }
.membership-header { text-align: center; margin-bottom: 3.5rem; }
.membership-header .section-desc { margin: 0 auto; }
.pricing-showcase { max-width: 580px; margin: 0 auto; text-align: center; }
.price-main-card { background: var(--deep-plum); border-radius: 28px; padding: 3.5rem 3rem; color: var(--ivory); position: relative; overflow: hidden; }
.price-main-card::before { content: ""; position: absolute; top: -30%; right: -20%; width: 60%; height: 80%; border-radius: 50%; background: radial-gradient(circle, rgba(212, 147, 94, 0.1), transparent 65%); }
.price-main-card .price-name { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--creamy-orange); margin-bottom: 1.2rem; }
.price-main-card .price-amount { font-family: "Playfair Display", serif; font-size: 4rem; color: var(--adobe-white); line-height: 1; font-weight: 400; }
.price-main-card .price-period { font-size: 0.95rem; color: rgba(235, 215, 194, 0.6); margin-bottom: 1.5rem; }
.price-badge-main { display: inline-block; background: rgba(212, 147, 94, 0.2); padding: 0.5rem 1.3rem; border-radius: 100px; font-size: 0.85rem; font-weight: 500; color: var(--creamy-orange); margin-bottom: 1.5rem; }
.price-main-card .price-desc { font-size: 1rem; line-height: 1.7; color: rgba(235, 215, 194, 0.7); font-weight: 300; max-width: 400px; margin: 0 auto; }
.price-tiers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.tier-item { background: var(--adobe-white); border-radius: 16px; padding: 1.5rem 1rem; text-align: center; }
.tier-item h4 { font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--deep-plum); font-weight: 400; }
.tier-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze-tone); margin-bottom: 0.4rem; }
.tier-save { font-size: 0.78rem; color: var(--teal-accent); font-weight: 500; margin-top: 0.3rem; }
.pricing-note { text-align: center; margin-top: 2.5rem; font-size: 0.9rem; color: var(--text-mid); font-weight: 300; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.pricing-note a { color: var(--bronze-tone); text-decoration: underline; text-underline-offset: 2px; }

.community { background: var(--adobe-white); }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.fit-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.93rem; line-height: 1.6; color: var(--text-mid); font-weight: 300; }
.fit-check { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.15rem; font-size: 0.72rem; font-weight: 700; }
.check-yes { background: rgba(45, 122, 122, 0.15); color: var(--teal-accent); }
.check-no { background: rgba(153, 65, 33, 0.1); color: var(--bronze-tone); }
.fit-section h3 { font-family: "Playfair Display", serif; font-size: 1.45rem; color: var(--text-dark); margin-bottom: 1.5rem; font-weight: 400; }

.timeline { background: var(--ivory); }
.timeline-track { display: flex; margin-top: 3rem; position: relative; max-width: 900px; margin-left: auto; margin-right: auto; }
.timeline-track::before { content: ""; position: absolute; top: 24px; left: 24px; right: 24px; height: 2px; background: linear-gradient(90deg, var(--deep-plum), var(--soft-pumpkin)); opacity: 0.2; }
.tl-item { flex: 1; text-align: center; position: relative; padding: 0 0.5rem; }
.tl-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--deep-plum); margin: 19px auto 1.2rem; position: relative; z-index: 2; }
.tl-item:last-child .tl-dot { background: var(--soft-pumpkin); }
.tl-date { font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--deep-plum); margin-bottom: 0.35rem; }
.tl-item:last-child .tl-date { color: var(--bronze-tone); }
.tl-desc { font-size: 0.83rem; color: var(--text-mid); font-weight: 300; line-height: 1.5; }

.faq { background: var(--adobe-white); }
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(76, 17, 48, 0.07); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; background: none; border: none; cursor: pointer; font-family: "Pontano Sans", sans-serif; font-size: 1.02rem; font-weight: 500; color: var(--text-dark); text-align: left; gap: 1rem; }
.faq-q:hover { color: var(--bronze-tone); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--ivory); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: 0.3s; font-size: 1.1rem; color: var(--text-mid); }
.faq-item.active .faq-icon { background: var(--deep-plum); color: var(--ivory); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s; }
.faq-item.active .faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.faq-a p { font-size: 0.93rem; line-height: 1.7; color: var(--text-mid); font-weight: 300; }

.cta-section { background: var(--deep-plum); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(235, 215, 194, 0.03) 1px, transparent 0px); background-size: 32px 32px; }
.cta-section::after { content: ""; position: absolute; bottom: -35%; left: 50%; transform: translateX(-50%); width: 80vw; height: 50vw; border-radius: 50%; background: radial-gradient(circle, rgba(212, 147, 94, 0.1), transparent 55%); }
.cta-inner { position: relative; z-index: 2; }
.cta-section .section-label { color: var(--creamy-orange); }
.cta-section .section-label::before { background: var(--creamy-orange); }
.cta-section .section-title { color: var(--adobe-white); max-width: 620px; margin: 0 auto 1rem; }
.cta-section .section-desc { color: rgba(235, 215, 194, 0.55); margin: 0 auto 2.5rem; text-align: center; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

footer { background: var(--deep-plum); border-top: 1px solid rgba(235, 215, 194, 0.06); padding: 3rem 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { font-family: "Playfair Display", serif; font-size: 1.15rem; color: var(--adobe-white); }
.footer-brand span { display: block; font-family: "Pontano Sans", sans-serif; font-size: 0.78rem; font-weight: 300; color: rgba(235, 215, 194, 0.35); margin-top: 0.3rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(235, 215, 194, 0.45); text-decoration: none; font-size: 0.83rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--pale-oats); }
.footer-copy { width: 100%; text-align: center; padding-top: 2rem; margin-top: 1rem; border-top: 1px solid rgba(235, 215, 194, 0.06); font-size: 0.78rem; color: rgba(235, 215, 194, 0.25); }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .price-tiers { grid-template-columns: 1fr; max-width: 280px; margin: 1.5rem auto 0; }
  .space-layout { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255, 248, 240, 0.97); backdrop-filter: blur(14px); padding: 1.5rem 2rem 2rem; gap: 1.2rem; box-shadow: rgba(76, 17, 48, 0.08) 0px 12px 40px; }
  .nav-links.open a { color: var(--text-mid); }
  .nav-links.open a:hover { color: var(--bronze-tone); }
  .nav-links.open .nav-cta { background: var(--deep-plum) !important; color: var(--ivory) !important; border-color: var(--deep-plum) !important; }
  .mobile-toggle { display: block; }
  section { padding: 4.5rem 1.5rem; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .timeline-track { flex-direction: column; gap: 1.5rem; }
  .timeline-track::before { top: 24px; bottom: 24px; left: 24px; right: unset; width: 2px; height: auto; }
  .tl-item { text-align: left; padding-left: 3.5rem; }
  .tl-dot { position: absolute; left: 0; top: 0; margin: 0; }
  .price-main-card { padding: 2.5rem 2rem; }
  .price-main-card .price-amount { font-size: 3.2rem; }
}