﻿/* ════ PAGE HERO ════ */
.hero {
    background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 100%);
    padding: 11rem 2.5rem 7rem;
    position: relative;
    overflow: hidden;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
}
/* Pillar watermark — right side */
/* Compass watermark — center-left */
.hero-compass {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.038;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 85% 20%, rgba(169,202,214,0.1) 0%, transparent 50%), radial-gradient(ellipse at 10% 80%, rgba(216,168,79,0.06) 0%, transparent 48%);
}

.hero-content {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--label);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    animation: fadeUp 0.9s ease both 0.1s;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.8rem, 7vw, 6.2rem);
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.025em;
    max-width: 780px;
    animation: fadeUp 0.95s ease both 0.28s;
}

.hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--blue);
}

/* ════ SECTION UTILITIES ════ */
.kicker {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.9rem;
}

.k-teal {
    color: var(--teal);
}

.k-gold {
    color: var(--gold-dark);
}

.k-sage {
    color: var(--sage);
}

.k-light {
    color: var(--blue);
    opacity: 0.72;
}

.h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.h2-navy {
    color: var(--navy);
}

.h2-white {
    color: var(--white);
}

.h2-em {
    font-style: italic;
    font-weight: 300;
}

.prose {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1.02rem;
    color: var(--ink-muted);
    line-height: 1.88;
    margin-bottom: 1.3rem;
}

.prose:last-child {
    margin-bottom: 0;
}

.prose strong {
    font-weight: 600;
    color: var(--ink-mid);
}

/* ════ IDENTITY SECTION ════ */
.identity {
    background: var(--white);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}
/* Column watermark */
.identity-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1.4fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.id-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.id-left {
}

.id-left .h2 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    margin-bottom: 0;
}

.id-right {
}

.id-word {
    padding: 2rem 0;
    border-bottom: 1px solid var(--cream-deep);
}

.id-word:first-child {
    padding-top: 0;
}

.id-word:last-child {
    border-bottom: none;
}

.id-word-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    display: block;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.id-word-title .id-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 0.6rem;
    flex-shrink: 0;
}

/* ════ DISTINCTION ════ */
.distinction {
    background: var(--navy-dark);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}
/* Compass watermark in distinction section */
.distinction-compass {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.04;
    pointer-events: none;
}

.distinction-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.distinction-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 7rem;
    align-items: start;
}

.dis-left {
}

.dis-left .h2 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    margin-bottom: 0;
}

.dis-right {
}

.dis-right .prose {
    color: rgba(189,213,200,0.7);
}

.dis-right .prose strong {
    color: var(--cream);
}

.dis-pull {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.05rem, 1.9vw, 1.3rem);
    color: rgba(169,202,214,0.55);
    line-height: 1.65;
    border-left: 2px solid rgba(216,168,79,0.4);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.dis-cta {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.88rem 2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.dis-cta:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
}

.dis-cta svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ════ CONVICTIONS ════ */
.convictions {
    background: var(--cream);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}
/* Pillar watermark — left side */
.convictions-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.convictions-header {
    margin-bottom: 4.5rem;
    max-width: 680px;
}

.convictions-header .h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    margin-top: 0.5rem;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    background: var(--cream-deep);
    border: 1.5px solid var(--cream-deep);
}

.belief {
    background: var(--white);
    padding: 2.5rem 2.25rem 2.75rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, background 0.25s;
    position: relative;
}

.belief:hover {
    background: var(--cream);
    border-bottom-color: var(--navy);
}

.belief-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--cream-deep);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.belief:hover .belief-num {
    color: rgba(11,53,81,0.12);
}

.belief p {
    font-family: var(--body);
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.82;
}

.belief p strong {
    font-weight: 600;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.05rem;
    letter-spacing: -0.005em;
    display: block;
    margin-bottom: 0.4rem;
}

/* ════ SCOPE ════ */
.scope {
    background: var(--navy);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.scope-compass {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.03;
    pointer-events: none;
}

.scope-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scope-header {
    margin-bottom: 4rem;
}

.scope-header .h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    margin-top: 0.5rem;
}

.scope-header .prose {
    color: rgba(189,213,200,0.65);
    max-width: 640px;
    margin-top: 1.25rem;
}

.scope-cols {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.scope-rule {
    background: rgba(169,202,214,0.12);
    align-self: stretch;
}

.scope-col-label {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.75rem;
}

.scope-col-label.offers {
    color: var(--teal-mid);
}

.scope-col-label.not {
    color: rgba(216,168,79,0.6);
}

.scope-list {
    list-style: none;
}

.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(189,213,200,0.68);
    line-height: 1.72;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(169,202,214,0.08);
}

.scope-item:last-child {
    border-bottom: none;
}

.scope-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.6em;
}

.scope-dot.green {
    background: var(--teal-mid);
    opacity: 0.65;
}

.scope-dot.gold {
    background: var(--gold);
    opacity: 0.45;
}

.scope-note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(169,202,214,0.42);
    line-height: 1.72;
    border-top: 1px solid rgba(169,202,214,0.1);
    padding-top: 2rem;
}

/* ════ MINDFULNESS ════ */
.mindfulness {
    background: var(--sage-wash);
    padding: 9rem 2.5rem;
    border-top: 1px solid var(--sage-pale);
    border-bottom: 1px solid var(--sage-pale);
    position: relative;
    overflow: hidden;
}

.mindfulness-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 7rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.mind-left {
}

.mind-left .h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-top: 0.5rem;
    color: var(--navy);
}

.mind-right {
}

.mind-right .prose {
    color: var(--ink-muted);
}

.mind-right .prose-em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.9vw, 1.28rem);
    color: var(--navy);
    line-height: 1.62;
    border-left: 2px solid var(--sage);
    padding-left: 1.5rem;
    margin: 2rem 0;
    display: block;
}

/* ════ CLOSING STATEMENT ════ */
.closing {
    background: var(--navy-dark);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
/* Full background compass */
.closing-compass {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.05;
    pointer-events: none;
}

.closing-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.closing-mark {
    font-family: var(--serif);
    font-size: 6rem;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.22;
    display: block;
    margin-bottom: 2rem;
    user-select: none;
}

.closing-statement {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--cream);
    line-height: 1.58;
    margin-bottom: 2.5rem;
}

.closing-body {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1rem;
    color: rgba(169,202,214,0.55);
    line-height: 1.82;
    max-width: 660px;
    margin: 0 auto;
}

/* ════ CALL TO ACTION ════ */
.cta-section {
    background: var(--cream-mid);
    padding: 7rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
    text-align: center;
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.cta-section .h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.cta-section p {
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-gold {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-gold:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
}

.btn-outline {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.cta-text-link {
    font-family: var(--label);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(31,111,115,0.3);
    padding-bottom: 0.1rem;
    transition: all 0.2s;
}

.cta-text-link:hover {
    border-color: var(--teal);
    gap: 0.75rem;
}

.cta-text-link svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
