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

:root {
--ink: #1a1410;
--warm-dark: #1e1712;
--amber: #c8935a;
--amber-light: #e8b887;
--cream: #f5ede0;
--cream-dark: #ede0cc;
--muted: #7a6a58;
--gold: #b8932a;
--section-pad: 7rem 2rem;
}

html { scroll-behavior: smooth; }

body {
font-family: 'DM Sans', sans-serif;
background: var(--warm-dark);
color: var(--cream);
line-height: 1.7;
font-size: 16px;
overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Cormorant Garamond', serif; }

h1, h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }
h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: .02em; }

.label {
font-size: .68rem;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--amber);
font-weight: 500;
margin-bottom: 1.5rem;
display: block;
}

/* ── BUTTONS ── */
.btn {
display: inline-block;
padding: .85rem 2.2rem;
font-family: 'DM Sans', sans-serif;
font-size: .85rem;
font-weight: 500;
letter-spacing: .08em;
text-transform: uppercase;
text-decoration: none;
transition: all .3s ease;
cursor: pointer;
border: none;
}
.btn-primary {
background: var(--amber);
color: var(--warm-dark);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
.btn-ghost {
background: transparent;
color: var(--cream);
border: 1px solid rgba(200,147,90,.4);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ── NAV ── */
.main-nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
padding: 1.5rem 3rem;
display: flex;
align-items: center;
background: rgba(30,23,18,.96);
border-bottom: 1px solid rgba(200,147,90,.08);
}
.nav-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1rem;
font-weight: 400;
letter-spacing: .08em;
text-transform: uppercase;
color: #f5ede0;
text-decoration: none;
white-space: nowrap;
margin-right: auto;
}
.nav-links {
display: flex;
gap: 1.4rem;
list-style: none;
}
.nav-links a {
font-size: .75rem;
letter-spacing: .08em;
text-transform: uppercase;
color: rgba(245,237,224,.7);
text-decoration: none;
transition: color .2s;
white-space: nowrap;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a.nav-active {
color: var(--cream) !important;
border-bottom: 1px solid rgba(200,147,90,.5);
padding-bottom: 2px;
}

.nav-start {
color: var(--amber) !important;
border: 1px solid rgba(200,147,90,.4);
padding: .3rem .8rem;
transition: all .2s !important;
}
.nav-start:hover {
background: var(--amber) !important;
color: #1e1712 !important;
border-color: var(--amber) !important;
}

/* ── HERO ── */
#hero {
min-height: 100vh;
display: flex; align-items: center; justify-content: center;
position: relative;
overflow: hidden;
padding: 8rem 2rem 6rem;
}

.hero-bg {
position: absolute; inset: 0;
background:
radial-gradient(ellipse 60% 80% at 30% 60%, rgba(184,147,42,.06) 0%, transparent 60%),
radial-gradient(ellipse 40% 60% at 70% 30%, rgba(200,147,90,.04) 0%, transparent 50%),
var(--warm-dark);
}

/* Fracture lines */
.hero-bg::before {
content: '';
position: absolute; inset: 0;
background-image:
linear-gradient(23deg, transparent 48%, rgba(200,147,90,.04) 48.5%, transparent 49%),
linear-gradient(67deg, transparent 35%, rgba(200,147,90,.03) 35.5%, transparent 36%),
linear-gradient(145deg, transparent 62%, rgba(200,147,90,.05) 62.5%, transparent 63%);
}

.hero-inner {
position: relative; z-index: 2;
max-width: 780px;
text-align: center;
}

.hero-eyebrow {
font-size: .7rem;
letter-spacing: .25em;
text-transform: uppercase;
color: var(--amber);
margin-bottom: 2.5rem;
opacity: 0;
animation: fadeUp .8s ease .3s forwards;
}

.hero-headline {
font-size: clamp(2.8rem, 6vw, 5.2rem);
font-weight: 300;
line-height: 1.1;
color: var(--cream);
margin-bottom: 2rem;
opacity: 0;
animation: fadeUp .9s ease .5s forwards;
}

.hero-headline em {
font-style: italic;
color: var(--amber-light);
}

