/* ============================================================
   Talk About It — Shared Stylesheet
   ============================================================ */

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

:root {
    --cream: #FAF7F2;
    --warm-white: #FFFDF9;
    --charcoal: #1C1C1E;
    --soft-black: #2D2B28;
    --sage: #7A9E7E;
    --sage-light: #B8D4BB;
    --terracotta: #C4714A;
    --terracotta-light: #E8A882;
    --blush: #E8D5C8;
    --gold: #C9A84C;
    --muted: #8A8278;
    --border: rgba(28, 28, 30, 0.10);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--soft-black);
    overflow-x: hidden;
}

/* ── HEADER ── */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(250, 247, 242, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    text-decoration: none;
}
.logo span { color: var(--terracotta); }

header nav {
    display: flex; align-items: center; gap: 2rem;
    background: none; padding: 0; text-align: unset;
}

header nav a {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s;
    padding: 0; display: inline;
    background: none;
}
header nav a:hover { color: var(--charcoal); background: none; }
header nav a.active { color: var(--charcoal); }

.btn-nav {
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.82rem; font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-nav-primary { background: var(--terracotta); color: #fff !important; }
.btn-nav-primary:hover { background: #b5603c; color: #fff !important; }
.btn-nav-outline { border: 1.5px solid var(--border); color: var(--soft-black) !important; }
.btn-nav-outline:hover { border-color: var(--charcoal); color: var(--charcoal) !important; }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--charcoal); color: var(--cream);
    border-radius: 100px;
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); }

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 1.5px solid var(--border); color: var(--soft-black);
    border-radius: 100px;
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--charcoal); transform: translateY(-2px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; font-weight: 500; color: var(--soft-black);
    text-decoration: none;
    transition: gap 0.2s;
}
.btn-ghost::after { content: '→'; }
.btn-ghost:hover { gap: 0.9rem; color: var(--terracotta); }

/* ── SECTION LABELS & HEADINGS ── */
.section-label {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    display: block; margin-bottom: 0.8rem;
}
.label-terra { color: var(--terracotta); }
.label-sage  { color: var(--sage); }
.label-gold  { color: var(--gold); }
.label-light { color: var(--terracotta-light); }

.section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 1.5rem;
}
.page-hero-eyebrow::before {
    content: ''; display: block;
    width: 32px; height: 1.5px;
    background: var(--terracotta);
}

.page-hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 1.08;
    letter-spacing: -0.03em; color: var(--charcoal);
    margin-bottom: 1.2rem;
}
.page-hero-h1 em { font-style: italic; color: var(--terracotta); }

.page-lead {
    font-size: 1.1rem; font-weight: 300;
    line-height: 1.7; color: var(--muted);
}

/* ── CONTACT BAND ── */
.contact-band {
    background: var(--terracotta);
    padding: 6rem 3rem; text-align: center;
}
.contact-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff; margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.contact-band p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

.contact-pill {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: #fff; color: var(--terracotta);
    padding: 1rem 2.2rem; border-radius: 100px;
    font-size: 1rem; font-weight: 500; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-pill:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }

/* alias used on some pages */
.contact-email { display: inline-flex; align-items: center; gap: 0.6rem; background: #fff; color: var(--terracotta); padding: 1rem 2.2rem; border-radius: 100px; font-size: 1rem; font-weight: 500; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.contact-email:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }

.contact-details { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ── FOOTER ── */
footer {
    background: var(--soft-black);
    padding: 3rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900; font-size: 1.1rem; color: var(--cream);
}
.footer-logo span { color: var(--terracotta-light); }

.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: rgba(255,255,255,0.4);
    text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--terracotta-light); color: var(--terracotta-light); }
