 * { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-deep: #2C1810; --primary-warm: #8B6F47; --accent-gold: #D4AF37; --accent-coral: #E67E50; --cream: #F8F5F0; --off-white: #FEFDFB; --text-dark: #1A1A1A; --text-muted: #6B6B6B; } body { font-family: 'Montserrat', sans-serif; color: var(--text-dark); background: var(--off-white); overflow-x: hidden; } /* ===== NAVIGATION ===== */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(254, 253, 251, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(139, 111, 71, 0.1); animation: slideDown 0.8s ease-out; } @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .nav-container { max-width: 1400px; margin: 0 auto; padding: 1.5rem 3rem; display: flex; justify-content: space-between; align-items: center; } .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--primary-deep); letter-spacing: 0.5px; } .nav-links { display: flex; gap: 3rem; list-style: none; } .nav-links a { text-decoration: none; color: var(--text-dark); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.5px; transition: color 0.3s ease; } .nav-links a:hover { color: var(--accent-coral); } .nav-cta { background: var(--primary-deep); color: var(--off-white); padding: 0.75rem 1.75rem; border-radius: 2px; text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; } .nav-cta:hover { background: var(--accent-coral); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(230, 126, 80, 0.3); } /* ===== HERO SECTION ===== */ .hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 50%, #FFF9F3 100%); overflow: hidden; } .hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 120%; background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%); animation: float 20s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(30px, -30px) rotate(3deg); } 66% { transform: translate(-20px, 20px) rotate(-3deg); } } .hero-container { max-width: 1400px; margin: 0 auto; padding: 4rem 3rem; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; } .hero-content { animation: fadeInUp 1s ease-out 0.3s both; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } } .hero-eyebrow { font-size: 0.85rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-coral); margin-bottom: 1.5rem; } .hero-headline { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; line-height: 1.1; color: var(--primary-deep); margin-bottom: 1.5rem; } .hero-headline strong { font-weight: 700; display: block; color: var(--accent-coral); } .hero-subheadline { font-size: 1.3rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 2.5rem; font-weight: 300; } .btn-primary { background: var(--primary-deep); color: var(--off-white); padding: 1.2rem 3rem; border: none; border-radius: 2px; font-size: 0.95rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; } .btn-primary:hover { background: var(--accent-coral); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(230, 126, 80, 0.35); } .hero-stats { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(139, 111, 71, 0.2); } .stat { flex: 1; } .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--accent-gold); display: block; margin-bottom: 0.3rem; } .stat-label { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.5px; } .hero-visual { position: relative; animation: fadeInRight 1.2s ease-out 0.5s both; } @keyframes fadeInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } } /* Hero composition: gradient block + photo layered */ .visual-container { position: relative; width: 100%; aspect-ratio: 3/4; } .visual-bg-shape { position: absolute; bottom: 0; right: 0; width: 88%; height: 90%; background: linear-gradient(135deg, #E67E50 0%, #D4AF37 55%, #8B6F47 100%); border-radius: 4px; } .hero-image { position: absolute; top: 0; left: 0; width: 82%; height: 94%; object-fit: cover; object-position: center 12%; display: block; border-radius: 4px; box-shadow: 0 24px 60px rgba(44, 24, 16, 0.22), 0 8px 24px rgba(44, 24, 16, 0.12); } .trust-badge { position: absolute; bottom: -30px; left: -30px; background: var(--off-white); padding: 1.5rem 2rem; border-radius: 4px; box-shadow: 0 12px 40px rgba(44, 24, 16, 0.15); } .trust-badge-number { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--accent-coral); margin-bottom: 0.3rem; } .trust-badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); } .urgency-banner { background: var(--primary-deep); color: var(--off-white); text-align: center; padding: 0.9rem 2rem; font-size: 0.85rem; letter-spacing: 1px; } .urgency-banner strong { color: var(--accent-gold); font-weight: 600; } /* ===== PROBLEM SECTION ===== */ .mirror-section { background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%); padding: 8rem 3rem; position: relative; } .section-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-coral); margin-bottom: 2rem; text-align: center; } .section-headline { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; line-height: 1.2; color: var(--primary-deep); text-align: center; margin-bottom: 2rem; max-width: 900px; margin-left: auto; margin-right: auto; } .section-intro { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); text-align: center; margin-bottom: 4rem; max-width: 700px; margin-left: auto; margin-right: auto; } .pain-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto 4rem; } .pain-point { background: var(--off-white); padding: 2.5rem; border-radius: 4px; border-left: 3px solid var(--accent-coral); position: relative; transition: all 0.4s ease; } .pain-point:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(44, 24, 16, 0.1); } .pain-point::before { content: '✗'; position: absolute; top: 2.5rem; left: -1.2rem; width: 2.4rem; height: 2.4rem; background: var(--accent-coral); color: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; } .pain-point-text { font-size: 1.05rem; line-height: 1.7; color: var(--text-dark); padding-left: 1.5rem; } .emotional-quote { background: var(--primary-deep); color: var(--off-white); padding: 4rem 3rem; text-align: center; margin: 4rem 0; position: relative; } .quote-text { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; line-height: 1.5; font-style: italic; max-width: 800px; margin: 0 auto; } .quote-emphasis { color: var(--accent-gold); font-weight: 600; } /* ===== TRANSFORMATION SECTION ===== */ .transformation-section { background: var(--off-white); padding: 8rem 3rem; } .outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-bottom: 5rem; max-width: 1300px; margin-left: auto; margin-right: auto; } .outcome-card { background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%); padding: 3rem 2.5rem; border-radius: 4px; border-top: 3px solid var(--accent-gold); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .outcome-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(44, 24, 16, 0.12); border-top-color: var(--accent-coral); } .outcome-icon { width: 60px; height: 60px; background: var(--primary-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.8rem; } .outcome-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--primary-deep); margin-bottom: 1rem; } .outcome-description { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.5rem; } .outcome-examples { list-style: none; } .outcome-examples li { font-size: 0.9rem; line-height: 1.6; color: var(--text-dark); padding-left: 1.5rem; position: relative; margin-bottom: 0.7rem; } .outcome-examples li::before { content: '→'; position: absolute; left: 0; color: var(--accent-coral); font-weight: 600; } .testimonial-highlight { background: var(--primary-deep); padding: 5rem 4rem; border-radius: 8px; max-width: 1300px; margin: 5rem auto; } .testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; line-height: 1.6; color: var(--off-white); font-style: italic; margin-bottom: 2rem; } .testimonial-author { display: flex; align-items: center; gap: 1.5rem; } .author-image { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-gold) 100%); border: 3px solid var(--off-white); } .author-name { font-size: 1.1rem; font-weight: 600; color: var(--off-white); margin-bottom: 0.3rem; } .author-title { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); } /* ===== PROGRAM SECTION ===== */ .program-section { background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%); padding: 8rem 3rem; } .program-badge { text-align: center; margin-bottom: 3rem; } .badge { display: inline-block; background: var(--primary-deep); color: var(--off-white); padding: 0.75rem 2rem; border-radius: 30px; font-size: 0.9rem; font-weight: 500; letter-spacing: 1px; } .phases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1400px; margin: 4rem auto; position: relative; } .phases::before { content: ''; position: absolute; top: 60px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-gold) 50%, var(--primary-warm) 100%); } .phase { position: relative; z-index: 1; } .phase-number { width: 120px; height: 120px; margin: 0 auto 2rem; background: var(--off-white); border: 4px solid var(--accent-coral); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.4s ease; } .phase:nth-child(2) .phase-number { border-color: var(--accent-gold); } .phase:nth-child(3) .phase-number { border-color: var(--primary-warm); } .phase:nth-child(4) .phase-number { border-color: var(--primary-deep); } .phase:hover .phase-number { transform: scale(1.1); box-shadow: 0 12px 40px rgba(44, 24, 16, 0.15); } .phase-num { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); } .phase-weeks { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--primary-deep); } .phase-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--primary-deep); text-align: center; margin-bottom: 1rem; } .phase-subtitle { font-size: 1rem; font-weight: 600; color: var(--accent-coral); text-align: center; margin-bottom: 1.5rem; } .phase:nth-child(2) .phase-subtitle { color: var(--accent-gold); } .phase:nth-child(3) .phase-subtitle { color: var(--primary-warm); } .phase:nth-child(4) .phase-subtitle { color: var(--primary-deep); } /* ===== ABOUT SECTION ===== */ .about-section { background: var(--off-white); padding: 8rem 3rem; } .about-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 5rem; align-items: center; } /* About composition: gradient block + photo layered */ .about-image-container { position: relative; aspect-ratio: 3/4; } .about-bg-shape { position: absolute; top: 0; left: 0; width: 88%; height: 90%; background: linear-gradient(135deg, #8B6F47 0%, #E67E50 55%, #D4AF37 100%); border-radius: 4px; } .about-image { position: absolute; bottom: 0; right: 0; width: 82%; height: 94%; object-fit: cover; object-position: center 10%; display: block; border-radius: 4px; box-shadow: 0 24px 60px rgba(44, 24, 16, 0.22), 0 8px 24px rgba(44, 24, 16, 0.12); } .credential-badge { position: absolute; bottom: -25px; right: -25px; background: var(--accent-coral); color: var(--off-white); padding: 2rem; border-radius: 50%; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 12px 40px rgba(230, 126, 80, 0.3); } .credential-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; margin-bottom: 0.3rem; } .credential-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; text-align: center; } .life-timeline { margin: 3rem 0; } .life { padding: 1.5rem 0 1.5rem 2rem; border-left: 3px solid var(--accent-coral); margin-bottom: 1.5rem; position: relative; } .life::before { content: ''; position: absolute; left: -8px; top: 1.8rem; width: 13px; height: 13px; background: var(--accent-coral); border-radius: 50%; border: 3px solid var(--off-white); } .life-number { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--accent-coral); margin-bottom: 0.5rem; } .life-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--primary-deep); margin-bottom: 0.7rem; } .life-description { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); } /* ===== PRICING SECTION ===== */ .investment-section { background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%); padding: 8rem 3rem; } .pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 5rem; } .pricing-card { background: var(--off-white); padding: 3rem; border-radius: 8px; border: 2px solid transparent; transition: all 0.4s ease; } .pricing-card.featured { border-color: var(--accent-coral); box-shadow: 0 20px 60px rgba(230, 126, 80, 0.15); transform: scale(1.02); } .featured-badge { background: var(--accent-coral); color: var(--off-white); padding: 0.5rem 1.5rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; display: inline-block; margin-bottom: 1.5rem; } .pricing-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--primary-deep); margin-bottom: 0.5rem; } .pricing-amount { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.5rem 0; } .price-main { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--primary-deep); } .price-currency { font-size: 1.5rem; color: var(--text-muted); } .early-bird { background: var(--accent-gold); color: var(--primary-deep); padding: 0.75rem 1.5rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; margin-bottom: 2rem; display: inline-block; } .pricing-features { list-style: none; margin-bottom: 2.5rem; } .pricing-features li { font-size: 0.9rem; padding-left: 1.8rem; position: relative; margin-bottom: 1rem; } .pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-coral); font-weight: 700; } .pricing-cta { width: 100%; background: var(--primary-deep); color: var(--off-white); padding: 1.2rem 2rem; border: none; border-radius: 4px; font-size: 0.95rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.4s ease; } .pricing-cta:hover { background: var(--accent-coral); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(230, 126, 80, 0.35); } /* ===== FOOTER ===== */ footer { background: var(--primary-deep); color: var(--off-white); padding: 4rem 3rem 2rem; } .footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; } .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem; } .footer-tagline { font-size: 0.95rem; line-height: 1.7; opacity: 0.8; } .footer-section h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 1rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 0.7rem; } .footer-links a { color: var(--off-white); text-decoration: none; opacity: 0.8; transition: opacity 0.3s; font-size: 0.9rem; } .footer-links a:hover { opacity: 1; } .footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; font-size: 0.85rem; opacity: 0.7; } /* ===== ENEMY SECTION ===== */ .enemy-section { background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%); padding: 8rem 3rem; } .enemy-container { max-width: 900px; margin: 0 auto; } .enemy-obstacles { margin: 0 auto 4rem; max-width: 860px; } /* Scroll-reveal: start hidden, animate in via JS IntersectionObserver */ .obstacle { display: flex; align-items: flex-start; gap: 2.5rem; padding: 2.2rem 0; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; } .obstacle.visible { opacity: 1; transform: translateY(0); } .obstacle:hover .obstacle-body { transform: translateY(-4px); } .obstacle-body { flex: 1; background: var(--off-white); padding: 2rem 2rem 2rem 2.5rem; border-radius: 4px; border-left: 3px solid var(--accent-coral); position: relative; transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease; } .obstacle:hover .obstacle-body { background: var(--primary-deep); box-shadow: 0 16px 48px rgba(44, 24, 16, 0.18); transform: translateY(-4px); } /* Floating number badge — mirrors the ✗ badge in pain-point */ .obstacle-num { position: absolute; top: 1.8rem; left: -1.4rem; width: 2.8rem; height: 2.8rem; background: var(--accent-coral); color: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; line-height: 1; transition: background 0.4s ease; } .obstacle:hover .obstacle-num { background: var(--accent-gold); } .obstacle-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--primary-deep); margin-bottom: 0.5rem; line-height: 1.2; padding-left: 1.5rem; transition: color 0.4s ease; } .obstacle:hover .obstacle-title { color: var(--off-white); } .obstacle-text { font-size: 1.05rem; line-height: 1.7; color: var(--text-dark); padding-left: 1.5rem; transition: color 0.4s ease; } .obstacle:hover .obstacle-text { color: rgba(255, 255, 255, 0.75); } .obstacle-divider { height: 1px; background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent); margin: 0; } .enemy-reframe { background: var(--primary-deep); color: var(--off-white); padding: 4rem 3rem; text-align: center; margin: 4rem 0 0; position: relative; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s; } .enemy-reframe.visible { opacity: 1; transform: translateY(0); } .reframe-headline { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--off-white); margin-bottom: 1.2rem; font-style: italic; } .reframe-body { font-size: 1.05rem; line-height: 1.85; color: rgba(255, 255, 255, 0.8); max-width: 640px; margin: 0 auto; } .reframe-body em { color: var(--accent-gold); font-style: italic; } .reframe-survival { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; font-style: italic; color: rgba(255, 255, 255, 0.55); margin-bottom: 1.8rem; max-width: 640px; margin-left: auto; margin-right: auto; } /* ===== RESPONSIVE ===== */ @media (max-width: 968px) { .hero-container, .about-container { grid-template-columns: 1fr; } .hero-headline { font-size: 3rem; } .section-headline { font-size: 2.5rem; } .nav-links { display: none; } .pain-points, .outcome-grid, .phases, .pricing-cards { grid-template-columns: 1fr; } .obstacle { gap: 1.5rem; } .obstacle-num { font-size: 2.2rem; } .enemy-reframe { padding: 2.5rem 2rem; } .phases::before { display: none; } .footer-content { grid-template-columns: 1fr; } } /* ===== Workshop Modal ===== */ .workshop-modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); display: none; align-items: center; justify-content: center; padding: 1.25rem; z-index: 2000; } .workshop-modal-overlay.is-open { display: flex; } .workshop-modal { width: 100%; max-width: 760px; background: var(--off-white); border: 1px solid rgba(139, 111, 71, 0.25); border-radius: 8px; box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35); overflow: hidden; position: relative; } .workshop-modal-close { position: absolute; top: 0.85rem; right: 1rem; background: transparent; border: none; color: var(--text-muted); font-size: 2rem; line-height: 1; cursor: pointer; padding: 0.2rem 0.4rem; } .workshop-modal-header { padding: 1.5rem 1.9rem 0; } .workshop-modal-title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; line-height: 1.15; color: var(--primary-deep); margin-bottom: 0.5rem; } .workshop-modal-subtitle { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; } .workshop-modal-body { padding: 0 1.9rem 1.8rem; } .workshop-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.2rem; } @media (max-width: 760px) { .workshop-form-grid { grid-template-columns: 1fr; } } .workshop-field { display: flex; flex-direction: column; gap: 0.4rem; } .workshop-label { font-size: 0.85rem; color: var(--text-muted); } .workshop-input, .workshop-textarea, .workshop-select { width: 100%; background: rgba(254, 253, 251, 0.95); border: 1px solid rgba(139, 111, 71, 0.25); border-radius: 6px; padding: 0.85rem 0.95rem; font-family: inherit; font-size: 0.95rem; color: var(--text-dark); outline: none; } .workshop-textarea { min-height: 120px; resize: vertical; } .workshop-submit { margin-top: 1.25rem; width: 100%; background: var(--primary-deep); color: var(--off-white); border: none; border-radius: 6px; padding: 1.05rem 1.25rem; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background 0.25s ease, transform 0.2s ease; } .workshop-submit:hover { background: var(--accent-coral); transform: translateY(-1px); } .workshop-form-footnote { margin-top: 0.9rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; text-align: center; } 