.hero-sub {
font-size: 1.05rem;
color: rgba(245,237,224,.65);
max-width: 560px;
margin: 0 auto 3.5rem;
line-height: 1.8;
opacity: 0;
animation: fadeUp .9s ease .7s forwards;
}

.hero-ctas {
display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
opacity: 0;
animation: fadeUp .9s ease .9s forwards;
}

.hero-scroll {
position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
display: flex; flex-direction: column; align-items: center; gap: .5rem;
opacity: .4;
animation: float 2s ease-in-out infinite;
}
.hero-scroll span { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 40px; background: var(--amber); }

/* ── FOR THE ONE WHO ── */
#named {
padding: var(--section-pad);
max-width: 800px; margin: 0 auto;
text-align: center;
}

.named-lines { margin: 3rem 0; }
.named-line {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.2rem, 2.5vw, 1.65rem);
font-weight: 300;
color: rgba(245,237,224,.75);
padding: 1rem 0;
border-bottom: 1px solid rgba(200,147,90,.12);
line-height: 1.5;
transition: color .3s;
}
.named-line:hover { color: var(--cream); }
.named-line:first-child { border-top: 1px solid rgba(200,147,90,.12); }

.named-truth {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 300;
line-height: 1.2;
margin: 4rem 0 2rem;
}
.named-truth strong { color: var(--amber-light); font-weight: 400; }

.named-body {
font-size: 1rem;
color: rgba(245,237,224,.65);
line-height: 1.9;
}

/* Fractured light phrase */
.fractured {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.5rem, 3vw, 2.2rem);
font-style: italic;
font-weight: 300;
color: var(--amber-light);
margin: 2rem 0;
display: block;
}

/* ── REFRAME ── */
#reframe {
padding: var(--section-pad);
background: linear-gradient(135deg, rgba(200,147,90,.04) 0%, transparent 60%);
border-top: 1px solid rgba(200,147,90,.1);
border-bottom: 1px solid rgba(200,147,90,.1);
}

.reframe-inner {
max-width: 900px; margin: 0 auto;
}

.reframe-headline {
font-size: clamp(2rem, 4.5vw, 3.5rem);
font-weight: 300;
line-height: 1.15;
max-width: 600px;
margin-bottom: 2.5rem;
}

.reframe-body {
font-size: 1rem;
color: rgba(245,237,224,.7);
max-width: 620px;
line-height: 1.9;
margin-bottom: 4rem;
}

.declarations {
display: flex; flex-direction: column; gap: 2rem;
}

.declaration {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.6rem, 3.5vw, 2.4rem);
font-weight: 300;
padding-left: 2rem;
border-left: 2px solid var(--amber);
line-height: 1.2;
transition: border-color .3s;
}
.declaration:hover { border-color: var(--amber-light); }

.reframe-close {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
font-style: italic;
color: rgba(245,237,224,.6);
margin-top: 3.5rem;
font-weight: 300;
}
.reframe-close strong { color: var(--amber-light); font-style: normal; }

/* ── JOY'S STORY ── */
#story {
padding: var(--section-pad);
max-width: 1100px; margin: 0 auto;
display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}

.story-left { position: sticky; top: 8rem; }

.story-image-placeholder {
aspect-ratio: 3/4;
background: linear-gradient(160deg, rgba(200,147,90,.08) 0%, rgba(184,147,42,.04) 100%);
border: 1px solid rgba(200,147,90,.15);
display: flex; align-items: center; justify-content: center;
color: rgba(200,147,90,.3);
font-size: .75rem;
letter-spacing: .1em;
text-transform: uppercase;
font-style: italic;
overflow: hidden;
}
.story-image-placeholder img {
width: 100%;
height: 100%;
object-fit: cover;
}

.story-right {}

.story-headline {
font-size: clamp(1.8rem, 3.5vw, 2.6rem);
font-weight: 300;
line-height: 1.2;
margin-bottom: 2rem;
}

.story-body {
font-size: 1rem;
color: rgba(245,237,224,.7);
line-height: 1.95;
margin-bottom: 1.5rem;
}

.story-body strong { color: var(--cream); font-weight: 400; }

