/* ============================================
   RISING WARRIOR COACHING
   Design System & Global Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
    /* Brand Colors */
    --olive: #6B7B4F;
    --olive-dark: #4A5635;
    --olive-light: #8A9B6E;
    --pink: #E8C4C0;
    --pink-light: #F5E1DE;
    --pink-dark: #C9928C;
    --cream: #FDF8F0;
    --yellow: #F5EDD4;
    --yellow-warm: #EDE0B8;
    --white: #FFFFFF;
    --off-white: #FAF7F2;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --text-body: #3D3D3D;
    --text-muted: #7A7A7A;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-body);
    background-color: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

h4 {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--olive);
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--olive);
    margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--olive);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--olive-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-text {
    padding: 0;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 1rem;
    color: var(--olive);
    font-weight: 400;
}

.btn-text:hover {
    color: var(--olive-dark);
}

/* --- Placeholder Images --- */
.placeholder-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--pink-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.placeholder-dark {
    background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 100%);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--olive);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--charcoal-light);
    position: relative;
    transition: color var(--transition);
}

/* Nav text on hero pages (before scroll) — white text for dark video */
.site-header.header-hero .nav-links a:not(.nav-cta) {
    color: rgba(255, 255, 255, 0.85);
}

.site-header.header-hero .nav-links a:not(.nav-cta):hover {
    color: var(--white);
}

.site-header.header-hero .logo-text {
    color: var(--white);
}

.site-header.header-hero .logo-sub {
    color: var(--pink-light);
}

.site-header.header-hero .nav-toggle span {
    background: var(--white);
}

/* Once scrolled, revert to dark text */
.site-header.header-hero.scrolled .nav-links a:not(.nav-cta) {
    color: var(--charcoal-light);
}

.site-header.header-hero.scrolled .logo-text {
    color: var(--charcoal);
}

.site-header.header-hero.scrolled .logo-sub {
    color: var(--olive);
}

.site-header.header-hero.scrolled .nav-toggle span {
    background: var(--charcoal);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--olive);
    transition: var(--transition);
}

.site-header.header-hero:not(.scrolled) .nav-links a:not(.nav-cta)::after {
    background: var(--white);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--olive);
    color: var(--white) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
}

.nav-cta:hover {
    background: var(--olive-dark);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
    padding-top: 30vh;
    min-height: 100vh;
}

.hero-content {
    flex: 1 1 auto;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-flower {
    position: absolute;
    bottom: 0;
    z-index: 2;
    max-height: 50vh;
    width: auto;
    pointer-events: none;
}

.hero-flower-left {
    left: 0;
}

.hero-flower-right {
    right: 0;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pink-light);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.section-intro {
    background: var(--off-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image .placeholder-image {
    min-height: 500px;
}

.intro-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--pink);
    z-index: -1;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--text-body);
    margin-bottom: 1.2rem;
}

.intro-text .btn-text {
    margin-top: 0.5rem;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.section-philosophy {
    background: var(--cream);
    text-align: center;
}

.philosophy-content {
    max-width: var(--container-narrow);
    margin: 0 auto 80px;
}

.philosophy-text {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 650px;
    margin: 0 auto;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.pillar {
    text-align: center;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--olive);
}

.pillar h3 {
    margin-bottom: 12px;
}

.pillar p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.section-services-preview {
    background: var(--off-white);
    text-align: center;
}

.section-services-preview h2 {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    text-align: left;
    background: var(--white);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.service-card-image {
    overflow: hidden;
    height: 240px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 32px;
}

.service-card-content h3 {
    margin-bottom: 12px;
}

.service-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.section-quote {
    background: var(--olive);
    padding: 100px 0;
    text-align: center;
}

.featured-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.featured-quote cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink-light);
}

/* ============================================
   VALUES MARQUEE
   ============================================ */

.section-values {
    padding: 60px 0;
    background: var(--cream);
    overflow: hidden;
}

.values-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.values-track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: marquee 30s linear infinite;
}

.values-track span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--olive);
    white-space: nowrap;
}

.values-track .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   CTA SECTION
   ============================================ */

.section-cta {
    background: var(--pink-light);
    text-align: center;
    padding: 100px 0;
}

.section-cta h2 {
    margin-bottom: 16px;
}

.section-cta p {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.4rem;
}

.footer-brand .logo-sub {
    color: var(--pink);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-top: 12px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--pink-light);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.social-link:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Decorative shapes for About page hero */
.page-hero-decorated::before,
.page-hero-decorated::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.page-hero-decorated::before {
    width: 300px;
    height: 300px;
    background: var(--pink);
    top: -60px;
    right: -40px;
}

.page-hero-decorated::after {
    width: 200px;
    height: 200px;
    background: var(--pink-dark);
    bottom: -40px;
    left: -30px;
}

.page-hero-decorated .container {
    position: relative;
    z-index: 1;
}

