/* ============================================
   OEVRA YOGA — Complete Template Stylesheet
   LiteFrameCMS Template
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
    --brand-primary:    #2C4A3E;
    --brand-secondary:  #6B9E78;
    --brand-accent:     #C4865A;
    --text-color:       #1A1A1A;
    --text-muted:       #6B6B6B;
    --bg-color:         #FAFAF8;
    --bg-alt:           #EDE9E2;

    --font-heading:     'Playfair Display', serif;
    --font-body:        'DM Sans', sans-serif;
    --font-size-base:   16px;
    --border-radius:    16px;
    --btn-radius:       50px;
}

/* === RESET === */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 0.6em;
    font-weight: 400;
}
a { color: inherit; text-decoration: none; transition: color 0.25s; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.section       { padding: 120px 0; }
.section-sm    { padding: 80px 0; }
.section-alt   { background-color: var(--bg-alt); }
.section-dark  { background-color: var(--brand-primary); }

/* === TYPOGRAPHY UTILITIES === */
.label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    display: block;
    margin-bottom: 18px;
}
.label-light { color: rgba(196, 134, 90, 0.85); }
.section-title {
    font-size: clamp(36px, 4vw, 56px);
    color: var(--brand-primary);
    margin-bottom: 24px;
}
.section-title-light { color: #fff; }
.section-intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.75;
}
.text-center  { text-align: center; }
.text-white   { color: #fff; }
.text-muted   { color: var(--text-muted); }
.center-intro { margin-left: auto; margin-right: auto; text-align: center; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--btn-radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--brand-accent);
    color: #fff;
}
.btn:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.btn-outline:hover {
    background: var(--brand-primary);
    color: #fff;
}
.btn-white {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}
.btn-white:hover {
    background: #fff;
    color: var(--brand-primary);
    border-color: #fff;
}
.btn-ghost {
    background: transparent;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
    padding: 10px 24px;
    font-size: 13px;
}
.btn-ghost:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(44, 74, 62, 0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--brand-primary);
    font-weight: 600;
}
.logo:hover { color: var(--brand-accent); }
.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color);
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--brand-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-cta {
    background: var(--brand-primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: var(--btn-radius);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.25s;
}
.nav-cta:hover { background: var(--brand-accent); color: #fff; }
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* === HOME HERO === */
.hero-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}
.hero-home-left {
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 100px 80px 100px 40px;
    position: relative;
    overflow: hidden;
}
.hero-home-content {
    max-width: 520px;
    position: relative;
    z-index: 2;
}
.hero-home-title {
    font-size: clamp(52px, 5.5vw, 88px);
    color: #fff;
    line-height: 1.0;
    margin-bottom: 28px;
}
.hero-home-title em {
    font-style: italic;
    color: var(--brand-accent);
}
.hero-home-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 430px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-home-right {
    position: relative;
    overflow: hidden;
}
.hero-home-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--brand-primary) 0%, transparent 45%);
    z-index: 1;
}
/* Geometric decorations */
.hero-circle-1 {
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    border: 90px solid rgba(107, 158, 120, 0.14);
    bottom: -220px;
    right: -180px;
    pointer-events: none;
}
.hero-circle-2 {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--brand-accent);
    opacity: 0.10;
    top: -80px;
    left: -80px;
    pointer-events: none;
}

/* === INNER PAGE HERO === */
.page-hero {
    background: var(--brand-primary);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: -5%; right: -5%;
    height: 90px;
    background: var(--bg-color);
    transform: rotate(-2.5deg);
    transform-origin: right bottom;
}
.page-hero.alt-bg::after { background: var(--bg-alt); }
.page-hero-geo {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 120px solid rgba(107, 158, 120, 0.10);
    top: -300px;
    right: -250px;
    pointer-events: none;
}
.page-hero-geo-2 {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--brand-accent);
    opacity: 0.08;
    bottom: -80px;
    left: 10%;
    pointer-events: none;
}