.story-quote {
margin: 3rem 0;
padding: 2rem 2.5rem;
border-left: 2px solid var(--amber);
background: rgba(200,147,90,.04);
}
.story-quote p {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.2rem, 2.5vw, 1.6rem);
font-style: italic;
font-weight: 300;
line-height: 1.5;
color: var(--cream-dark);
}
.story-quote cite {
display: block;
margin-top: 1rem;
font-size: .78rem;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--amber);
font-style: normal;
}

.credentials {
margin-top: 2.5rem;
padding-top: 2.5rem;
border-top: 1px solid rgba(200,147,90,.15);
}
.credential-item {
font-size: .85rem;
color: rgba(245,237,224,.55);
padding: .4rem 0;
padding-left: 1rem;
border-left: 1px solid rgba(200,147,90,.2);
margin-bottom: .5rem;
}

/* ── PATHS / ECOSYSTEM ── */
#paths {
padding: var(--section-pad);
background: rgba(200,147,90,.025);
}

.paths-header {
text-align: center;
max-width: 600px;
margin: 0 auto 5rem;
}

.paths-header h2 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 300;
margin-bottom: 1rem;
}

.paths-header p {
font-size: .95rem;
color: rgba(245,237,224,.6);
line-height: 1.8;
}

.paths-grid {
max-width: 1100px; margin: 0 auto;
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5px;
background: rgba(200,147,90,.12);
border: 1px solid rgba(200,147,90,.12);
}

.path-card {
background: var(--warm-dark);
padding: 3rem 2.5rem;
transition: background .3s;
position: relative;
overflow: hidden;
}
.path-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--amber), transparent);
opacity: 0;
transition: opacity .3s;
}
.path-card:hover { background: rgba(200,147,90,.04); }
.path-card:hover::before { opacity: 1; }

.path-number {
font-family: 'Cormorant Garamond', serif;
font-size: 3.5rem;
font-weight: 300;
color: rgba(200,147,90,.15);
line-height: 1;
margin-bottom: 1.5rem;
}

.path-question {
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-style: italic;
color: rgba(245,237,224,.6);
margin-bottom: 1rem;
line-height: 1.5;
}

.path-title {
font-size: 1.1rem;
font-weight: 500;
color: var(--cream);
margin-bottom: 1rem;
letter-spacing: .02em;
}

.path-body {
font-size: .88rem;
color: rgba(245,237,224,.55);
line-height: 1.8;
margin-bottom: 2rem;
}

.path-link {
font-size: .75rem;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--amber);
text-decoration: none;
border-bottom: 1px solid rgba(200,147,90,.3);
padding-bottom: 2px;
transition: border-color .2s, color .2s;
}
.path-link:hover { color: var(--amber-light); border-color: var(--amber-light); }

/* ── INVITATION ── */
#invitation {
padding: 10rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}

.invitation-bg {
position: absolute; inset: 0;
background:
radial-gradient(ellipse 70% 80% at 50% 50%, rgba(184,147,42,.05) 0%, transparent 70%),
var(--warm-dark);
}

.invitation-inner {
position: relative; z-index: 2;
max-width: 680px; margin: 0 auto;
}

.invitation-body {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.3rem, 2.8vw, 1.9rem);
font-weight: 300;
line-height: 1.7;
color: rgba(245,237,224,.8);
margin-bottom: 3rem;
}

.invitation-body strong {
color: var(--cream);
font-weight: 400;
}

.invitation-anchor {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 5vw, 3.5rem);
font-style: italic;
font-weight: 300;
color: var(--amber-light);
margin: 3rem 0;
display: block;
}

.invitation-ctas {
display: flex; flex-direction: column; align-items: center; gap: 1rem;
margin-top: 3.5rem;
}

.invitation-cta-primary {
padding: 1.1rem 3rem;
background: var(--amber);
color: var(--warm-dark);
font-size: .85rem;
font-weight: 500;
letter-spacing: .1em;
text-transform: uppercase;
text-decoration: none;
transition: all .3s;
display: inline-block;
}
.invitation-cta-primary:hover { background: var(--amber-light); transform: translateY(-2px); }

.invitation-cta-row {
display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
margin-top: .5rem;
}