.footer-copy { width: 100%; font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ── HIDE ON MOBILE ── */
@media (max-width: 900px) {
    header { padding: 1rem 1.5rem; }
    .hide-mobile { display: none; }
    .contact-band { padding: 4rem 1.5rem; }
    .contact-details { flex-direction: column; align-items: center; }
    footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   INDEX.HTML — Homepage
   ============================================================ */

/* Hero */
.hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 5rem; gap: 4rem;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(196,113,74,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-text > * { animation: fadeUp 0.7s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.35s; }
.hero-text > *:nth-child(4) { animation-delay: 0.5s; }
.hero-visual { animation: fadeUp 0.9s 0.3s ease both; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--terracotta); }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900; line-height: 1.05;
    letter-spacing: -0.03em; color: var(--charcoal);
    margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero p { font-size: 1.1rem; font-weight: 300; line-height: 1.7; color: var(--muted); max-width: 420px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-wrap {
    width: 100%; max-width: 540px; aspect-ratio: 4/5;
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    overflow: hidden; background: var(--blush); position: relative;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }

.hero-badge {
    position: absolute; bottom: 2rem; left: -2rem;
    background: #fff; border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    display: flex; gap: 0.8rem; align-items: center;
    animation: floatUp 4s ease-in-out infinite;
}
.badge-icon { font-size: 1.8rem; }
.badge-text strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }
.badge-text span { font-size: 0.75rem; color: var(--muted); }

/* Stats bar */
.stats-bar {
    background: var(--charcoal);
    padding: 2.5rem 3rem;
    display: flex; justify-content: space-around; gap: 2rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700;
    color: var(--terracotta-light);
    display: block; line-height: 1; margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; text-transform: uppercase; }

/* Mission */
.mission {
    padding: 7rem 3rem;
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem;
    align-items: center; max-width: 1200px; margin: 0 auto;
}
.mission-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.2rem; }
.mission h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.02em; color: var(--charcoal); }
.mission-body p { font-size: 1.05rem; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 1.5rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem; transition: border-color 0.2s, box-shadow 0.2s; }
.value-card:hover { border-color: var(--sage-light); box-shadow: 0 4px 20px rgba(122,158,126,0.12); }
.value-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.value-card h4 { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.3rem; }
.value-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* Resources section (homepage) */
.resources { background: var(--warm-white); padding: 7rem 3rem; }
.resources-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); display: block; margin-bottom: 0.8rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--charcoal); letter-spacing: -0.02em; }
.resource-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.resource-card { border-radius: 20px; padding: 2rem; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.resource-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.resource-card.card-learn { background: var(--sage); }
.resource-card.card-support { background: var(--terracotta); }
.resource-card.card-stories { background: var(--charcoal); }
.resource-card .card-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; display: block; }
.resource-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; }
.resource-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.card-soon { display: inline-block; margin-top: 1.2rem; font-size: 0.72rem; padding: 0.3rem 0.8rem; border-radius: 100px; background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.8); }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; font-size: 0.82rem; color: #fff; text-decoration: none; font-weight: 500; }
.card-link::after { content: '→'; transition: transform 0.2s; }
.resource-card:hover .card-link::after { transform: translateX(4px); }

/* Conversation section */
.conversation { padding: 7rem 3rem; max-width: 900px; margin: 0 auto; text-align: center; }
.conversation .label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1.2rem; }
.conversation h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--charcoal); letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.conversation p { font-size: 1.1rem; font-weight: 300; line-height: 1.8; color: var(--muted); max-width: 600px; margin: 0 auto 2rem; }
.tips-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.tip { display: flex; align-items: center; gap: 0.6rem; background: var(--warm-white); border: 1px solid var(--border); border-radius: 100px; padding: 0.6rem 1.2rem; font-size: 0.83rem; font-weight: 400; color: var(--soft-black); }
.tip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }

/* FAQ */
.faq { background: var(--charcoal); padding: 7rem 3rem; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq .section-header .label { color: var(--terracotta-light); }
.faq .section-header h2 { color: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.6rem 0; }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-q { font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 0.7rem; display: flex; align-items: flex-start; gap: 0.8rem; }
.faq-q::before { content: 'Q'; font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.85rem; color: var(--terracotta-light); flex-shrink: 0; margin-top: 2px; }
.faq-a { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; padding-left: 1.7rem; }

/* Petros story (homepage teaser) */
.story { padding: 7rem 3rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-card-big { background: var(--blush); border-radius: 24px; padding: 3rem; }
.story-quote { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; color: var(--soft-black); line-height: 1.5; margin-bottom: 1.5rem; }
.story-quote::before { content: '\201C'; font-size: 4rem; line-height: 0; vertical-align: -1rem; color: var(--terracotta); margin-right: 0.2rem; }
.story-attr { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.story-text .label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); display: block; margin-bottom: 1.2rem; }
.story-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.story-text p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 2rem; }

