/* ═══════════════════════════════════════════════════════════
   LOVE PROFESSOR — Main Stylesheet
   Aesthetic: Warm Editorial Luxury meets Scientific Authority
   ═══════════════════════════════════════════════════════════ */

:root {
    /* ── Palette ── */
    --gold:        #C8956C;
    --gold-light:  #D4A87C;
    --gold-dark:   #A87A55;
    --cream:       #FDFAF6;
    --cream-mid:   #F5EDE3;
    --charcoal:    #1A1A1A;
    --charcoal-90: #2A2A2A;
    --charcoal-80: #333333;
    --slate:       #555555;
    --mist:        #999999;
    --border:      #E8DDD0;
    --white:       #FFFFFF;
    --rose:        #D4796A;
    
    /* ── Typography ── */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', -apple-system, sans-serif;
    
    /* ── Spacing ── */
    --section-pad: clamp(80px, 10vw, 140px);
    --container:   1200px;
    --gap:         clamp(20px, 3vw, 40px);
    
    /* ── Transitions ── */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-dark); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Common ── */
.section {
    padding: var(--section-pad) clamp(20px, 5vw, 60px);
}
.section--dark { background: var(--charcoal); color: var(--white); }
.section--cream { background: var(--cream-mid); }

.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-light); }
.section-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--slate);
    max-width: 640px;
    line-height: 1.8;
}
.section-sub--light { color: rgba(255,255,255,0.65); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all .4s var(--ease);
    text-decoration: none;
}
.btn--primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200,149,108,0.3);
}
.btn--primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,149,108,0.4);
}
.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn--warm {
    background: rgba(200,149,108,0.15);
    color: var(--gold-dark);
    border: 1px solid rgba(200,149,108,0.3);
}
.btn--warm:hover { background: var(--gold); color: var(--white); }
.btn--lg { padding: 18px 40px; font-size: 16px; }
.btn--xl { padding: 22px 52px; font-size: 17px; letter-spacing: 0.5px; }
.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn__price { font-size: 12px; opacity: 0.8; margin-left: 4px; }

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 60px);
    transition: all .4s var(--ease);
}
.nav.scrolled {
    background: rgba(253,250,246,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal);
}
.nav.scrolled .nav__logo { color: var(--charcoal); }
.nav__logo-icon {
    font-size: 22px;
    color: var(--gold);
}
.nav__logo-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.3;
}
.nav__links {
    display: flex; align-items: center; gap: 28px;
}
.nav__links a {
    font-size: 13px; font-weight: 400; letter-spacing: 0.5px;
    color: var(--slate); transition: color .3s;
}
.nav__links a:hover { color: var(--gold-dark); }
.nav__cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 5px;
    font-weight: 500 !important;
}
.nav__cta:hover { background: var(--gold-dark) !important; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.nav__toggle span {
    display: block; width: 22px; height: 2px; background: var(--charcoal);
    margin: 5px 0; transition: all .3s;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 100px clamp(20px, 5vw, 60px) 60px;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-mid) 50%, rgba(200,149,108,0.08) 100%);
    overflow: hidden;
}
.hero__bg-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero__inner {
    max-width: var(--container);
    margin: 0 auto; width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.hero__tag {
    font-size: 11px; font-weight: 600; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 24px;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 400; line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--gold-dark); }
.hero__sub {
    font-size: clamp(16px, 1.6vw, 18px);
    color: var(--slate); line-height: 1.8;
    margin-bottom: 36px; max-width: 540px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__proof {
    display: flex; align-items: center; gap: 24px;
}
.hero__proof-item { text-align: center; }
.hero__proof-num {
    display: block;
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    color: var(--charcoal);
}
.hero__proof-label {
    font-size: 11px; letter-spacing: 1px;
    color: var(--mist); text-transform: uppercase;
}
.hero__proof-divider {
    width: 1px; height: 40px;
    background: var(--border);
}

/* Hero Image */
.hero__image { position: relative; }
.hero__image-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    aspect-ratio: 4/5;
}
.hero__image-frame img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
}
.hero__image-badge {
    position: absolute;
    bottom: -20px; left: -30px;
    background: var(--charcoal);
    color: var(--white);
    padding: 22px 26px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 220px;
}
.hero__image-badge-title {
    font-size: 10px; letter-spacing: 2px;
    color: var(--gold); text-transform: uppercase;
    display: block; margin-bottom: 6px;
}
.hero__image-badge-book {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 500;
    line-height: 1.3; display: block;
    margin-bottom: 10px;
}
.hero__image-badge-link {
    font-size: 12px; color: var(--gold-light);
    font-weight: 500; letter-spacing: 0.5px;
}
.hero__image-badge-link:hover { color: var(--white); }

