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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #FAF8F5;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(6, 78, 59, 0.08);
    background: rgba(250, 248, 245, 0.97);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #064e3b;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-accent {
    font-weight: 400;
    font-style: italic;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #374151;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #064e3b;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #064e3b;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #064e3b;
    background: rgba(6, 78, 59, 0.08);
    padding: 10px 20px;
    border-radius: 100px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: rgba(6, 78, 59, 0.14);
    transform: translateY(-1px);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #064e3b;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    color: #064e3b;
    transition: opacity 0.2s ease;
}

.mobile-nav-link:hover {
    opacity: 0.6;
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #064e3b;
    background: rgba(6, 78, 59, 0.08);
    padding: 14px 28px;
    border-radius: 100px;
    margin-top: 16px;
}

.mobile-call-btn svg {
    width: 18px;
    height: 18px;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    padding: 72px 24px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FAF8F5;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 78, 59, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    flex: 1;
}

.hero-text {
    padding-right: 20px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: #064e3b;
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: #0f1a14;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-headline .accent-italic {
    font-style: italic;
    font-weight: 400;
    color: #064e3b;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: #064e3b;
    margin-bottom: 28px;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 24px;
}

.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #064e3b;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(6, 78, 59, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: #064e3b;
    color: #FAF8F5;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.3);
}

.btn-ghost {
    background: transparent;
    color: #064e3b;
    border: 1.5px solid rgba(6, 78, 59, 0.3);
}

.btn-ghost:hover {
    border-color: #064e3b;
    background: rgba(6, 78, 59, 0.05);
    transform: translateY(-2px);
}

.btn-cream {
    background: #FAF8F5;
    color: #064e3b;
}

.btn-cream:hover {
    background: #F5F0E8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline-cream {
    background: transparent;
    color: #FAF8F5;
    border: 1.5px solid rgba(250, 248, 245, 0.5);
}

.btn-outline-cream:hover {
    background: rgba(250, 248, 245, 0.1);
    border-color: #FAF8F5;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Image Column */
.hero-image-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-image-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 640/820;
    box-shadow: 0 25px 80px rgba(6, 78, 59, 0.15);
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 78, 59, 0.25) 100%);
    pointer-events: none;
}

.hero-image-float {
    position: absolute;
    bottom: -40px;
    left: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(6, 78, 59, 0.2);
    border: 4px solid #FAF8F5;
}

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

.float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 78, 59, 0.9);
    backdrop-filter: blur(8px);
    color: #FAF8F5;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
}

.float-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    display: none;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    width: 16px;
    height: 16px;
    animation: bounce-down 2s ease-in-out infinite;
}

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

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ========== SECTION COMMON ========== */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 16px;
}

.section-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: #0f1a14;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-headline .accent-italic {
    font-style: italic;
    font-weight: 400;
    color: #064e3b;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 520px;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 24px;
    background: #FAF8F5;
}

.services-header {
    margin-bottom: 72px;
}

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

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #064e3b;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.1);
    border-color: transparent;
}

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

.service-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(6, 78, 59, 0.08);
    line-height: 1;
    margin-bottom: 20px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(6, 78, 59, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(6, 78, 59, 0.12);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #064e3b;
}

.service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3125rem;
    font-weight: 600;
    color: #0f1a14;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4b5563;
}

/* ========== ABOUT ========== */
.about {
    padding: 120px 24px;
    background: #F5F0E8;
}

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

.about-image-col {
    position: relative;
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.12);
    aspect-ratio: 580/700;
}

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

.about-image-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(6, 78, 59, 0.15);
    border: 4px solid #F5F0E8;
    aspect-ratio: 320/220;
}

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

.about-content {
    padding: 20px 0;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: #064e3b;
    margin-bottom: 32px;
}

.about-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 16px;
}

