/*
Theme Name: John Emericks
Theme URI: https://johnemericks.se
Author: John Emericks
Description: A sophisticated, minimalist theme for John Emericks - Livscoach Online. Dark elegance meets Scandinavian calm.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: john-emericks
*/

/* ==========================================================================
   SELF-HOSTED FONTS
   ========================================================================== */

/* Cormorant Garamond - Light (300) */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}

/* Cormorant Garamond - Regular (400) */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}

/* Cormorant Garamond - Medium (500) */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}

/* Cormorant Garamond - Light Italic (300) */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}

/* Cormorant Garamond - Regular Italic (400) */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}

/* Satoshi - Variable font (300-500) */
@font-face {
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 300 500;
    font-display: swap;
    src: url('fonts/satoshi-variable.woff2') format('woff2');
}

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
    /* Colors - Kasia Siwosz inspired palette */
    --color-dark: #191917;
    --color-dark-soft: #1f1f1d;
    --color-dark-muted: #2a2a28;
    --color-grey: #19191766;
    --color-grey-light: #19191733;
    --color-light-muted: #e8e6e3;
    --color-light: #f3f3f3;
    --color-light-pure: white;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Satoshi', Arial, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
    --text-hero: clamp(3rem, 2rem + 5vw, 7rem);
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    --space-section: clamp(5rem, 4rem + 5vw, 10rem);
    
    --max-width: 1400px;
    --max-width-text: 720px;
    --max-width-wide: 1100px;
    
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

.section--dark {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.section--dark-soft {
    background-color: var(--color-dark-soft);
    color: var(--color-light);
}

.section--light {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.section--light-pure {
    background-color: var(--color-light-pure);
    color: var(--color-dark);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--text-hero);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

a:hover { opacity: 0.7; }

.text-accent {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    line-height: 1.3;
}

.text-muted { color: var(--color-grey); }
.section--dark .text-muted { color: var(--color-grey-light); }
.text-sm { font-size: var(--text-sm); }
.text-xs {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.intro__lead {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow { max-width: var(--max-width-text); }
.container--wide { max-width: var(--max-width-wide); }

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

.section__header { margin-bottom: var(--space-2xl); }

.section__number {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-light-muted);
    opacity: 0.5;
    margin-bottom: var(--space-md);
    display: block;
}

.section--light .section__number,
.section--light-pure .section__number { 
    color: var(--color-dark);
    opacity: 0.4;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background-color: var(--color-dark);
    transition: background-color var(--transition-base), padding var(--transition-base);
}

.site-header.scrolled {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--color-light);
    letter-spacing: 0.02em;
}

.site-logo span {
    display: block;
    font-size: var(--text-xs);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-top: 0.25rem;
}

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

.main-nav__link {
    font-size: var(--text-sm);
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.main-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-light);
    transition: width var(--transition-base);
}

.main-nav__link:hover::after { width: 100%; }
.main-nav__link:hover { opacity: 1; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-light);
    margin: 5px 0;
    transition: var(--transition-base);
}

/* Hamburger to X transformation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        transition: right var(--transition-slower);
        z-index: 1000;
    }
    
    .main-nav.active { right: 0; }
    .main-nav__link { font-size: var(--text-xl); }
}

/* ==========================================================================
   HERO SCROLL SECTION
   ========================================================================== */

.hero-scroll {
    position: relative;
    height: 140vh;
    background-color: var(--color-dark);
}

.hero-scroll__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-scroll__portrait {
    position: absolute;
    bottom: 260px;
    left: 50%;
    transform: translateX(-50%);
    width: 440px;
    height: 580px;
    z-index: 10;
}

.hero-scroll__portrait::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33%;
    background: linear-gradient(to top, rgba(25, 25, 23, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.hero-scroll__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.hero-scroll__tagline-behind {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-light);
    white-space: nowrap;
    text-align: center;
    z-index: 5;
}

.hero-scroll__tagline-front {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-light);
    text-align: center;
    z-index: 20;
    opacity: 0;
}

.hero-scroll__tagline-line {
    display: block;
    line-height: 1.15;
}

