/* Start custom CSS for html, class: .elementor-element-9fed8cc *//* ============================================================
   COMMUNITY GUIDELINES — Sampreshan
   Complete CSS Stylesheet
   Mobile-First | Responsive | Modern Spiritual Design
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
    --saffron: #FF9933;
    --saffron-dark: #e0851a;
    --saffron-light: #ffe4b3;
    --deep-blue: #1E3A8A;
    --deep-blue-dark: #152b66;
    --deep-blue-light: #2a4bb5;
    --white: #FFFFFF;
    --off-white: #f8f6f0;
    --light-bg: #f5f2eb;
    --gray-light: #e8e4da;
    --gray-mid: #8a867a;
    --text-dark: #1a1a1a;
    --text-muted: #4a473f;
    --shadow-sm: 0 2px 12px rgba(30, 58, 138, 0.08);
    --shadow-md: 0 8px 32px rgba(30, 58, 138, 0.12);
    --shadow-lg: 0 16px 48px rgba(30, 58, 138, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --header-height: 70px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--deep-blue);
    color: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.25s ease;
}
.skip-link:focus {
    top: 0;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    line-height: 1.4;
}

.btn-primary {
    background: var(--saffron);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 153, 51, 0.35);
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 153, 51, 0.45);
}
.btn-primary:focus-visible {
    outline: 3px solid var(--deep-blue);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}
.btn-outline:hover,
.btn-outline:focus {
    background: var(--deep-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 58, 138, 0.25);
}
.btn-outline:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 2px;
}

.btn-white {
    background: var(--white);
    color: var(--deep-blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}
.btn-white:hover,
.btn-white:focus {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}
.btn-white:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 2px;
}

/* ===== Header / Nav ===== */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--gray-light);
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--deep-blue);
    flex-shrink: 0;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--saffron);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo-text span {
    color: var(--saffron);
}
.logo-tagline {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-mid);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}
.nav-links a:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 4px;
    border-radius: 4px;
}
.nav-links .active {
    color: var(--saffron-dark);
    font-weight: 600;
}
.nav-links .active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    border-radius: 6px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--deep-blue);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
.nav-toggle:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(145deg, var(--deep-blue) 0%, #0f2a5c 100%);
    color: var(--white);
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: 'ॐ';
    position: absolute;
    right: -2rem;
    top: -2rem;
    font-size: 22rem;
    opacity: 0.035;
    pointer-events: none;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--saffron);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 153, 51, 0.20);
    color: var(--saffron-light);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 153, 51, 0.25);
}
.hero h1 {
    font-size: clamp(2.4rem, 7vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.hero h1 .highlight {
    color: var(--saffron);
}
.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-image-wrapper {
    margin-bottom: 1.5rem;
    max-width: 180px;
}
.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}
.hero-image-placeholder:hover {
    border-color: var(--saffron);
    background: rgba(255, 153, 51, 0.08);
}

/* ===== Table of Contents ===== */
.toc-section {
    background: var(--off-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-light);
}
.toc-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    align-items: center;
    justify-content: center;
}
.toc-label {
    font-weight: 700;
    color: var(--deep-blue);
    font-size: 0.9rem;
    margin-right: 0.25rem;
}
.toc-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid transparent;
}
.toc-link:hover,
.toc-link:focus {
    color: var(--deep-blue);
    background: var(--white);
    border-color: var(--saffron);
    box-shadow: var(--shadow-sm);
}
.toc-link:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

/* ===== Section Shared ===== */
section {
    padding: 3.5rem 0;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-title .highlight {
    color: var(--saffron);
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 153, 51, 0.15);
    color: var(--saffron-dark);
    padding: 0.25rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 153, 51, 0.2);
}

.bg-light {
    background: var(--light-bg);
}
.bg-offwhite {
    background: var(--off-white);
}
.bg-white {
    background: var(--white);
}