/* Homepage responsive */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; gap: 2.5rem; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-image-wrap { max-width: 300px; margin: 0 auto; aspect-ratio: 1; }
    .hero-badge { left: 0; }
    .mission { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 1.5rem; }
    .resources { padding: 5rem 1.5rem; }
    .resource-cards { grid-template-columns: 1fr; }
    .story { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
    .conversation, .faq { padding: 5rem 1.5rem; }
}


/* ============================================================
   UNDERSTANDING.HTML
   ============================================================ */

.understanding-hero {
    padding: 10rem 3rem 5rem;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: end;
    animation: fadeUp 0.7s 0.1s ease both;
}
.hero-stat-box { background: var(--charcoal); border-radius: 24px; padding: 2.5rem; color: #fff; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.hero-stat-box .big-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: var(--terracotta-light); line-height: 1; margin-bottom: 0.6rem; }
.hero-stat-box p { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.6; }
.hero-stat-box .sub { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 1.5rem; text-transform: uppercase; letter-spacing: 0.08em; }

.overview { background: var(--warm-white); padding: 6rem 3rem; }
.overview-inner { max-width: 1200px; margin: 0 auto; }
.conditions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.condition-card { background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.condition-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--sage-light); }
.condition-icon { font-size: 2rem; margin-bottom: 1rem; }
.condition-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--charcoal); margin-bottom: 0.6rem; }
.condition-card p { font-size: 0.88rem; font-weight: 300; color: var(--muted); line-height: 1.7; }
.condition-tag { display: inline-block; margin-top: 1rem; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px; background: var(--sage-light); color: var(--soft-black); }

.stats-band { background: var(--charcoal); padding: 5rem 3rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-header { margin-bottom: 3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-card { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; }
.stat-card .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--terracotta-light); display: block; margin-bottom: 0.5rem; }
.stat-card p { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.6; }

.support { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.support-header { max-width: 600px; margin-bottom: 3rem; }
.support-header p { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.7; margin-top: 1rem; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.support-card { border-radius: 20px; padding: 2.5rem; }
.support-card.card-crisis { background: var(--terracotta); }
.support-card.card-find   { background: var(--sage); }
.support-card .card-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-bottom: 1rem; }
.support-card h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; margin-bottom: 0.8rem; }
.support-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1.5rem; }
.support-card a.card-link { display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-size: 0.88rem; font-weight: 500; text-decoration: none; }
.support-card a.card-link::after { content: '→'; transition: transform 0.2s; }
.support-card:hover a.card-link::after { transform: translateX(4px); }

@media (max-width: 900px) {
    .understanding-hero { grid-template-columns: 1fr; gap: 2rem; padding: 7rem 1.5rem 3rem; }
    .conditions-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .overview, .support, .stats-band { padding: 4rem 1.5rem; }
}


/* ============================================================
   RESOURCES.HTML
   ============================================================ */

.resources-page-hero {
    padding: 10rem 3rem 5rem;
    max-width: 1200px; margin: 0 auto;
    animation: fadeUp 0.7s 0.1s ease both;
}