/* Dark gradient at bottom of hero for text readability */
.hero-scroll__sticky::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(25, 25, 23, 0.9) 0%, rgba(25, 25, 23, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Subtitle - positioned below tagline-front, scrolls with it */
.hero-scroll__subtitle {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    z-index: 20;
    opacity: 0;
}

.hero-scroll__subtitle h1 {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-weight: 400;
    font-style: italic;
    color: var(--color-light);
    letter-spacing: 0;
    line-height: 1.4;
    margin: 0;
}

.hero-scroll__indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    transition: opacity 0.5s ease;
}

.hero-scroll__indicator-arrow {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-grey-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@media (max-width: 768px) {
    .hero-scroll__portrait {
        width: 280px;
        height: 370px;
        bottom: 280px;
    }
    
    .hero-scroll__tagline-behind {
        font-size: clamp(2rem, 8vw, 3.2rem);
        white-space: normal;
        width: 100%;
        max-width: none;
        padding: 0 var(--space-md);
        bottom: 80px;
        line-height: 1.1;
    }
    
    .hero-scroll__tagline-front {
        font-size: clamp(2rem, 8vw, 3.2rem);
        white-space: normal;
        width: 100%;
        max-width: none;
        padding: 0 var(--space-md);
        bottom: 60px;
    }
    
    .hero-scroll__subtitle {
        white-space: normal;
        width: 100%;
        max-width: none;
        padding: 0 var(--space-md);
        bottom: -30px;
    }
    
    .hero-scroll__subtitle h1 {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .hero-scroll__portrait {
        width: 220px;
        height: 290px;
        bottom: 300px;
    }
    
    .hero-scroll__tagline-behind {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        bottom: 100px;
    }
    
    .hero-scroll__tagline-front {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        bottom: 80px;
    }
    
    .hero-scroll__subtitle {
        bottom: -10px;
    }
    
    .hero-scroll__subtitle h1 {
        font-size: var(--text-sm);
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn--primary {
    background-color: var(--color-light);
    color: var(--color-dark);
    border-color: var(--color-light);
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--color-light);
    opacity: 1;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-light);
    border-color: var(--color-grey);
}

.btn--outline:hover {
    border-color: var(--color-light);
    opacity: 1;
}

.btn--dark {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
}

.btn--dark:hover {
    background-color: transparent;
    color: var(--color-dark);
    opacity: 1;
}

.btn--large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
}

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

.btn--outline-dark:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */

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

.problem__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

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

.problem__outro {
    margin-top: 0;
}

.problem__right {
    display: flex;
    align-items: stretch;
    gap: var(--space-lg);
}

.problem__bracket {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 35rem !important;
    font-weight: 200;
    line-height: 0.9;
    color: var(--color-light);
    opacity: 0.15;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.problem__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background-color: var(--color-dark-muted);
}

.problem-item__dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-light);
    border-radius: 50%;
    opacity: 0.4;
    flex-shrink: 0;
}

.problem-item__text {
    font-size: var(--text-base);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 900px) {
    .problem__content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .problem__left {
        position: static;
    }
    
    .problem__bracket {
        display: none;
    }
}

/* ==========================================================================
   SOLUTION SECTION
   ========================================================================== */

.solution__grid {
    max-width: 800px;
    margin: 0 auto;
}

.solution__content {
    margin-bottom: var(--space-xl);
}

.solution__results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.result-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: var(--color-light-pure);
    border: 1px solid var(--color-light-muted);
}

.result-item__icon {
    font-size: var(--text-xl);
    color: var(--color-grey);
}

.result-item p {
    margin: 0;
    font-size: var(--text-base);
}

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

/* ==========================================================================
   ABOUT TEASER SECTION
   ========================================================================== */

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

.about-teaser__image img {
    width: 100%;
    height: auto;
    border-radius: 0 !important;
}

.about-teaser__content {
    max-width: 400px;
}

.about-teaser__content .btn {
    margin-top: var(--space-md);
}

@media (max-width: 900px) {
    .about-teaser__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-teaser__image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-teaser__content {
        max-width: 100%;
    }
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.process-step {
    padding: var(--space-xl);
    background-color: white;
    border: 1px solid var(--color-light-muted);
    text-align: center;
}

.process-step__number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 300;
    color: var(--color-dark);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: var(--space-md);
}

