/* ==========================================================================
   DESIGN SYSTEM & UNIFIED STYLES - RADICALLY ROOTED CONSULTING
   ========================================================================== */

/* Import Google Fonts: Outfit for premium headings, Inter for readable body text */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #0A1B20;             /* Deep Ocean Slate background */
    --bg-dark-rgb: 10, 27, 32;
    --bg-slate: #152B33;            /* Mid slate for structures */
    --bg-card: rgba(21, 43, 51, 0.65); /* Glassmorphic Card base */
    
    --accent-sand: #D99D55;          /* Warm Terracotta / Sand */
    --accent-sand-hover: #E8AF6E;
    --accent-sage: #88A375;          /* Calming Sage Green */
    --accent-sage-hover: #9CB889;
    
    --text-light: #F4F7F6;          /* Crisp light cream */
    --text-muted: #A3B5B2;          /* Muted Sage-Grey */
    
    --glass-border: rgba(217, 160, 91, 0.15);
    --glass-border-hover: rgba(217, 160, 91, 0.35);
    --glass-glow: rgba(136, 163, 117, 0.1);
    
    /* Layout & Animation Tokens */
    --max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --border-radius-sm: 4px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.25;
}

p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
}

strong {
    color: var(--text-light);
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Accessibility */
*:focus {
    outline: 2px solid var(--accent-sand);
    outline-offset: 4px;
}

/* Selection & Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--bg-slate) var(--bg-dark);
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-slate);
    border-radius: var(--border-radius-md);
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-sage);
}

::selection {
    background: rgba(217, 157, 85, 0.3);
    color: var(--text-light);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

.text-center { text-align: center; }

/* Grid systems */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ==========================================================================
   SHARED COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-sage);
    color: var(--bg-dark);
    box-shadow: 0 4px 14px rgba(136, 163, 117, 0.25);
}
.btn-primary:hover {
    background-color: var(--accent-sage-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 163, 117, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-sand);
    color: var(--accent-sand);
}
.btn-outline:hover {
    background-color: var(--accent-sand);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(217, 157, 85, 0.25);
}

.btn-cta {
    background-color: var(--accent-sand);
    color: var(--bg-dark) !important;
}
.btn-cta:hover {
    background-color: var(--accent-sand-hover);
    transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
}
.glass-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--glass-glow);
}

/* Navigation */
nav {
    background: rgba(10, 27, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-fast);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}
.nav-logo:hover img {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
}

.nav-links a:not(.btn-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-sand);
    transition: var(--transition-fast);
}
.nav-links a:not(.btn-cta):hover::after {
    width: 100%;
}
.nav-links a:not(.btn-cta):hover {
    color: var(--accent-sand);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001; /* Stay above nav list */
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
    transform-origin: center;
}

/* Morph hamburger into X when open */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Footer */
footer {
    background: #061114;
    border-top: 1px solid var(--glass-border);
    padding: 100px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-info {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-contact a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 1px dashed var(--accent-sand);
}
.footer-contact a:hover {
    color: var(--accent-sand);
    border-bottom-style: solid;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(163, 181, 178, 0.5);
    max-width: 900px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(163, 181, 178, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
}
.footer-links a {
    color: var(--accent-sage);
}
.footer-links a:hover {
    color: var(--accent-sage-hover);
    text-decoration: underline;
}

/* ==========================================================================
   HOMEPAGE CUSTOM HERO & SECTIONS
   ========================================================================== */

/* Hero */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to bottom, rgba(10, 27, 32, 0.7), rgba(10, 27, 32, 1)), 
                url('hero-bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-content {
    max-width: 850px;
    z-index: 2;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-sage);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 44px;
    color: rgba(244, 247, 246, 0.85);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Quiet Battles Section */
.quiet-battles {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-slate));
}

.quiet-battles-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.quiet-battles-header h2 {
    font-size: 3rem;
    color: var(--accent-sand);
    margin-bottom: 20px;
}

.quiet-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.quiet-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}
.quiet-item:hover {
    border-color: var(--accent-sand);
    transform: translateX(8px);
}

