/* ===================================
   SKIP LINK
   =================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: #080f09;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 9999;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid #080f09;
    outline-offset: 2px;
}

/* ===================================
   GOOGLE FONTS
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ===================================
   DESIGN TOKENS
   =================================== */
:root {
    --plum-darkest: #faf7f2;
    --plum-dark:    #f5f2ea;
    --plum-mid:     #eceee6;
    --forest-dark:  #1e3020;
    --gold:         #c9a052;
    --gold-dark:    #a8822e;
    --gold-light:   #ddb96a;
    --gold-glow:    rgba(201, 160, 82, 0.18);
    --cream:        #1e2e1c;
    --cream-dark:   #3d5a3a;
    --text-muted:   #3e5440;
    --text-light:   #3e5440;
    --glass-bg:     rgba(0, 0, 0, 0.04);
    --glass-border: rgba(42, 61, 40, 0.12);
    --green-accent: #4a7040;
    --green-muted:  rgba(74, 112, 64, 0.1);

    --font-heading: 'Sora', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --container-max: 1360px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: 250ms ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cream);
    background-color: var(--plum-darkest);
    background-image: radial-gradient(circle, rgba(42,61,40,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.0625rem; font-weight: 600; }

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

a {
    color: var(--cream);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--cream-dark); }

ul { list-style: none; }

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

/* ===================================
   LAYOUT
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad {
    padding: 6rem 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    33%       { transform: translateY(-20px) scale(1.02); }
    66%       { transform: translateY(10px) scale(0.98); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) scale(1); }
    33%       { transform: translateY(18px) scale(0.98); }
    66%       { transform: translateY(-12px) scale(1.02); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 30px var(--gold-glow); }
    50%       { box-shadow: 0 0 60px rgba(201,160,82,0.4); }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }

/* ===================================
   ORBS
   =================================== */
.orb-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(74,112,64,0.35) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    animation: float 9s ease-in-out infinite;
}

.orb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, #c9a05230 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
    animation: floatReverse 12s ease-in-out infinite;
}

.orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(90,143,82,0.2) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: float 15s ease-in-out infinite 3s;
}

/* ===================================
   NAV
   =================================== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 242, 234, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.nav-logo:hover { color: var(--cream-dark); }

.nav-links {
    display: flex;
    gap: 1.25rem;
}

.nav-links a {
    color: var(--cream-dark);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.25rem;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-cta {
    margin-left: auto;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--cream);
    outline-offset: 3px;
}

.btn-gold {
    background: var(--gold);
    color: #080f09;
    box-shadow: 0 4px 24px rgba(201,160,82,0.35);
}
.btn-gold:hover {
    background: var(--gold-light);
    color: #080f09;
    box-shadow: 0 6px 32px rgba(201,160,82,0.5);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(42,61,40,0.22);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,160,82,0.06);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ===================================
   SECTION HEADER UTILITY
   =================================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.accent-bar {
    width: 4px;
    height: 2rem;
    background: var(--cream-dark);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-dark);
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    padding: 8rem 0 7rem;
    background-color: var(--plum-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='100'%3E%3Cpath d='M0,16 C20,9 55,23 90,15 C128,7 158,26 200,16 C235,8 265,22 300,16' stroke='%234a7040' stroke-width='1.2' fill='none'/%3E%3Cpath d='M0,36 C28,29 62,44 100,35 C138,26 168,46 205,36 C240,27 272,42 300,37' stroke='%234a7040' stroke-width='0.9' fill='none'/%3E%3Cpath d='M0,56 C24,49 58,64 95,55 C130,46 165,66 200,56 C238,47 268,62 300,57' stroke='%234a7040' stroke-width='1.1' fill='none'/%3E%3Cpath d='M0,76 C30,69 65,84 102,75 C140,66 172,86 208,76 C244,67 274,82 300,77' stroke='%234a7040' stroke-width='0.8' fill='none'/%3E%3Cpath d='M0,96 C26,89 60,104 98,95 C135,86 167,106 205,96 C242,87 270,102 300,97' stroke='%234a7040' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 100px;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: var(--green-muted);
    border: 1px solid rgba(42,61,40,0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cream-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cream-dark);
    border-radius: 50%;
}

.hero h1 {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

#hero-headline {
    transition: opacity 0.9s ease-in-out;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #e8c075 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Headshot */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.headshot-frame {
    position: relative;
    width: 340px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,160,82,0.25);
    box-shadow: 0 0 60px rgba(201,160,82,0.12), 0 32px 64px rgba(0,0,0,0.5);
    animation: pulseGlow 4s ease-in-out infinite;
}

.headshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.headshot-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(245,242,234,0.3) 100%);
}

/* ===================================
   PAIN POINTS
   =================================== */
.pain-section {
    background-color: var(--plum-mid);
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pain-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color var(--transition), transform var(--transition);
}

.pain-card:hover {
    border-color: rgba(201,160,82,0.25);
    transform: translateY(-4px);
}