.process-step__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
}

.process-step__text {
    color: var(--color-dark);
    opacity: 0.7;
    font-size: var(--text-sm);
}

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

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    display: block;
    padding: var(--space-xl);
    background-color: var(--color-dark-muted);
    border-left: 2px solid var(--color-grey);
    transition: border-color var(--transition-base), transform var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    border-color: var(--color-light);
    transform: translateX(4px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--color-light);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-card__icon {
    opacity: 1;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    color: var(--color-light);
}

.service-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-light);
}

.service-card__text {
    color: var(--color-grey-light);
    font-size: var(--text-sm);
    margin: 0;
}

@media (max-width: 900px) {
    .services__grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .services__grid { 
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .service-card {
        padding: var(--space-md) var(--space-lg);
    }
}

/* ==========================================================================
   ONLINE SECTION
   ========================================================================== */

.online__content p {
    font-size: var(--text-lg);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq__list {
    display: grid;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-dark-muted);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-lg) 0;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--color-light);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition-base);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question:hover {
    color: var(--color-light-muted);
}

.faq-item__question span:first-child {
    padding-right: var(--space-lg);
}

.faq-item__icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-light);
    transition: transform 0.3s ease;
}

.faq-item__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq-item__icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item[open] .faq-item__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item__answer {
    padding: 0 0 var(--space-lg) 0;
    margin: 0;
    color: var(--color-light);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 90%;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta { text-align: center; }
.cta__title { margin-bottom: var(--space-md); }

.cta__subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-grey-light);
    margin-bottom: var(--space-xl);
    max-width: var(--max-width-text);
    margin-left: auto;
    margin-right: auto;
}

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

.cta__email {
    font-size: var(--text-sm);
    color: var(--color-grey-light);
}

.cta__email a {
    color: var(--color-light);
    text-decoration: underline;
}

.cta__email a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

/* CTA Section */
.footer__cta {
    max-width: 500px;
}

.footer__cta-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.footer__cta-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer__privacy {
    font-size: var(--text-xs);
    color: var(--color-light);
    opacity: 0.7;
    line-height: 1.6;
}

.footer__privacy a {
    color: var(--color-light);
    text-decoration: underline;
}

/* Link columns */
.footer__links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__heading {
    font-size: var(--text-xs);
    color: var(--color-light);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-light);
    opacity: 0.8;
}

.footer__links a {
    color: var(--color-light);
    transition: opacity var(--transition-base);
}

.footer__links a:hover {
    opacity: 0.6;
}

/* Big name */
.footer__name {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-light);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    width: 100%;
    text-align: justify;
    text-align-last: justify;
}

.footer__name span {
    display: block;
    font-size: clamp(4rem, 15vw, 14.5rem);
}

/* Footer button overrides */
.footer__cta-buttons .btn--primary {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.footer__cta-buttons .btn--primary:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-light);
}

.footer__cta-buttons .btn--outline {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-light);
}

.footer__cta-buttons .btn--outline:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}

/* Bottom */
.footer__bottom {
    font-size: var(--text-xs);
    color: var(--color-light);
    opacity: 0.7;
}

.footer__bottom p {
    margin: 0;
}

@media (max-width: 900px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__name {
        flex-direction: column;
        font-size: clamp(3rem, 12vw, 8rem);
    }
}

@media (max-width: 600px) {
    .footer__links-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
    
    .footer__cta-buttons {
        flex-direction: column;
    }
    
    .footer__cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   SERVICE PAGE HERO
   ========================================================================== */

.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    padding: var(--space-3xl) 0;
}

.service-hero__content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-hero__intro {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--color-light);
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.service-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--space-2xl);
}

.service-hero__title span {
    display: block;
}

.service-hero__text {
    max-width: 600px;
    margin: 0 auto;
}

.service-hero__tagline {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--space-md);
}

.service-hero__text p:last-child {
    font-size: var(--text-base);
    color: var(--color-light);
    opacity: 0.7;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-hero {
        padding: var(--space-2xl) 0;
    }
    
    .service-hero__title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }
}

/* ==========================================================================
   ABOUT PAGE HERO - SCROLL EFFECT
   ========================================================================== */