/* === PHILOSOPHY PILLARS === */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.pillar-card {
    background: var(--bg-color);
    padding: 60px 44px;
    position: relative;
    transition: background 0.4s ease;
}
.pillar-card:hover { background: var(--brand-primary); }
.pillar-num {
    font-family: var(--font-heading);
    font-size: 90px;
    line-height: 1;
    color: var(--bg-alt);
    margin-bottom: 16px;
    transition: color 0.4s;
}
.pillar-card:hover .pillar-num   { color: rgba(255,255,255,0.1); }
.pillar-title {
    font-size: 28px;
    color: var(--brand-primary);
    margin-bottom: 14px;
    transition: color 0.4s;
}
.pillar-card:hover .pillar-title  { color: #fff; }
.pillar-text {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 15px;
    transition: color 0.4s;
}
.pillar-card:hover .pillar-text   { color: rgba(255,255,255,0.7); }
.pillar-bar {
    width: 40px;
    height: 3px;
    background: var(--brand-accent);
    margin-top: 28px;
    border-radius: 2px;
    transition: width 0.4s;
}
.pillar-card:hover .pillar-bar { width: 80px; }

/* === SPLIT LAYOUT === */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-image-dot {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--brand-accent);
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
    z-index: -1;
    opacity: 0.6;
}
.split-image-dot-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--brand-secondary);
    border-radius: 50%;
    top: -25px;
    left: -25px;
    z-index: -1;
    opacity: 0.5;
}
.split-content .label { margin-bottom: 16px; }
.split-body {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* === SERVICE CARDS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.service-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 36px; }
.service-tag {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--brand-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.service-title {
    font-size: 26px;
    color: var(--brand-primary);
    margin-bottom: 12px;
}
.service-text {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 15px;
}
.service-meta {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.service-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.service-meta-icon {
    width: 6px;
    height: 6px;
    background: var(--brand-accent);
    border-radius: 50%;
}

/* === PRICING TABLE === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    border: 2px solid var(--bg-alt);
    border-radius: var(--border-radius);
    padding: 48px 36px;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-align: center;
}
.pricing-card:hover {
    border-color: var(--brand-secondary);
    box-shadow: 0 8px 40px rgba(44, 74, 62, 0.1);
}
.pricing-card.featured {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}
.pricing-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 16px;
    display: block;
}
.pricing-card.featured .pricing-label { color: rgba(196, 134, 90, 0.85); }
.pricing-price {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1;
    color: var(--brand-primary);
    margin-bottom: 8px;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.55); }
.pricing-list {
    list-style: none;
    margin-bottom: 36px;
    text-align: left;
}
.pricing-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card.featured .pricing-list li {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.08);
}
.pricing-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brand-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--brand-primary);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 130px solid rgba(107, 158, 120, 0.10);
    top: -350px;
    right: -300px;
    pointer-events: none;
}
.testimonials-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--brand-accent);
    opacity: 0.06;
    bottom: -100px;
    left: 5%;
    pointer-events: none;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 44px 40px;
    position: relative;
}
.testimonial-quote-mark {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 0.7;
    color: var(--brand-accent);
    margin-bottom: 22px;
    opacity: 0.7;
}
.testimonial-text {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 32px;
}
.testimonial-author { font-size: 14px; font-weight: 600; color: #fff; }
.testimonial-role { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0.5px; }

/* === CTA BAND === */
.cta-band {
    background: var(--brand-accent);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 100px solid rgba(255,255,255,0.08);
    top: -280px; right: -180px;
    pointer-events: none;
}
.cta-band::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -120px; left: -80px;
    pointer-events: none;
}
.cta-band-title {
    font-size: clamp(38px, 4vw, 60px);
    color: #fff;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.cta-band-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 52px;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
    line-height: 1.7;
    position: relative; z-index: 1;
}

/* === GALLERY === */
.gallery-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}
.filter-btn {
    padding: 10px 26px;
    border-radius: var(--btn-radius);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    background: var(--bg-alt);
    color: var(--text-muted);
    border: 2px solid transparent;
    cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--brand-primary);
    color: #fff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 3/4;
    display: block;
}
.gallery-item.wide    { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item.tall    { grid-row: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(44, 74, 62, 0);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(44, 74, 62, 0.5); }
.gallery-plus {
    width: 60px; height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: var(--brand-primary);
    font-weight: 300;
    line-height: 1;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
}
.gallery-item:hover .gallery-plus { opacity: 1; transform: scale(1); }
/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(8, 8, 8, 0.96);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
    position: relative;
    max-width: 920px;
    width: 90%;
    max-height: 90vh;
}
.lightbox-img {
    width: 100%; height: auto;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}
