/*
Theme Name: SomaticFlow
Theme URI: https://bodyredeemed.com
Author: RunCMDCreate
Author URI: https://runcmdcreate.com
Description: A calm, professional WordPress theme designed for Body Redeemed Somatics. Features a therapeutic aesthetic with gentle animations, mobile-responsive design, and full ADA compliance. Perfect for somatic therapy practices, wellness providers, and healing-focused businesses.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: somaticflow
Tags: one-column, two-columns, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, theme-options, threaded-comments, accessibility-ready, blog, portfolio
*/

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --sf-purple-deep: #5D4A6C;
    --sf-purple-muted: #7B6B8A;
    --sf-purple-light: #A99AB8;
    --sf-purple-pale: #E8E3ED;
    
    --sf-cream: #FAF8F5;
    --sf-cream-warm: #F5F1E8;
    --sf-cream-dark: #EBE5D9;
    
    --sf-salmon: #D4A5A5;
    --sf-salmon-light: #E8C4C4;
    --sf-rose: #C9A9A9;
    
    --sf-ink: #2C2832;
    --sf-ink-light: #4A4352;
    --sf-ink-muted: #6B6373;
    
    --sf-white: #FFFFFF;
    
    /* Typography */
    --sf-font-display: 'Playfair Display', Georgia, serif;
    --sf-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --sf-space-xs: 0.5rem;
    --sf-space-sm: 1rem;
    --sf-space-md: 1.5rem;
    --sf-space-lg: 2.5rem;
    --sf-space-xl: 4rem;
    --sf-space-2xl: 6rem;
    --sf-space-3xl: 8rem;
    
    /* Transitions */
    --sf-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --sf-transition-base: 0.3s var(--sf-ease-smooth);
    --sf-transition-slow: 0.5s var(--sf-ease-smooth);
    
    /* Shadows */
    --sf-shadow-soft: 0 4px 20px rgba(93, 74, 108, 0.08);
    --sf-shadow-medium: 0 8px 30px rgba(93, 74, 108, 0.12);
    --sf-shadow-elevated: 0 20px 50px rgba(93, 74, 108, 0.15);
    
    /* Border Radius */
    --sf-radius-sm: 4px;
    --sf-radius-md: 8px;
    --sf-radius-lg: 16px;
    --sf-radius-xl: 24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--sf-font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--sf-ink);
    background-color: var(--sf-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--sf-font-display);
    font-weight: 500;
    line-height: 1.25;
    color: var(--sf-ink);
}

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

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

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.0625rem;
    color: var(--sf-ink-light);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.sf-text-small {
    font-size: 0.9375rem;
}

.sf-text-large {
    font-size: 1.1875rem;
}

/* ===== LAYOUT ===== */
.sf-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sf-space-md);
}

.sf-container--narrow {
    max-width: 900px;
}

.sf-container--wide {
    max-width: 1400px;
}

.sf-section {
    padding: var(--sf-space-2xl) 0;
    position: relative;
}

@media (max-width: 900px) {
    .sf-section {
        padding: var(--sf-space-lg) 0;
    }
}

@media (max-width: 600px) {
    .sf-section {
        padding: var(--sf-space-md) 0;
    }
}

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sf-purple-deep);
    color: var(--sf-white);
    padding: 1rem 2rem;
    z-index: 10000;
    border-radius: var(--sf-radius-md);
    transition: top 0.3s;
}

.skip-link:focus {
    top: 10px;
}

/* ===== NAVIGATION ===== */
.sf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--sf-space-md) 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--sf-transition-base);
}

.sf-nav.scrolled {
    padding: var(--sf-space-sm) 0;
    box-shadow: var(--sf-shadow-soft);
}

.sf-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sf-nav__logo {
    display: flex;
    align-items: center;
}

.sf-nav__logo img {
    height: 50px;
    width: auto;
    transition: var(--sf-transition-base);
}

.sf-nav.scrolled .sf-nav__logo img {
    height: 40px;
}

.sf-nav__menu {
    display: flex;
    align-items: center;
    gap: var(--sf-space-lg);
}

.sf-nav__menu ul {
    display: flex;
    align-items: center;
    gap: var(--sf-space-lg);
}

.sf-nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sf-ink-light);
    position: relative;
    padding: 0.5rem 0;
}

.sf-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sf-purple-deep);
    transition: var(--sf-transition-base);
}

.sf-nav__link:hover,
.sf-nav__link:focus {
    color: var(--sf-purple-deep);
}

.sf-nav__link:hover::after,
.sf-nav__link:focus::after {
    width: 100%;
}

.sf-nav__link[aria-current="page"] {
    color: var(--sf-purple-deep);
}

.sf-nav__link[aria-current="page"]::after {
    width: 100%;
}

.sf-nav__cta {
    padding: 0.75rem 1.5rem;
    background: var(--sf-purple-deep);
    color: var(--sf-white) !important;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--sf-radius-md);
    transition: var(--sf-transition-base);
}

.sf-nav__cta:hover,
.sf-nav__cta:focus {
    background: var(--sf-ink);
    transform: translateY(-2px);
    box-shadow: var(--sf-shadow-medium);
}

/* Dropdown Menus */
.sf-nav__menu ul {
    display: flex;
    align-items: center;
    gap: var(--sf-space-lg);
}

.sf-nav__menu > ul > li {
    position: relative;
}

.sf-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--sf-white);
    border-radius: var(--sf-radius-md);
    box-shadow: var(--sf-shadow-elevated);
    padding: var(--sf-space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--sf-transition-base);
    z-index: 100;
    margin-top: 0.5rem;
}

.sf-nav__dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: var(--sf-white);
}

.sf-nav__menu > ul > li:hover .sf-nav__dropdown,
.sf-nav__menu > ul > li:focus-within .sf-nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.sf-nav__dropdown li {
    margin: 0;
}

.sf-nav__dropdown a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--sf-ink-light);
    transition: var(--sf-transition-base);
}

.sf-nav__dropdown a:hover,
.sf-nav__dropdown a:focus {
    background: var(--sf-cream);
    color: var(--sf-purple-deep);
}

.sf-nav__link--has-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sf-nav__link--has-dropdown::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: var(--sf-transition-base);
}

/* Mobile Menu Toggle */
.sf-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.sf-nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--sf-ink);
    transition: var(--sf-transition-base);
    position: relative;
}

.sf-nav__toggle-bar::before,
.sf-nav__toggle-bar::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--sf-ink);
    transition: var(--sf-transition-base);
    left: 0;
}

.sf-nav__toggle-bar::before {
    top: -7px;
}

.sf-nav__toggle-bar::after {
    top: 7px;
}

/* X animation when active */
.sf-nav__toggle.active .sf-nav__toggle-bar {
    background: transparent;
}

.sf-nav__toggle.active .sf-nav__toggle-bar::before {
    top: 0;
    transform: rotate(45deg);
}

.sf-nav__toggle.active .sf-nav__toggle-bar::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.sf-nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 40, 50, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--sf-transition-base);
}