.about-hero-scroll {
    height: 130vh;
    background-color: var(--color-dark);
    position: relative;
}

.about-hero-scroll__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.about-hero-scroll__credentials {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-light);
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 5;
}

.about-hero-scroll__credentials p {
    margin: 0 0 var(--space-xs) 0;
    opacity: 0.7;
}

.about-hero-scroll__credentials--left {
    left: var(--space-xl);
    text-align: left;
}

.about-hero-scroll__credentials--right {
    right: var(--space-xl);
    text-align: right;
}

.about-hero-scroll__portrait {
    position: absolute;
    bottom: 240px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 540px;
    z-index: 10;
}

.about-hero-scroll__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-scroll__title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 500;
    line-height: 0.85;
    text-align: center;
    color: var(--color-light);
    z-index: 20;
    pointer-events: none;
    bottom: 0;
}

.about-hero-scroll__title-line1 {
    display: block;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.about-hero-scroll__title-line2 {
    display: block;
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .about-hero-scroll__credentials {
        display: none;
    }
}

@media (max-width: 600px) {
    .about-hero-scroll__portrait {
        width: 280px;
        height: 380px;
    }
    
    .about-hero-scroll__title-line1 {
        bottom: 80px;
    }
}

/* ==========================================================================
   ABOUT INTRO SECTION
   ========================================================================== */

.about-intro {
    padding: var(--space-3xl) 0;
}

.container--narrow {
    max-width: 800px;
}

.about-intro__content {
    text-align: center;
}

.about-intro__lead {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: var(--space-lg);
}

.about-intro__content p:last-child {
    opacity: 0.8;
    font-size: var(--text-lg);
}

/* ==========================================================================
   ABOUT JOURNEY SECTIONS
   ========================================================================== */

.about-journey {
    padding: var(--space-3xl) 0;
}

.about-journey__grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.about-journey__number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 500;
    line-height: 0.85;
    color: var(--color-dark);
    opacity: 0.15;
}

.about-journey__heading {
    border-top: 1px solid currentColor;
    padding-top: var(--space-lg);
}

.about-journey__heading h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.about-journey__content {
    border-top: 1px solid currentColor;
    padding-top: var(--space-lg);
    opacity: 0.8;
}

.about-journey__content p {
    margin-bottom: var(--space-md);
}

.about-journey__lesson {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-journey__lesson-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-style: italic;
}

.about-journey__lesson-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

/* Dark section overrides */
.section--dark-soft .about-journey__number,
.section--dark .about-journey__number {
    color: var(--color-light);
    opacity: 0.1;
}

.section--dark-soft .about-journey__heading,
.section--dark .about-journey__heading {
    border-top-color: var(--color-light);
}

.section--dark-soft .about-journey__heading h2,
.section--dark .about-journey__heading h2 {
    color: var(--color-light);
}

.section--dark-soft .about-journey__content,
.section--dark .about-journey__content {
    border-top-color: var(--color-light);
    color: var(--color-light);
}

.section--dark-soft .about-journey__lesson-label,
.section--dark .about-journey__lesson-label {
    color: var(--color-light);
}

.section--dark-soft .about-journey__lesson-text,
.section--dark .about-journey__lesson-text {
    color: var(--color-light);
}

.section--dark-soft .about-journey__lesson-label .service-section__dot,
.section--dark .about-journey__lesson-label .service-section__dot {
    background-color: var(--color-light);
}