.about-values {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.value-item svg {
    width: 20px;
    height: 20px;
    color: #064e3b;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== WHY US ========== */
.why-us {
    padding: 120px 24px;
    background: #064e3b;
}

.why-us-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-content {
    margin-bottom: 72px;
}

.why-us-content .section-eyebrow {
    color: rgba(250, 248, 245, 0.6);
}

.why-us-content .section-headline {
    color: #FAF8F5;
}

.why-us-content .section-headline .accent-italic-light {
    font-style: italic;
    font-weight: 400;
    color: #D4C5A9;
}

.why-us-content .section-desc {
    color: rgba(250, 248, 245, 0.7);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(250, 248, 245, 0.06);
    border: 1px solid rgba(250, 248, 245, 0.1);
    border-radius: 16px;
    padding: 40px 28px;
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(250, 248, 245, 0.1);
    border-color: rgba(250, 248, 245, 0.2);
    transform: translateY(-4px);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 197, 169, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
    color: #D4C5A9;
}

.why-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FAF8F5;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(250, 248, 245, 0.65);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 100px 24px;
    background: #F5F0E8;
}

.cta-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 280px;
}

.cta-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #0f1a14;
    margin-bottom: 16px;
}

.cta-headline .accent-italic {
    font-style: italic;
    font-weight: 400;
    color: #064e3b;
}

.cta-text p {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 24px;
    background: #FAF8F5;
}

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

.contact-info {
    padding-top: 8px;
}

.contact-divider {
    width: 60px;
    height: 2px;
    background: #064e3b;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(6, 78, 59, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    color: #064e3b;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.6;
}

.contact-link {
    color: #064e3b;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.contact-link:hover {
    border-color: #064e3b;
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(6, 78, 59, 0.06);
    box-shadow: 0 8px 40px rgba(6, 78, 59, 0.06);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f1a14;
    margin-bottom: 8px;
}

.contact-form-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #1a1a1a;
    background: #FAF8F5;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.form-input:focus {
    border-color: #064e3b;
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
    background: #fff;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

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

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(6, 78, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: #064e3b;
}

.success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f1a14;
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.65;
    max-width: 360px;
    margin: 0 auto;
}

.success-text a {
    color: #064e3b;
    font-weight: 600;
    border-bottom: 1px solid rgba(6, 78, 59, 0.3);
}

/* ========== MAP ========== */
.map-section {
    background: #064e3b;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    opacity: 0.95;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    background: #0a1f17;
    color: #FAF8F5;
    padding: 80px 24px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.logo-light {
    color: #FAF8F5;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.55);
    max-width: 280px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.4);
    margin-bottom: 20px;
}

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

.footer nav a {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.7);
    transition: color 0.2s ease;
}

.footer nav a:hover {
    color: #D4C5A9;
}

.footer address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer address p {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.6;
}

.footer-phone a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4C5A9;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-phone a:hover {
    color: #FAF8F5;
}

.footer-phone svg {
    width: 16px;
    height: 16px;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours p {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.6;
}

.footer-hours-note {
    color: rgba(250, 248, 245, 0.4) !important;
    font-size: 0.8125rem !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid rgba(250, 248, 245, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 248, 245, 0.35);
}

.footer-bottom a {
    color: rgba(250, 248, 245, 0.5);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #D4C5A9;
}

/* ========== REVEAL ANIMATIONS ========== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 72px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-text {
        padding-right: 0;
        order: 1;
    }
    
    .hero-image-col {
        order: 2;
        max-width: 480px;
    }
    
    .hero-image-float {
        bottom: -24px;
        left: -16px;
    }
    
    .hero-image-float img {
        width: 240px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-stat {
        padding: 0;
    }
    
    .services {
        padding: 80px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header {
        margin-bottom: 48px;
    }
    
    .about {
        padding: 80px 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .about-image-col {
        max-width: 480px;
    }
    
    .about-image-accent {
        bottom: -20px;
        right: -16px;
    }
    
    .about-image-accent img {
        width: 220px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .why-us {
        padding: 80px 24px;
    }
    
    .why-us-content {
        margin-bottom: 48px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cta-banner {
        padding: 80px 24px;
    }
    
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .contact {
        padding: 80px 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-wrap {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 24px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .hero-image-float {
        display: none;
    }
    
    .section-headline {
        font-size: 1.875rem;
    }
}
