/* ============================================================
   OVERHEARD ON MAIN - Master Stylesheet
   Sections:
   01. Design Tokens
   02. Reset & Base
   03. Typography
   04. Layout & Container
   05. Buttons
   06. Header & Navigation
   07. Footer
   08. Hero Sections
   09. Section Shared Styles
   10. Story Cards & Grid
   11. Single Story
   12. Score Bars & AI Scores
   13. Category Blocks
   14. How It Works Steps
   15. About Page
   16. Submit Form
   17. Contact Page
   18. FAQ Accordion
   19. Archive & Directory
   20. Sidebar & Related
   21. Utility Classes
   22. Responsive
   ============================================================ */


/* ============================================================
   01. Design Tokens
   ============================================================ */

:root {
    --cream:       #FFF8E7;
    --charcoal:    #2C3E50;
    --sienna:      #D35400;
    --sienna-dark: #BD4A00;
    --sienna-lite: rgba(211, 84, 0, 0.08);
    --sage:        #95A792;
    --slate:       #5A6C7D;
    --muted:       #7D8F9C;
    --white:       #FFFFFF;
    --border:      rgba(149, 167, 146, 0.25);
    --card-bg:     rgba(255, 255, 255, 0.85);
    --shadow-sm:   0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-md:   0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg:   0 15px 50px rgba(0, 0, 0, 0.12);
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --radius-pill: 50px;
    --font-head:   'Outfit', sans-serif;
    --font-body:   'Inter', sans-serif;
    --header-h:    72px;
    --max-width:   1200px;
    --transition:  0.3s ease;
}


/* ============================================================
   02. Reset & Base
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--sienna);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--sienna-dark);
}

ul,
ol {
    list-style: none;
}

input,
select,
textarea,
button {
    font-family: var(--font-body);
}

#page-wrapper {
    min-height: calc(100vh - var(--header-h));
}


/* ============================================================
   03. Typography
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.1rem; }

p {
    line-height: 1.8;
    color: var(--slate);
}

strong {
    color: var(--charcoal);
    font-weight: 600;
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--sienna);
    padding-left: 1.5rem;
    color: var(--slate);
    margin: 2rem 0;
}

.eyebrow {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sienna);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

.text-sienna { color: var(--sienna); }
.text-sage   { color: var(--sage); }
.text-muted  { color: var(--muted); }


/* ============================================================
   04. Layout & Container
   ============================================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(149, 167, 146, 0.06) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ============================================================
   05. Buttons
   ============================================================ */

.btn {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--sienna);
    color: var(--cream);
    padding: 1.1rem 2.75rem;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(211, 84, 0, 0.25);
}

.btn-primary:hover {
    background: var(--sienna-dark);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(211, 84, 0, 0.35);
}

.btn-primary-lg {
    background: var(--sienna);
    color: var(--cream);
    padding: 1.35rem 3.5rem;
    font-size: 1.2rem;
    box-shadow: 0 6px 24px rgba(211, 84, 0, 0.3);
}

.btn-primary-lg:hover {
    background: var(--sienna-dark);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(211, 84, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--sienna);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: 2px solid var(--sienna);
}

.btn-outline:hover {
    background: var(--sienna);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-nav-cta {
    background: var(--sienna);
    color: var(--cream);
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-family: var(--font-head);
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}

.btn-nav-cta:hover {
    background: var(--sienna-dark);
    color: var(--cream);
    transform: translateY(-1px);
}

.btn-filter {
    padding: 0.65rem 1.4rem;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--sienna);
    color: var(--cream);
    border-color: var(--sienna);
}


/* ============================================================
   06. Header & Navigation
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--charcoal);
    height: var(--header-h);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-logo {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--sienna);
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo:hover {
    color: var(--sienna);
    opacity: 0.85;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li a {
    color: rgba(255, 248, 231, 0.85);
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    display: block;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav .btn-nav-cta {
    margin-left: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--transition);
}

.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);
}


/* ============================================================
   07. Footer
   ============================================================ */

.site-footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 5rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 248, 231, 0.1);
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--sienna);
    display: block;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: var(--sienna);
    opacity: 0.85;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 248, 231, 0.65);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 248, 231, 0.7);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--sienna);
    color: var(--cream);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 248, 231, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--sienna);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 248, 231, 0.4);
}

.footer-credit {
    font-style: italic;
}


/* ============================================================
   08. Hero Sections
   ============================================================ */

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(211, 84, 0, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-headline .accent {
    color: var(--sienna);
}

.hero-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--slate);
    line-height: 1.85;
    margin-bottom: 2.75rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 11px;
    flex-shrink: 0;
}