@media (max-width: 1000px) {
    .about-journey__grid {
        grid-template-columns: 120px 1fr;
        gap: var(--space-xl);
    }
    
    .about-journey__content {
        grid-column: 2;
    }
    
    .about-journey__lesson {
        grid-template-columns: 120px 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 700px) {
    .about-journey__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-journey__number {
        font-size: clamp(4rem, 15vw, 6rem);
    }
    
    .about-journey__content {
        grid-column: 1;
    }
    
    .about-journey__lesson {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-page {
    display: grid;
    grid-template-columns: 5fr 4fr;
    min-height: 100vh;
    max-height: 80vh;
    overflow: hidden;
    margin-top: 80px;
}

.contact-page__left {
    background-color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-2xl);
}

.contact-page__content {
    max-width: 480px;
    width: 100%;
}

.contact-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.contact-page__intro {
    font-size: var(--text-base);
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.contact-page__cta {
    margin-bottom: var(--space-xl);
}

.contact-page__note {
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.6;
    margin-top: var(--space-sm);
}

.contact-page__divider {
    height: 1px;
    background-color: var(--color-grey-light);
    margin: var(--space-xl) 0;
}

.contact-page__alt-heading {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.contact-page__buttons {
    display: flex;
    flex-direction: row;
    gap: var(--space-sm);
}

.contact-page__buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    background-color: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--icon:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.btn--icon svg {
    flex-shrink: 0;
}

.contact-page__right {
    position: relative;
    overflow: hidden;
}

.contact-page__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media (max-width: 900px) {
    .contact-page {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
    }
    
    .contact-page__left {
        padding: var(--space-2xl) var(--space-lg);
        order: 2;
    }
    
    .contact-page__right {
        height: 50vh;
        order: 1;
    }
}

@media (max-width: 500px) {
    .contact-page__left {
        padding: var(--space-xl) var(--space-md);
    }
}

/* ==========================================================================
   SERVICE PAGE SECTIONS
   ========================================================================== */

.service-section__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    position: relative;
    min-height: 400px;
}

.service-section__left {
    position: relative;
    align-self: start;
}

.service-section__left .section__number {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-120%);
}

.service-section__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-dark);
}

.service-section__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: var(--space-3xl);
}

.service-section__label {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-dark);
}

.service-section__dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-dark);
    border-radius: 50%;
}

.service-section__body {
    max-width: 500px;
}

.service-section__body p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-section__body em {
    font-family: var(--font-accent);
    font-style: italic;
}

.service-section__list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.service-section__list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.service-section__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0.4;
}

/* Steps styling */
.service-section__step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-section__step:last-child {
    margin-bottom: 0;
}

.service-section__step-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 300;
    color: var(--color-dark);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.service-section__step h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.service-section__step p {
    margin: 0;
    opacity: 0.7;
}

/* Myth items */
.myth-item {
    margin-bottom: var(--space-lg);
}

.myth-item:last-child {
    margin-bottom: 0;
}

.myth-item__myth {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    font-style: italic;
    margin-bottom: var(--space-xs);
}

.myth-item p {
    margin: 0;
    opacity: 0.8;
}

/* Hero CTA button */
.service-hero__cta {
    margin-top: var(--space-xl);
}

.service-hero__cta .btn--primary {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.service-hero__cta .btn--primary:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-light);
}

/* Dark section overrides */
.section--dark-soft .service-section__heading,
.section--dark .service-section__heading {
    color: var(--color-light);
}

.section--dark-soft .service-section__label,
.section--dark .service-section__label {
    color: var(--color-light);
}

.section--dark-soft .service-section__dot,
.section--dark .service-section__dot {
    background-color: var(--color-light);
}

.section--dark-soft .service-section__body,
.section--dark .service-section__body {
    color: var(--color-light);
    opacity: 0.85;
}

.section--dark-soft .section__number,
.section--dark .section__number {
    color: var(--color-light);
    opacity: 0.5;
}

/* ==========================================================================
   SERVICE TIPS SECTION
   ========================================================================== */

.service-tips__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-2xl);
}

.service-tips__header .section__number {
    color: var(--color-dark);
    opacity: 0.4;
}

.service-tips__label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-dark);
}

.service-tips__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.service-tips__heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.service-tips__intro > p {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-dark);
    opacity: 0.7;
}

.service-tips__subtext {
    margin-top: var(--space-lg);
    font-size: var(--text-base) !important;
    font-style: normal !important;
    opacity: 0.6 !important;
}

.service-tips__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    border-top: 1px solid var(--color-dark);
    padding-top: var(--space-xl);
}

.tip-card {
    display: flex;
    flex-direction: column;
}

.tip-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.tip-card__text {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-dark);
    opacity: 0.7;
    flex-grow: 1;
    margin-bottom: var(--space-lg);
}

.tip-card__number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 300;
    color: var(--color-dark);
    opacity: 0.2;
}

/* Tip card as link */
.tip-card--link {
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-base);
}