.sf-nav__overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 900px) {
    .sf-nav__toggle {
        display: flex;
    }
    
    .sf-nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--sf-white);
        padding: 100px var(--sf-space-lg) var(--sf-space-lg);
        box-shadow: var(--sf-shadow-elevated);
        transition: right var(--sf-transition-slow);
        flex-direction: column;
        align-items: flex-start;
        z-index: 999;
        overflow-y: auto;
    }
    
    .sf-nav__menu.active {
        right: 0;
    }
    
    .sf-nav__menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    
    .sf-nav__menu > ul > li {
        width: 100%;
        border-bottom: 1px solid var(--sf-cream-dark);
    }
    
    .sf-nav__link {
        font-size: 1.125rem;
        display: block;
        width: 100%;
        padding: var(--sf-space-sm) 0;
    }
    
    .sf-nav__link--has-dropdown {
        justify-content: space-between;
    }
    
    /* Rotate arrow when dropdown is open */
    .sf-nav__menu > ul > li.dropdown-open > .sf-nav__link--has-dropdown::after {
        transform: rotate(180deg);
    }
    
    .sf-nav__dropdown {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--sf-transition-base);
        background: var(--sf-cream);
        display: block;
    }
    
    .sf-nav__dropdown::before {
        display: none;
    }
    
    .sf-nav__menu > ul > li.dropdown-open .sf-nav__dropdown {
        max-height: 500px;
    }
    
    .sf-nav__dropdown li {
        display: block;
        border-bottom: 1px solid var(--sf-cream-dark);
    }
    
    .sf-nav__dropdown li:last-child {
        border-bottom: none;
    }
    
    .sf-nav__dropdown a {
        padding: 0.875rem var(--sf-space-lg);
        font-size: 1rem;
        display: block;
        color: var(--sf-ink-light);
    }
    
    .sf-nav__dropdown a:hover,
    .sf-nav__dropdown a:focus {
        background: var(--sf-cream-dark);
        color: var(--sf-purple-deep);
    }
    
    .sf-nav__cta {
        margin-top: var(--sf-space-md);
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* ===== BUTTONS ===== */
.sf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--sf-font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--sf-radius-md);
    transition: var(--sf-transition-base);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.sf-btn--primary {
    background: var(--sf-purple-deep);
    color: var(--sf-white);
}

.sf-btn--primary:hover,
.sf-btn--primary:focus {
    background: var(--sf-ink);
    transform: translateY(-2px);
    box-shadow: var(--sf-shadow-medium);
    color: var(--sf-white);
}

.sf-btn--secondary {
    background: transparent;
    color: var(--sf-purple-deep);
    border: 2px solid var(--sf-purple-light);
}

.sf-btn--secondary:hover,
.sf-btn--secondary:focus {
    background: var(--sf-purple-pale);
    border-color: var(--sf-purple-deep);
    color: var(--sf-purple-deep);
}

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

.sf-btn--outline:hover,
.sf-btn--outline:focus {
    border-color: var(--sf-purple-deep);
    color: var(--sf-purple-deep);
}

.sf-btn--white {
    background: var(--sf-white);
    color: var(--sf-purple-deep);
}

.sf-btn--white:hover,
.sf-btn--white:focus {
    background: var(--sf-cream);
    transform: translateY(-2px);
    box-shadow: var(--sf-shadow-medium);
}

/* ===== HERO SECTION ===== */
.sf-hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: var(--sf-space-lg);
    background: linear-gradient(180deg, var(--sf-cream) 0%, var(--sf-white) 100%);
    position: relative;
    overflow: hidden;
}

.sf-hero__wave {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.sf-hero__wave--1 {
    top: 10%;
    right: -10%;
    width: 60%;
    max-width: 800px;
    opacity: 0.22;
    transform: rotate(-10deg);
}

.sf-hero__wave--2 {
    bottom: -5%;
    left: -5%;
    width: 50%;
    max-width: 700px;
    opacity: 0.18;
    transform: rotate(5deg);
}

.sf-hero__wave--3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    opacity: 0.05;
}

.sf-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sf-space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.sf-hero__text {
    animation: sfFadeInUp 0.8s var(--sf-ease-smooth) forwards;
    opacity: 0;
}

@keyframes sfFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sf-hero__tagline {
    display: inline-block;
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--sf-purple-deep);
    margin-bottom: var(--sf-space-md);
    opacity: 0;
    animation: sfFadeInUp 0.8s var(--sf-ease-smooth) 0.2s forwards;
}

.sf-hero__title {
    margin-bottom: var(--sf-space-lg);
    opacity: 0;
    animation: sfFadeInUp 0.8s var(--sf-ease-smooth) 0.3s forwards;
}

.sf-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--sf-ink-muted);
    margin-bottom: var(--sf-space-lg);
    opacity: 0;
    animation: sfFadeInUp 0.8s var(--sf-ease-smooth) 0.4s forwards;
}

.sf-hero__subtitle strong {
    color: var(--sf-purple-deep);
    font-weight: 500;
}

.sf-hero__cta-group {
    display: flex;
    gap: var(--sf-space-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: sfFadeInUp 0.8s var(--sf-ease-smooth) 0.5s forwards;
}

.sf-hero__image {
    position: relative;
    opacity: 0;
    animation: sfFadeInUp 0.8s var(--sf-ease-smooth) 0.4s forwards;
}

.sf-hero__image-wrapper {
    position: relative;
    border-radius: var(--sf-radius-xl);
    overflow: hidden;
    box-shadow: var(--sf-shadow-elevated);
}

.sf-hero__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sf-purple-pale) 0%, transparent 60%);
    opacity: 0.3;
    z-index: 1;
}

.sf-hero__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.sf-hero__leaf {
    position: absolute;
    width: 120px;
    height: auto;
    bottom: -30px;
    left: -40px;
    z-index: 2;
    animation: sfFloatGentle 4s ease-in-out infinite;
}

@keyframes sfFloatGentle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

@media (max-width: 900px) {
    .sf-hero {
        padding-top: 100px;
        padding-bottom: var(--sf-space-md);
        min-height: auto;
    }
    
    .sf-hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--sf-space-lg);
    }
    
    .sf-hero__cta-group {
        justify-content: center;
    }
    
    .sf-hero__image {
        order: -1;
    }
    
    .sf-hero__image-wrapper img {
        height: 300px;
        border-radius: var(--sf-radius-lg);
    }
    
    .sf-hero__leaf {
        width: 60px;
        bottom: -15px;
        left: -15px;
    }
    
    /* Hide all waves on mobile - they look awkward */
    .sf-hero__wave--1,
    .sf-hero__wave--2,
    .sf-hero__wave--3 {
        display: none;
    }
}

@media (max-width: 600px) {
    .sf-hero {
        padding-top: 90px;
        padding-bottom: var(--sf-space-sm);
    }
    
    .sf-hero__content {
        gap: var(--sf-space-md);
    }
    
    .sf-hero__image-wrapper img {
        height: 250px;
    }
    
    .sf-hero__title {
        margin-bottom: var(--sf-space-md);
    }
    
    .sf-hero__subtitle {
        font-size: 1.0625rem;
        margin-bottom: var(--sf-space-md);
    }
    
    .sf-hero__leaf {
        width: 50px;
        bottom: -10px;
        left: -10px;
    }
}

/* ===== QUOTE SECTION ===== */
.sf-quote {
    background: var(--sf-cream);
    padding: var(--sf-space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.sf-quote__wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    opacity: 0.18;
    pointer-events: none;
}

.sf-quote__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sf-quote__text {
    font-family: var(--sf-font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--sf-ink);
    max-width: 800px;
    margin: 0 auto;
}

.sf-quote__text em {
    color: var(--sf-purple-deep);
    font-style: normal;
    font-weight: 500;
}

/* ===== HOOK SECTION ===== */
.sf-hook {
    background: var(--sf-white);
}

.sf-hook__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sf-space-2xl);
    align-items: center;
}

.sf-hook__text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--sf-space-sm);
    color: var(--sf-purple-deep);
}

.sf-hook__lead {
    font-size: 1.5rem;
    font-family: var(--sf-font-display);
    font-style: italic;
    color: var(--sf-ink);
    margin-bottom: var(--sf-space-md);
}

.sf-hook__text p {
    margin-bottom: var(--sf-space-md);
}

.sf-hook__cta-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--sf-purple-deep);
    margin-bottom: var(--sf-space-lg);
}

.sf-hook__image {
    position: relative;
}

.sf-hook__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-medium);
}

@media (max-width: 900px) {
    .sf-hook__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--sf-space-lg);
    }
    
    .sf-hook__image {
        order: -1;
    }
    
    .sf-hook__image img {
        height: 280px;
        border-radius: var(--sf-radius-lg);
    }
}