.hero-preview {
    margin-top: 4rem;
    padding: 2rem 2.5rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.preview-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    margin-bottom: 1rem;
}

.preview-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 1rem;
}

.preview-attribution {
    font-size: 0.875rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sage), var(--muted));
    color: var(--cream);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-head);
}

.page-hero {
    padding: 7rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(149, 167, 146, 0.04) 100%);
}

.page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}


/* ============================================================
   09. Section Shared Styles
   ============================================================ */

.cta-block {
    background: linear-gradient(135deg, var(--sienna-lite) 0%, rgba(149, 167, 146, 0.07) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: 5rem 0;
}

.cta-block-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
}

.cta-block-text {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 580px;
    margin: 0 auto 2.25rem;
    line-height: 1.8;
}

.cta-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--sienna);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.5;
}

.highlight-box {
    padding: 1.5rem 2rem;
    background: var(--sienna-lite);
    border-left: 4px solid var(--sienna);
    border-radius: var(--radius-sm);
    margin: 2rem 0;
}

.highlight-box p {
    color: var(--charcoal);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ============================================================
   10. Story Cards & Grid
   ============================================================ */

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.story-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 2px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sienna);
}

.story-card a {
    text-decoration: none;
    color: inherit;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--sienna), #E67E22);
    color: var(--cream);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-head);
    margin-bottom: 1rem;
    width: fit-content;
}

.story-card-category {
    font-family: var(--font-head);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.story-card-category a {
    color: var(--sage);
}

.story-card-category a:hover {
    color: var(--sienna);
}

.story-card-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 1rem;
    flex-grow: 0;
}

.story-card-title a {
    color: var(--charcoal);
    transition: color var(--transition);
}

.story-card-title a:hover {
    color: var(--sienna);
}

.story-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--slate);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.story-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.story-card-author {
    font-size: 0.85rem;
    color: var(--muted);
}

.story-card-score {
    background: var(--sienna-lite);
    color: var(--sienna);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
}

.story-card-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.filter-bar {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}


/* ============================================================
   11. Single Story
   ============================================================ */

.single-story-wrap {
    padding: 5rem 0 6rem;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.story-header {
    margin-bottom: 2.5rem;
}

.story-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.story-byline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--muted);
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2.5rem;
}

.story-byline-author {
    font-weight: 600;
    color: var(--charcoal);
}

.story-body {
    font-size: 1.1rem;
    line-height: 1.95;
    color: var(--charcoal);
}

.story-body p {
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.story-thumbnail {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.story-tag {
    padding: 0.35rem 0.85rem;
    background: rgba(149, 167, 146, 0.1);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    color: var(--slate);
    transition: all var(--transition);
}

.story-tag:hover {
    background: var(--sienna-lite);
    color: var(--sienna);
}

.story-share {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.story-share p {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-head);
    border: 2px solid var(--border);
    background: transparent;
    color: var(--slate);
    cursor: pointer;
    transition: all var(--transition);
}

.share-btn:hover {
    border-color: var(--sienna);
    color: var(--sienna);
}


/* ============================================================
   12. Score Bars & AI Scores
   ============================================================ */

.score-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
}

.score-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    margin-bottom: 2rem;
}

.score-card.featured-score {
    border-color: var(--sienna);
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--sienna-lite) 100%);
}

.score-card-title {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.score-item {
    margin-bottom: 1.25rem;
}

.score-item-label {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.score-item-value {
    font-size: 0.85rem;
    color: var(--sienna);
    font-weight: 700;
}

.score-bar {
    width: 100%;
    height: 10px;
    background: rgba(149, 167, 146, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sage), var(--muted));
    border-radius: 10px;
    transition: width 1s ease;
}

.score-card.featured-score .score-fill {
    background: linear-gradient(90deg, var(--sienna), #E67E22);
}

.score-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--sienna-lite);
    border-radius: var(--radius-sm);
    margin: 1.5rem 0 1.25rem;
}

.score-total-label {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.score-total-value {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sienna);
    line-height: 1;
}

.score-reasoning {
    padding: 1.25rem;
    background: rgba(125, 143, 156, 0.08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--muted);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--slate);
}

.score-reasoning strong {
    display: block;
    font-family: var(--font-head);
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}

.scores-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}


/* ============================================================
   13. Category Blocks
   ============================================================ */

.category-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--sienna);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(211, 84, 0, 0.1);
}

.category-card a {
    display: block;
    text-decoration: none;
}

.category-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.65rem;
}

.category-card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--slate);
    margin-bottom: 1rem;
}