.page-hero-decorated .hero-deco-line {
    position: absolute;
    z-index: 0;
}

.hero-deco-line-1 {
    width: 120px;
    height: 120px;
    border: 2px solid var(--pink);
    border-radius: 50%;
    opacity: 0.2;
    top: 30%;
    left: 8%;
}

.hero-deco-line-2 {
    width: 80px;
    height: 80px;
    border: 2px solid var(--pink-dark);
    border-radius: 50%;
    opacity: 0.15;
    top: 20%;
    right: 12%;
}

.hero-deco-line-3 {
    width: 160px;
    height: 2px;
    background: var(--pink);
    opacity: 0.2;
    bottom: 25%;
    right: 5%;
    transform: rotate(-20deg);
}

.hero-deco-line-4 {
    width: 100px;
    height: 2px;
    background: var(--pink-dark);
    opacity: 0.15;
    top: 40%;
    left: 5%;
    transform: rotate(15deg);
}

.page-hero .section-label {
    margin-bottom: 1rem;
}

.page-hero h1 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-story {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

.about-values-section {
    background: var(--cream);
    text-align: center;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.about-value {
    padding: 40px 24px;
    background: var(--white);
}

.about-value-icon {
    background: transparent;
    padding: 24px;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--olive);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.about-value h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.about-value p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.service-detail {
    background: var(--off-white);
}

.service-detail:nth-child(even) {
    background: var(--cream);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-detail-text h2 {
    margin-bottom: 1rem;
}

.service-detail-text p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

.service-features {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.service-feature::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    flex-shrink: 0;
    margin-top: 8px;
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-section {
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: var(--white);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured {
    background: var(--olive);
    color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured h4 {
    color: var(--white);
}

.pricing-card.featured .pricing-amount {
    color: var(--white);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .btn {
    background: var(--white);
    color: var(--olive);
}

.pricing-card.featured .btn:hover {
    background: var(--pink-light);
}

/* Uniform pricing cards — green top bar, pink accent */
.pricing-card-uniform {
    background: var(--white);
    border-top: 4px solid var(--olive);
}

.pricing-card-uniform h3,
.pricing-card-uniform h4 {
    color: var(--charcoal);
}

.pricing-card-uniform .pricing-amount {
    color: var(--olive);
}

.pricing-card-uniform .pricing-features li {
    color: var(--text-body);
    border-color: var(--pink-light);
}

.pricing-card-uniform .pricing-badge {
    background: var(--pink);
    color: var(--charcoal);
}

.pricing-card-uniform .pricing-period {
    color: var(--text-muted);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: var(--charcoal);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 20px;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.pricing-card h4 {
    margin-bottom: 24px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 36px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: var(--text-body);
}

.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: 60px auto 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-body);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--olive);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
}

.contact-detail h4 {
    margin-bottom: 4px;
    font-size: 0.8rem;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--off-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--olive);
    background: var(--white);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-submit {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 36px;
    background: var(--olive);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--olive-dark);
}

/* ============================================
   CLASSES SECTION
   ============================================ */

.section-classes {
    background: var(--cream);
    padding: 100px 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--olive);
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--olive);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   BOOKING PAGE
   ============================================ */

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.booking-step {
    text-align: center;
    padding: 24px;
}

.booking-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-step h3 {
    margin-bottom: 8px;
}

.booking-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.booking-section {
    background: var(--off-white);
}

.booking-embed {
    max-width: 900px;
    margin: 0 auto;
}

.booking-placeholder {
    background: var(--white);
    border: 2px dashed var(--pink);
    padding: 80px 40px;
    text-align: center;
}

.booking-placeholder-content {
    max-width: 500px;
    margin: 0 auto;
}

.booking-placeholder-content svg {
    color: var(--olive);
    margin-bottom: 24px;
}

.booking-placeholder-content h3 {
    margin-bottom: 12px;
}

.booking-placeholder-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.booking-alt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.booking-alt-card {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
}

.booking-alt-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--olive);
}

.booking-alt-icon svg {
    width: 100%;
    height: 100%;
}

.booking-alt-card h3 {
    margin-bottom: 8px;
}

.booking-alt-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Calendly embed responsive */
.calendly-inline-widget {
    min-width: 320px;
    width: 100%;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-flower {
        max-height: 35vh;
    }

    .intro-grid,
    .about-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse,
    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }

    .pillars {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-flower {
        max-height: 25vh;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--off-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    /* Override hero white text — mobile menu has a light background */
    .site-header.header-hero .nav-links a:not(.nav-cta),
    .site-header.header-hero.scrolled .nav-links a:not(.nav-cta) {
        color: var(--charcoal-light);
    }

    .nav-cta {
        margin-top: 16px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .booking-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .booking-alt-grid {
        grid-template-columns: 1fr;
    }

    .booking-placeholder {
        padding: 48px 24px;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .intro-image::after {
        display: none;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}