@media (max-width: 600px) {
    .sf-hook__content {
        gap: var(--sf-space-md);
    }
    
    .sf-hook__image img {
        height: 220px;
        border-radius: var(--sf-radius-md);
    }
    
    .sf-hook__text h2 {
        font-size: 1.5rem;
        margin-bottom: var(--sf-space-xs);
    }
    
    .sf-hook__lead {
        font-size: 1.125rem;
        margin-bottom: var(--sf-space-sm);
    }
}

/* ===== ABOUT PREVIEW ===== */
.sf-about-preview {
    background: var(--sf-white);
}

.sf-about-preview__content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--sf-space-2xl);
    align-items: center;
}

.sf-about-preview__image {
    position: relative;
}

.sf-about-preview__image-wrapper {
    position: relative;
    border-radius: var(--sf-radius-xl);
    overflow: hidden;
    box-shadow: var(--sf-shadow-medium);
}

.sf-about-preview__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
}

.sf-about-preview__leaf {
    position: absolute;
    width: 100px;
    bottom: -20px;
    right: -30px;
    opacity: 0.9;
}

.sf-about-preview__text h2 {
    margin-bottom: var(--sf-space-md);
}

.sf-about-preview__text h2 span {
    display: block;
    font-family: var(--sf-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sf-purple-deep);
    margin-bottom: var(--sf-space-xs);
}

.sf-about-preview__tagline {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--sf-purple-deep);
    margin-top: var(--sf-space-lg);
    margin-bottom: var(--sf-space-lg);
}

@media (max-width: 900px) {
    .sf-about-preview__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--sf-space-lg);
    }
    
    .sf-about-preview__image-wrapper img {
        height: 350px;
        border-radius: var(--sf-radius-lg);
    }
    
    .sf-about-preview__leaf {
        width: 70px;
        right: -15px;
    }
}

@media (max-width: 600px) {
    .sf-about-preview__content {
        gap: var(--sf-space-md);
    }
    
    .sf-about-preview__image-wrapper {
        border-radius: var(--sf-radius-lg);
    }
    
    .sf-about-preview__image-wrapper img {
        height: 280px;
        border-radius: var(--sf-radius-md);
    }
    
    .sf-about-preview__leaf {
        width: 50px;
        right: -10px;
        bottom: -10px;
    }
    
    .sf-about-preview__tagline {
        font-size: 1.0625rem;
        margin-top: var(--sf-space-md);
        margin-bottom: var(--sf-space-md);
    }
}

/* ===== SERVICES SECTION ===== */
.sf-services {
    background: linear-gradient(180deg, var(--sf-cream) 0%, var(--sf-cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

.sf-services__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.15;
    pointer-events: none;
}

.sf-services__header {
    text-align: center;
    margin-bottom: var(--sf-space-xl);
}

.sf-services__header h2 {
    margin-bottom: var(--sf-space-md);
}

.sf-services__header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.sf-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sf-space-lg);
    position: relative;
    z-index: 1;
}

.sf-service-card {
    background: var(--sf-white);
    padding: var(--sf-space-xl);
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-soft);
    transition: var(--sf-transition-base);
    position: relative;
    overflow: hidden;
}

.sf-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sf-purple-deep), var(--sf-purple-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--sf-transition-base);
}

.sf-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sf-shadow-elevated);
}

.sf-service-card:hover::before {
    transform: scaleX(1);
}

.sf-service-card__icon {
    width: 60px;
    height: 60px;
    background: var(--sf-purple-pale);
    border-radius: var(--sf-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sf-space-md);
}

.sf-service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--sf-purple-deep);
}

.sf-service-card h3 {
    margin-bottom: var(--sf-space-sm);
    color: var(--sf-ink);
}

.sf-service-card__subtitle {
    font-size: 0.9375rem;
    color: var(--sf-purple-muted);
    margin-bottom: var(--sf-space-md);
    font-weight: 500;
}

.sf-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--sf-space-xs);
    font-weight: 500;
    color: var(--sf-purple-deep);
    margin-top: var(--sf-space-sm);
}

.sf-service-card__link svg {
    width: 18px;
    height: 18px;
    transition: var(--sf-transition-base);
}

.sf-service-card__link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .sf-services__grid {
        grid-template-columns: 1fr;
        gap: var(--sf-space-md);
    }
    
    .sf-services__header {
        margin-bottom: var(--sf-space-lg);
    }
    
    .sf-service-card {
        padding: var(--sf-space-lg);
    }
}

/* ===== WHY SECTION ===== */
.sf-why {
    background: var(--sf-white);
    position: relative;
    overflow: hidden;
}

.sf-why__wave {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 600px;
    opacity: 0.15;
    pointer-events: none;
}

.sf-why__header {
    text-align: center;
    margin-bottom: var(--sf-space-xl);
}

.sf-why__header h2 {
    margin-bottom: var(--sf-space-sm);
}

.sf-why__header p {
    font-size: 1.125rem;
    color: var(--sf-ink-muted);
}

.sf-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sf-space-lg);
    position: relative;
    z-index: 1;
}

.sf-why-card {
    text-align: center;
    padding: var(--sf-space-lg);
}

.sf-why-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sf-purple-pale) 0%, var(--sf-cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sf-space-md);
    position: relative;
}

.sf-why-card__icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px dashed var(--sf-purple-light);
    border-radius: 50%;
    opacity: 0.5;
}

.sf-why-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--sf-purple-deep);
}

.sf-why-card h4 {
    color: var(--sf-purple-deep);
    margin-bottom: var(--sf-space-sm);
    font-family: var(--sf-font-display);
}

.sf-why-card p {
    font-size: 0.9375rem;
}

@media (max-width: 900px) {
    .sf-why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sf-space-md);
    }
    
    .sf-why__header {
        margin-bottom: var(--sf-space-lg);
    }
}

@media (max-width: 600px) {
    .sf-why__grid {
        grid-template-columns: 1fr;
        gap: var(--sf-space-sm);
    }
    
    .sf-why-card {
        padding: var(--sf-space-md);
    }
    
    .sf-why-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .sf-why-card__icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== DEFINITION SECTION ===== */
.sf-definition {
    background: var(--sf-cream);
    padding: var(--sf-space-2xl) 0;
}

.sf-definition__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sf-space-2xl);
    align-items: center;
}

.sf-definition__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-medium);
}

.sf-definition__content {
    background: var(--sf-white);
    padding: var(--sf-space-xl);
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-soft);
    text-align: center;
    border-left: 4px solid var(--sf-purple-deep);
}

.sf-definition__word {
    margin-bottom: var(--sf-space-md);
}

.sf-definition__term {
    font-family: var(--sf-font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--sf-purple-deep);
    display: block;
    margin-bottom: var(--sf-space-xs);
}

.sf-definition__pronunciation {
    font-family: var(--sf-font-body);
    font-size: 1rem;
    color: var(--sf-ink-muted);
    font-style: italic;
    margin-right: var(--sf-space-sm);
}

.sf-definition__pos {
    font-family: var(--sf-font-body);
    font-size: 0.875rem;
    color: var(--sf-ink-muted);
    font-style: italic;
}

.sf-definition__meanings {
    text-align: left;
    padding-left: var(--sf-space-lg);
    margin: 0;
}

.sf-definition__meanings li {
    font-size: 1.0625rem;
    color: var(--sf-ink-light);
    margin-bottom: var(--sf-space-sm);
    line-height: 1.6;
}

.sf-definition__meanings li:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .sf-definition__wrapper {
        grid-template-columns: 1fr;
        gap: var(--sf-space-lg);
    }
    
    .sf-definition__image {
        order: -1;
    }
    
    .sf-definition__image img {
        height: 280px;
        border-radius: var(--sf-radius-lg);
    }
}

@media (max-width: 600px) {
    .sf-definition__wrapper {
        gap: var(--sf-space-md);
    }
    
    .sf-definition__content {
        padding: var(--sf-space-md);
    }
    
    .sf-definition__image img {
        height: 220px;
        border-radius: var(--sf-radius-md);
    }
    
    .sf-definition__term {
        font-size: 1.375rem;
    }
}