/* Hero Scroll */
.hero__scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span { font-size: 10px; letter-spacing: 2px; color: var(--mist); text-transform: uppercase; }
.hero__scroll-line {
    width: 1px; height: 40px; background: var(--border);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════ TRUST BAR ═══════════════════ */
.trust-bar {
    background: var(--charcoal);
    padding: 18px clamp(20px, 5vw, 60px);
}
.trust-bar__inner {
    max-width: var(--container);
    margin: 0 auto; text-align: center;
}
.trust-bar__text {
    font-size: 13px; color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about__inner { max-width: var(--container); margin: 0 auto; }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    margin-top: 40px;
}
.about__text p {
    font-size: 17px; color: var(--slate);
    margin-bottom: 18px; line-height: 1.8;
}
.about__text strong { color: var(--charcoal); font-weight: 500; }
.about__credentials {
    margin-top: 36px;
    display: flex; flex-direction: column; gap: 20px;
}
.about__credential {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.about__credential-icon { font-size: 24px; }
.about__credential strong {
    display: block; font-size: 14px; font-weight: 600;
    color: var(--charcoal);
}
.about__credential span {
    font-size: 13px; color: var(--mist);
}
.about__credential a { color: var(--gold-dark); }

/* Book Card */
.about__visual { position: relative; }
.about__book-card {
    background: var(--charcoal);
    border-radius: 16px;
    padding: 50px 36px;
    position: relative;
    overflow: hidden;
}
.about__book-glow {
    position: absolute; top: -50%; right: -50%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(200,149,108,0.2), transparent 70%);
    pointer-events: none;
}
.about__book-content { position: relative; }
.about__book-label {
    font-size: 10px; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 16px;
}
.about__book-title {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 500;
    color: var(--white); line-height: 1.3;
    margin-bottom: 16px;
}
.about__book-desc {
    font-size: 14px; color: rgba(255,255,255,0.6);
    line-height: 1.7; margin-bottom: 24px;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services__inner { max-width: var(--container); margin: 0 auto; }
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.service-card {
    background: var(--charcoal-90);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 36px 30px;
    transition: all .4s var(--ease);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200,149,108,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card__num {
    font-family: var(--font-display);
    font-size: 38px; font-weight: 300;
    color: var(--gold); opacity: 0.5;
    margin-bottom: 16px;
}
.service-card__title {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
}
.service-card__desc {
    font-size: 14px; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-bottom: 20px;
}
.service-card__tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.service-card__tags li {
    font-size: 11px; letter-spacing: 0.5px;
    padding: 5px 12px; border-radius: 20px;
    background: rgba(200,149,108,0.1);
    color: var(--gold-light);
    border: 1px solid rgba(200,149,108,0.15);
}
.services__cta {
    text-align: center; margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.services__cta p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px; font-size: 16px;
}

/* ═══════════════════ METHOD ═══════════════════ */
.method__inner { max-width: var(--container); margin: 0 auto; }
.method__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.method__step { text-align: center; position: relative; }
.method__step-num {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px; font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(200,149,108,0.3);
}
.method__step-line {
    position: absolute;
    top: 30px; left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 1px;
    background: var(--border);
}
.method__step:last-child .method__step-line { display: none; }
.method__step h3 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 500;
    margin-bottom: 12px;
}
.method__step p {
    font-size: 15px; color: var(--slate);
    line-height: 1.7; max-width: 300px;
    margin: 0 auto;
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials__inner { max-width: var(--container); margin: 0 auto; }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 30px;
    transition: all .3s var(--ease);
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.testimonial-card__stars {
    color: var(--gold); font-size: 16px;
    letter-spacing: 2px; margin-bottom: 18px;
}
.testimonial-card__text {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 400;
    font-style: italic;
    line-height: 1.7; color: var(--charcoal-80);
    margin-bottom: 24px;
}
.testimonial-card__author strong {
    display: block; font-family: var(--font-body);
    font-size: 14px; font-weight: 600;
    color: var(--charcoal);
}
.testimonial-card__author span {
    font-size: 12px; color: var(--mist);
}

/* ═══════════════════ BOOK CTA ═══════════════════ */
.cta-book {
    text-align: center;
    background: var(--charcoal) url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30Z' fill='none' stroke='rgba(200,149,108,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}
.cta-book__inner { max-width: 700px; margin: 0 auto; }
.cta-book__details {
    display: flex; justify-content: center;
    gap: 40px; margin: 40px 0;
    flex-wrap: wrap;
}
.cta-book__detail {
    display: flex; align-items: center; gap: 12px;
    text-align: left;
}
.cta-book__detail-icon { font-size: 24px; }
.cta-book__detail strong {
    display: block; font-size: 15px;
    color: var(--white); font-weight: 500;
}
.cta-book__detail span {
    font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq__inner { max-width: 720px; margin: 0 auto; }
.faq__list { margin-top: 50px; }
.faq__item {
    border-bottom: 1px solid var(--border);
}
.faq__question {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0;
    background: none; border: none;
    font-family: var(--font-display);
    font-size: 19px; font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    text-align: left;
    transition: color .3s;
}
.faq__question:hover { color: var(--gold-dark); }
.faq__icon {
    font-size: 22px; font-weight: 300;
    color: var(--gold);
    transition: transform .3s var(--ease);
    flex-shrink: 0; margin-left: 16px;
}
.faq__item.active .faq__icon { transform: rotate(45deg); }
.faq__answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq__item.active .faq__answer {
    max-height: 300px;
    padding-bottom: 22px;
}
.faq__answer p {
    font-size: 15px; color: var(--slate);
    line-height: 1.8;
}
.faq__answer a { color: var(--gold-dark); text-decoration: underline; }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact__inner { max-width: 700px; margin: 0 auto; }
.contact__form { margin-top: 40px; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px; font-weight: 500;
    color: var(--charcoal); letter-spacing: 0.3px;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color .3s, box-shadow .3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,149,108,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--mist);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    background: var(--charcoal);
    padding: 60px clamp(20px, 5vw, 60px) 30px;
    color: rgba(255,255,255,0.5);
}
.footer__inner { max-width: var(--container); margin: 0 auto; }
.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand p {
    font-size: 14px; line-height: 1.7;
    margin-top: 16px; max-width: 340px;
}
.footer__logo {
    display: flex; align-items: center; gap: 10px;
    color: var(--white);
    font-size: 13px; font-weight: 600;
    letter-spacing: 3px;
}
.footer__links { display: flex; gap: 60px; }
.footer__col h4 {
    font-size: 13px; font-weight: 600;
    color: var(--white); letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer__col a {
    display: block; font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
}
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
    padding-top: 24px; margin-top: 24px;
    font-size: 13px;
}
.footer__disclaimer {
    margin-top: 8px; font-size: 11px;
    opacity: 0.5; line-height: 1.6;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__sub { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__proof { justify-content: center; }
    .hero__image { order: -1; max-width: 320px; margin: 0 auto; }
    .hero__image-badge { left: auto; right: -10px; bottom: -10px; }
    .hero__scroll { display: none; }
    
    .about__grid { grid-template-columns: 1fr; }
    .about__visual { max-width: 380px; }
    
    .services__grid { grid-template-columns: 1fr 1fr; }
    .method__steps { grid-template-columns: 1fr; gap: 30px; }
    .method__step-line { display: none; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .nav__links {
        display: none;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(253,250,246,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center; justify-content: center;
        gap: 24px;
    }
    .nav__links.active { display: flex; }
    .nav__links a { font-size: 18px; color: var(--charcoal); }
    .nav__toggle { display: block; z-index: 1001; }
    .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav__toggle.active span:nth-child(2) { opacity: 0; }
    .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .services__grid { grid-template-columns: 1fr; }
    .contact__form-row { grid-template-columns: 1fr; }
    .cta-book__details { flex-direction: column; align-items: center; gap: 20px; }
    .hero__title { font-size: clamp(36px, 8vw, 48px); }
    .footer__links { flex-direction: column; gap: 30px; }
}

/* ═══════════════════ BOOKING PAGE STYLES ═══════════════════ */
.booking-page {
    min-height: 100vh;
    padding: 100px 20px 60px;
    background: var(--cream);
}
.booking-container {
    max-width: 900px;
    margin: 0 auto;
}
.booking-header {
    text-align: center;
    margin-bottom: 50px;
}
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}
.booking-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: opacity .3s;
}
.booking-step.active { opacity: 1; }
.booking-step.completed { opacity: 0.7; }
.booking-step__num {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600;
    color: var(--gold);
}
.booking-step.active .booking-step__num {
    background: var(--gold);
    color: var(--white);
}
.booking-step.completed .booking-step__num {
    background: var(--gold-dark);
    color: var(--white);
}
.booking-step__label { font-size: 13px; font-weight: 500; }

.booking-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: clamp(24px, 4vw, 48px);
}

/* Calendar Styles */
.calendar {
    margin: 20px 0;
}
.calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.calendar__header h3 {
    font-family: var(--font-display);
    font-size: 22px;
}
.calendar__nav {
    background: none;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all .3s;
}
.calendar__nav:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.calendar__day-name {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--mist);
    padding: 8px;
    text-transform: uppercase;
}
.calendar__day {
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    font-size: 14px;
    cursor: default;
    color: var(--mist);
    transition: all .2s;
}
.calendar__day.available {
    cursor: pointer;
    color: var(--charcoal);
    background: rgba(200,149,108,0.06);
    border: 1px solid transparent;
}
.calendar__day.available:hover {
    background: rgba(200,149,108,0.15);
    border-color: var(--gold);
}
.calendar__day.selected {
    background: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 600;
}
.calendar__day.today {
    border: 1px solid var(--gold);
}

/* Time slots */
.timeslots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin: 20px 0;
}
.timeslot {
    padding: 14px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
}
.timeslot:hover {
    border-color: var(--gold);
    background: rgba(200,149,108,0.06);
}
.timeslot.selected {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Booking summary */
.booking-summary {
    background: var(--cream);
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}
.booking-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}
.booking-summary__row strong {
    color: var(--charcoal);
}
.booking-summary__total {
    border-top: 2px solid var(--border);
    margin-top: 12px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 600;
}

/* Success page */
.booking-success {
    text-align: center;
    padding: 60px 20px;
}
.booking-success__icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(200,149,108,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}