.tip-card--link:hover {
    transform: translateY(-4px);
}

.tip-card__arrow {
    font-size: var(--text-2xl);
    opacity: 0.3;
    transition: opacity var(--transition-base);
}

.tip-card--link:hover .tip-card__arrow {
    opacity: 1;
}

/* Six column grid */
.service-tips__grid--six {
    grid-template-columns: repeat(6, 1fr);
}

/* Four column grid */
.service-tips__grid--four {
    grid-template-columns: repeat(4, 1fr);
}

/* Three column grid */
.service-tips__grid--three {
    grid-template-columns: repeat(3, 1fr);
}

/* Two column grid */
.service-tips__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    gap: var(--space-2xl);
}

.service-tips__outro {
    text-align: center;
    margin-top: var(--space-2xl);
    font-size: var(--text-lg);
    opacity: 0.8;
}

/* Dark section outro */
.section--dark-soft .service-tips__outro,
.section--dark .service-tips__outro {
    color: var(--color-light);
}

@media (max-width: 1200px) {
    .service-tips__grid--six {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-tips__grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-tips__grid--three {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-tips__grid--two {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-tips__grid--six {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-tips__grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-tips__grid--three {
        grid-template-columns: 1fr;
    }
    
    .service-tips__grid--two {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .service-tips__grid--six {
        grid-template-columns: 1fr;
    }
    
    .service-tips__grid--four {
        grid-template-columns: 1fr;
    }
    
    .service-tips__grid--two {
        grid-template-columns: 1fr;
    }
}

/* Dark section tips styling */
.section--dark-soft .service-tips__heading,
.section--dark .service-tips__heading {
    color: var(--color-light);
}

.section--dark-soft .service-tips__intro > p,
.section--dark .service-tips__intro > p {
    color: var(--color-light);
}

.section--dark-soft .service-tips__header .section__number,
.section--dark .service-tips__header .section__number {
    color: var(--color-light);
    opacity: 0.5;
}

.section--dark-soft .service-tips__label,
.section--dark .service-tips__label {
    color: var(--color-light);
}

.section--dark-soft .service-tips__grid,
.section--dark .service-tips__grid {
    border-top-color: var(--color-light);
}

.section--dark-soft .tip-card,
.section--dark .tip-card {
    opacity: 1;
}

.section--dark-soft .tip-card__title,
.section--dark .tip-card__title {
    color: var(--color-light) !important;
}

.section--dark-soft .tip-card__text,
.section--dark .tip-card__text {
    color: var(--color-light) !important;
    opacity: 0.85 !important;
}

.section--dark-soft .tip-card__number,
.section--dark .tip-card__number {
    color: var(--color-light) !important;
    opacity: 0.3 !important;
}

.section--dark-soft .tip-card__arrow,
.section--dark .tip-card__arrow {
    color: var(--color-light) !important;
}

@media (max-width: 1100px) {
    .service-tips__grid:not(.service-tips__grid--two):not(.service-tips__grid--three):not(.service-tips__grid--four):not(.service-tips__grid--six) {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-tips__grid:not(.service-tips__grid--two):not(.service-tips__grid--three):not(.service-tips__grid--four):not(.service-tips__grid--six) {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-tips__header {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 500px) {
    .service-tips__grid:not(.service-tips__grid--two):not(.service-tips__grid--three):not(.service-tips__grid--four):not(.service-tips__grid--six) {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SERVICE CTA SECTION
   ========================================================================== */

.service-cta {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) 0;
    background-color: var(--color-dark-soft);
}

.service-cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta__content .section__number {
    display: block;
    margin-bottom: var(--space-lg);
    color: var(--color-light);
    opacity: 0.5;
}

.service-cta__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--space-lg);
}

.service-cta__text {
    font-size: var(--text-lg);
    color: var(--color-light);
    opacity: 0.8;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-cta__buttons .btn--primary {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.service-cta__buttons .btn--primary:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-light);
}

.service-cta__buttons .btn--outline {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-light);
}

.service-cta__buttons .btn--outline:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}

@media (max-width: 500px) {
    .service-cta__buttons {
        flex-direction: column;
    }
    
    .service-cta__buttons .btn {
        width: 100%;
    }
}

.service-section__statement {
    padding-top: var(--space-2xl);
}

.service-section__statement p {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
}

.service-section__statement .text-fade {
    color: var(--color-dark);
    opacity: 0.3;
}

@media (max-width: 900px) {
    .service-section__layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .service-section__left .section__number {
        position: static;
        transform: none;
        display: block;
        margin-bottom: var(--space-sm);
    }
    
    .service-section__label {
        position: static;
        margin-bottom: var(--space-lg);
    }
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

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

.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

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

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms)
   ========================================================================== */

.legal-page {
    background-color: var(--color-light);
    min-height: 100vh;
    padding-top: 80px;
}

.legal-page__header {
    background-color: var(--color-dark);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.legal-page__label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-light);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.legal-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-light);
    margin-bottom: var(--space-md);
}

.legal-page__meta {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-light);
    opacity: 0.6;
}

.legal-page__content {
    padding: var(--space-3xl) 0;
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-grey-light);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-dark);
    display: inline-block;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-section h4 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.legal-section p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-dark);
    opacity: 0.85;
    margin-bottom: var(--space-md);
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
}