.pain-icon {
    margin-bottom: 1rem;
    line-height: 0;
    color: var(--cream-dark);
}

.pain-icon svg {
    width: 36px;
    height: 36px;
}

.pain-card h3 {
    color: var(--cream);
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ===================================
   COMPARE SECTION
   =================================== */
.compare-section {
    background-color: var(--plum-dark);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.compare-section h2 {
    margin-top: 1rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.compare-card {
    background: var(--plum-darkest);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.compare-you {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
}

.compare-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--green-muted);
    border: 1px solid rgba(42,61,40,0.15);
    border-radius: var(--radius-sm);
    color: var(--cream-dark);
    margin-bottom: 1.25rem;
}

.compare-you .compare-hero-icon {
    background: rgba(201,160,82,0.14);
    border-color: rgba(201,160,82,0.2);
    color: var(--gold);
}

.compare-hero-icon svg {
    width: 24px;
    height: 24px;
}

.compare-card-title {
    font-size: 1.1875rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.compare-you .compare-card-title {
    color: #faf7f2;
}

.compare-row {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.compare-you .compare-row {
    border-bottom-color: rgba(255,255,255,0.08);
}

.compare-row-last {
    border-bottom: none;
}

.compare-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.compare-you .compare-label {
    color: rgba(250,247,242,0.55);
}

.compare-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--cream);
}

.compare-you .compare-value {
    color: #faf7f2;
}

.compare-bottom-line {
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
}

.compare-bottom-them {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.compare-bottom-you {
    background: rgba(201,160,82,0.12);
    border: 1px solid rgba(201,160,82,0.25);
}

.compare-bottom-price {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.compare-you .compare-bottom-price {
    color: var(--gold);
}

.compare-bottom-period {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.compare-bottom-detail {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.compare-you .compare-bottom-detail {
    color: rgba(250,247,242,0.6);
}

.compare-best-for {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.compare-you .compare-best-for {
    color: rgba(250,247,242,0.65);
}

.compare-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-top: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   STATS STRIP
   =================================== */
.stats-section {
    background-color: var(--plum-dark);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 1.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--glass-border);
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 0.625rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 160px;
    margin: 0 auto;
}

/* ===================================
   TESTIMONIAL
   =================================== */
.testimonial-section {
    background-color: var(--plum-mid);
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid rgba(201,160,82,0.15);
    border-radius: var(--radius-lg);
    padding: 3rem 3.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.8;
    color: var(--cream-dark);
    opacity: 0.4;
    display: block;
    margin-bottom: 1.25rem;
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--cream-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-attribution {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.attribution-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--cream);
    font-size: 1rem;
}

.attribution-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.attribution-impact {
    font-size: 0.8125rem;
    color: var(--cream-dark);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ===================================
   SERVICES
   =================================== */
.services-section {
    background-color: var(--plum-darkest);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    border-color: rgba(201,160,82,0.3);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(201,160,82,0.06);
}

.service-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(201,160,82,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(201,160,82,0.2);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--green-muted);
    border: 1px solid rgba(42,61,40,0.15);
    border-radius: var(--radius-sm);
    color: var(--cream-dark);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    color: var(--cream);
    font-size: 1.1875rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.service-card .service-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-detail-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--cream-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===================================
   PRICING
   =================================== */
.pricing-section {
    background-color: var(--plum-mid);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.pricing-sub {
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-top: 0.75rem;
    max-width: 480px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--plum-darkest);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.pricing-featured {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(30,48,32,0.25);
}

.pricing-featured:hover {
    transform: translateY(-13px);
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: var(--gold);
    color: #080f09;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-slots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-slots-light {
    color: rgba(250,247,242,0.65);
}

.slot-dot {
    width: 8px;
    height: 8px;
    background: #3a8f5a;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(58,143,90,0.2);
}

.slot-dot-dark {
    box-shadow: 0 0 0 3px rgba(58,143,90,0.35);
}

.pricing-header {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-featured .pricing-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-featured h3 {
    color: #faf7f2;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}

.pricing-featured .price {
    color: #faf7f2;
}

.price-period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.pricing-featured .price-period {
    color: rgba(250,247,242,0.6);
}

.pricing-hours {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.pricing-featured .pricing-hours {
    color: rgba(250,247,242,0.6);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--cream-dark);
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-muted);
    border-radius: 50%;
}

.pricing-featured .pricing-features li {
    color: rgba(250,247,242,0.75);
}

.pricing-featured .pricing-features li::before {
    color: var(--gold);
    background: rgba(201,160,82,0.18);
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-3px);
    }
}

/* ===================================
   HOW IT WORKS
   =================================== */
.process-section {
    background-color: var(--plum-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}


.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-muted);
    border: 1.5px solid rgba(42,61,40,0.25);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cream);
    flex-shrink: 0;
}

.step h3 {
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ===================================
   ABOUT
   =================================== */
.about-section {
    background-color: var(--plum-darkest);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3.5rem;
}

.about-photo {
    position: relative;
}

.about-photo-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,160,82,0.2);
    box-shadow: 0 32px 64px rgba(0,0,0,0.5);
    min-height: 460px;
}

.about-photo-frame img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center top;
}

/* Photo placeholder */
.photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f5f1ea;
}

.photo-placeholder svg {
    width: 68px;
    height: 68px;
    color: #889890;
}

.photo-placeholder span {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: #889890;
    letter-spacing: 0.01em;
}

/* Headshot frame placeholder sizing */
.headshot-frame .photo-placeholder {
    min-height: 400px;
}

.about-photo-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--plum-mid);
    border: 1px solid rgba(42,61,40,0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cream);
    backdrop-filter: blur(8px);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--green-muted);
    border: 1px solid rgba(42,61,40,0.18);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream-dark);
    font-family: var(--font-heading);
}

