/* ============================================
   CETRIUM - GLOBAL STYLES
   ============================================ */

/* CSS Variables */
:root {
    --primary: #279a34;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #666666;
    --light-bg: #fafafa;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Ensure images don't break layout */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    flex-shrink: 0;
}

.logo-nav a {
    display: block;
    line-height: 0;
}

.logo-nav img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-nav img:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    opacity: 0.8;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    display: block;
    max-height: 500px;
}

.mobile-nav ul {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 400;
    display: block;
    padding: 1rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 6rem;
    background: linear-gradient(to bottom right, var(--primary-color), var(--secondary-color));
    background-image: linear-gradient(to right bottom, rgb(39, 154, 52), rgb(28, 47, 215));
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/cetrium.gif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
    filter: brightness(0.7);
}

.hero.full-height {
    min-height: 100vh;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: var(--light);
}

.hero h1 strong {
    font-weight: 500;
    color: var(--light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--light);
    max-width: 900px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS & CONTAINERS
   ============================================ */

section {
    padding: 6rem 3rem;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.container.wide {
    max-width: 1200px;
}

/* Section Backgrounds */
.light-section {
    background: var(--light);
}

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

.dark-section {
    background: var(--dark);
    color: var(--light);
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--light);
}

.dark-section p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 1.3;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

strong {
    font-weight: 500;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style-position: inside;
}

li {
    margin-bottom: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--dark);
    color: var(--light);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid var(--dark);
    cursor: pointer;
    text-align: center;
    border-radius: 0;
    -webkit-appearance: none;
}

.btn:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-valkea {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid var(--light);
    cursor: pointer;
    text-align: center;
    border-radius: 0;
    -webkit-appearance: none;
}

.btn-valkea:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--dark);
    color: var(--light);
    border: 2px solid var(--dark);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 0;
    -webkit-appearance: none;
}

.btn-submit:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   GRIDS & LAYOUTS
   ============================================ */

/* Philosophy/Values Grid */
.philosophy-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.philosophy-item,
.value-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.philosophy-item:nth-child(1),
.value-item:nth-child(1) { animation-delay: 0.1s; }
.philosophy-item:nth-child(2),
.value-item:nth-child(2) { animation-delay: 0.2s; }
.philosophy-item:nth-child(3),
.value-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.philosophy-number,
.value-number {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.philosophy-item h3,
.value-item h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.philosophy-item p,
.value-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    font-weight: 300;
}

/* Focus Grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.focus-item {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-number {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.focus-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: var(--light);
}

.focus-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.focus-intro {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin-bottom: 6rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.profile-card {
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.profile-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.profile-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section,
.intro-section {
    background: var(--light-bg);
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.content-section p,
.intro-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.text-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.text-highlight {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-top: 3rem;
}

/* ============================================
   THEME SECTIONS (Fokus page)
   ============================================ */

.theme-section {
    background: var(--light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-section:nth-child(even) {
    background: var(--light-bg);
}

.theme-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 3rem;
}

.theme-number {
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 500;
}

.theme-section h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.theme-content {
    max-width: 900px;
}

.theme-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.theme-highlight {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
    margin-top: 3rem;
    line-height: 1.6;
}

/* ============================================
   PRINCIPLE SECTIONS (Toimintamallimme page)
   ============================================ */

.principle-section {
    background: var(--light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.principle-section:nth-child(even) {
    background: var(--light-bg);
}

.principle-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 6rem;
    align-items: start;
}

.principle-number {
    font-size: 6rem;
    font-weight: 200;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.principle-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.principle-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */

.founder-section {
    background: var(--light);
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

.founder-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--light-bg);
    border-radius: 2px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.founder-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    font-weight: 300;
}

.founder-bio p {
    margin-bottom: 1.5rem;
}

.founder-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--dark);
    transition: all 0.3s ease;
}

.founder-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: var(--dark);
    color: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary);
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    background: var(--dark);
    color: var(--light);
    text-align: center;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-content blockquote {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.quote-author {
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   CLOSING SECTION
   ============================================ */

.closing-section {
    background: var(--light-bg);
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

.closing-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.closing-highlight {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-top: 3rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 300;
}

.contact-value a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--primary);
}

/* ============================================
   FORMS
   ============================================ */
/* Contact Form Styles */

.contact-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 2px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(39, 154, 52, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}


/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--light);
    padding: 6rem 3rem 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

footer.dark {
    background: var(--dark);
    color: var(--light);
    border-top: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    opacity: 0.9;
}

footer.dark .footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

footer.dark .footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.5;
    color: inherit;
}

footer.dark .footer-section h4 {
    color: rgba(255, 255, 255, 0.5);
}

.footer-section a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

footer.dark .footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 300;
}

footer.dark .footer-bottom {
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer.dark .footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ============================================
   TIETOSUOJA PAGE SPECIFIC
   ============================================ */

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 3rem 6rem;
}

.content-wrapper h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.last-updated {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.content-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1.05rem;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.8rem;
    font-weight: 300;
    font-size: 1.05rem;
}

.section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section:last-child {
    border-bottom: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Ensure footer placeholder takes up space */
#footer-placeholder {
    width: 100%;
}

/* Prevent content jump during loading */
body.loading {
    overflow: hidden;
}

/* Print styles */
@media print {
    nav,
    .mobile-menu,
    .mobile-nav,
    footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero {
        padding-top: 2rem;
        min-height: auto;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .philosophy-grid,
    .values-grid,
    .focus-grid,
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-grid,
    .principle-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .principle-number {
        font-size: 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 5rem 1.5rem;
    }

    h2,
    .text-content h2,
    .theme-section h2,
    .principle-text h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .quote-content blockquote {
        font-size: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .theme-header {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .content-wrapper {
        padding: 6rem 1.5rem 4rem;
    }

    .content-wrapper h1 {
        font-size: 2rem;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
    }

    .footer-content {