.legal-section ul li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.85;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background-color: var(--color-dark);
    border-radius: 50%;
    opacity: 0.4;
}

.legal-section ul li strong {
    color: var(--color-dark);
    opacity: 1;
}

.legal-section a {
    color: var(--color-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--transition-base);
}

.legal-section a:hover {
    opacity: 0.6;
}

.legal-contact-box {
    background-color: var(--color-light-muted);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.legal-contact-box p {
    margin-bottom: var(--space-xs);
    opacity: 1;
}

.legal-contact-box p:last-child {
    margin-bottom: 0;
}

.legal-provider {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-grey-light);
}

.legal-provider:last-child {
    border-bottom: none;
}

.legal-provider h4 {
    margin-bottom: var(--space-xs);
}

.legal-provider p {
    margin-bottom: 0;
    font-size: var(--text-sm);
}

@media (max-width: 768px) {
    .legal-page__header {
        padding: var(--space-2xl) 0;
    }
    
    .legal-page__content {
        padding: var(--space-2xl) 0;
    }
    
    .legal-section {
        margin-bottom: var(--space-xl);
        padding-bottom: var(--space-xl);
    }
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */

.pricing-page {
    background-color: var(--color-light);
    min-height: 100vh;
    padding-top: 80px;
}

.pricing-page__header {
    background-color: var(--color-dark);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.pricing-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-light);
    margin-bottom: var(--space-sm);
}

.pricing-page__subtitle {
    font-size: var(--text-lg);
    color: var(--color-light);
    opacity: 0.7;
}

.pricing-page__content {
    padding: var(--space-3xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.pricing-card {
    background-color: var(--color-light-pure);
    border: 1px solid var(--color-grey-light);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card--featured {
    border: 2px solid var(--color-dark);
    padding-top: calc(var(--space-xl) + var(--space-md));
}

.pricing-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--color-dark);
    color: var(--color-light);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-md);
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: var(--space-lg);
}

.pricing-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.pricing-card__tagline {
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.6;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-grey-light);
}

.pricing-card__amount {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1;
}

.pricing-card__currency {
    font-size: var(--text-lg);
    color: var(--color-dark);
    opacity: 0.7;
}

.pricing-card__period {
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.5;
}

.pricing-card__description {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.8;
    margin-bottom: var(--space-lg);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
    flex-grow: 1;
}

.pricing-card__features li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-dark);
    opacity: 0.85;
}

.pricing-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-dark);
    font-weight: 600;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.pricing-page__guarantee {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.6;
}

.pricing-page__cta {
    background-color: var(--color-dark);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.pricing-page__cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-light);
    margin-bottom: var(--space-md);
}

.pricing-page__cta-text {
    font-size: var(--text-base);
    color: var(--color-light);
    opacity: 0.8;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card--featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pricing-page__header {
        padding: var(--space-2xl) 0;
    }
    
    .pricing-page__content {
        padding: var(--space-2xl) 0;
    }
    
    .pricing-page__cta {
        padding: var(--space-2xl) 0;
    }
}