.lightbox-close {
    position: absolute;
    top: -52px; right: 0;
    color: rgba(255,255,255,0.7);
    font-size: 36px;
    background: none; border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }
.lightbox-nav {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 52px; line-height: 1;
    background: none; border: none;
    cursor: pointer;
    padding: 24px 20px;
    transition: color 0.2s;
}
.lightbox-nav:hover { color: #fff; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    margin-top: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: start;
}
.contact-detail { margin-bottom: 48px; }
.contact-detail-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 8px;
    display: block;
}
.contact-detail-value {
    font-size: 18px;
    color: var(--brand-primary);
    font-weight: 500;
    line-height: 1.55;
}
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 48px;
}
.contact-social-link {
    width: 44px; height: 44px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--brand-primary);
    transition: all 0.25s;
}
.contact-social-link:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--bg-alt);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-color);
    background: var(--bg-color);
    transition: border-color 0.25s;
    outline: none;
    appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--brand-secondary);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* === ABOUT PAGE === */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 80px;
}
.stat-item {
    background: var(--brand-primary);
    padding: 52px 32px;
    text-align: center;
    transition: background 0.3s;
}
.stat-item:hover { background: rgba(107, 158, 120, 0.3); }
.stat-num {
    font-family: var(--font-heading);
    font-size: 60px;
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.team-card { text-align: center; }
.team-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    transition: transform 0.35s ease;
}
.team-card:hover .team-img { transform: translateY(-8px); }
.team-name { font-size: 24px; color: var(--brand-primary); margin-bottom: 6px; }
.team-role {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 12px;
}
.team-bio { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-item {
    padding: 36px 24px;
    border-radius: var(--border-radius);
    border: 2px solid var(--bg-alt);
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.value-item:hover {
    border-color: var(--brand-secondary);
    transform: translateY(-4px);
}
.value-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}
.value-title { font-size: 20px; color: var(--brand-primary); margin-bottom: 10px; }
.value-text  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* === FOOTER === */
.footer {
    background: var(--text-color);
    color: #fff;
    padding: 100px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-family: var(--font-heading); font-size: 26px; color: #fff; margin-bottom: 16px; display: block; }
.footer-tagline {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 36px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    transition: background 0.25s, transform 0.25s;
    color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--brand-accent); color: #fff; transform: translateY(-2px); }
.footer-col h5 {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 24px;
}
.footer-link {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 14px;
    transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.28);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .hero-home { grid-template-columns: 1fr; }
    .hero-home-right { display: none; }
    .hero-home-left { padding: 100px 40px; justify-content: flex-start; }
    .hero-home-content { max-width: 100%; }
    .hero-home-title { font-size: clamp(48px, 8vw, 72px); }
    .split { grid-template-columns: 1fr; gap: 48px; }
    .split-image { max-width: 600px; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; aspect-ratio: 3/4; }
    .pillars-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }
    .hero-home-left { padding: 80px 24px; }
    .hero-home-title { font-size: clamp(44px, 12vw, 64px); }
    .nav { display: none; }
    .nav.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--bg-color); padding: 40px; gap: 28px; z-index: 999; }
    .nav-hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 3/4; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn { text-align: center; justify-content: center; }
    .page-hero { padding: 100px 0 120px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