/* ===== TESTIMONIALS ===== */
.sf-testimonials {
    background: linear-gradient(180deg, var(--sf-purple-deep) 0%, var(--sf-ink) 100%);
    color: var(--sf-white);
    position: relative;
    overflow: hidden;
}

.sf-testimonials__wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.12;
    pointer-events: none;
}

.sf-testimonials__header {
    text-align: center;
    margin-bottom: var(--sf-space-xl);
    position: relative;
    z-index: 1;
}

.sf-testimonials__header h2 {
    color: var(--sf-white);
    margin-bottom: var(--sf-space-sm);
}

.sf-testimonials__header p {
    color: var(--sf-purple-light);
}

.sf-testimonials__content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--sf-space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.sf-testimonials__image {
    position: relative;
}

.sf-testimonials__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-elevated);
}

.sf-testimonials__slider {
    position: relative;
    z-index: 1;
}

.sf-testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--sf-space-xl);
    border-radius: var(--sf-radius-xl);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sf-testimonial-card__quote {
    font-family: var(--sf-font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--sf-cream);
    margin-bottom: var(--sf-space-lg);
}

.sf-testimonial-card__author {
    font-weight: 500;
    color: var(--sf-white);
    margin-bottom: 0.25rem;
}

.sf-testimonial-card__role {
    font-size: 0.9375rem;
    color: var(--sf-purple-light);
}

.sf-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: var(--sf-space-sm);
    margin-top: var(--sf-space-lg);
}

.sf-testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--sf-transition-base);
    border: none;
    padding: 0;
}

.sf-testimonials__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.sf-testimonials__dot.active {
    background: var(--sf-white);
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .sf-testimonials__content {
        grid-template-columns: 1fr;
        gap: var(--sf-space-lg);
    }
    
    .sf-testimonials__header {
        margin-bottom: var(--sf-space-lg);
    }
    
    .sf-testimonials__image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .sf-testimonials__image img {
        height: 280px;
        border-radius: var(--sf-radius-lg);
    }
}

@media (max-width: 600px) {
    .sf-testimonials__content {
        gap: var(--sf-space-md);
    }
    
    .sf-testimonials__image {
        max-width: 100%;
    }
    
    .sf-testimonials__image img {
        height: 220px;
        border-radius: var(--sf-radius-md);
    }
    
    .sf-testimonial-card {
        padding: var(--sf-space-lg);
    }
    
    .sf-testimonial-card__quote {
        font-size: 1.0625rem;
    }
}

/* ===== PHOTO GALLERY ===== */
.sf-gallery {
    background: var(--sf-white);
    position: relative;
    overflow: hidden;
}

.sf-gallery__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.12;
    pointer-events: none;
}

.sf-gallery__header {
    text-align: center;
    margin-bottom: var(--sf-space-xl);
    position: relative;
    z-index: 1;
}

.sf-gallery__header h2 {
    margin-bottom: var(--sf-space-sm);
}

.sf-gallery__header p {
    font-size: 1.125rem;
    color: var(--sf-ink-muted);
}

.sf-gallery__slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.sf-gallery__track {
    display: flex;
    gap: var(--sf-space-md);
    transition: transform 0.5s var(--sf-ease-smooth);
    cursor: grab;
}

.sf-gallery__track:active {
    cursor: grabbing;
}

.sf-gallery__item {
    flex: 0 0 calc(33.333% - var(--sf-space-md));
    min-width: 300px;
    position: relative;
    border-radius: var(--sf-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.sf-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--sf-transition-slow);
}

.sf-gallery__item:hover img {
    transform: scale(1.05);
}

.sf-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 40, 50, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: var(--sf-transition-base);
}

.sf-gallery__item:hover::after {
    opacity: 1;
}

.sf-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sf-space-md);
    color: var(--sf-white);
    font-size: 0.9375rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: var(--sf-transition-base);
    z-index: 2;
}

.sf-gallery__item:hover .sf-gallery__caption {
    transform: translateY(0);
}

.sf-gallery__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sf-space-md);
    margin-top: var(--sf-space-lg);
}

.sf-gallery__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sf-purple-pale);
    color: var(--sf-purple-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sf-transition-base);
    cursor: pointer;
    border: none;
}

.sf-gallery__btn:hover {
    background: var(--sf-purple-deep);
    color: var(--sf-white);
}

.sf-gallery__btn svg {
    width: 20px;
    height: 20px;
}

.sf-gallery__indicators {
    display: flex;
    gap: var(--sf-space-xs);
}

.sf-gallery__indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sf-cream-dark);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--sf-transition-base);
}

.sf-gallery__indicator.active {
    background: var(--sf-purple-deep);
    transform: scale(1.25);
}

@media (max-width: 900px) {
    .sf-gallery__header {
        margin-bottom: var(--sf-space-lg);
    }
    
    .sf-gallery__item {
        flex: 0 0 calc(50% - var(--sf-space-sm));
        min-width: 250px;
        border-radius: var(--sf-radius-md);
    }
    
    .sf-gallery__item img {
        border-radius: var(--sf-radius-md);
    }
    
    .sf-gallery__controls {
        margin-top: var(--sf-space-md);
    }
}

@media (max-width: 600px) {
    .sf-gallery__item {
        flex: 0 0 85%;
        min-width: 0;
        border-radius: var(--sf-radius-md);
    }
    
    .sf-gallery__item img {
        border-radius: var(--sf-radius-md);
    }
    
    .sf-gallery__btn {
        width: 40px;
        height: 40px;
    }
}

/* ===== CTA SECTION ===== */
.sf-cta {
    background: var(--sf-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sf-cta__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0.16;
    pointer-events: none;
}

.sf-cta__content {
    position: relative;
    z-index: 1;
}

.sf-cta h2 {
    margin-bottom: var(--sf-space-md);
}

.sf-cta p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--sf-space-lg);
}

.sf-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--sf-space-md);
    flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.sf-contact {
    background: linear-gradient(180deg, var(--sf-cream) 0%, var(--sf-cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

.sf-contact__wave {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 600px;
    opacity: 0.12;
    pointer-events: none;
}

.sf-contact__header {
    text-align: center;
    margin-bottom: var(--sf-space-xl);
}

.sf-contact__header h2 {
    margin-bottom: var(--sf-space-sm);
}

.sf-contact__header p {
    font-size: 1.125rem;
    color: var(--sf-ink-muted);
    max-width: 600px;
    margin: 0 auto;
}

.sf-contact__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--sf-space-2xl);
    align-items: start;
}

.sf-contact__form-wrapper {
    background: var(--sf-white);
    padding: var(--sf-space-xl);
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-medium);
}

.sf-contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--sf-space-md);
}

.sf-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sf-space-xs);
}

.sf-form-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sf-ink);
}

.sf-form-group label .required {
    color: var(--sf-salmon);
}

.sf-form-input,
.sf-form-textarea,
.sf-form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--sf-font-body);
    font-size: 1rem;
    color: var(--sf-ink);
    background: var(--sf-cream);
    border: 2px solid transparent;
    border-radius: var(--sf-radius-md);
    transition: var(--sf-transition-base);
}

.sf-form-input:focus,
.sf-form-textarea:focus,
.sf-form-select:focus {
    outline: none;
    border-color: var(--sf-purple-light);
    background: var(--sf-white);
    box-shadow: 0 0 0 4px var(--sf-purple-pale);
}

.sf-form-input::placeholder,
.sf-form-textarea::placeholder {
    color: var(--sf-ink-muted);
}

.sf-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.sf-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B6373'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.sf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sf-space-md);
}

.sf-form-submit {
    margin-top: var(--sf-space-sm);
}

.sf-form-submit .sf-btn {
    width: 100%;
    padding: 1rem 2rem;
}

.sf-contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--sf-space-lg);
}