.quiet-icon {
    background: rgba(217, 157, 85, 0.1);
    color: var(--accent-sand);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.quiet-text p {
    color: rgba(244, 247, 246, 0.85);
    font-size: 1.15rem;
    font-weight: 300;
}

/* Profile Identification Grid */
.profiles-section {
    background: var(--bg-slate);
}

.profiles-header {
    max-width: 700px;
    margin: 0 auto 60px;
}
.profiles-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.profiles-header p {
    font-size: 1.2rem;
}

.profile-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.profile-card h3 {
    font-size: 1.8rem;
    color: var(--accent-sand);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(217, 157, 85, 0.2);
    padding-bottom: 12px;
}

.profile-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Transition Callout */
.transition-banner {
    background: linear-gradient(135deg, #0e272e, #183e4a);
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.transition-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(136, 163, 117, 0.08) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.transition-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.transition-content h3 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* My Approach Section */
.approach-section {
    background: var(--bg-dark);
}

.approach-intro {
    max-width: 900px;
    margin-bottom: 80px;
}
.approach-intro h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}
.approach-intro p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-sage);
    padding: 24px 30px;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    border-top: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}
.approach-item:hover {
    transform: translateY(-2px);
    border-right-color: var(--accent-sage);
}

.approach-item h4 {
    font-size: 1.4rem;
    color: var(--accent-sage);
    margin-bottom: 10px;
}

.approach-item p {
    font-size: 1.05rem;
}

.approach-img-box {
    background: url('growth-abstract.png') center/cover no-repeat;
    min-height: 450px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    position: relative;
}
.approach-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(136, 163, 117, 0.2), transparent);
}

/* Note to Survival Brain */
.survival-note-section {
    background: linear-gradient(180deg, var(--bg-dark), #061114);
}

.survival-note-box {
    background: radial-gradient(circle at top right, rgba(136, 163, 117, 0.15), transparent), var(--bg-card);
    border: 2px solid var(--accent-sage);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.survival-note-box::before {
    content: '“';
    font-family: 'Outfit', sans-serif;
    font-size: 12rem;
    color: rgba(136, 163, 117, 0.1);
    position: absolute;
    top: -40px;
    left: 40px;
    line-height: 1;
}

.survival-note-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.survival-note-content h3 {
    font-size: 2.2rem;
    color: var(--accent-sage);
    margin-bottom: 24px;
}

.survival-note-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.survival-note-content p.emphasis {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent-sand);
    margin-top: 30px;
    margin-bottom: 40px;
}

/* The 6-Step Service Model */
.process-section {
    background: var(--bg-slate);
}

.process-header {
    max-width: 700px;
    margin: 0 auto 60px;
}
.process-header h2 {
    font-size: 3.2rem;
    color: var(--accent-sand);
    margin-bottom: 20px;
}
.process-header p {
    font-size: 1.15rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
}
.step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-sage);
    transition: var(--transition-fast);
}
.step-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}
.step-card:hover::before {
    background: var(--accent-sand);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-sand);
    opacity: 0.8;
    display: block;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Resources Section */