.invitation-cta-ghost {
font-size: .75rem;
letter-spacing: .1em;
text-transform: uppercase;
color: rgba(245,237,224,.5);
text-decoration: none;
border-bottom: 1px solid rgba(200,147,90,.2);
padding-bottom: 2px;
transition: color .2s, border-color .2s;
}
.invitation-cta-ghost:hover { color: var(--amber); border-color: var(--amber); }

/* ── FOOTER ── */
footer {
padding: 4rem 3rem;
border-top: 1px solid rgba(200,147,90,.12);
display: flex; flex-direction: column; align-items: center; gap: 2rem;
text-align: center;
}

.footer-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.4rem;
font-weight: 300;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--cream);
}

.footer-tagline {
font-size: .8rem;
color: rgba(245,237,224,.4);
letter-spacing: .05em;
max-width: 400px;
line-height: 1.7;
}

.footer-nav {
display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.footer-nav a {
font-size: .72rem;
letter-spacing: .1em;
text-transform: uppercase;
color: rgba(245,237,224,.4);
text-decoration: none;
transition: color .2s;
}
.footer-nav a:hover { color: var(--amber); }

.footer-legal {
font-size: .7rem;
color: rgba(245,237,224,.25);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(6px); }
}

/* ── FACILITATOR BRIDGE ── */
#facilitator-bridge {
border-top: 1px solid rgba(200,147,90,.1);
}

.facilitator-room-image {
position: relative;
width: 100%;
height: 55vh;
min-height: 360px;
overflow: hidden;
}
.facilitator-room-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 40%;
filter: brightness(.55);
}
.facilitator-room-overlay {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
}
.facilitator-room-text {
font-size: clamp(2rem, 5vw, 3.8rem);
font-weight: 300;
line-height: 1.2;
color: var(--cream);
text-align: center;
letter-spacing: .02em;
}
.facilitator-room-text em {
color: var(--amber-light);
font-style: italic;
}

.facilitator-text-center {
padding: var(--section-pad);
max-width: 800px;
margin: 0 auto;
}

/* ── HEALING HUB PAGE ── */
.hub-story-grid {
padding: var(--section-pad);
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: start;
}

.hub-story-grid-reverse {
direction: ltr;
}
.hub-story-grid-reverse > .hub-text-col { order: 1; }
.hub-story-grid-reverse > .hub-image-col { order: 2; }

.hub-image-col { position: sticky; top: 8rem; }

.hub-image-frame {
aspect-ratio: 3/4;
overflow: hidden;
border: 1px solid rgba(200,147,90,.15);
background: linear-gradient(160deg, rgba(200,147,90,.08) 0%, rgba(184,147,42,.04) 100%);
}
.hub-image-frame.hub-image-wide {
aspect-ratio: 4/3;
}
.hub-image-frame img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 20%;
}

.hub-text-col {}

.thi-lessons-wrapper {
max-width: 800px;
margin: 0 auto;
padding: 3rem 2rem 0;
}

#thi-framework {
padding: 0;
border-top: 1px solid rgba(200,147,90,.1);
border-bottom: 1px solid rgba(200,147,90,.1);
background: rgba(200,147,90,.02);
}

#thi-framework .hub-story-grid {
padding-bottom: 0;
}

#not-like {
padding: var(--section-pad);
border-bottom: 1px solid rgba(200,147,90,.1);
}

.not-like-inner {
max-width: 1100px;
margin: 0 auto;
}

.not-like-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5px;
background: rgba(200,147,90,.12);
border: 1px solid rgba(200,147,90,.12);
margin-top: 3rem;
}

.not-like-card {
background: var(--warm-dark);
padding: 3rem 2.5rem;
transition: background .3s;
}
.not-like-card:hover { background: rgba(200,147,90,.04); }

.not-like-contrast {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.2rem, 2vw, 1.55rem);
font-weight: 300;
line-height: 1.3;
color: var(--amber-light);
margin-bottom: 1.5rem;
}

.not-like-body {
font-size: .88rem;
color: rgba(245,237,224,.55);
line-height: 1.85;
}

#learned-to-leave {
padding: 10rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}

.church-section-header {
background: linear-gradient(135deg, rgba(200,147,90,.04) 0%, transparent 60%);
border-top: 1px solid rgba(200,147,90,.15);
}

.church-header-inner {
max-width: 800px;
margin: 0 auto;
}

