The Trinity Peptide Stack
/* ===================================================================== 1. GLOBAL THEME VARIABLES (LIGHT MODE DEFAULT) ============================================================ ========= */ .sr-product-wrap { --sr-orange: #ff7e00; --sr-plum: #5b5161; --sr-plum-light: #8e7f96; --sr-dark-text: #2b2b2b; --sr-mid-text: #555555; --sr-bg-sand: #f5f3ef; --sr-bg-offwhite: #faf8f5; --sr-border-line: #e8e4dc; --sr-accent-green: #bad381; --sr-font-title: 'DM Sans', sans-serif; --sr-font-body: 'Lato', sans-serif; } /* ===================================================================== DARK MODE OVERRIDES (SHOPIFY THEME CLASSES) ===================================================================== */ html.dark .sr-product-wrap, html[class*="dark"] .sr-product-wrap, body.dark .sr-product-wrap, body[class*="dark"] .sr-product-wrap, [data-theme*="dark"] .sr-product-wrap, .color-inverse .sr-product-wrap, .color-scheme-inverse .sr-product-wrap, .color-scheme-2 .sr-product-wrap, .color-scheme-3 .sr-product-wrap { --sr-plum: #e2ddd5; --sr-plum-light: #a496ac; --sr-dark-text: #ffffff; --sr-mid-text: #e2ddd5; --sr-bg-sand: rgba(226, 221, 213, 0.05); --sr-bg-offwhite: rgba(226, 221, 213, 0.02); --sr-border-line: rgba(226, 221, 213, 0.15); } /* ===================================================================== 2. BASE LAYOUT & TYPOGRAPHY ===================================================================== */ .sr-product-wrap { width: 100%; margin: 0 auto 40px auto; padding-top: 40px; color: var(--sr-dark-text); font-family: var(--sr-font-body); text-align: left; -webkit-font-smoothing: antialiased; } .sr-product-wrap * { box-sizing: border-box; } .sr-label { font-family: var(--sr-font-title); font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; display: block; margin-bottom: 16px; } .sr-title { font-family: var(--sr-font-title); font-size: 24px; font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; color: var(--sr-plum); } .sr-body { font-size: 16px; line-height: 1.8; color: var(--sr-mid-text); } /* ===================================================================== 3. ZONE 1: OPENER & STAT BLOCK ===================================================================== */ .sr-announcement { background: transparent; color: var(--sr-plum); padding: 12px 0; text-align: left; border-top: 1px solid var(--sr-border-line); border-bottom: 1px solid var(--sr-border-line); margin-bottom: 32px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; } .sr-announcement strong { color: var(--sr-orange); } .sr-opener-title { font-family: var(--sr-font-title); font-size: clamp(48px, 12vw, 90px); font-weight: 300; line-height: 0.9; letter-spacing: -2px; color: var(--sr-plum); margin: 24px 0; } .sr-opener-desc { font-size: 18px; font-style: italic; line-height: 1.6; color: var(--sr-mid-text); border-left: 2px solid var(--sr-orange); padding-left: 20px; margin-bottom: 40px; } .sr-stat-box { background: transparent; padding: 16px 0; text-align: left; margin-bottom: 40px; } .sr-stat-num { font-family: var(--sr-font-title); font-size: 72px; font-weight: 300; line-height: 0.8; color: var(--sr-orange); display: block; margin-bottom: 16px; } .sr-stat-label { color: var(--sr-plum); display: block; margin-bottom: 8px; font-weight: 700; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; } .sr-stat-sub { font-size: 16px; color: var(--sr-mid-text); line-height: 1.6; margin: 0; } /* ===================================================================== 4. ZONE 2: ACCORDIONS ===================================================================== */ .sr-accordion { border-top: 1px solid var(--sr-border-line); } .sr-accordion:last-of-type { border-bottom: 1px solid var(--sr-border-line); margin-bottom: 48px; } .sr-accordion summary { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; list-style: none; font-family: var(--sr-font-title); font-size: 20px; font-weight: 700; color: var(--sr-plum); transition: color 0.2s ease; } .sr-accordion summary:hover { color: var(--sr-orange); } .sr-accordion summary::-webkit-details-marker { display: none; } .sr-accordion summary::after { content: '+'; font-family: var(--sr-font-body); font-size: 28px; font-weight: 300; line-height: 1; color: var(--sr-plum-light); } .sr-accordion[open] summary::after { content: '−'; color: var(--sr-orange); } .sr-accordion-content { padding-bottom: 32px; } .sr-ing-row { display: grid; grid-template-columns: 40px 1fr; gap: 0 16px; padding: 20px 16px; border-radius: 0; } .sr-ing-row:hover { background: var(--sr-bg-offwhite); } .sr-ing-row--hero { background: var(--sr-bg-sand); border-left: 3px solid var(--sr-orange); } .sr-ing-num { font-family: var(--sr-font-title); font-size: 14px; font-weight: 700; color: var(--sr-plum-light); grid-row: 1/4; } .sr-ing-row--hero .sr-ing-num { color: var(--sr-orange); } .sr-ing-name { font-family: var(--sr-font-title); font-size: 18px; font-weight: 700; color: var(--sr-plum); margin-bottom: 4px; } .sr-ing-role { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sr-orange); margin-bottom: 8px; } .sr-ing-desc { font-size: 15px; color: var(--sr-mid-text); line-height: 1.7; } .sr-inci-block { font-size: 13px; color: var(--sr-plum-light); line-height: 1.8; padding: 16px; background: var(--sr-bg-offwhite); border-radius: 0; } .sr-timeline { position: relative; padding-left: 16px; } .sr-timeline::before { content: ''; position: absolute; top: 10px; bottom: 10px; left: 20px; width: 2px; background: var(--sr-border-line); } .sr-step { position: relative; padding: 0 0 32px 32px; } .sr-step:last-child { padding-bottom: 0; } .sr-step::before { content: ''; position: absolute; left: -2px; top: 6px; width: 10px; height: 10px; border-radius: 0; background: var(--sr-orange); border: 3px solid var(--sr-bg-sand); box-shadow: 0 0 0 1px var(--sr-border-line); } .sr-step-title { font-family: var(--sr-font-title); font-size: 16px; font-weight: 700; color: var(--sr-plum); margin-bottom: 6px; } .sr-step-desc { font-size: 15px; color: var(--sr-mid-text); line-height: 1.7; } .sr-step-result { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--sr-plum); background: var(--sr-bg-sand); padding: 8px 16px; border-radius: 0; } /* ===================================================================== 5. ZONE 3: CLEAN PRO-TIPS ===================================================================== */ .sr-callouts-container { display: flex; flex-direction: column; gap: 32px; margin-bottom: 24px; } .sr-callout-card { padding: 8px 0 8px 20px; border-radius: 0; background: transparent !important; display: flex; flex-direction: column; } .sr-callout-card--melt { border-left: 3px solid var(--sr-accent-green); } .sr-callout-card--amount { border-left: 3px solid var(--sr-orange); } .sr-callout-card--fresh { border-left: 3px solid var(--sr-plum); } .sr-callout-text { font-size: 15px; line-height: 1.7; color: var(--sr-mid-text); margin: 0; } .sr-callout-card strong { font-weight: 700; color: var(--sr-dark-text); } Made fresh for your order — ready within 3 business days Brighten · Nourish · Fortify · 3-Step Routine The Trinity Stack The complete biological reset. A synergistic three-step regimen designed to hydrate the water layer, nourish the lipid layer, and seal the skin barrier for peak structural integrity. 3 Targeted Skin Layers Engineered to sequentially address your skin's water layer, lipid layer, and protective barrier in perfect harmony. Individual formulas target.A stack transforms. We built the Trinity Stack because true skin health cannot be achieved in a single dimension. A compromised barrier will leak hydration, and starved lipid layers cannot retain water-based peptides. This trio closes the loop. First, Trinity floods the water layer with stable Vitamin C and signaling peptides. Next, Cactus Nectar sinks directly into the lipid barrier to deliver oil-soluble brightening and profound nourishment. Finally, Palo Duro locks the ecosystem down, replacing missing ceramides and protecting the active ingredients from oxidation. By blending each step fresh to order, this routine ensures that volatile actives like Vitamin C and fragile peptides reach your skin at their absolute biological peak. The Three Steps 01 Trinity Multi-C Complex The Water Layer Step one floods the skin with Ascorbyl Glucoside and Tripeptide-29 to provide immediate surface protection, deep antioxidant defense, and structural signaling. 02 Cactus Nectar The Lipid Layer Step two sinks profound nourishment into the skin's lipid barrier, utilizing a sophisticated, oil-soluble form of Vitamin C (10% THDA) to target uneven pigment and induce a natural glow. 03 Palo Duro Repair Cream The Seal The final step replaces missing structural building blocks using Ceramide NP, Cholesterol, and Phytosphingosine to lock in the serums and fortify the barrier against breakdown. Application Protocol This stack is designed to be layered sequentially, allowing each formula to absorb into its target layer without pilling or competing. Step 1: Hydrate After cleansing, press 3–4 drops of Trinity gently into clean, damp skin. Allow 30 seconds for it to fully absorb into the water layer. Step 2: Nourish Warm 2-3 drops of Cactus Nectar between your palms and pat into the skin, focusing on areas needing extra radiance and lipid support. Step 3: Seal Massage a dime-sized amount of Palo Duro over the entire face and neck to lock down the active ingredients and rebuild the ceramide barrier. What to expect Immediate plumping and a multidimensional glow from the first application. Deep structural repair and dramatic improvements in skin tone will compound over 4 to 6 weeks. Full Ingredients (INCI) For the complete, comprehensive ingredient list of each formula, please see the individual product pages for Trinity, Cactus Nectar, and Palo Duro. Stacking Pro-Tips The Damp Skin Rule Always apply Trinity to damp skin. The Sodium Hyaluronate needs water to bind to, pulling moisture deep into the epidermis to prep the skin for the heavier lipid layers. Adjust to your climate In humid months, you may only need a single drop of Cactus Nectar under Palo Duro. In dry, winter months, increase the oil drops to fortify the lipid layer against harsh indoor heating. Freshness matters A routine is only as good as its biological potency. Peptides and Vitamin C degrade over time. We blend this entire 3-step routine to order so it arrives at your door at absolute peak performance.
More you might like
Related
The Trinity Stack
Related
Squishmallow 8 Inch Stackable Plush | Trinity The Triceratop
Related
The KLOW Stack 80mg | High Purity Research Peptide UK
Related