.category-card-example {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--muted);
    padding: 0.65rem 1rem;
    background: rgba(149, 167, 146, 0.08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--sage);
}

.category-block {
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    margin-bottom: 2.5rem;
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.category-block:hover {
    border-color: var(--sienna);
    box-shadow: 0 12px 40px rgba(211, 84, 0, 0.08);
}

.category-block-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-block-icon {
    font-size: 3.5rem;
    width: 90px;
    height: 90px;
    background: var(--sienna-lite);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-block-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--charcoal);
}

.category-block-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 2rem;
}

.category-examples-box {
    background: var(--sienna-lite);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--sienna);
}

.category-examples-box h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sienna);
    margin-bottom: 1rem;
}

.examples-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.example-item {
    font-style: italic;
    color: var(--slate);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.5;
}

.taxonomy-archive-header {
    padding: 5rem 0 3rem;
    text-align: center;
}

.taxonomy-archive-header .category-block-icon {
    margin: 0 auto 1.5rem;
    width: 100px;
    height: 100px;
    font-size: 4rem;
}


/* ============================================================
   14. How It Works Steps
   ============================================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.steps-grid::before,
.steps-grid::after {
    content: '→';
    position: absolute;
    top: 82px;
    font-size: 2rem;
    color: rgba(211, 84, 0, 0.2);
    font-weight: 300;
    pointer-events: none;
}

.steps-grid::before { left: 31%; }
.steps-grid::after  { right: 31%; }

.step {
    text-align: center;
}

.step-number-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sienna), #E67E22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.25);
}

.step-number-circle span {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
}

.step-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.25rem;
}

.step-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--slate);
    margin-bottom: 1rem;
}

.step-detail-box {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--muted);
    border: 1px solid var(--border);
}

.step-detail-box strong {
    color: var(--sienna);
}

.timeline-note {
    text-align: center;
    margin-top: 4rem;
    padding: 1.5rem 2rem;
    background: var(--sienna-lite);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sienna);
}

.timeline-note p {
    font-size: 1.05rem;
    color: var(--charcoal);
}

.step-block {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.step-block-number {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
}

.step-block-number-box {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--sienna), #E67E22);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(211, 84, 0, 0.3);
}

.step-block-number-box span {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cream);
}

.step-block-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
}

.step-block-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.step-block-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 2rem;
}

.step-checklist {
    background: var(--sienna-lite);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sienna);
    margin-bottom: 1.75rem;
}

.step-checklist h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sienna);
    margin-bottom: 1rem;
}

.step-checklist ul {
    list-style: none;
    padding: 0;
}

.step-checklist li {
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    color: var(--slate);
    font-size: 0.95rem;
}

.step-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 700;
}

.timeline-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: rgba(149, 167, 146, 0.1);
    border-radius: var(--radius-md);
}

.timeline-row-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.timeline-row-text {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
}

.timeline-row-text span {
    color: var(--sienna);
}


/* ============================================================
   15. About Page
   ============================================================ */

.about-origin-box {
    background: linear-gradient(135deg, var(--sienna-lite), rgba(149, 167, 146, 0.05));
    padding: 3rem 3.5rem;
    border-radius: var(--radius-xl);
    border-left: 5px solid var(--sienna);
    margin-bottom: 5rem;
}

.about-origin-box p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.about-origin-box p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--card-bg);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(211, 84, 0, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.25rem;
}

.value-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.85rem;
}

.value-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}


/* ============================================================
   16. Submit Form
   ============================================================ */

.submit-form-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 0 6rem;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3.5rem;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0;
}

.progress-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(149, 167, 146, 0.2);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    transition: all var(--transition);
    flex-shrink: 0;
}

.progress-dot.active {
    background: var(--sienna);
    border-color: var(--sienna);
    color: var(--cream);
}

.progress-dot.done {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--cream);
}

.progress-label {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.4rem;
    text-align: center;
    white-space: nowrap;
}

.progress-label.active {
    color: var(--sienna);
    font-weight: 600;
}

.progress-step-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin: 0 0.25rem;
    margin-bottom: 1.5rem;
}

.progress-line.done {
    background: var(--sage);
}

.form-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-step-subtitle {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: var(--sienna);
    margin-left: 2px;
}

.form-group label .optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.8rem;
    margin-left: 4px;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    color: var(--charcoal);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--sienna);
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.08);
}

.form-control.error {
    border-color: #e74c3c;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.4rem;
    line-height: 1.5;
}

.form-error {
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 0.4rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--sienna);
}