.church-header-inner h2 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 300;
line-height: 1.2;
margin-bottom: 2rem;
}

#church-challenges {
padding: var(--section-pad);
}

.thi-lessons {
margin-top: 4rem;
padding-top: 3rem;
border-top: 1px solid rgba(200,147,90,.12);
}

.thi-lessons-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1px;
background: rgba(200,147,90,.12);
border: 1px solid rgba(200,147,90,.12);
margin-top: 1.5rem;
}

.thi-lesson {
background: var(--warm-dark);
padding: 1.2rem 1.8rem;
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
font-style: italic;
font-weight: 300;
color: rgba(245,237,224,.7);
line-height: 1.4;
transition: background .3s, color .3s;
}
.thi-lesson:hover { background: rgba(200,147,90,.04); color: var(--cream); }

#convening {
padding: var(--section-pad);
}

.convening-who {
max-width: 900px;
margin: 4rem auto 0;
padding-top: 3rem;
border-top: 1px solid rgba(200,147,90,.12);
}

.convening-who-grid {
display: flex;
flex-wrap: wrap;
gap: .75rem;
margin-top: 1.5rem;
justify-content: center;
}

.convening-tag {
font-size: .75rem;
letter-spacing: .08em;
text-transform: uppercase;
color: rgba(245,237,224,.6);
border: 1px solid rgba(200,147,90,.25);
padding: .5rem 1.2rem;
transition: border-color .2s, color .2s;
}
.convening-tag:hover { border-color: var(--amber); color: var(--amber); }

#church-cta {
padding: var(--section-pad);
text-align: center;
border-top: 1px solid rgba(200,147,90,.1);
background: linear-gradient(135deg, rgba(200,147,90,.03) 0%, transparent 60%);
}

.church-cta-inner {
max-width: 700px;
margin: 0 auto;
}

/* ── CONTACT PAGE ── */
#contact-paths {
padding: var(--section-pad);
border-bottom: 1px solid rgba(200,147,90,.1);
}

.contact-paths-inner {
max-width: 1100px;
margin: 0 auto;
}

.contact-quick-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5px;
background: rgba(200,147,90,.12);
border: 1px solid rgba(200,147,90,.12);
margin-top: 1rem;
}

.contact-quick-card {
background: var(--warm-dark);
padding: 2.5rem 2rem;
text-decoration: none;
display: flex;
flex-direction: column;
transition: background .3s;
position: relative;
}
.contact-quick-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--amber), transparent);
opacity: 0;
transition: opacity .3s;
}
.contact-quick-card:hover { background: rgba(200,147,90,.04); }
.contact-quick-card:hover::before { opacity: 1; }

.contact-quick-number {
font-size: 2.5rem;
font-weight: 300;
color: rgba(200,147,90,.15);
line-height: 1;
margin-bottom: 1.2rem;
}

.contact-quick-title {
font-size: 1rem;
font-weight: 500;
color: var(--cream);
margin-bottom: .75rem;
letter-spacing: .02em;
}

.contact-quick-body {
font-size: .82rem;
color: rgba(245,237,224,.45);
line-height: 1.7;
flex: 1;
margin-bottom: 1.5rem;
}

.contact-quick-link {
font-size: .72rem;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--amber);
border-bottom: 1px solid rgba(200,147,90,.3);
padding-bottom: 2px;
align-self: flex-start;
transition: border-color .2s, color .2s;
}
.contact-quick-card:hover .contact-quick-link {
color: var(--amber-light);
border-color: var(--amber-light);
}

#contact-form {
padding: var(--section-pad);
}

.contact-form-grid {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1.6fr;
gap: 6rem;
align-items: start;
}

.contact-form-left {}
.contact-form-right {}

.contact-direct {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(200,147,90,.1);
}

.contact-direct-item {
display: flex;
flex-direction: column;
gap: .3rem;
margin-bottom: 1.2rem;
}

.contact-direct-label {
font-size: .68rem;
letter-spacing: .15em;
text-transform: uppercase;
color: rgba(200,147,90,.5);
}

.contact-direct-value {
font-size: .95rem;
color: rgba(245,237,224,.7);
text-decoration: none;
transition: color .2s;
}
a.contact-direct-value:hover { color: var(--amber); }

