/* ===== CSS Custom Properties ===== */
:root {
    --teal-900: #0d3b3b;
    --teal-800: #1a5f5f;
    --teal-700: #237a7a;
    --teal-600: #2d9a9a;
    --teal-500: #37b5b5;
    --teal-400: #5fc4c4;
    --teal-100: #d4eeef;
    --teal-50:  #eaf6f6;

    --slate-950: #0a0f14;
    --slate-900: #111820;
    --slate-800: #1a2332;
    --slate-700: #2a3545;
    --slate-600: #3d4f63;
    --slate-500: #5a6f85;
    --slate-400: #7f94aa;
    --slate-300: #a8b8c8;
    --slate-200: #cdd8e4;
    --slate-100: #e8edf3;
    --slate-50:  #f4f7fa;

    --cream: #faf8f5;
    --cream-dark: #f2efe9;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --sidebar-width: 280px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== Layout ===== */
.layout {
    display: flex;
    min-height: 100vh;
}

/* ===== Sidebar ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--slate-900);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.sidebar-inner {
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 3rem;
    text-decoration: none;
    color: white;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--teal-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    transition: background 0.3s var(--transition-smooth);
}

.logo:hover .logo-mark {
    background: var(--teal-600);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* Nav Links */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--teal-500);
    border-radius: 2px;
    transition: height 0.3s var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    background: var(--slate-800);
    color: white;
}

.nav-link:hover::before,
.nav-link.active::before {
    height: 24px;
}

.nav-num {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-500);
    transition: color 0.3s var(--transition-smooth);
    min-width: 24px;
}

.nav-label {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--slate-300);
    transition: color 0.3s var(--transition-smooth);
}

.nav-link:hover .nav-num,
.nav-link.active .nav-num {
    color: var(--teal-400);
}

.nav-link:hover .nav-label,
.nav-link.active .nav-label {
    color: white;
}

/* Sidebar Footer */
.sidebar-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-700);
}

.sidebar-address {
    font-size: 0.8125rem;
    color: var(--slate-400);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.sidebar-phone {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--teal-400);
    transition: color 0.3s var(--transition-smooth);
}

.sidebar-phone:hover {
    color: var(--teal-300);
}

/* ===== Content ===== */
.content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* ===== Section Base ===== */
.section {
    padding: 7rem 3rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--teal-600);
    flex-shrink: 0;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

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

.text-accent {
    color: var(--teal-700);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 20%, var(--teal-50) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, var(--teal-50) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 2rem;
}

.eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--teal-600);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--slate-900);
    margin-bottom: 1.75rem;
}

.title-accent {
    color: var(--teal-700);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background: var(--teal-700);
    color: white;
}

.btn-primary:hover {
    background: var(--teal-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 95, 95, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
}

.btn-ghost:hover {
    border-color: var(--teal-600);
    color: var(--teal-700);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 16px;
    width: 420px;
    height: 560px;
    object-fit: cover;
    box-shadow: 0 24px 64px rgba(10, 15, 20, 0.15);
}

.hero-image-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background: var(--teal-100);
    border-radius: 16px;
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== About ===== */
.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text p {
    color: var(--slate-600);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--slate-100);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-700);
    line-height: 1.2;
}

.stat-desc {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--slate-200);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    width: 100%;
    height: 620px;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(10, 15, 20, 0.1);
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--slate-500);
    font-style: italic;
    font-family: var(--font-serif);
}

.image-caption svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ===== Stages ===== */
.stages {
    background: var(--cream);
}

.stages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.stage-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 15, 20, 0.06);
    transition: all 0.4s var(--transition-smooth);
}

.stage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(10, 15, 20, 0.12);
}

.stage-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.stage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.stage-card:hover .stage-card-image img {
    transform: scale(1.04);
}

.stage-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--teal-700);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.stage-card-content {
    padding: 2rem;
}

.stage-title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.stage-card-content > p {
    color: var(--slate-600);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.stage-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.stage-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--slate-700);
}

.stage-features svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ===== Values ===== */
.values {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid var(--slate-100);
    transition: all 0.3s var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--teal-200);
    background: var(--teal-50);
    transform: translateY(-2px);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
    margin-bottom: 1.25rem;
    transition: all 0.3s var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--teal-700);
    color: white;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.75;
}

/* ===== Community ===== */
.community {
    background: var(--cream);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.community-text p {
    color: var(--slate-600);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.community-feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: var(--slate-700);
}

.community-feature svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

.community-images {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.community-img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(10, 15, 20, 0.1);
}

.community-img-secondary img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(10, 15, 20, 0.08);
}

/* ===== Contact ===== */
.contact {
    background: var(--slate-900);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-info .section-heading {
    color: white;
}

.contact-info > p {
    color: var(--slate-300);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--slate-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-400);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--slate-200);
    line-height: 1.6;
}

.contact-value:hover {
    color: var(--teal-400);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--slate-800);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--slate-700);
    border-radius: 8px;
    background: var(--slate-900);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: border-color 0.3s var(--transition-smooth);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%237f94aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--slate-900);
    color: white;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 10px;
    background: rgba(45, 154, 154, 0.15);
    border: 1px solid rgba(45, 154, 154, 0.3);
    margin-top: 1.25rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--teal-400);
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--teal-200);
    line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
    background: var(--slate-950);
    padding: 4rem 3rem 2rem;
    color: var(--slate-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--slate-800);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 300px;
}

.footer-links h4,
.footer-legal h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: 1rem;
}

.footer-links a,
.footer-legal a {
    display: block;
    font-size: 0.9375rem;
    color: var(--slate-500);
    padding: 0.3rem 0;
    transition: color 0.3s var(--transition-smooth);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--teal-400);
}

.footer-notice {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: var(--slate-600);
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ===== Mobile Header ===== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--slate-900);
    z-index: 90;
    padding: 0 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: white;
}

.mobile-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    border-radius: 8px;
}

.mobile-logo .logo-name {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    background: var(--slate-800);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: var(--slate-700);
}

.hamburger {
    width: 20px;
    height: 14px;
    position: relative;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--slate-300);
    border-radius: 1px;
    transition: all 0.3s var(--transition-smooth);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { top: 12px; }

.menu-toggle.open .hamburger::before {
    top: 6px;
    transform: rotate(45deg);
}

.menu-toggle.open .hamburger span {
    opacity: 0;
}

.menu-toggle.open .hamburger::after {
    top: 6px;
    transform: rotate(-45deg);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--slate-900);
    z-index: 80;
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.0625rem;
    color: var(--slate-300);
    border-radius: 8px;
    transition: all 0.3s var(--transition-smooth);
}

.mobile-nav-link:hover {
    background: var(--slate-800);
    color: white;
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-700);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-contact p {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.mobile-contact a {
    font-size: 0.9375rem;
    color: var(--teal-400);
    transition: color 0.3s;
}

.mobile-contact a:hover {
    color: var(--teal-300);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .content {
        margin-left: 0;
    }

    .hero {
        flex-direction: column;
        padding: 6rem 2rem 4rem;
        min-height: auto;
        text-align: center;
    }

    .hero-bg-pattern {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image img {
        height: 400px;
    }

    .stages-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .community-img-main img {
        height: 360px;
    }

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

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

@media (max-width: 640px) {
    .hero {
        padding: 5rem 1.25rem 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section {
        padding: 4rem 1.25rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