.checkbox-item span {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.5;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.radio-item:hover {
    border-color: rgba(211, 84, 0, 0.3);
    background: var(--sienna-lite);
}

.radio-item input[type="radio"] {
    accent-color: var(--sienna);
    cursor: pointer;
}

.radio-item span {
    font-size: 0.9rem;
    color: var(--charcoal);
}

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.form-success-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.form-success-text {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}


/* ============================================================
   17. Contact Page
   ============================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    margin: 3rem 0 5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    height: fit-content;
}

.contact-info-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method-label {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sage);
    margin-bottom: 0.4rem;
}

.contact-method-value {
    font-size: 1rem;
    color: var(--charcoal);
}

.contact-method-value a {
    color: var(--sienna);
}

.contact-response-note {
    background: var(--sienna-lite);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sienna);
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.6;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
}

.contact-form-card h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2rem;
}


/* ============================================================
   18. FAQ Accordion
   ============================================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(211, 84, 0, 0.3);
}

.faq-item.open {
    border-color: var(--sienna);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.faq-trigger:hover {
    background: rgba(211, 84, 0, 0.02);
}

.faq-question-text {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--sienna);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer-wrap {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.75rem 1.75rem;
    font-size: 0.975rem;
    line-height: 1.8;
    color: var(--slate);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 100%;
}

.faq-grid-card {
    background: var(--card-bg);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
}

.faq-grid-question {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.85rem;
}

.faq-grid-answer {
    font-size: 0.925rem;
    line-height: 1.75;
    color: var(--slate);
}


/* ============================================================
   19. Archive & Directory
   ============================================================ */

.archive-hero {
    padding: 5rem 0 3.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4rem;
}

.archive-count {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.75rem;
}

.archive-count strong {
    color: var(--sienna);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--border);
    color: var(--slate);
    transition: all var(--transition);
    text-decoration: none;
}

.pagination a:hover,
.pagination .current {
    background: var(--sienna);
    border-color: var(--sienna);
    color: var(--cream);
}

.directory-categories {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
}

.directory-categories h3 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.directory-cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.directory-cat-link {
    padding: 0.4rem 1rem;
    background: rgba(149, 167, 146, 0.1);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--slate);
    transition: all var(--transition);
    font-weight: 500;
}

.directory-cat-link:hover,
.directory-cat-link.active {
    background: var(--sienna);
    color: var(--cream);
}

.no-stories {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--muted);
}

.no-stories p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}


/* ============================================================
   20. Sidebar & Related
   ============================================================ */

.related-stories {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border);
}

.related-stories-title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.submit-sidebar-card {
    background: linear-gradient(135deg, var(--sienna-lite), rgba(149, 167, 146, 0.06));
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(211, 84, 0, 0.15);
    text-align: center;
    margin-bottom: 2rem;
}

.submit-sidebar-card p {
    font-size: 0.925rem;
    color: var(--slate);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.submit-sidebar-card h4 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}


/* ============================================================
   21. Utility Classes
   ============================================================ */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mt-5 { margin-top: 4rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.mb-5 { margin-bottom: 4rem; }

.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(211, 84, 0, 0.2);
    border-top-color: var(--sienna);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.notice {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notice-success {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid #27ae60;
    color: #1a6b3c;
}

.notice-error {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    color: #922b21;
}

.notice-info {
    background: var(--sienna-lite);
    border-left: 4px solid var(--sienna);
    color: var(--charcoal);
}


/* ============================================================
   22. Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
    }

    .score-sidebar {
        position: static;
    }

    .scores-example-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    :root {
        --header-h: 64px;
    }

    .section { padding: 4rem 0; }

    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid::before,
    .steps-grid::after { display: none; }

    .step {
        background: rgba(255, 255, 255, 0.5);
        padding: 2rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
    }

    .step-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-block-number {
        position: static;
    }

    .step-block-number-box {
        margin: 0 auto;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-block-header {
        flex-direction: column;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 2rem;
        gap: 0;
        display: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        z-index: 998;
    }

    .site-nav.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1rem;
    }

    .nav-list li a {
        padding: 0.85rem 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
    }

    .site-nav .btn-nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 640px) {
    .container { padding: 0 1.25rem; }

    .hero { padding: 5rem 1.25rem; min-height: auto; }
    .page-hero { padding: 5rem 1.25rem 3rem; }

    .section-title { font-size: 1.75rem; }

    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }

    .stories-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }

    .form-card { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer-links { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cta-reassurance { flex-direction: column; gap: 0.75rem; }

    .hero-trust { gap: 1rem; }

    .values-grid { grid-template-columns: 1fr; }

    .category-block { padding: 2rem 1.5rem; }
    .about-origin-box { padding: 2rem 1.5rem; }
}