/* ============================================
   RAMANAND BHATT - PORTFOLIO WEBSITE
   Design: Clean & Professional
   Palette: Dark Green + Cream/Beige
   Inspiration: Leadership Executive Coaching
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Colors */
    --green-dark: #1a3c34;
    --green-deep: #0f2a23;
    --green-medium: #2d5a4e;
    --green-light: #3d7a6a;
    --green-accent: #4a9a85;

    /* Neutrals */
    --cream: #f5f0e8;
    --cream-light: #faf8f4;
    --cream-dark: #e8e0d4;
    --beige: #d4c5b0;
    --warm-white: #fefcf9;
    --warm-gray: #8a8477;
    --text-dark: #111110;
    --text-body: #333330;
    --text-muted: #555550;

    /* Accent */
    --gold: #c4a35a;
    --gold-light: #dfc888;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 60, 52, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 60, 52, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 60, 52, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 60, 52, 0.16);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--warm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Safe area for notched phones */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

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

/* Subtle grain texture overlay for premium feel */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Section --- */
.section {
    padding: var(--section-padding) 0;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 64px;
}

.section-header--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--green-accent);
}

.section-header--center .section-label {
    padding-left: 0;
}

.section-header--center .section-label::before {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.title-accent {
    color: var(--green-dark);
    font-style: italic;
}

.section-description {
    margin-top: 20px;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 253, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(26, 60, 52, 0.06);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--green-dark);
    background: rgba(26, 60, 52, 0.05);
}

.nav-cta {
    background: var(--green-dark);
    color: var(--cream) !important;
    padding: 10px 24px;
    border-radius: 100px;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--green-medium) !important;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, var(--cream-light) 0%, var(--cream) 40%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 60, 52, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    flex: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1.5px solid var(--green-accent);
    border-radius: 100px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-subtitle strong {
    color: var(--green-dark);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--beige);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.6s;
}

.hero-image-wrapper {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

/* Hero Scroll Indicator */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 40px;
}

.hero-scroll span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--beige);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-dark);
    animation: scrollLine 2s ease-in-out infinite;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--green-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 1.5px solid var(--green-dark);
}

.btn-outline:hover {
    background: var(--green-dark);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   CREDENTIAL MARQUEE STRIP
   ============================================ */
.marquee-strip {
    background: var(--green-dark);
    overflow: hidden;
    padding: 18px 0;
    position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--green-dark), transparent);
}

.marquee-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--green-dark), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.8);
    padding: 0 8px;
}

.marquee-divider {
    color: var(--gold);
    padding: 0 16px;
    font-size: 14px;
    opacity: 0.5;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-content {
    padding-top: 16px;
}

.about-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 60, 52, 0.06);
    border-radius: 50%;
    color: var(--green-dark);
}

.highlight-icon svg {
    width: 18px;
    height: 18px;
}

.highlight div {
    display: flex;
    flex-direction: column;
}

.highlight strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.highlight span {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================
   TOASTMASTERS SECTION
   ============================================ */
.toastmasters {
    background: var(--cream-light);
}

/* Achievement Cards */
.tm-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.tm-card {
    background: var(--warm-white);
    border: 1px solid rgba(26, 60, 52, 0.08);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.tm-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) {
    .tm-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(26, 60, 52, 0.12);
        border-color: rgba(26, 60, 52, 0.12);
    }

    .tm-card:hover::before {
        transform: scaleX(1);
    }
}

.tm-card--featured {
    background: var(--green-dark);
    border-color: transparent;
    grid-column: span 1;
}

.tm-card--featured h3 {
    color: #ffffff;
}

.tm-card--featured p {
    color: rgba(255, 255, 255, 0.85);
}

.tm-card--featured .tm-card-icon {
    color: var(--gold);
}

.tm-card--featured .tm-card-icon svg {
    stroke-width: 2;
}

.tm-card--featured .tm-card-tag {
    background: rgba(196, 163, 90, 0.25);
    color: var(--gold-light);
    font-weight: 700;
}

.tm-card-icon {
    color: var(--green-dark);
    margin-bottom: 20px;
}

.tm-card-icon svg {
    stroke-width: 2;
}

.tm-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #111110;
    margin-bottom: 12px;
    line-height: 1.3;
}

.tm-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a44;
    margin-bottom: 20px;
}

.tm-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(26, 60, 52, 0.1);
    color: var(--green-dark);
}

/* Timeline */
.tm-timeline {
    margin-bottom: 80px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-accent), var(--beige));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--warm-white);
    border: 3px solid var(--green-accent);
    border-radius: 50%;
    z-index: 1;
}

.timeline-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Award Showcase */
.tm-award-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.award-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top center;
}

.award-content {
    padding: 48px 48px 48px 0;
}

.award-content .section-label {
    margin-bottom: 12px;
}

.award-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.award-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.award-content blockquote {
    font-family: var(--font-heading);
    font-size: 17px;
    font-style: italic;
    color: var(--green-dark);
    line-height: 1.7;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--cream-light);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(26, 60, 52, 0.1);
        border-color: rgba(26, 60, 52, 0.06);
        background: var(--warm-white);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover .service-number {
        color: rgba(26, 60, 52, 0.12);
        transition: color 0.4s ease;
    }
}