.sf-contact__info-card {
    background: var(--sf-white);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    box-shadow: var(--sf-shadow-soft);
}

.sf-contact__info-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--sf-space-md);
    color: var(--sf-purple-deep);
}

.sf-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--sf-space-sm);
    margin-bottom: var(--sf-space-md);
}

.sf-contact__detail:last-child {
    margin-bottom: 0;
}

.sf-contact__detail-icon {
    width: 40px;
    height: 40px;
    background: var(--sf-purple-pale);
    border-radius: var(--sf-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-contact__detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--sf-purple-deep);
}

.sf-contact__detail-content h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sf-ink);
    margin-bottom: 2px;
    font-family: var(--sf-font-body);
}

.sf-contact__detail-content p,
.sf-contact__detail-content a {
    font-size: 0.9375rem;
    color: var(--sf-ink-muted);
}

.sf-contact__detail-content a:hover {
    color: var(--sf-purple-deep);
}

.sf-contact__hours {
    margin-top: var(--sf-space-md);
    padding-top: var(--sf-space-md);
    border-top: 1px solid var(--sf-cream-dark);
}

.sf-contact__hours h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--sf-ink);
    margin-bottom: var(--sf-space-xs);
    font-family: var(--sf-font-body);
}

.sf-contact__hours p {
    font-size: 0.875rem;
    color: var(--sf-ink-muted);
    margin-bottom: 2px;
}

.sf-contact__socials {
    display: flex;
    gap: var(--sf-space-sm);
    margin-top: var(--sf-space-md);
}

.sf-contact__social {
    width: 44px;
    height: 44px;
    background: var(--sf-purple-pale);
    border-radius: var(--sf-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sf-transition-base);
}

.sf-contact__social:hover {
    background: var(--sf-purple-deep);
}

.sf-contact__social svg {
    width: 20px;
    height: 20px;
    fill: var(--sf-purple-deep);
    transition: var(--sf-transition-base);
}

.sf-contact__social:hover svg {
    fill: var(--sf-white);
}

@media (max-width: 900px) {
    .sf-contact__content {
        grid-template-columns: 1fr;
    }
    
    .sf-contact__info {
        order: -1;
    }
}

@media (max-width: 600px) {
    .sf-form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.sf-footer {
    background: var(--sf-ink);
    color: var(--sf-cream);
    padding: var(--sf-space-2xl) 0 var(--sf-space-lg);
}

.sf-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--sf-space-xl);
    margin-bottom: var(--sf-space-xl);
}

.sf-footer__brand {
    max-width: 300px;
}

.sf-footer__logo {
    height: 60px;
    margin-bottom: var(--sf-space-md);
}

.sf-footer__verse {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--sf-purple-light);
    line-height: 1.6;
}

.sf-footer__verse span {
    font-style: normal;
    color: var(--sf-ink-muted);
}

.sf-footer__column h4 {
    color: var(--sf-white);
    font-size: 1rem;
    margin-bottom: var(--sf-space-md);
    font-family: var(--sf-font-body);
    font-weight: 500;
}

.sf-footer__links li {
    margin-bottom: var(--sf-space-sm);
}

.sf-footer__links a {
    font-size: 0.9375rem;
    color: var(--sf-purple-light);
}

.sf-footer__links a:hover,
.sf-footer__links a:focus {
    color: var(--sf-white);
}

.sf-footer__contact p {
    font-size: 0.9375rem;
    color: var(--sf-purple-light);
    margin-bottom: var(--sf-space-sm);
}

.sf-footer__contact a {
    color: var(--sf-purple-light);
}

.sf-footer__contact a:hover,
.sf-footer__contact a:focus {
    color: var(--sf-white);
}

.sf-footer__socials {
    display: flex;
    gap: var(--sf-space-sm);
    margin-top: var(--sf-space-md);
}

.sf-footer__social {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--sf-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sf-transition-base);
}

.sf-footer__social:hover,
.sf-footer__social:focus {
    background: var(--sf-purple-deep);
    transform: translateY(-2px);
}

.sf-footer__social svg {
    width: 18px;
    height: 18px;
    fill: var(--sf-white);
}

.sf-footer__disclaimer {
    padding-top: var(--sf-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sf-footer__disclaimer-text {
    font-size: 0.8125rem;
    color: var(--sf-ink-muted);
    max-width: 800px;
    margin: 0 auto var(--sf-space-md);
    text-align: center;
    line-height: 1.6;
}

.sf-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--sf-ink-muted);
}

.sf-footer__bottom a {
    color: var(--sf-purple-light);
}

.sf-footer__bottom a:hover,
.sf-footer__bottom a:focus {
    color: var(--sf-white);
}

@media (max-width: 900px) {
    .sf-footer__main {
        grid-template-columns: 1fr 1fr;
    }
    
    .sf-footer__brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }
    
    .sf-footer__logo {
        margin: 0 auto var(--sf-space-md);
    }
}

@media (max-width: 600px) {
    .sf-footer__main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sf-footer__socials {
        justify-content: center;
    }
    
    .sf-footer__bottom {
        flex-direction: column;
        gap: var(--sf-space-sm);
    }
}

/* ===== PAGE TEMPLATES ===== */
.sf-page-header {
    padding: 160px 0 var(--sf-space-2xl);
    background: linear-gradient(180deg, var(--sf-cream) 0%, var(--sf-white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sf-page-header__wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    opacity: 0.18;
    pointer-events: none;
}

.sf-page-header h1 {
    position: relative;
    z-index: 1;
}

.sf-page-content {
    padding: var(--sf-space-2xl) 0;
}

.sf-page-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

/* WordPress Content Styles */
.sf-page-content__inner h2,
.sf-page-content__inner h3,
.sf-page-content__inner h4 {
    margin-top: var(--sf-space-xl);
    margin-bottom: var(--sf-space-md);
}

.sf-page-content__inner h2:first-child,
.sf-page-content__inner h3:first-child {
    margin-top: 0;
}

.sf-page-content__inner ul,
.sf-page-content__inner ol {
    margin-bottom: var(--sf-space-md);
    padding-left: var(--sf-space-lg);
}

.sf-page-content__inner ul {
    list-style: disc;
}

.sf-page-content__inner ol {
    list-style: decimal;
}

.sf-page-content__inner li {
    margin-bottom: var(--sf-space-xs);
    color: var(--sf-ink-light);
}

.sf-page-content__inner blockquote {
    margin: var(--sf-space-lg) 0;
    padding: var(--sf-space-lg);
    background: var(--sf-cream);
    border-left: 4px solid var(--sf-purple-deep);
    border-radius: 0 var(--sf-radius-md) var(--sf-radius-md) 0;
}

.sf-page-content__inner blockquote p {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--sf-ink);
    margin: 0;
}

.sf-page-content__inner img {
    border-radius: var(--sf-radius-lg);
    margin: var(--sf-space-lg) 0;
}

.sf-page-content__inner a {
    color: var(--sf-purple-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sf-page-content__inner a:hover,
.sf-page-content__inner a:focus {
    color: var(--sf-ink);
}

/* ===== 404 PAGE ===== */
.sf-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sf-space-3xl) var(--sf-space-md);
}

.sf-404 h1 {
    font-size: 8rem;
    color: var(--sf-purple-pale);
    line-height: 1;
    margin-bottom: var(--sf-space-md);
}

.sf-404 h2 {
    margin-bottom: var(--sf-space-md);
}

.sf-404 p {
    margin-bottom: var(--sf-space-lg);
}

/* ===== ANIMATIONS ===== */
.sf-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--sf-ease-smooth), transform 0.6s var(--sf-ease-smooth);
}

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

.sf-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.sf-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.sf-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.sf-stagger > *:nth-child(4) { transition-delay: 0.4s; }