.badge::before {
    content: '✓';
    font-size: 0.75rem;
    color: var(--cream-dark);
}

/* ===================================
   CONTACT CTA
   =================================== */
.contact-section {
    position: relative;
    background-color: var(--forest-dark);
    overflow: hidden;
    text-align: center;
    padding: 7rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-section h2 {
    color: #faf7f2;
    margin-bottom: 1rem;
}

.contact-sub {
    color: rgba(250,247,242,0.75);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-direct {
    color: rgba(250,247,242,0.65);
    font-size: 0.9375rem;
}

.contact-direct a {
    color: var(--gold);
    font-weight: 500;
}
.contact-direct a:hover { color: var(--gold-light); }

.contact-card {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-avail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(58,143,90,0.2);
    border: 1px solid rgba(58,143,90,0.35);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(250,247,242,0.85);
    margin-bottom: 1.5rem;
}

.contact-accent-bar {
    background: rgba(201,160,82,0.6);
}

.contact-eyebrow {
    color: rgba(250,247,242,0.6);
}

.contact-heading {
    color: #faf7f2;
    margin-top: 0.5rem;
}

.btn-ghost-light {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    color: rgba(250,247,242,0.9);
    border: 1.5px solid rgba(250,247,242,0.25);
}
.btn-ghost-light:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,160,82,0.08);
}

.contact-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.contact-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(201,160,82,0.15);
    border: 1px solid rgba(201,160,82,0.3);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gold);
}

.contact-step-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-step-text strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(250,247,242,0.9);
    line-height: 1.3;
}

.contact-step-text span {
    font-size: 0.8125rem;
    color: rgba(250,247,242,0.45);
}

.contact-step-arrow {
    color: rgba(250,247,242,0.2);
    flex-shrink: 0;
}

.contact-step-arrow svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .contact-step-arrow {
        transform: rotate(90deg);
        margin-left: 0.875rem;
    }
}

/* Forest orbs */
.contact-section .orb-1 {
    background: radial-gradient(circle, rgba(10,40,20,0.8) 0%, transparent 70%);
}
.contact-section .orb-2 {
    background: radial-gradient(circle, rgba(201,160,82,0.12) 0%, transparent 70%);
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background-color: var(--forest-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 0;
}

.site-footer .footer-copy {
    color: rgba(250,247,242,0.55);
}

.site-footer .footer-links a {
    color: rgba(250,247,242,0.6);
}

.site-footer .footer-links a:hover {
    color: var(--gold);
}

.site-footer .linkedin-icon {
    border-color: rgba(255,255,255,0.15);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 4px;
}

.linkedin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    transition: border-color var(--transition), color var(--transition);
}
.linkedin-icon:hover {
    border-color: rgba(201,160,82,0.4);
    color: var(--gold-light);
}
.linkedin-icon:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.linkedin-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 360px;
        gap: 3rem;
    }

    .about-grid {
        grid-template-columns: 320px 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .section-pad { padding: 4rem 0; }

    .nav-cta .btn { padding: 0.625rem 1.125rem; font-size: 0.875rem; }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-image-wrap {
        order: -1;
    }

    .headshot-frame {
        width: 240px;
        height: 280px;
        margin: 0 auto;
    }

    .hero-sub { margin-left: auto; margin-right: auto; }

    .hero-ctas {
        justify-content: center;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 1.25rem 1rem;
    }

    .stat:nth-child(2n) {
        border-left: 1px solid var(--glass-border);
    }

    .stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-steps::before { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-photo-frame img {
        height: 320px;
    }

    .about-photo-badge {
        right: 0;
        bottom: -0.5rem;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; text-align: center; }
    .contact-actions { flex-direction: column; align-items: center; }
    .contact-actions .btn { width: 100%; max-width: 280px; }
}

/* ===================================
   PRINT
   =================================== */
@media print {
    body { background: white; color: black; }
    .site-nav, .orb-container, .hero-image-wrap,
    .contact-section, .site-footer { display: none !important; }
    .hero { background: white; padding: 1rem 0; }
    .section-pad { padding: 1rem 0; }
}