.contact-social {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(200,147,90,.1);
}

.contact-social-links {
display: flex;
gap: 1.5rem;
margin-top: 1rem;
flex-wrap: wrap;
}

.contact-social-link {
font-size: .75rem;
letter-spacing: .1em;
text-transform: uppercase;
color: rgba(245,237,224,.45);
text-decoration: none;
border-bottom: 1px solid rgba(200,147,90,.2);
padding-bottom: 2px;
transition: color .2s, border-color .2s;
}
.contact-social-link:hover { color: var(--amber); border-color: var(--amber); }

@media (max-width: 900px) {
.contact-quick-grid { grid-template-columns: repeat(2, 1fr); }
.contact-form-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 560px) {
.contact-quick-grid { grid-template-columns: 1fr; }
}

/* ── SPEAKING PAGE ── */
.speaking-image-frame {
aspect-ratio: 4/3 !important;
}
.speaking-image-frame img {
object-position: center 25%;
}

.speaking-bridge {
position: relative;
width: 100%;
height: 60vh;
min-height: 400px;
overflow: hidden;
}
.speaking-bridge img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
filter: brightness(.5);
}
.speaking-bridge-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
  to bottom,
  transparent 40%,
  rgba(30,23,18,.6) 100%
);
}

#inquiry {
padding: var(--section-pad);
border-top: 1px solid rgba(200,147,90,.1);
}

.speaking-form-inner {
max-width: 760px;
margin: 0 auto;
}

.speaking-form {
margin-top: 1rem;
}

.speaking-form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 2rem;
}

.speaking-form-group {
display: flex;
flex-direction: column;
}

.speaking-label {
font-size: .72rem;
letter-spacing: .15em;
text-transform: uppercase;
color: var(--amber);
margin-bottom: .75rem;
}

.speaking-input {
background: rgba(245,237,224,.04);
border: 1px solid rgba(200,147,90,.2);
color: var(--cream);
font-family: 'DM Sans', sans-serif;
font-size: .95rem;
padding: 1rem 1.2rem;
transition: border-color .2s;
outline: none;
-webkit-appearance: none;
appearance: none;
width: 100%;
}
.speaking-input:focus { border-color: var(--amber); background: rgba(245,237,224,.06); }
.speaking-input::placeholder { color: rgba(245,237,224,.25); }

.speaking-select option { background: var(--warm-dark); color: var(--cream); }

.speaking-textarea {
resize: vertical;
min-height: 140px;
line-height: 1.7;
}

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

/* ── ABOUT PAGE ── */
.about-story-grid {
padding: var(--section-pad);
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: start;
}

.about-image-col { position: sticky; top: 8rem; }

.about-image-frame {
aspect-ratio: 3/4;
overflow: hidden;
border: 1px solid rgba(200,147,90,.15);
background: linear-gradient(160deg, rgba(200,147,90,.08) 0%, rgba(184,147,42,.04) 100%);
}
.about-image-frame img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 15%;
}

.about-text-col {}

#about-mission {
padding: var(--section-pad);
text-align: center;
border-top: 1px solid rgba(200,147,90,.1);
border-bottom: 1px solid rgba(200,147,90,.1);
background: linear-gradient(135deg, rgba(200,147,90,.04) 0%, transparent 60%);
}

.about-mission-inner {
max-width: 800px;
margin: 0 auto;
}

.about-mission-headline {
font-size: clamp(1.8rem, 3.5vw, 2.6rem);
font-weight: 300;
line-height: 1.3;
margin-bottom: 2.5rem;
}

#about-intersection {
padding: var(--section-pad);
}

.about-intersection-inner {
max-width: 1100px;
margin: 0 auto;
}

.intersection-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5px;
background: rgba(200,147,90,.12);
border: 1px solid rgba(200,147,90,.12);
}

.intersection-card {
background: var(--warm-dark);
padding: 3rem 2.5rem;
transition: background .3s;
position: relative;
}
.intersection-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--amber), transparent);
opacity: 0;
transition: opacity .3s;
}
.intersection-card:hover { background: rgba(200,147,90,.04); }
.intersection-card:hover::before { opacity: 1; }