/* ===== ACCESSIBILITY ===== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--sf-cream);
    border-radius: var(--sf-radius-sm);
    box-shadow: var(--sf-shadow-medium);
    clip: auto !important;
    color: var(--sf-ink);
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--sf-purple-deep);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== COMPREHENSIVE MOBILE FIXES ===== */
@media (max-width: 600px) {
    /* Ensure all images have consistent rounded corners on mobile */
    .sf-hero__image-wrapper,
    .sf-hook__image img,
    .sf-about-preview__image-wrapper,
    .sf-about-preview__image-wrapper img,
    .sf-definition__image img,
    .sf-testimonials__image img,
    .sf-gallery__item,
    .sf-gallery__item img {
        border-radius: var(--sf-radius-md) !important;
    }
    
    /* Reduce all header margins */
    .sf-services__header,
    .sf-why__header,
    .sf-gallery__header,
    .sf-testimonials__header,
    .sf-cta h2 {
        margin-bottom: var(--sf-space-md);
    }
    
    /* Reduce gaps between grid/flex items */
    .sf-hook__content,
    .sf-about-preview__content,
    .sf-definition__wrapper,
    .sf-testimonials__content {
        gap: var(--sf-space-md);
    }
    
    /* Reduce button size on mobile */
    .sf-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Tighter CTA section */
    .sf-cta p {
        margin-bottom: var(--sf-space-md);
    }
    
    .sf-cta__buttons {
        gap: var(--sf-space-sm);
    }
    
    /* Reduce quote section padding */
    .sf-quote {
        padding: var(--sf-space-lg) 0;
    }
    
    /* Fix container padding on mobile */
    .sf-container {
        padding: 0 var(--sf-space-sm);
    }
}

/* ===== PAGE TEMPLATE STYLES ===== */

/* Page Header Label */
.sf-page-header__label {
    display: inline-block;
    font-family: var(--sf-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sf-purple-deep);
    margin-bottom: var(--sf-space-sm);
}

.sf-page-header__subtitle {
    font-size: 1.25rem;
    color: var(--sf-ink-muted);
    max-width: 700px;
    margin: var(--sf-space-md) auto 0;
}

/* Section Variations */
.sf-section--cream { background: var(--sf-cream); }
.sf-section-title { text-align: center; margin-bottom: var(--sf-space-xl); }
.sf-section-subtitle { color: var(--sf-ink-muted); margin-bottom: var(--sf-space-lg); }

/* Text utilities */
.sf-text-large { font-size: 1.1875rem; }
.sf-text-center { text-align: center; }
.sf-text-highlight {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--sf-purple-deep);
}

/* About Intro */
.sf-about-intro {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--sf-space-2xl);
    align-items: start;
}
.sf-about-intro__image img {
    width: 100%;
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-medium);
}
.sf-about-intro__text h2 { color: var(--sf-purple-deep); margin-bottom: var(--sf-space-md); }

@media (max-width: 900px) {
    .sf-about-intro { grid-template-columns: 1fr; text-align: center; }
    .sf-about-intro__image { max-width: 300px; margin: 0 auto; }
}

/* Credentials List */
.sf-credentials-list { max-width: 700px; margin: 0 auto; }
.sf-credential-item {
    background: var(--sf-white);
    padding: var(--sf-space-md) var(--sf-space-lg);
    border-radius: var(--sf-radius-md);
    margin-bottom: var(--sf-space-sm);
    border-left: 4px solid var(--sf-purple-deep);
    box-shadow: var(--sf-shadow-soft);
}
.sf-section--cream .sf-credential-item { background: var(--sf-white); }
.sf-credential-item strong { color: var(--sf-ink); display: block; margin-bottom: 0.25rem; }
.sf-credential-item span { font-size: 0.9375rem; color: var(--sf-ink-muted); }

/* Prose */
.sf-prose p { margin-bottom: var(--sf-space-md); }
.sf-tagline {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--sf-purple-deep);
    margin-top: var(--sf-space-lg);
}
.sf-tagline-sub { font-style: italic; color: var(--sf-ink-muted); }
.sf-signature {
    font-family: var(--sf-font-display);
    font-style: italic;
    margin-top: var(--sf-space-lg);
}

/* Quote Author */
.sf-quote__author {
    font-weight: 600;
    color: var(--sf-purple-deep);
    margin-top: var(--sf-space-md);
}

/* Pullquote */
.sf-pullquote {
    background: linear-gradient(135deg, var(--sf-purple-pale) 0%, var(--sf-cream) 100%);
    padding: var(--sf-space-xl);
    border-radius: var(--sf-radius-lg);
    margin: var(--sf-space-lg) 0;
    text-align: center;
}
.sf-pullquote p {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--sf-purple-deep);
    margin: 0;
}
.sf-pullquote h4 {
    color: var(--sf-purple-deep);
    margin-bottom: var(--sf-space-sm);
}

/* Callout Box */
.sf-callout-box {
    background: linear-gradient(135deg, var(--sf-purple-pale) 0%, var(--sf-cream) 100%);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    margin: var(--sf-space-lg) 0;
    text-align: center;
}
.sf-callout-box p { margin: 0; }
.sf-callout-box h3, .sf-callout-box h4 { color: var(--sf-purple-deep); margin-bottom: var(--sf-space-sm); }

/* Lists */
.sf-check-list {
    list-style: none;
    padding: 0;
}
.sf-check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--sf-space-sm);
    color: var(--sf-ink-light);
}
.sf-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sf-purple-deep);
    font-weight: bold;
}

.sf-bullet-list {
    list-style: disc;
    padding-left: var(--sf-space-lg);
    margin-bottom: var(--sf-space-md);
}
.sf-bullet-list li {
    margin-bottom: var(--sf-space-xs);
    color: var(--sf-ink-light);
}

.sf-numbered-list {
    list-style: decimal;
    padding-left: var(--sf-space-lg);
}
.sf-numbered-list li {
    margin-bottom: var(--sf-space-sm);
    color: var(--sf-ink-light);
}

/* Benefit Grid */
.sf-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sf-space-md);
    list-style: none;
    padding: 0;
}
.sf-benefit-grid li {
    background: var(--sf-white);
    padding: var(--sf-space-md);
    border-radius: var(--sf-radius-md);
    border-left: 3px solid var(--sf-purple-deep);
    color: var(--sf-ink-light);
}
.sf-section--cream .sf-benefit-grid li { background: var(--sf-white); }
@media (max-width: 600px) { .sf-benefit-grid { grid-template-columns: 1fr; } }

/* Tag Grid */
.sf-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sf-space-sm);
    justify-content: center;
}
.sf-tag-grid span {
    background: var(--sf-white);
    padding: 0.5rem 1rem;
    border-radius: var(--sf-radius-md);
    font-size: 0.9375rem;
    color: var(--sf-ink-light);
}
.sf-section--cream .sf-tag-grid span { background: var(--sf-white); }

/* Process Steps */
.sf-process-step {
    background: var(--sf-cream);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    margin-bottom: var(--sf-space-md);
}
.sf-process-step h3 { color: var(--sf-purple-deep); margin-bottom: var(--sf-space-sm); }
.sf-note { font-size: 0.9375rem; font-style: italic; color: var(--sf-ink-muted); }

/* Pricing Grid */
.sf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--sf-space-lg);
}
.sf-pricing-item {
    background: var(--sf-white);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    text-align: center;
    box-shadow: var(--sf-shadow-soft);
}
.sf-section--cream .sf-pricing-item { background: var(--sf-white); }
.sf-pricing-item h4 { margin-bottom: var(--sf-space-sm); }
.sf-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--sf-purple-deep);
}

/* Testimonial Blocks */
.sf-testimonial-block {
    background: var(--sf-white);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    margin-bottom: var(--sf-space-lg);
    box-shadow: var(--sf-shadow-soft);
}
.sf-section--cream .sf-testimonial-block { background: var(--sf-white); }
.sf-testimonial-quote {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--sf-ink);
    margin-bottom: var(--sf-space-md);
}
.sf-testimonial-author {
    font-weight: 600;
    color: var(--sf-purple-deep);
}