.service-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(26, 60, 52, 0.06);
    line-height: 1;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    font-size: 14px;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--green-accent);
    border-radius: 50%;
}

/* ============================================
   IMPACT NUMBERS SECTION
   ============================================ */
.impact {
    background: var(--green-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

.impact-item {
    position: relative;
}

.impact-item::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(245, 240, 232, 0.12);
}

.impact-item:last-child::after {
    display: none;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    display: inline;
    letter-spacing: -0.03em;
}

.impact-suffix {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.impact-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 12px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--green-deep);
    padding: var(--section-padding) 0;
}

.gallery .section-label {
    color: var(--gold);
}

.gallery .section-label::before {
    display: none;
}

.gallery .section-header--center {
    text-align: center;
}

.gallery .section-title {
    color: var(--cream);
}

.gallery .title-accent {
    color: var(--cream);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item--large img {
    height: 320px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 42, 35, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy {
    background: var(--warm-white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.philosophy-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.mile-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mile-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--cream-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mile-item:hover {
    background: var(--cream);
    transform: translateX(4px);
}

.mile-letter {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--cream);
    background: var(--green-dark);
    border-radius: var(--radius-sm);
}

.mile-item h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mile-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.philosophy-image {
    position: relative;
}

.philosophy-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.philosophy-quote {
    position: absolute;
    bottom: -32px;
    left: -24px;
    right: 24px;
    background: var(--green-dark);
    color: var(--cream);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.philosophy-quote blockquote {
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 8px;
}

.philosophy-quote cite {
    font-size: 13px;
    font-style: normal;
    opacity: 0.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--cream-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-body);
    font-size: 15px;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--green-dark);
}

.contact-item a {
    color: var(--green-dark);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-item a:hover {
    color: var(--green-accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-accent);
    box-shadow: 0 0 0 3px rgba(74, 154, 133, 0.1);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b63' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-deep);
    color: var(--cream);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    color: var(--cream);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
    margin-top: 12px;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cream);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.4);
}

/* ============================================
   TOASTMASTERS PAGE - Dedicated Page Styles
   ============================================ */

/* TM Page Hero */
.tm-hero {
    background: linear-gradient(160deg, var(--cream-light) 0%, var(--cream) 40%, var(--cream-dark) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.tm-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 60, 52, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.tm-hero-content .hero-title {
    opacity: 1;
    animation: none;
}

.tm-hero-content .hero-subtitle {
    opacity: 1;
    animation: none;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tm-hero-content .section-label {
    padding-left: 0;
    margin-bottom: 24px;
}

.tm-hero-content .section-label::before {
    display: none;
}

.tm-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.award-card {
    background: var(--cream-light);
    border: 1px solid rgba(26, 60, 52, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .award-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(26, 60, 52, 0.1);
    }

    .award-card:hover::before {
        transform: scaleX(1);
    }
}

.award-card-icon {
    color: var(--gold);
    margin-bottom: 16px;
}

.award-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.award-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Clubs Grid */
.clubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.club-card {
    background: var(--cream-light);
    border: 1px solid rgba(26, 60, 52, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .club-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(26, 60, 52, 0.08);
    }
}

.club-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.club-role {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 12px;
}

.club-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Roles Grid */
.roles-list {
    margin-top: 0;
}

.roles-list .timeline-title {
    margin-bottom: 32px;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--cream-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--green-accent);
}

.role-year {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--green-accent);
    white-space: nowrap;
    min-width: 60px;
}

.role-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Active nav link for dedicated page */
.nav-link.active {
    color: var(--green-dark);
    background: rgba(26, 60, 52, 0.06);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-actions,
    .hero-stats,
    .hero-image {
        opacity: 1;
        animation: none;
    }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-image-wrapper {
        width: 200px;
    }

    .hero-image-wrapper img {
        height: 240px;
    }

    .hero-stats {
        flex-direction: row;
    }

    .stat-divider {
        width: 1px;
        height: 32px;
    }
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image-wrapper {
        width: 320px;
    }

    .hero-image-wrapper img {
        height: 400px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .tm-award-showcase {
        grid-template-columns: 1fr;
    }

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

    .award-content {
        padding: 40px;
    }

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

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

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .philosophy-image {
        margin-bottom: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .impact-item:nth-child(2)::after {
        display: none;
    }

    .impact-number {
        font-size: 44px;
    }

    /* TM Page - Tablet */
    .tm-hero {
        padding: 140px 0 64px;
    }

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

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

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

/* ============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --container-padding: 20px;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 80vw);
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background: var(--warm-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
        gap: 4px;
        transition: var(--transition-slow);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 14px 0; /* 44px+ touch target */
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
        min-height: 48px;
    }

    /* Mobile nav backdrop overlay */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 42, 35, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Hero */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-container {
        gap: 32px;
        padding: 0 var(--container-padding);
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 44px);
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-image-wrapper {
        width: 260px;
    }

    .hero-image-wrapper img {
        height: 340px;
    }

    .hero-image-accent {
        top: -10px;
        right: -10px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .stat-divider {
        width: 1px;
        height: 32px;
    }

    .stat {
        align-items: center;
        text-align: center;
        min-width: 80px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-actions {
        margin-bottom: 36px;
    }

    /* Mobile Sections */
    .section-title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Mobile About */
    .about-image img {
        height: 300px;
    }

    .about-lead {
        font-size: 17px;
    }

    /* Mobile Toastmasters */
    .tm-achievements {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 56px;
    }

    .tm-card {
        padding: 28px 24px;
    }

    .tm-card-icon svg {
        width: 32px;
        height: 32px;
    }

    .timeline {
        padding-left: 28px;
    }

    .timeline::before {
        left: 6px;
    }

    .timeline-item {
        padding-left: 24px;
        padding-bottom: 32px;
    }

    .timeline-dot {
        left: -22px;
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .timeline-title {
        font-size: 24px;
        margin-bottom: 36px;
    }

    .tm-award-showcase {
        border-radius: var(--radius-md);
        gap: 0;
    }

    .award-image img {
        height: 320px;
        object-position: top center;
    }

    .award-content {
        padding: 28px 24px;
    }

    .award-content h3 {
        font-size: 20px;
    }

    .award-content blockquote {
        font-size: 15px;
        padding-left: 16px;
    }

    /* Mobile Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 36px 28px;
    }

    /* Mobile Marquee */
    .marquee-strip {
        padding: 14px 0;
    }

    .marquee-item {
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* Mobile Impact */
    .impact {
        padding: 56px 0;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .impact-item::after {
        display: none;
    }

    .impact-number {
        font-size: 40px;
    }

    .impact-suffix {
        font-size: 28px;
    }

    .impact-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* Mobile Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item img,
    .gallery-item--large img {
        height: 180px;
    }

    .gallery-item--large {
        grid-column: span 2;
    }

    .gallery-item--large img {
        height: 220px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(15, 42, 35, 0.7) 0%, transparent 50%);
    }

    .gallery-overlay span {
        font-size: 12px;
    }

    /* Mobile Philosophy */
    .philosophy-image img {
        height: 320px;
    }

    .philosophy-quote {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: -24px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .mile-item {
        padding: 20px;
    }

    .mile-letter {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Mobile Contact */
    .contact-form-wrapper {
        padding: 28px 24px;
    }

    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* TM Page - Mobile */
    .tm-hero {
        padding: 100px 0 48px;
    }

    .tm-hero-stats {
        gap: 16px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

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

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

    .role-item {
        padding: 14px 16px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
        --container-padding: 16px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 16px 32px; /* Larger touch target */
    }

    .hero-image {
        padding: 0 16px; /* Prevent accent border clipping */
    }

    .hero-image-wrapper {
        width: 220px;
    }

    .hero-image-wrapper img {
        height: 280px;
    }

    .hero-image-accent {
        top: -8px;
        right: -8px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 15px;
    }

    .tm-card {
        padding: 24px 20px;
    }

    .tm-card h3 {
        font-size: 18px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-number {
        font-size: 36px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item--large {
        grid-column: span 1;
    }

    .gallery-item img,
    .gallery-item--large img {
        height: 200px;
    }

    .mile-item {
        flex-direction: column;
        gap: 12px;
    }

    .philosophy-image img {
        height: 260px;
    }

    .philosophy-quote {
        padding: 20px 24px;
    }

    .philosophy-quote blockquote {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px; /* Larger touch targets */
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .btn-full {
        padding: 16px 32px;
        font-size: 15px;
    }

    .footer {
        padding: 48px 0 24px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .footer-content {
        gap: 28px;
        margin-bottom: 32px;
    }

    /* TM Page - Small Mobile */
    .tm-hero {
        padding: 90px 0 40px;
    }

    .tm-hero-stats .stat-divider {
        display: none;
    }

    .tm-hero-stats {
        gap: 12px;
    }

    .tm-hero-stats .stat {
        min-width: 70px;
    }

    .award-card {
        padding: 24px 20px;
    }

    .club-card {
        padding: 24px 20px;
    }

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

    .about-lead {
        font-size: 16px;
    }

    .about-content p {
        font-size: 14px;
    }

    .highlight {
        gap: 12px;
    }

    .highlight-icon {
        width: 36px;
        height: 36px;
    }

    .highlight strong {
        font-size: 14px;
    }

    .highlight span {
        font-size: 12px;
    }

    .award-image img {
        height: 280px;
    }

    /* Small mobile impact */
    .impact {
        padding: 40px 0;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .impact-number {
        font-size: 32px;
    }

    .impact-suffix {
        font-size: 22px;
    }

    .impact-label {
        font-size: 10px;
        margin-top: 8px;
    }

    /* Small mobile marquee */
    .marquee-strip {
        padding: 12px 0;
    }

    .marquee-item {
        font-size: 10px;
        padding: 0 6px;
    }

    .marquee-divider {
        padding: 0 10px;
        font-size: 12px;
    }
}
