voice activation
the voice activation @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=EB+Garamond:ital,wght@0,400;0,500;1,400&displ ay=swap'); :root { --void: #1c1118; --smoke: #2a1620; --oxblood: #5c2027; --gold: #b8964a; --gold-soft: #d9bd83; --bone: #ece3d2; --bone-dim: #c9bea9; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { background: var(--void); color: var(--bone); font-family: 'EB Garamond', serif; font-size: 19px; line-height: 1.7; overflow-x: hidden; } h1, h2, h3, .display { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: 0.01em; } .wrap { max-width: 720px; margin: 0 auto; padding: 0 28px; } /* signature waveform */ .waveform { width: 100%; height: 90px; display: block; } .waveform path { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: 0.85; } @media (prefers-reduced-motion: no-preference) { .waveform path { stroke-dasharray: 6 10; animation: drift 14s linear infinite; } @keyframes drift { to { stroke-dashoffset: -800; } } } .eyebrow { font-family: 'EB Garamond', serif; text-transform: uppercase; letter-spacing: 0.22em; font-size: 12.5px; color: var(--gold-soft); } /* hero */ .hero { padding: 110px 0 70px; text-align: center; position: relative; } .hero h1 { font-size: 54px; line-height: 1.12; color: var(--bone); margin: 26px 0 22px; } .hero h1 em { font-style: italic; color: var(--gold-soft); } .hero p.sub { font-size: 20px; color: var(--bone-dim); max-width: 480px; margin: 0 auto; } .divider { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); margin: 0 auto; } section { padding: 70px 0; } .opening { text-align: center; } .opening p { font-size: 21px; color: var(--bone); max-width: 560px; margin: 0 auto 20px; } .opening p:last-child { margin-bottom: 0; } .opening .gold-line { color: var(--gold-soft); font-style: italic; } .recognition { background: var(--smoke); border-top: 1px solid rgba(184,150,74,0.25); border-bottom: 1px solid rgba(184,150,74,0.25); } .recognition h2 { text-align: center; font-size: 32px; color: var(--bone); margin-bottom: 36px; } .recognition ul { list-style: none; display: flex; flex-direction: column; gap: 18px; } .recognition li { font-size: 19px; color: var(--bone-dim); padding-left: 26px; position: relative; } .recognition li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: var(--gold); } .offer-intro { text-align: center; } .offer-intro .eyebrow { display: block; margin-bottom: 14px; } .offer-intro h2 { font-size: 38px; color: var(--bone); margin-bottom: 18px; } .offer-intro p { color: var(--bone-dim); max-width: 540px; margin: 0 auto; font-size: 19px; } .modalities { display: flex; flex-direction: column; gap: 0; } .modality { display: grid; grid-template-columns: 90px 1fr; gap: 24px; align-items: start; padding: 30px 0; border-bottom: 1px solid rgba(236,227,210,0.08); } .modality:first-child { border-top: 1px solid rgba(236,227,210,0.08); } .modality .mark { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; color: var(--gold); padding-top: 4px; } .modality h3 { font-size: 24px; color: var(--bone); margin-bottom: 8px; font-weight: 500; } .modality p { color: var(--bone-dim); font-size: 18px; } .transformation { background: var(--smoke); border-top: 1px solid rgba(184,150,74,0.25); border-bottom: 1px solid rgba(184,150,74,0.25); text-align: center; } .transformation h2 { font-size: 32px; color: var(--bone); margin-bottom: 28px; } .transformation p { font-size: 20px; color: var(--bone-dim); max-width: 560px; margin: 0 auto 18px; font-style: italic; } .transformation p:last-child { margin-bottom: 0; } .who { text-align: center; } .who h2 { font-size: 32px; color: var(--bone); margin-bottom: 30px; } .who p { font-size: 19px; color: var(--bone-dim); max-width: 540px; margin: 0 auto; } .pricing { text-align: center; padding: 90px 0 110px; } .pricing .eyebrow { display: block; margin-bottom: 18px; } .pricing .price { font-family: 'Cormorant Garamond', serif; font-size: 84px; color: var(--gold-soft); line-height: 1; margin-bottom: 10px; } .pricing .price-note { font-size: 16px; color: var(--bone-dim); margin-bottom: 36px; letter-spacing: 0.04em; } .pricing h2 { font-size: 30px; color: var(--bone); max-width: 480px; margin: 0 auto 20px; } .pricing p.lead { color: var(--bone-dim); font-size: 19px; max-width: 460px; margin: 0 auto 40px; } .cta-btn { display: inline-block; font-family: 'EB Garamond', serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 14px; color: var(--void); background: var(--gold-soft); padding: 18px 44px; border-radius: 2px; text-decoration: none; transition: background 0.3s ease, transform 0.3s ease; } .cta-btn:hover { background: var(--gold); transform: translateY(-1px); } .cta-sub { margin-top: 22px; font-size: 15px; color: var(--bone-dim); font-style: italic; } footer { text-align: center; padding: 50px 0 70px; color: var(--bone-dim); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; } @media (max-width: 600px) { .hero h1 { font-size: 38px; } .pricing .price { font-size: 64px; } .modality { grid-template-columns: 50px 1fr; gap: 14px; } } a sound and somatic activation your voice is a frequency.it is time to let it move. a holistic activation for the women ready to speak their message into the world and watch the right people arrive. your throat holds a record of every sentence you swallowed. every truth you softened so the room would stay comfortable. every message you carried and never spoke, because speaking it felt louder than you were allowed to be. that record is ready to be rewritten. this activation works the voice as an instrument and a nervous system at once, through meditation, somatic release, energetic opening, and ritual movement, so the words you have been protecting can finally travel. you'll recognise yourself here if your throat tightens in the exact moment that matters most you rehearse the sentence ten times and the room hears silence someone else says the thing you meant to say, first, again your art keeps getting quieter so it stays easier to dismiss you can feel the message inside you and still can't locate the door it leaves through the activation · 61 minutes plus bonus ritual six audios. one full opening. each track moves you through a different layer of the voice, grounding, affirmation, energetic opening, somatic release, mission, and visibility, so the activation reaches the whole instrument, not just the parts that are easy to talk about. 5 min introduction a grounding entry point that brings you fully into your body before the activation begins. 4 min creative morning affirmation audio a daily ritual that primes your voice and your day with the frequency you are choosing to speak from. 13 min voice activation audio an energetic opening of the throat channel your message has been waiting to move through. 20 min speaking your mission, somatic practice movement and breath that release what years of swallowed sentences have stored in the throat and jaw, while your mission finds its shape in the body. 10 min speaking your mission, practice a direct practice in saying your message out loud until it sounds like you. 9 min visibility activation a closing frequency that aligns your voice with the people it was always meant to reach. bonus dance ritual a closing movement that carries the stuck energy out of the body and the words into the open. what opens on the other side "i said the thing i meant, out loud, and the room held it." "my message finally sounds like me." "the right people are starting to find my work." who this activation meets artists, healers, and creators who already know their message and are ready for it to leave their body at full volume, attracting the people it was always meant to reach. the offer 55 € six audios, 61 minutes, plus the dance ritual bonus · instant access your voice has been waiting. this is the room it gets to open in. claim instant access and the full activation is yours within minutes. claim your activation your message is already written inside you. this is the activation that lets it travel. katemi official
More you might like
Related
Audio CD-Activating Angels in Your Life: Angelic Activations
Related
GLUTEO•MAXIMUS•ACTIVATIONAL•ISM
Related
The Etheric Solfeggio Activationsby Jay Burrell.
Related