.resources-section { background: var(--warm-white); padding: 6rem 3rem; }
.resources-inner { max-width: 1200px; margin: 0 auto; }
.resource-rows { display: flex; flex-direction: column; gap: 1.5rem; }
.resource-row { display: grid; grid-template-columns: 1fr 2fr auto; align-items: center; gap: 2rem; background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 2rem 2.5rem; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.resource-row:hover { border-color: var(--terracotta-light); box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-3px); }
.resource-row .rr-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); display: block; margin-bottom: 0.4rem; }
.resource-row h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--charcoal); }
.resource-row p { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

.hotlines { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.hotlines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.hotline-card { background: var(--charcoal); border-radius: 16px; padding: 1.8rem; transition: transform 0.2s; }
.hotline-card:hover { transform: translateY(-4px); }
.hotline-card .hc-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta-light); display: block; margin-bottom: 0.8rem; }
.hotline-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
.hotline-card .number { font-size: 1.4rem; font-weight: 500; color: var(--terracotta-light); display: block; margin: 0.6rem 0; }
.hotline-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.warnings { background: var(--blush); padding: 6rem 3rem; }
.warnings-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.warnings-text p { font-size: 1rem; font-weight: 300; color: var(--soft-black); line-height: 1.8; margin-top: 1rem; }
.warnings-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.warning-item { background: #fff; border-radius: 14px; padding: 1.2rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; border-left: 3px solid var(--terracotta); }
.wi-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.wi-body h4 { font-size: 0.88rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.3rem; }
.wi-body p { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.6; }

.lessons { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.lessons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1rem; }
.lesson-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; transition: border-color 0.2s, box-shadow 0.2s; }
.lesson-card:hover { border-color: var(--sage-light); box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.lesson-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-style: italic; color: var(--sage-light); margin-bottom: 0.8rem; display: block; }
.lesson-card p { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

.cta-band { background: var(--charcoal); padding: 6rem 3rem; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); letter-spacing: -0.02em; margin-bottom: 1rem; }
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--terracotta); }
.cta-band .btn-primary:hover { background: #b5603c; }

@media (max-width: 900px) {
    .resources-page-hero { padding: 7rem 1.5rem 3rem; }
    .resource-row { grid-template-columns: 1fr; gap: 1rem; }
    .hotlines-grid { grid-template-columns: 1fr; }
    .warnings-inner { grid-template-columns: 1fr; gap: 3rem; }
    .lessons-grid { grid-template-columns: 1fr; }
    .resources-section, .hotlines, .warnings, .lessons, .cta-band { padding: 4rem 1.5rem; }
}


/* ============================================================
   PETROS-STORY.HTML
   ============================================================ */

.petros-hero {
    padding: 10rem 3rem 5rem;
    max-width: 1200px; margin: 0 auto;
    animation: fadeUp 0.7s 0.1s ease both;
}

.disclaimer { padding: 0 3rem; max-width: 1200px; margin: 0 auto 4rem; }
.disclaimer-box { background: var(--blush); border-radius: 16px; padding: 1.5rem 2rem; display: flex; gap: 1.2rem; align-items: flex-start; border-left: 4px solid var(--terracotta); }
.disc-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.disc-body strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.3rem; }
.disc-body p { font-size: 0.85rem; font-weight: 300; color: var(--soft-black); line-height: 1.6; }

.facts { background: var(--charcoal); padding: 6rem 3rem; }
.facts-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.facts-text .section-label { color: var(--terracotta-light); }
.facts-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--cream); letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.facts-text p { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; }
.facts-list { display: flex; flex-direction: column; gap: 0; }
.fact-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.fact-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.fact-check { color: var(--sage); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.fact-item p { font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.7; }

.silence { background: var(--terracotta); padding: 5rem 3rem; text-align: center; }
.silence h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); color: #fff; letter-spacing: -0.02em; margin-bottom: 1rem; }
.silence p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.8; max-width: 600px; margin: 0 auto; }

.analysis { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.analysis-blocks { display: flex; flex-direction: column; gap: 3rem; }
.analysis-block { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; padding-top: 3rem; border-top: 1px solid var(--border); }
.analysis-block:first-child { border-top: none; padding-top: 0; }
.ab-title h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.ab-title .sub { font-size: 0.8rem; font-weight: 300; color: var(--muted); line-height: 1.5; }
.ab-content ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.ab-content li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.92rem; font-weight: 300; color: var(--soft-black); line-height: 1.7; }
.ab-content li::before { content: '—'; color: var(--terracotta); flex-shrink: 0; font-weight: 500; }

.key-issues { background: var(--warm-white); padding: 6rem 3rem; }
.ki-inner { max-width: 1200px; margin: 0 auto; }
.ki-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ki-card { border-radius: 20px; padding: 2rem; background: var(--cream); border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; }
.ki-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.ki-letter { font-family: 'Playfair Display', serif; font-size: 3rem; font-style: italic; color: var(--terracotta-light); line-height: 1; margin-bottom: 1rem; display: block; }
.ki-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.8rem; }
.ki-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.ki-card li { font-size: 0.83rem; font-weight: 300; color: var(--muted); line-height: 1.6; padding-left: 1rem; position: relative; }
.ki-card li::before { content: '·'; position: absolute; left: 0; color: var(--terracotta); }