.resources-section {
    background: var(--bg-dark);
}
.resources-section h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.resource-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 100%;
    transition: var(--transition-smooth);
}
.resource-card span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-sage);
    display: block;
    margin-bottom: 15px;
}
.resource-card h3 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0;
    transition: var(--transition-fast);
}
.resource-card:hover {
    border-color: var(--accent-sand);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.resource-card:hover h3 {
    color: var(--accent-sand);
}

/* ==========================================================================
   ABOUT PAGE CUSTOM HERO & SECTIONS
   ========================================================================== */

.page-header {
    padding: 140px 0 100px;
    background: linear-gradient(to bottom, rgba(10, 27, 32, 0.75), rgba(10, 27, 32, 1)), 
                url('about-bg.png') center/cover no-repeat;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-intro-section {
    background: var(--bg-dark);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2.8rem;
    color: var(--accent-sand);
    margin-bottom: 30px;
}

.about-intro-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-intro-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    background-color: var(--bg-slate);
    display: flex;
    flex-direction: column;
}

.about-intro-img img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-credit-under {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.photo-credit-under a {
    color: var(--text-light);
    text-decoration: underline;
    opacity: 0.75;
    transition: var(--transition-fast);
}

.photo-credit-under a:hover {
    color: var(--accent-sand);
    opacity: 1;
}


/* Credentials and Details styling */
.about-approach-section {
    background: var(--bg-slate);
}

.about-approach-section h3 {
    font-size: 2.2rem;
    color: var(--accent-sand);
    margin-bottom: 20px;
}

.credentials-section {
    background: var(--bg-dark);
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.credentials-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.credentials-icon {
    color: var(--accent-sage);
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.credentials-text h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.credentials-text p {
    font-size: 1rem;
}

.values-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.values-pill {
    background: rgba(136, 163, 117, 0.1);
    border: 1px solid rgba(136, 163, 117, 0.25);
    color: var(--accent-sage);
    padding: 8px 18px;
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.about-brand-section {
    background-color: #CFDAC9; /* Distinct, soft dusty sage green */
    border-top: 1px solid rgba(136, 163, 117, 0.25);
    border-bottom: 1px solid rgba(136, 163, 117, 0.25);
}

/* ==========================================================================
   CONTENT PAGE CONTAINER (For estimate, privacy, terms)
   ========================================================================== */
.content-page-container {
    max-width: 850px;
    margin: 60px auto 100px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.content-page-container h1 {
    font-size: 3.2rem;
    color: var(--accent-sand);
    margin-bottom: 40px;
    text-align: center;
}

.content-page-container h2 {
    font-size: 1.8rem;
    color: var(--accent-sage);
    margin-top: 45px;
    margin-bottom: 20px;
}

.content-page-container p {
    font-size: 1.1rem;
    color: rgba(244, 247, 246, 0.85);
    margin-bottom: 24px;
}

.content-page-container ul, .content-page-container ol {
    padding-left: 25px;
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.content-page-container li {
    margin-bottom: 12px;
}

.content-page-container strong {
    color: var(--text-light);
}

.content-page-container a {
    color: var(--accent-sand);
    text-decoration: underline;
}
.content-page-container a:hover {
    color: var(--accent-sand-hover);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .grid-2 {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 24px;
    }
    
    /* Navigation responsive */
    nav {
        padding: 12px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(10, 27, 32, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--glass-border);
        padding: 24px 24px 30px;
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-links .btn-cta {
        padding: 14px;
        margin-top: 10px;
    }
    
    /* Hero responsive */
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.15rem;
        margin-bottom: 30px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Grid system stack */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Quiet battles */
    .quiet-battles-header h2,
    .profiles-header h2,
    .approach-intro h2,
    .process-header h2,
    .resources-section h2,
    .about-intro-text h2,
    .content-page-container h1 {
        font-size: 2.2rem;
    }
    
    .quiet-item {
        padding: 20px;
        gap: 16px;
    }
    
    /* Approach section responsive styling */
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .approach-img-box {
        min-height: 300px;
    }
    
    /* Note to survival brain responsive styling */
    .survival-note-box {
        padding: 40px 24px;
    }
    .survival-note-box::before {
        font-size: 8rem;
        top: -20px;
        left: 20px;
    }
    .survival-note-content h3 {
        font-size: 1.7rem;
    }
    .survival-note-content p {
        font-size: 1.05rem;
    }
    .survival-note-content p.emphasis {
        font-size: 1.15rem;
        margin-top: 24px;
        margin-bottom: 30px;
    }
    
    /* About intro layout stack */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-intro-img {
        height: 350px;
    }
    
    /* Credentials layout stack */
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer bottom stacked */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    
    /* Content Page responsive */
    .content-page-container {
        padding: 30px 20px;
        margin-top: 30px;
    }
    .content-page-container h2 {
        font-size: 1.5rem;
        margin-top: 30px;
    }
}
