/* ============================================
   SUMANTRANA MANAGEMENT CONSULTANTS LLP
   Design System & Styles — Light Mode
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors — Light Mode */
    --color-bg: #faf9f7;
    --color-bg-alt: #f2f0ec;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #fefefe;
    --color-surface: #f5f4f1;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.15);

    --color-text: #3d3d3d;
    --color-text-muted: #6b6b6b;
    --color-text-dim: #9a9a9a;

    --color-heading: #1a1a1a;

    --color-accent: #8b6914;
    --color-accent-light: #a67c1a;
    --color-accent-dark: #6d5210;
    --color-accent-glow: rgba(139, 105, 20, 0.1);

    --color-white: #1a1a1a;
    --color-success: #16a34a;

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

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s 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 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 4px 24px rgba(139, 105, 20, 0.08);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-accent-light);
}

address {
    font-style: normal;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-heading);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

em {
    font-style: italic;
    color: var(--color-accent);
}

.large-text {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--color-text);
    font-weight: 300;
}

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

/* --- Section --- */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

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

.section-title {
    margin-bottom: var(--space-lg);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    color: #fff;
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-1px);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* --- Link Arrow --- */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-top: var(--space-md);
    transition: all var(--transition-fast);
}

.link-arrow span {
    transition: transform var(--transition-fast);
}

.link-arrow:hover {
    color: var(--color-accent-light);
}

.link-arrow:hover span {
    transform: translateX(4px);
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition-base);
    background: transparent;
}

.nav.scrolled {
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-heading);
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.nav-logo:hover .logo-text {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-heading);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(180deg, #f5f3ef 0%, var(--color-bg) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(139, 105, 20, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(139, 105, 20, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-subhead {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 1.5vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    margin: 0 auto var(--space-lg);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-text-muted);
    max-width: 540px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */

.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--space-3xl) + 4rem) 0 var(--space-3xl);
    background: linear-gradient(180deg, #f5f3ef 0%, var(--color-bg) 100%);
}

.page-header-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--color-heading);
    margin-bottom: var(--space-md);
}

/* ============================================
   HOME: INTRO SECTION
   ============================================ */

.section-intro {
    border-top: 1px solid var(--color-border);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.intro-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* ============================================
   HOME: SERVICES HIGHLIGHT
   ============================================ */

.section-services-highlight {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.service-card {
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-accent);
    opacity: 0.4;
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   HOME: PARTNERS PREVIEW
   ============================================ */

.section-partners-preview {
    border-bottom: 1px solid var(--color-border);
}

.partners-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.partners-preview-text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.partner-name-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.partner-name-item {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.partner-name-item:first-child {
    border-top: 1px solid var(--color-border);
}

.partner-name-item:hover {
    padding-left: var(--space-sm);
}

.partner-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.25rem;
}

.partner-name-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.partner-name-item:hover h3 {
    color: var(--color-accent);
}

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

.section-cta {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

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

.cta-title {
    margin-bottom: var(--space-md);
}

.cta-text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

/* ============================================
   ABOUT: MISSION
   ============================================ */

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-mission-right p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-mission-right .large-text {
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

/* ============================================
   ABOUT: WHAT WE DO
   ============================================ */

.section-what-we-do {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.wwd-card {
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.wwd-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.wwd-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.wwd-icon svg {
    width: 100%;
    height: 100%;
}

.wwd-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.wwd-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   ABOUT: APPROACH
   ============================================ */

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.approach-step {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.approach-step:first-child {
    border-top: 1px solid var(--color-border);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0.5;
    min-width: 2.5rem;
    font-weight: 400;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   TEAM PAGE
   ============================================ */

.section-team-intro {
    padding-bottom: 0;
}

.team-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.team-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-lg);
}

.team-card-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 280px;
}

.team-card-avatar {
    background: linear-gradient(135deg, var(--color-surface), var(--color-bg-alt));
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--color-border);
}

.avatar-placeholder {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--color-accent);
    opacity: 0.6;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
}

.team-card-content {
    padding: var(--space-xl);
}

.team-card-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.25rem;
}

.team-card-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.team-card-divider {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin-bottom: var(--space-md);
}

.team-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.team-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-top: var(--space-xs);
    transition: color var(--transition-fast);
}

.team-email:hover {
    color: var(--color-accent-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-single-layout {
    max-width: 680px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info-block {
    margin-bottom: var(--space-xl);
}

.contact-info-block h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.contact-address {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-top: var(--space-md);
}

.contact-address strong {
    color: var(--color-heading);
    font-weight: 500;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-email-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.contact-email-link:hover {
    border-color: var(--color-accent);
    background: var(--color-bg-card-hover);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.email-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.email-icon svg {
    width: 100%;
    height: 100%;
}

.email-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-heading);
}

.email-address {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Map */
.section-map {
    padding-top: 0;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.map-overlay {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.map-overlay h3 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.map-overlay p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.map-wrapper iframe {
    display: block;
}

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

.footer {
    background: #1a1a1a;
    border-top: 1px solid var(--color-border);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: var(--space-xs);
}

.footer-tagline {
    font-size: 0.85rem;
    color: #9a9a9a;
    font-style: italic;
}

.footer h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: #9a9a9a;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #c9a96e;
}

.footer-contact address {
    font-size: 0.85rem;
    color: #9a9a9a;
    line-height: 1.8;
}

.footer-email a {
    display: block;
    font-size: 0.85rem;
    color: #9a9a9a;
    margin-bottom: 0.4rem;
    transition: color var(--transition-fast);
}

.footer-email a:hover {
    color: #c9a96e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #6b6b6b;
    letter-spacing: 0.05em;
}

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

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

@media (max-width: 1024px) {
    .services-grid,
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(250, 249, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transition: right var(--transition-base);
        border-left: 1px solid var(--color-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    /* Grids */
    .intro-grid,
    .about-mission-grid,
    .partners-preview-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .services-grid,
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    /* Team */
    .team-card-inner {
        grid-template-columns: 1fr;
    }

    .team-card-avatar {
        min-height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    /* Section spacing */
    .section {
        padding: var(--space-2xl) 0;
    }

    .hero {
        min-height: 90vh;
    }

    .page-header {
        min-height: 40vh;
        padding-top: calc(var(--space-2xl) + 4rem);
    }

    /* Hero */
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