.intersection-number {
font-size: 3rem;
font-weight: 300;
color: rgba(200,147,90,.15);
line-height: 1;
margin-bottom: 1.5rem;
}

.intersection-title {
font-size: 1.1rem;
font-weight: 500;
color: var(--cream);
margin-bottom: 1rem;
letter-spacing: .02em;
}

.intersection-body {
font-size: .88rem;
color: rgba(245,237,224,.55);
line-height: 1.8;
}

#about-ascribe {
padding: var(--section-pad);
border-top: 1px solid rgba(200,147,90,.1);
}

.about-ascribe-inner {
max-width: 700px;
margin: 0 auto;
}

#about-credentials {
padding: var(--section-pad);
background: rgba(200,147,90,.025);
}

.about-credentials-inner {
max-width: 1100px;
margin: 0 auto;
}

.credential-cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5px;
background: rgba(200,147,90,.12);
border: 1px solid rgba(200,147,90,.12);
margin-top: 3rem;
}

.credential-card {
background: var(--warm-dark);
padding: 2.5rem;
transition: background .3s;
}
.credential-card:hover { background: rgba(200,147,90,.04); }

.credential-card-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.6rem;
font-weight: 300;
color: var(--cream);
margin-bottom: 1rem;
}

.credential-card-body {
font-size: .88rem;
color: rgba(245,237,224,.55);
line-height: 1.8;
}
.credential-card-body em {
color: rgba(245,237,224,.7);
display: block;
margin-top: .5rem;
}

#core-belief {
padding: var(--section-pad);
border-top: 1px solid rgba(200,147,90,.1);
}

#about-quote {
padding: 5rem 2rem;
}

.about-quote-inner {
max-width: 700px;
margin: 0 auto;
}

/* ── SCHEDULE PAGE ── */
#schedule {
padding: var(--section-pad);
}

.schedule-inner {
max-width: 680px;
margin: 0 auto;
}

.schedule-list {
display: flex;
flex-direction: column;
gap: 1px;
background: rgba(200,147,90,.12);
border: 1px solid rgba(200,147,90,.12);
}

.schedule-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.4rem 2rem;
background: var(--warm-dark);
text-decoration: none;
color: var(--cream);
font-family: 'DM Sans', sans-serif;
font-size: .88rem;
letter-spacing: .05em;
transition: background .25s, color .25s;
position: relative;
}
.schedule-item::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 2px;
background: var(--amber);
opacity: 0;
transition: opacity .25s;
}
.schedule-item:hover {
background: rgba(200,147,90,.08);
color: var(--amber-light);
}
.schedule-item:hover::before { opacity: 1; }

.schedule-item-text {
font-family: 'Cormorant Garamond', serif;
font-size: 1.15rem;
font-weight: 300;
}

.schedule-item-arrow {
color: var(--amber);
font-size: 1rem;
transition: transform .25s;
}
.schedule-item:hover .schedule-item-arrow {
transform: translateX(4px);
}

/* ── NEXT STEPS PAGE ── */
#welcome, #what-now, #what-happened {
padding: var(--section-pad);
border-bottom: 1px solid rgba(200,147,90,.08);
}
#what-happened { border-bottom: none; }

.nextsteps-inner {
max-width: 720px;
margin: 0 auto;
padding: 0 1.5rem;
}

.nextsteps-audio {
margin: 2.5rem 0;
padding: 2rem;
background: rgba(200,147,90,.04);
border: 1px solid rgba(200,147,90,.12);
}

.nextsteps-audio-player {
width: 100%;
height: 42px;
filter: invert(.85) sepia(.2) saturate(.5) hue-rotate(-10deg);
border-radius: 0;
}

.nextsteps-video {
margin: 3rem 0;
}

.nextsteps-video-frame {
position: relative;
width: 100%;
aspect-ratio: 16/9;
overflow: hidden;
border: 1px solid rgba(200,147,90,.15);
}
.nextsteps-video-frame iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: none;
}

.nextsteps-video-caption {
text-align: center;
font-size: .78rem;
letter-spacing: .1em;
text-transform: uppercase;
color: rgba(200,147,90,.5);
margin-top: 1rem;
}