/* ==========================================================================
   BLOG POST
   ========================================================================== */

.blog-post {
    background-color: var(--color-light);
    padding-top: 80px;
}

/* Post Header */
.blog-post__header {
    padding: var(--space-3xl) 0 var(--space-2xl);
    text-align: center;
}

.blog-post__categories {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.blog-post__category {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-dark);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.blog-post__category:hover {
    opacity: 1;
}

.blog-post__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post__meta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.6;
}

.blog-post__meta span::before {
    content: "•";
    margin-right: var(--space-md);
}

/* Featured Image */
.blog-post__featured-image {
    margin-bottom: var(--space-2xl);
}

.blog-post__image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* Post Content */
.blog-post__content {
    padding-bottom: var(--space-2xl);
}

.blog-post__content p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
}

.blog-post__content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-dark);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.blog-post__content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.blog-post__content ul,
.blog-post__content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.blog-post__content li {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.blog-post__content blockquote {
    border-left: 3px solid var(--color-dark);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-dark);
    opacity: 0.9;
}

.blog-post__content a {
    color: var(--color-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-post__content a:hover {
    opacity: 0.7;
}

.blog-post__content img {
    max-width: 100%;
    height: auto;
    margin: var(--space-xl) 0;
}

/* Post Footer */
.blog-post__footer {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-grey-light);
}

.blog-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.blog-post__tag {
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.blog-post__tag:hover {
    opacity: 1;
}

.blog-post__share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.blog-post__share-label {
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.6;
}

.blog-post__share-links {
    display: flex;
    gap: var(--space-sm);
}

.blog-post__share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-dark);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.blog-post__share-links a:hover {
    opacity: 1;
}

/* Author Box */
.blog-author__box {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.blog-author__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-author__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-dark);
    opacity: 0.5;
    display: block;
    margin-bottom: var(--space-xs);
}

.blog-author__name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.blog-author__bio {
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-author__link {
    font-size: var(--text-sm);
    color: var(--color-dark);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.blog-author__link:hover {
    opacity: 1;
}

/* Post Navigation */
.blog-nav__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.blog-nav__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.blog-nav__item--next {
    text-align: right;
}

.blog-nav__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-light);
    opacity: 0.5;
}

.blog-nav__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--color-light);
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.blog-nav__title:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .blog-post__header {
        padding: var(--space-2xl) 0 var(--space-xl);
    }
    
    .blog-post__meta {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .blog-post__meta span::before {
        display: none;
    }
    
    .blog-author__box {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-nav__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .blog-nav__item--next {
        text-align: left;
    }
}

/* ==========================================================================
   BLOG ARCHIVE
   ========================================================================== */

.blog-archive {
    background-color: var(--color-light);
    min-height: 100vh;
    padding-top: 80px;
}

.blog-archive__header {
    background-color: var(--color-dark);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.blog-archive__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-light);
    margin-bottom: var(--space-sm);
}

.blog-archive__label {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-light);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.blog-archive__subtitle {
    font-size: var(--text-lg);
    color: var(--color-light);
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
}

.blog-archive__content {
    padding: var(--space-3xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-light-pure);
    border: 1px solid var(--color-grey-light);
    transition: transform var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card__image {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card__category {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-dark);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.blog-card__title a {
    color: var(--color-dark);
    text-decoration: none;
}

.blog-card__title a:hover {
    opacity: 0.7;
}

.blog-card__excerpt {
    font-size: var(--text-sm);
    color: var(--color-dark);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.blog-card__meta {
    display: flex;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: var(--color-dark);
    opacity: 0.5;
}

.blog-card__meta span::before {
    content: "•";
    margin-right: var(--space-sm);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-dark);
    text-decoration: none;
    border: 1px solid var(--color-grey-light);
    transition: all var(--transition-base);
}

.blog-pagination a:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
}

.blog-pagination .current {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
}

.blog-archive__empty {
    text-align: center;
    padding: var(--space-3xl) 0;
    font-size: var(--text-lg);
    color: var(--color-dark);
    opacity: 0.6;
}

@media (max-width: 1000px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-archive__header {
        padding: var(--space-2xl) 0;
    }
    
    .blog-archive__content {
        padding: var(--space-2xl) 0;
    }
}