/* CTA Buttons Group */
.sf-cta-buttons {
    display: flex;
    gap: var(--sf-space-md);
    flex-wrap: wrap;
    justify-content: center;
}

/* Services Grid for overview pages */
.sf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--sf-space-xl);
}
.sf-service-card {
    background: var(--sf-white);
    border-radius: var(--sf-radius-xl);
    overflow: hidden;
    box-shadow: var(--sf-shadow-soft);
    transition: var(--sf-transition-base);
}
.sf-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sf-shadow-medium);
}
.sf-service-card__content {
    padding: var(--sf-space-xl);
}
.sf-service-card h2 {
    font-size: 1.5rem;
    margin-bottom: var(--sf-space-sm);
}
.sf-service-card__tagline {
    font-weight: 500;
    color: var(--sf-purple-deep);
    margin-bottom: var(--sf-space-md);
}
.sf-service-card p { margin-bottom: var(--sf-space-md); }
.sf-service-card h4 { margin-top: var(--sf-space-md); margin-bottom: var(--sf-space-sm); }

/* Meet Angie Section */
.sf-meet-angie {
    background: linear-gradient(180deg, var(--sf-cream-warm) 0%, var(--sf-cream) 100%);
}
.sf-meet-angie__content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--sf-space-xl);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.sf-meet-angie__image img {
    width: 100%;
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-medium);
}
.sf-meet-angie__text h3 { margin-bottom: var(--sf-space-sm); }
.sf-meet-angie__text p { margin-bottom: var(--sf-space-md); }

@media (max-width: 900px) {
    .sf-meet-angie__content { grid-template-columns: 1fr; text-align: center; }
    .sf-meet-angie__image { max-width: 200px; margin: 0 auto; }
}

/* FAQ */
.sf-faq-list { }
.sf-faq-item {
    margin-bottom: var(--sf-space-xl);
    padding-bottom: var(--sf-space-xl);
    border-bottom: 1px solid var(--sf-cream-dark);
}
.sf-faq-item:last-child { border-bottom: none; }
.sf-faq-item h2 {
    font-size: 1.5rem;
    margin-bottom: var(--sf-space-md);
    color: var(--sf-purple-deep);
}
.sf-faq-item h3 {
    font-size: 1.125rem;
    margin-top: var(--sf-space-lg);
    margin-bottom: var(--sf-space-sm);
}

/* Resources */
.sf-resource-item {
    background: var(--sf-white);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    margin-bottom: var(--sf-space-md);
    box-shadow: var(--sf-shadow-soft);
}
.sf-section--cream .sf-resource-item { background: var(--sf-white); }
.sf-resource-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--sf-space-sm);
    color: var(--sf-purple-deep);
}
.sf-resource-item p:last-child { margin-bottom: 0; }

/* Contact Grid */
.sf-contact__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--sf-space-2xl);
}
.sf-contact__form h2 { margin-bottom: var(--sf-space-lg); }
.sf-contact__form h3 { margin-top: var(--sf-space-lg); margin-bottom: var(--sf-space-sm); font-size: 1.125rem; }
.sf-form { margin-top: var(--sf-space-xl); }
.sf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sf-space-md); }
.sf-form-group { margin-bottom: var(--sf-space-md); }
.sf-form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; color: var(--sf-ink); }
.sf-form-group label .required { color: var(--sf-salmon); }
.sf-form-input, .sf-form-select, .sf-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--sf-cream-dark);
    border-radius: var(--sf-radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--sf-transition-base);
}
.sf-form-input:focus, .sf-form-select:focus, .sf-form-textarea:focus {
    outline: none;
    border-color: var(--sf-purple-deep);
    box-shadow: 0 0 0 3px var(--sf-purple-pale);
}
.sf-form-textarea { min-height: 150px; resize: vertical; }

.sf-contact__info-card {
    background: var(--sf-white);
    padding: var(--sf-space-xl);
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-soft);
    position: sticky;
    top: 120px;
}
.sf-contact__info-card h3 { margin-bottom: var(--sf-space-lg); }
.sf-contact__detail {
    display: flex;
    gap: var(--sf-space-md);
    margin-bottom: var(--sf-space-md);
}
.sf-contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--sf-purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sf-contact__detail-icon svg { width: 20px; height: 20px; color: var(--sf-purple-deep); }
.sf-contact__detail-content h4 { font-size: 0.875rem; margin-bottom: 0.25rem; }
.sf-contact__detail-content a, .sf-contact__detail-content p { color: var(--sf-ink-light); font-size: 0.9375rem; margin: 0; }
.sf-contact__hours { margin-top: var(--sf-space-lg); padding-top: var(--sf-space-lg); border-top: 1px solid var(--sf-cream-dark); }
.sf-contact__hours h4 { margin-bottom: var(--sf-space-sm); }
.sf-contact__hours p { margin-bottom: 0.25rem; }
.sf-contact__socials { display: flex; gap: var(--sf-space-sm); margin-top: var(--sf-space-lg); }
.sf-contact__social {
    width: 40px;
    height: 40px;
    background: var(--sf-purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sf-transition-base);
}
.sf-contact__social:hover { background: var(--sf-purple-deep); }
.sf-contact__social:hover svg { fill: var(--sf-white); }
.sf-contact__social svg { width: 18px; height: 18px; fill: var(--sf-purple-deep); }

@media (max-width: 900px) {
    .sf-contact__grid { grid-template-columns: 1fr; }
    .sf-form-row { grid-template-columns: 1fr; }
    .sf-contact__info-card { position: static; }
}

/* ===== NEW PAGE TEMPLATE STYLES ===== */

/* Split Layouts */
.sf-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sf-space-2xl);
    align-items: center;
}
.sf-split--image-left .sf-split__image { order: -1; }
.sf-split__image img {
    width: 100%;
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-medium);
}
.sf-split__text h2 { margin-bottom: var(--sf-space-md); }
.sf-split__text h3 { margin-top: var(--sf-space-lg); margin-bottom: var(--sf-space-sm); }
@media (max-width: 900px) {
    .sf-split { grid-template-columns: 1fr; gap: var(--sf-space-xl); }
    .sf-split--image-left .sf-split__image { order: 0; }
    .sf-split__image { max-width: 400px; margin: 0 auto; }
}

/* Card Row */
.sf-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sf-space-xl);
}
.sf-card {
    background: var(--sf-white);
    border-radius: var(--sf-radius-xl);
    overflow: hidden;
    box-shadow: var(--sf-shadow-soft);
    transition: var(--sf-transition-base);
    display: flex;
    flex-direction: column;
}
.sf-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sf-shadow-medium);
}
.sf-card__image {
    height: 200px;
    overflow: hidden;
}
.sf-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sf-card__body {
    padding: var(--sf-space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.sf-card__body h3 { margin-bottom: var(--sf-space-xs); }
.sf-card__tagline {
    color: var(--sf-purple-deep);
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: var(--sf-space-sm);
}
.sf-card__body p { margin-bottom: var(--sf-space-md); flex: 1; }
.sf-card__body .sf-btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 900px) {
    .sf-card-row { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}

/* Section Variants */
.sf-section--purple-light { 
    background: var(--sf-purple-pale);
    position: relative;
}
.sf-section--purple-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,10 90,90 10,90' fill='%23544867' fill-opacity='0.04'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}
.sf-section--purple-light > * { position: relative; z-index: 1; }

.sf-section--purple-gradient {
    background: linear-gradient(135deg, var(--sf-purple-deep) 0%, var(--sf-ink) 100%);
    color: var(--sf-white);
    position: relative;
    overflow: hidden;
}
.sf-section--purple-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,10 90,90 10,90' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}
.sf-section--purple-gradient > * { position: relative; z-index: 1; }
.sf-section--purple-gradient h2,
.sf-section--purple-gradient h3 { color: var(--sf-white); }
.sf-section--purple-gradient p,
.sf-section--purple-gradient li { color: rgba(255,255,255,0.9); }
.sf-section--purple-gradient .sf-blockquote p { color: var(--sf-white); }
.sf-section--purple-gradient .sf-blockquote cite { color: rgba(255,255,255,0.7); }

/* Process Steps */
.sf-process { max-width: 600px; margin: 0 auto; }
.sf-process__step {
    display: flex;
    gap: var(--sf-space-lg);
    margin-bottom: var(--sf-space-xl);
    align-items: flex-start;
}
.sf-process__num {
    width: 48px;
    height: 48px;
    background: var(--sf-purple-deep);
    color: var(--sf-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}
.sf-process__step h3 { margin-bottom: var(--sf-space-xs); }

/* Pricing Row */
.sf-pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sf-space-lg);
}
.sf-pricing-item {
    background: var(--sf-white);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    text-align: center;
    box-shadow: var(--sf-shadow-soft);
}
.sf-pricing-item h4 { margin-bottom: var(--sf-space-sm); font-size: 1rem; }
.sf-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sf-purple-deep);
    margin-bottom: var(--sf-space-xs);
}