/* ===== Values Grid ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}
.value-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid var(--saffron);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.value-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 0.75rem;
}
.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.4rem;
}
.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Behavior Grid ===== */
.behavior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.behavior-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--deep-blue);
}
.behavior-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.behavior-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.behavior-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}
.behavior-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Encouraged Grid ===== */
.encouraged-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.encouraged-item {
    background: var(--white);
    padding: 1.25rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.encouraged-item:hover {
    border-color: var(--saffron);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.encouraged-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.encouraged-item span:last-child {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== Prohibited Grid ===== */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}
.prohibited-card {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    border-left: 4px solid #c0392b;
}
.prohibited-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}
.prohibited-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #c0392b;
}
.prohibited-card span:last-child {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== Checklist Grid ===== */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
.checklist-item {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.checklist-item:hover {
    border-color: var(--saffron);
    box-shadow: var(--shadow-md);
}
.checklist-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.checklist-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.15rem;
}
.checklist-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Discussion Grid ===== */
.discussion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.discussion-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--deep-blue);
}
.discussion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.discussion-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.discussion-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}
.discussion-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Moderation Timeline ===== */
.moderation-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.timeline-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--saffron);
}
.timeline-step:hover {
    box-shadow: var(--shadow-md);
}
.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--deep-blue);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}
.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.15rem;
}
.timeline-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Report Box ===== */
.report-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 2.5rem;
    max-width: 720px;
    margin: 1rem auto 0;
    border: 1px solid var(--gray-light);
}
.report-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.report-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}
.report-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}
.report-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.report-email {
    font-weight: 600;
    color: var(--deep-blue);
    margin-top: 0.5rem;
}

/* ===== Consequences Grid ===== */
.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.consequence-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--gray-mid);
}
.consequence-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.consequence-card.level-1 {
    border-top-color: #f39c12;
}
.consequence-card.level-2 {
    border-top-color: #e67e22;
}
.consequence-card.level-3 {
    border-top-color: #d35400;
}
.consequence-card.level-4 {
    border-top-color: #c0392b;
}
.consequence-card.level-5 {
    border-top-color: #7f1d1d;
}
.consequence-level {
    display: inline-block;
    background: var(--off-white);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}
.consequence-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.4rem;
}
.consequence-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.2rem;
}
.consequence-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Commitment Box ===== */
.commitment-box {
    background: var(--deep-blue);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.commitment-box::before {
    content: 'ॐ';
    position: absolute;
    right: -1.5rem;
    bottom: -3rem;
    font-size: 12rem;
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}
.commitment-quote {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
    position: relative;
}
.commitment-box blockquote {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    font-style: italic;
    max-width: 680px;
    margin: 0 auto;
}
.commitment-attribution {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--saffron-light);
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
}

/* ===== Contact Box ===== */
.contact-box {
    background: var(--deep-blue);
    color: var(--white);
    padding: 2.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.contact-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}
