@font-face {
    font-family: 'AuraleCustomFont';
    src: url('FeGPsc2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --rooted-earth: #2D2925;
    --sacred-ember: #B46A5E;
    --soft-presence: #6F645D;
    --womb-bloom: #D8A39A;
    --calm-spirit: #9FB3AA;
    --gentle-hold: #EFE6DE;
    --new-light: #F8F5F1;
    --soft-cream: #F8F5F1;
    --pure-white: #ffffff;
    --abalone-teal: #4F7D77;
    --warm-nude: #EFE6DE;
    --dusty-rose: #D8A39A;
    --earth-brown: var(--rooted-earth);
    --clay-sage: var(--sacred-ember);
    --shadow-lg: 0 22px 45px rgba(45, 41, 37, 0.12);
    --shadow-md: 0 12px 30px rgba(45, 41, 37, 0.08);
    --radius-lg: 26px;
    --radius-md: 18px;
}

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

body {
    font-family: "Optima", "Cormorant Garamond", "Segoe UI", serif;
    background-color: var(--soft-cream);
    color: var(--rooted-earth);
    line-height: 1.8;
    scroll-behavior: smooth;
    letter-spacing: 0.3px;
}

header {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(180, 106, 94, 0.15);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Home page uses two headers - one for brand, one for nav */
.home header:first-of-type {
    padding: 1rem 0;
}

.home header:last-of-type {
    padding: 0.8rem 0;
}

.logo {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

nav a {
    text-decoration: none;
    color: var(--soft-presence);
    padding: 0.5rem 1.1rem;
    text-transform: uppercase;
    font-size: 0.71rem;
    letter-spacing: 1.8px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

nav a:hover {
    color: var(--rooted-earth);
    border-color: rgba(180, 106, 94, 0.2);
    background: rgba(216, 163, 154, 0.12);
}

section {
    padding: 7.5rem 9%;
    scroll-margin-top: 130px;
}

.hero {
    padding: 10rem 9% 9rem;
    background: linear-gradient(120deg, rgba(248, 245, 241, 0.93), rgba(248, 245, 241, 0.8)),
        url('abalonemacro.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.container {
    margin: 0 auto;
    padding: 0 6%;
}

.home .container {
    max-width: 1120px;
}

.consultation .container {
    max-width: 900px;
    padding: 4.5rem 2rem;
}

.philosophy .container {
    max-width: 880px;
    margin: 2.5rem auto 4.5rem;
}

.pricing .container {
    max-width: 840px;
    margin: 2.5rem auto 4.5rem;
}

.accessibility .container {
    max-width: 820px;
    margin: 2.5rem auto 4.5rem;
}

.privacy-legal .container {
    max-width: 860px;
    margin: 4.5rem auto;
    padding: 0 2.5rem;
}

h1 {
    font-weight: 400;
    font-size: 2.75rem;
    letter-spacing: 1px;
    color: var(--sacred-ember);
    line-height: 1.3;
}

h2 {
    color: var(--soft-presence);
    font-weight: 500;
    border-bottom: 1px solid rgba(180, 106, 94, 0.2);
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.bio-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.bio-sidebar {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio-main {
    flex: 1.8;
    min-width: 350px;
}

.bio-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.credentials-box {
    background: var(--pure-white);
    padding: 2.4rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 41, 37, 0.07);
    box-shadow: var(--shadow-md);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--pure-white);
    padding: 2.4rem;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 41, 37, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 16px 36px rgba(45, 41, 37, 0.12);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--sacred-ember), var(--womb-bloom));
    color: #ffffff;
    padding: 1.05rem 2.6rem;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.77rem;
    margin-top: auto;
    border-radius: 999px;
    align-self: center;
    box-shadow: 0 10px 28px rgba(180, 106, 94, 0.2);
    transition: all 0.3s ease;
}

.btn:hover {
    box-shadow: 0 14px 36px rgba(180, 106, 94, 0.3);
    transform: translateY(-2px);
}

footer {
    background: var(--rooted-earth);
    color: var(--new-light);
    padding: 4rem 10%;
}

footer a {
    color: var(--womb-bloom);
    text-decoration: none;
}

.brand-name {
    font-family: 'AuraleCustomFont', serif;
    text-decoration: none;
    color: var(--sacred-ember);
    font-size: 2.4rem;
    letter-spacing: 1px;
    display: inline-block;
}

.nav-link {
    display: block;
    text-align: center;
    color: var(--soft-presence);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
}

blockquote {
    font-style: italic;
    color: var(--soft-presence);
    font-size: 1.25rem;
    text-align: center;
    margin: 3rem 0;
    padding: 0 2rem;
}

.back-nav {
    padding: 1rem 10%;
    border-bottom: 1px solid rgba(180, 106, 94, 0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-nav a {
    text-decoration: none;
    color: var(--soft-presence);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #fff;
    padding: 2.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(45, 41, 37, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 16px 36px rgba(45, 41, 37, 0.12);
    transform: translateY(-2px);
}

.step-number {
    font-size: 2.1rem;
    color: var(--dusty-rose);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.form-placeholder {
    background: var(--pure-white);
    padding: 3rem;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(111, 100, 93, 0.6);
    margin-top: 4rem;
    box-shadow: var(--shadow-md);
}

.btn-disabled {
    display: inline-block;
    background: #C6C0B7;
    color: #fff;
    padding: 1.05rem 2.4rem;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-top: 1rem;
    border-radius: 999px;
    cursor: not-allowed;
}

.info-box {
    background: var(--warm-nude);
    padding: 2.2rem;
    margin-top: 3rem;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--abalone-teal);
}

.pillar-box {
    background: var(--pure-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 41, 37, 0.05);
    padding: 2.3rem;
    margin: 2.2rem 0;
    box-shadow: var(--shadow-md);
}

.pillar-title {
    color: var(--sacred-ember);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed rgba(159, 179, 170, 0.6);
    padding: 1rem 0;
}

.price-name {
    font-weight: 600;
    font-size: 1.05rem;
}

.price-value {
    color: var(--sacred-ember);
    font-weight: 600;
    font-size: 1.2rem;
}

.description {
    font-size: 0.93rem;
    color: var(--soft-presence);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

.disclaimer-box {
    background: var(--pure-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 41, 37, 0.05);
    padding: 2rem;
    margin: 2.2rem 0;
    font-size: 0.93rem;
    box-shadow: var(--shadow-md);
}

.top-nav {
    margin-bottom: 2rem;
}

.bottom-nav {
    margin-top: 4rem;
}

.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.contact-list a {
    color: var(--sacred-ember);
    text-decoration: underline;
}

.privacy-legal h1 {
    border-bottom: 1px solid rgba(180, 106, 94, 0.25);
    padding-bottom: 1rem;
    letter-spacing: 1px;
}

.privacy-legal h2 {
    margin-top: 2.4rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.privacy-legal h3 {
    font-size: 1rem;
    color: var(--rooted-earth);
    margin-top: 1.5rem;
}

.privacy-legal p,
.privacy-legal li {
    font-size: 0.96rem;
    margin-bottom: 1rem;
}

.privacy-legal .back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--soft-presence);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.privacy-legal .effective-date {
    font-style: italic;
    color: var(--soft-presence);
    margin-bottom: 2rem;
}

.privacy-legal section {
    background: #fff;
    padding: 2.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(45, 41, 37, 0.06);
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 7%;
    }

    .bio-container {
        flex-direction: column;
    }

    .site-header {
        height: auto;
        padding: 1.5rem 0;
    }

    section {
        scroll-margin-top: 160px;
    }

    .consultation .container {
        padding: 2.5rem 1.2rem;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }
}