/* Testimonial Featured */
.sf-testimonial-featured {
    background: var(--sf-white);
    padding: var(--sf-space-xl);
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-soft);
    text-align: center;
}
.sf-testimonial-featured .sf-testimonial-quote {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--sf-space-md);
}
.sf-testimonial-featured .sf-testimonial-author {
    font-weight: 600;
    color: var(--sf-purple-deep);
}

/* Testimonial Grid */
.sf-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sf-space-lg);
}
@media (max-width: 700px) { .sf-testimonial-grid { grid-template-columns: 1fr; } }

/* Testimonial List */
.sf-testimonial-list { }
.sf-testimonial-list .sf-testimonial-block { margin-bottom: var(--sf-space-lg); }

/* Icon Grid */
.sf-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sf-space-md);
}
.sf-icon-item {
    background: var(--sf-white);
    padding: var(--sf-space-md);
    border-radius: var(--sf-radius-md);
    text-align: center;
    border-left: 3px solid var(--sf-purple-deep);
}

/* Benefit Grid Dark */
.sf-benefit-grid--dark {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sf-space-md);
}
.sf-benefit-grid--dark .sf-benefit-item {
    background: rgba(255,255,255,0.1);
    color: var(--sf-white);
    border-left-color: rgba(255,255,255,0.5);
}
@media (max-width: 600px) { .sf-benefit-grid--dark { grid-template-columns: 1fr; } }

/* Two Column */
.sf-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sf-space-xl);
}
.sf-two-col h3 { margin-bottom: var(--sf-space-sm); }
@media (max-width: 700px) { .sf-two-col { grid-template-columns: 1fr; } }

/* Numbered Cards */
.sf-numbered-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sf-space-lg);
}
.sf-numbered-card {
    background: rgba(255,255,255,0.1);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    text-align: center;
}
.sf-numbered-card__num {
    width: 40px;
    height: 40px;
    background: var(--sf-white);
    color: var(--sf-purple-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: var(--sf-space-sm);
}
.sf-numbered-card p { color: rgba(255,255,255,0.9); margin: 0; }
@media (max-width: 800px) { .sf-numbered-cards { grid-template-columns: 1fr; } }

/* Resource List */
.sf-resource-list { }
.sf-resource {
    background: var(--sf-white);
    padding: var(--sf-space-lg);
    border-radius: var(--sf-radius-lg);
    margin-bottom: var(--sf-space-md);
    box-shadow: var(--sf-shadow-soft);
}
.sf-resource h3 { margin-bottom: var(--sf-space-xs); color: var(--sf-purple-deep); }
.sf-resource__author { font-style: italic; color: var(--sf-ink-muted); margin-bottom: var(--sf-space-sm); }
.sf-resource p:last-child { margin-bottom: 0; }

/* FAQ */
.sf-faq { }
.sf-faq__item {
    padding-bottom: var(--sf-space-xl);
    margin-bottom: var(--sf-space-xl);
    border-bottom: 1px solid var(--sf-cream-dark);
}
.sf-faq__item:last-child { border-bottom: none; }
.sf-faq__item h2 { color: var(--sf-purple-deep); margin-bottom: var(--sf-space-md); }

/* Link List */
.sf-link-list { }
.sf-link-item {
    display: block;
    background: var(--sf-white);
    padding: var(--sf-space-md) var(--sf-space-lg);
    border-radius: var(--sf-radius-md);
    margin-bottom: var(--sf-space-sm);
    color: var(--sf-purple-deep);
    font-weight: 500;
    transition: var(--sf-transition-base);
}
.sf-link-item:hover {
    background: var(--sf-purple-pale);
    transform: translateX(4px);
}

/* Credentials */
.sf-credentials { max-width: 700px; margin: 0 auto; }
.sf-credential {
    background: var(--sf-white);
    padding: var(--sf-space-md) var(--sf-space-lg);
    border-radius: var(--sf-radius-md);
    margin-bottom: var(--sf-space-sm);
    border-left: 4px solid var(--sf-purple-deep);
}
.sf-credential strong { display: block; color: var(--sf-ink); }
.sf-credential span { font-size: 0.9375rem; color: var(--sf-ink-muted); }

/* Blockquote */
.sf-blockquote {
    text-align: center;
    padding: var(--sf-space-xl);
}
.sf-blockquote p {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--sf-white);
    margin: 0;
}

/* Text Utilities */
.sf-text-muted { color: var(--sf-ink-muted); }
.sf-tagline {
    font-family: var(--sf-font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--sf-purple-deep);
    margin-top: var(--sf-space-xl);
}
.sf-tagline-sub { font-style: italic; color: var(--sf-ink-muted); }
.sf-signature {
    font-family: var(--sf-font-display);
    font-style: italic;
    margin-top: var(--sf-space-lg);
}

/* Contact Grid */
.sf-contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--sf-space-2xl);
}
.sf-contact-form h2 { margin-bottom: var(--sf-space-lg); }
.sf-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sf-space-md);
}
.sf-form__group { margin-bottom: var(--sf-space-md); }
.sf-form__group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.sf-form__group label span { color: var(--sf-salmon); }
.sf-form__group input,
.sf-form__group select,
.sf-form__group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--sf-cream-dark);
    border-radius: var(--sf-radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--sf-transition-base);
}
.sf-form__group input:focus,
.sf-form__group select:focus,
.sf-form__group textarea:focus {
    outline: none;
    border-color: var(--sf-purple-deep);
    box-shadow: 0 0 0 3px var(--sf-purple-pale);
}
.sf-contact-card {
    background: var(--sf-white);
    padding: var(--sf-space-xl);
    border-radius: var(--sf-radius-xl);
    box-shadow: var(--sf-shadow-soft);
    position: sticky;
    top: 120px;
}
.sf-contact-card h3 { margin-bottom: var(--sf-space-lg); }
.sf-contact-item { margin-bottom: var(--sf-space-md); }
.sf-contact-item strong { display: block; margin-bottom: 0.25rem; }
.sf-contact-item a { color: var(--sf-purple-deep); }
.sf-contact-item p { margin: 0; color: var(--sf-ink-light); }
.sf-social-links {
    display: flex;
    gap: var(--sf-space-sm);
    margin-top: var(--sf-space-lg);
    padding-top: var(--sf-space-lg);
    border-top: 1px solid var(--sf-cream-dark);
}
.sf-social-links a {
    width: 40px;
    height: 40px;
    background: var(--sf-purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sf-transition-base);
}
.sf-social-links a:hover { background: var(--sf-purple-deep); }
.sf-social-links a:hover svg { fill: var(--sf-white); }
.sf-social-links svg { width: 18px; height: 18px; fill: var(--sf-purple-deep); }
@media (max-width: 900px) {
    .sf-contact-grid { grid-template-columns: 1fr; }
    .sf-form__row { grid-template-columns: 1fr; }
    .sf-contact-card { position: static; }
}