.contact-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.contact-box .email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--saffron);
    color: var(--white);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 153, 51, 0.3);
}
.contact-box .email-link:hover,
.contact-box .email-link:focus {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 153, 51, 0.45);
}
.contact-box .email-link:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.contact-placeholders {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.contact-placeholders .placeholder-box {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    margin: 0;
    flex: 1;
    min-width: 180px;
    text-align: left;
}
.contact-placeholders .placeholder-box .placeholder-label {
    background: rgba(255, 255, 255, 0.12);
    color: var(--saffron-light);
}
.contact-placeholders .placeholder-box .placeholder-content {
    color: rgba(255, 255, 255, 0.6);
}
.contact-placeholders .placeholder-box .placeholder-note {
    color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ===== Placeholder Boxes ===== */
.placeholder-box {
    border: 2px dashed var(--gray-mid);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin: 0;
    transition: var(--transition);
}
.placeholder-box:hover {
    border-color: var(--saffron);
    background: rgba(255, 153, 51, 0.04);
}
.placeholder-box .placeholder-label {
    display: inline-block;
    background: var(--deep-blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
}
.placeholder-box .placeholder-content {
    font-style: italic;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}
.placeholder-box .placeholder-content .icon {
    margin-right: 0.4rem;
    opacity: 0.6;
}
.placeholder-box .placeholder-note {
    font-size: 0.8rem;
    margin-top: 0.4rem;
    border-top: 1px solid var(--gray-light);
    padding-top: 0.4rem;
    opacity: 0.7;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--deep-blue-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 0 2rem;
    border-top: 4px solid var(--saffron);
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
}
.footer-brand .footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}
.footer-brand .footer-logo span {
    color: var(--saffron);
}
.footer-brand .footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    letter-spacing: 0.04em;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    list-style: none;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover,
.footer-links a:focus {
    color: var(--saffron);
}
.footer-links a:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 4px;
    border-radius: 4px;
}
.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}
.footer-copy .year {
    font-weight: 600;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-on-view {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-view.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ===== 320px+ (Base / Mobile First) ===== */
@media (max-width: 479px) {
    .container {
        padding: 0 0.9rem;
    }

    .hero {
        padding: 2.5rem 0 2rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .hero-image-wrapper {
        max-width: 120px;
    }
    .hero-image-placeholder {
        font-size: 2.8rem;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .toc-wrapper {
        gap: 0.25rem 0.5rem;
    }
    .toc-link {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
    .toc-label {
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }

    section {
        padding: 2.5rem 0;
    }
    .section-title {
        font-size: 1.6rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    .behavior-grid {
        grid-template-columns: 1fr;
    }
    .encouraged-grid {
        grid-template-columns: 1fr 1fr;
    }
    .prohibited-grid {
        grid-template-columns: 1fr 1fr;
    }
    .discussion-grid {
        grid-template-columns: 1fr;
    }
    .consequences-grid {
        grid-template-columns: 1fr 1fr;
    }
    .checklist-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .report-box {
        padding: 1.5rem 1rem;
    }
    .report-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .report-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-box {
        padding: 1.5rem 1rem;
    }
    .contact-box h2 {
        font-size: 1.3rem;
    }
    .contact-box .email-link {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
        width: 100%;
        justify-content: center;
    }
    .contact-placeholders {
        flex-direction: column;
    }
    .contact-placeholders .placeholder-box {
        min-width: unset;
    }

    .commitment-box {
        padding: 2rem 1.25rem;
    }
    .commitment-box blockquote {
        font-size: 1rem;
    }

    .moderation-timeline {
        gap: 0.75rem;
    }
    .timeline-step {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-copy {
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }

    .logo-text {
        font-size: 1rem;
    }
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .logo-tagline {
        font-size: 0.6rem;
    }
    .toc-section {
        padding: 1.25rem 0;
    }
}

/* ===== 480px+ ===== */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 1.1rem;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-image-wrapper {
        max-width: 140px;
    }
    .hero-image-placeholder {
        font-size: 3.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .behavior-grid {
        grid-template-columns: 1fr 1fr;
    }
    .encouraged-grid {
        grid-template-columns: 1fr 1fr;
    }
    .prohibited-grid {
        grid-template-columns: 1fr 1fr;
    }
    .discussion-grid {
        grid-template-columns: 1fr 1fr;
    }
    .consequences-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }
    .contact-box h2 {
        font-size: 1.5rem;
    }
    .contact-placeholders {
        flex-direction: column;
    }
    .contact-placeholders .placeholder-box {
        min-width: unset;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-copy {
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

/* ===== 768px+ (Tablet) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-image-wrapper {
        max-width: 160px;
    }
    .hero-image-placeholder {
        font-size: 3.6rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .behavior-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .encouraged-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .prohibited-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .discussion-grid {
        grid-template-columns: 1fr 1fr;
    }
    .consequences-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .contact-placeholders {
        flex-wrap: wrap;
    }
    .contact-placeholders .placeholder-box {
        min-width: 200px;
        flex: 1 1 45%;
    }

    .footer-inner {
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
    }
}

/* ===== 1024px+ (Laptop / Desktop) ===== */
@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: 4.5rem 0 3.5rem;
    }
    .hero h1 {
        font-size: 3.4rem;
    }
    .hero-image-wrapper {
        max-width: 180px;
    }
    .hero-image-placeholder {
        font-size: 4rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .behavior-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .encouraged-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .prohibited-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .discussion-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .consequences-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .contact-box {
        padding: 3rem 3rem;
    }
    .contact-box h2 {
        font-size: 1.8rem;
    }
    .contact-placeholders .placeholder-box {
        min-width: 220px;
        flex: 1 1 40%;
    }
}

/* ===== 1440px+ (Large Displays) ===== */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
        padding: 0 2.5rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }
    .hero h1 {
        font-size: 4.2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .hero-image-wrapper {
        max-width: 200px;
    }
    .hero-image-placeholder {
        font-size: 4.5rem;
    }
    .hero-actions .btn {
        font-size: 1.05rem;
        padding: 1rem 2.5rem;
    }

    section {
        padding: 4.5rem 0;
    }
    .section-title {
        font-size: 2.6rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .behavior-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .encouraged-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .prohibited-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .discussion-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .consequences-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .contact-box {
        padding: 3.5rem 3.5rem;
        max-width: 820px;
    }
    .contact-box h2 {
        font-size: 2rem;
    }
    .contact-box p {
        font-size: 1.05rem;
    }
    .contact-placeholders .placeholder-box {
        min-width: 240px;
    }

    .commitment-box {
        padding: 3.5rem 3rem;
    }
    .commitment-box blockquote {
        font-size: 1.4rem;
    }

    .footer-inner {
        gap: 1.5rem 3rem;
    }
    .footer-brand .footer-logo {
        font-size: 1.5rem;
    }
    .footer-links a {
        font-size: 1rem;
    }
    .footer-copy {
        font-size: 1rem;
    }
}

/* ============================================================
   NAVIGATION RESPONSIVE (mobile toggle)
   ============================================================ */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0 0.5rem;
        gap: 0.75rem;
        border-top: 1px solid var(--gray-light);
        margin-top: 0.5rem;
    }
    .nav-links.open {
        display: flex;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .site-header {
        padding: 0.6rem 0;
    }
}

/* ============================================================
   UTILITY — No horizontal scroll
   ============================================================ */
img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   ACCESSIBILITY — Focus visible
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--saffron);
    outline-offset: 2px;
}

/* ============================================================
   PRINT STYLES (basic)
   ============================================================ */
@media print {
    .site-header,
    .toc-section,
    .nav-toggle,
    .site-footer {
        display: none !important;
    }
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }
    .hero {
        background: white !important;
        color: black !important;
        padding: 1rem 0 !important;
    }
    .hero h1 .highlight {
        color: var(--saffron) !important;
    }
    .hero p {
        color: black !important;
    }
    .hero-image-placeholder {
        border: 1px solid #ccc !important;
        background: #f0f0f0 !important;
    }
    .hero-actions .btn {
        border: 1px solid #333 !important;
        color: #000 !important;
        background: #f5f5f5 !important;
        box-shadow: none !important;
    }
    .value-card,
    .behavior-card,
    .discussion-card,
    .consequence-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
    .commitment-box {
        background: #f5f5f5 !important;
        color: #000 !important;
        border: 1px solid #ddd !important;
    }
    .commitment-box blockquote {
        color: #000 !important;
    }
    .commitment-attribution {
        color: #555 !important;
    }
    .contact-box {
        background: #f5f5f5 !important;
        color: #000 !important;
        border: 1px solid #ddd !important;
    }
    .contact-box h2 {
        color: #000 !important;
    }
    .contact-box p {
        color: #333 !important;
    }
    .contact-box .email-link {
        background: var(--saffron) !important;
        color: #000 !important;
        box-shadow: none !important;
    }
    .placeholder-box {
        border: 1px solid #999 !important;
        background: #f9f9f9 !important;
    }
    .report-box {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    .section-badge {
        background: #eee !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
    .prohibited-card {
        border-left-color: #999 !important;
    }
    .timeline-step {
        border-left-color: #999 !important;
        box-shadow: none !important;
        border: 1px solid #eee !important;
    }
    .timeline-number {
        background: #333 !important;
        color: #fff !important;
    }
    .checklist-item {
        border: 1px solid #eee !important;
        box-shadow: none !important;
    }
}/* End custom CSS */