/* ── LEGAL PAGES ── */
.legal-page {
min-height: 100vh;
padding: 10rem 2rem 6rem;
}

.legal-inner {
max-width: 720px;
margin: 0 auto;
}

.legal-section {
margin-bottom: 3rem;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(200,147,90,.08);
}
.legal-section:last-child {
border-bottom: none;
}

.legal-heading {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 400;
color: var(--cream);
margin-bottom: 1rem;
}

.legal-body {
font-size: .95rem;
color: rgba(245,237,224,.65);
line-height: 1.9;
margin-bottom: 1rem;
}
.legal-body strong { color: var(--cream); font-weight: 500; }

.legal-link {
color: var(--amber);
text-decoration: none;
border-bottom: 1px solid rgba(200,147,90,.3);
transition: border-color .2s;
}
.legal-link:hover { border-color: var(--amber); }

.footer-legal-links {
display: flex;
gap: .75rem;
align-items: center;
font-size: .72rem;
}
.footer-legal-links a {
color: rgba(245,237,224,.35);
text-decoration: none;
letter-spacing: .08em;
text-transform: uppercase;
transition: color .2s;
}
.footer-legal-links a:hover { color: var(--amber); }
.footer-legal-links span { color: rgba(245,237,224,.2); }

/* ── HAMBURGER MENU ── */
.nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 4px;
margin-left: 1rem;
}
.nav-toggle span {
display: block;
width: 22px;
height: 2px;
background: #f5ede0;
transition: all .3s ease;
transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
:root { --section-pad: 4rem 1.5rem; }

.main-nav { padding: 1.2rem 1.5rem; }
.nav-toggle { display: flex; }

.nav-links.mobile-hidden { display: none !important; }
.nav-links.mobile-open {
  display: flex !important;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  flex-direction: column;
  background: rgba(30,23,18,.98);
  padding: 1.5rem 2rem 2rem;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(200,147,90,.15);
  z-index: 99;
}
.nav-links.mobile-open a {
  font-size: .88rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(200,147,90,.08);
}
.nav-links.mobile-open .nav-start {
  border: 1px solid rgba(200,147,90,.4);
  padding: .5rem 1rem;
  text-align: center;
}

/* Layout fixes */
#story { grid-template-columns: 1fr; gap: 3rem; }
.story-left { position: static; }
.story-image-placeholder { aspect-ratio: 3/4; }
.story-image-placeholder img { object-position: center 10%; }
.invitation-cta-row { flex-direction: column; align-items: center; }
.about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
.about-image-col { position: static; }
.about-image-frame { aspect-ratio: 4/3; }
.about-image-frame img { object-position: center top; }
.intersection-cards { grid-template-columns: 1fr; }
.credential-cards { grid-template-columns: 1fr; }
.not-like-cards { grid-template-columns: 1fr; }
.thi-lessons-grid { grid-template-columns: 1fr; }
.hub-story-grid { grid-template-columns: 1fr; gap: 3rem; }
.hub-image-col { position: static; }
.hub-image-frame { aspect-ratio: 4/3; }
.hub-image-frame.hub-image-wide { aspect-ratio: 4/3; }
.hub-story-grid-reverse > .hub-text-col { order: 0; }
.hub-story-grid-reverse > .hub-image-col { order: 0; }
.contact-quick-grid { grid-template-columns: repeat(2, 1fr); }
.contact-form-grid { grid-template-columns: 1fr; gap: 3rem; }
.speaking-form-row { grid-template-columns: 1fr; }
.speaking-bridge { height: 40vh; min-height: 280px; }

/* Padding fixes — inner containers */
.reframe-inner,
.invitation-inner,
.about-mission-inner,
.about-ascribe-inner,
.church-header-inner,
.church-cta-inner,
.about-quote-inner,
.facilitator-text-center,
.speaking-form-inner,
.contact-paths-inner,
.about-credentials-inner,
.about-intersection-inner,
.thi-lessons-wrapper,
.thi-inner,
.paths-header,
.nextsteps-inner,
.legal-inner,
.schedule-inner {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Overflow fix for large headings */
h1, h2, h3 { word-break: break-word; }
.paths-header h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

/* Scroll reveal */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* ── SUBPAGE HERO ── */
.page-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}