.conclusion { padding: 6rem 3rem; max-width: 900px; margin: 0 auto; text-align: center; }
.conclusion h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.conclusion p { font-size: 1.05rem; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; }
.conclusion-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
    .petros-hero { padding: 7rem 1.5rem 3rem; }
    .disclaimer { padding: 0 1.5rem; margin-bottom: 2rem; }
    .facts { padding: 4rem 1.5rem; }
    .facts-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .analysis { padding: 4rem 1.5rem; }
    .analysis-block { grid-template-columns: 1fr; gap: 1.5rem; }
    .ki-grid { grid-template-columns: 1fr; }
    .key-issues { padding: 4rem 1.5rem; }
    .conclusion { padding: 4rem 1.5rem; }
}


/* ============================================================
   ABOUT.HTML
   ============================================================ */

.about-hero {
    padding: 10rem 3rem 5rem;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: end;
}
.about-hero > * { animation: fadeUp 0.7s ease both; }
.about-hero > *:nth-child(1) { animation-delay: 0.1s; }
.about-hero > *:nth-child(2) { animation-delay: 0.25s; }

.hero-manifesto { background: var(--blush); border-radius: 24px; padding: 2.5rem; }
.manifesto-quote { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; color: var(--soft-black); line-height: 1.5; margin-bottom: 1rem; }
.manifesto-quote::before { content: '\201C'; font-size: 3.5rem; line-height: 0; vertical-align: -0.9rem; color: var(--terracotta); margin-right: 0.2rem; }
.manifesto-attr { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.about-mission { background: var(--warm-white); padding: 6rem 3rem; }
.mission-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.mission-text .section-h2 { margin-bottom: 1.5rem; }
.mission-text p { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.mission-pillars { display: flex; flex-direction: column; gap: 0; }
.pillar { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--terracotta); margin-top: 2px; }
.pillar h4 { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.3rem; }
.pillar p { font-size: 0.85rem; font-weight: 300; color: var(--muted); line-height: 1.6; }

.how { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.how-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.how-card:hover { border-color: var(--sage-light); box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-4px); }
.how-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.how-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--charcoal); margin-bottom: 0.6rem; }
.how-card p { font-size: 0.88rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

.why { background: var(--charcoal); padding: 6rem 3rem; }
.why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-text .section-label { color: var(--terracotta-light); }
.why-text .section-h2 { color: var(--cream); margin-bottom: 1.5rem; }
.why-text p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; }
.why-steps { display: flex; flex-direction: column; gap: 0; }
.why-step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.why-step:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.ws-icon { font-size: 1.3rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ws-body h4 { font-size: 0.88rem; font-weight: 500; color: #fff; margin-bottom: 0.3rem; }
.ws-body p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }

.team { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--blush); margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.team-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.8rem; font-weight: 500; color: var(--terracotta); letter-spacing: 0.04em; }

.donate { background: var(--blush); padding: 6rem 3rem; }
.donate-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.donate-text .section-h2 { margin-bottom: 1rem; }
.donate-text p { font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.8; }
.donate-options { display: flex; flex-direction: column; gap: 0.8rem; }
.donate-option { background: #fff; border-radius: 14px; padding: 1.2rem 1.5rem; display: flex; gap: 1rem; align-items: center; border: 1px solid transparent; transition: border-color 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit; }
.donate-option:hover { border-color: var(--terracotta-light); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.do-icon { font-size: 1.3rem; width: 40px; flex-shrink: 0; text-align: center; }
.do-body strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.2rem; }
.do-body span { font-size: 0.8rem; color: var(--muted); }
.do-arrow { margin-left: auto; color: var(--terracotta); font-size: 1rem; }

@media (max-width: 900px) {
    .about-hero { grid-template-columns: 1fr; gap: 2rem; padding: 7rem 1.5rem 3rem; }
    .mission-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .how-grid { grid-template-columns: 1fr; }
    .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .donate-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-mission, .how, .why, .team, .donate { padding: 4rem 1.5rem; }
}
