/* ═══════════════════════════════════════════
   Amazing Faith Beauty by Brooklyn — Styles
   Palette: Forest Green + Off-White + Warm Gold
   ═══════════════════════════════════════════ */

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

:root {
    --green-900: #0B2118;
    --green-800: #1B4332;
    --green-700: #2D6A4F;
    --green-600: #40916C;
    --green-500: #52B788;
    --green-100: #D8F3DC;
    --green-50:  #F0FFF4;

    --cream-50:  #FEFDF8;
    --cream-100: #FAFAF5;
    --cream-200: #F5F4EC;
    --cream-300: #EDECE0;

    --gold:      #D4A574;
    --gold-light:#E8C9A0;
    --gold-dark: #B8864E;

    --text-dark:  #1A1A1A;
    --text-mid:   #4A4A4A;
    --text-light: #6B6B6B;
    --text-white: #F5F5F0;

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

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --shadow-sm:  0 1px 3px rgba(27,67,50,0.06), 0 1px 2px rgba(27,67,50,0.04);
    --shadow-md:  0 4px 16px rgba(27,67,50,0.08), 0 2px 6px rgba(27,67,50,0.06);
    --shadow-lg:  0 12px 40px rgba(27,67,50,0.12), 0 4px 12px rgba(27,67,50,0.08);
    --shadow-xl:  0 24px 60px rgba(27,67,50,0.14), 0 8px 20px rgba(27,67,50,0.10);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--cream-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* ── Typography ── */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--green-800);
    color: var(--text-white);
    border-color: var(--green-800);
}

.btn--primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
}

.btn--secondary {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-800);
}

.btn--secondary:hover {
    background: var(--green-800);
    color: var(--text-white);
}

.btn--light {
    background: var(--cream-50);
    color: var(--green-800);
    border-color: var(--cream-50);
}

.btn--light:hover {
    background: var(--cream-200);
    border-color: var(--cream-200);
}

.btn--outline-light {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--text-white);
}

.btn--nav {
    background: var(--green-800);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.btn--nav:hover {
    background: var(--green-700);
}

.btn--mobile {
    background: var(--green-800);
    color: var(--text-white);
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    margin-top: 8px;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    border-radius: var(--radius-md);
}

/* ── Section Shared ── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-600);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--green-800);
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--green-600);
}

.section-desc {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254,253,248,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27,67,50,0.08);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.063rem;
    font-weight: 600;
    color: var(--green-800);
}

.nav-logo-icon {
    flex-shrink: 0;
}

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

.nav-menu li a:not(.btn) {
    padding: 8px 16px;
    font-size: 0.938rem;
    font-weight: 400;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu li a:not(.btn):hover {
    color: var(--green-800);
    background: var(--green-50);
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream-50);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--green-800);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu ul li a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--green-800);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu ul li a:hover {
    background: var(--green-50);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--cream-100) 50%, var(--green-50) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--green-700);
    background: rgba(27,67,50,0.06);
    border: 1px solid rgba(27,67,50,0.12);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge svg {
    color: var(--gold);
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    color: var(--green-800);
    line-height: 1.12;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-title em {
    font-style: italic;
    color: var(--green-600);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-800);
}

.hero-stat-label {
    font-size: 0.813rem;
    color: var(--text-light);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--cream-300);
}

/* Hero Image Stack */
.hero-right {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img--main {
    width: 340px;
    height: 440px;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.hero-img--accent {
    width: 220px;
    height: 280px;
    bottom: 20px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream-50);
}

.hero-img--badge {
    width: 120px;
    height: 120px;
    bottom: 200px;
    left: 140px;
    z-index: 4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-50);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--cream-200);
}

.hero-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--green-800);
    text-align: center;
}

.hero-badge-inner span {
    font-family: var(--font-serif);
    font-size: 0.688rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
}

.hero-scroll svg {
    animation: bounce 2s ease-in-out infinite;
}

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

/* ── Services ── */
.services {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.service-card {
    background: var(--cream-50);
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-100);
}

.service-card-img {
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

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

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin-bottom: 16px;
}

.service-name {
    font-size: 1.188rem;
    color: var(--green-800);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-desc {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ── Gallery ── */
.gallery {
    padding: 100px 0;
    background: var(--cream-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,67,50,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

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

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

.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 7; }
.gallery-item:nth-child(5) { grid-column: span 7; }
.gallery-item:nth-child(6) { grid-column: span 5; }

/* ── About ── */
.about {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 460px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-img-float {
    position: absolute;
    width: 55%;
    height: 260px;
    bottom: 0;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--cream-50);
    z-index: 2;
}

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

.about-content {
    max-width: 500px;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.about-value-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-value strong {
    display: block;
    font-size: 1rem;
    color: var(--green-800);
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials .section-tag {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    color: var(--green-100);
}

.testimonials .section-title {
    color: var(--text-white);
}

.testimonials .section-title em {
    color: var(--gold-light);
}

.testimonials .section-desc {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--text-white);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-white);
}

.testimonial-location {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.55);
}

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-200) 0%, var(--cream-100) 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.6;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--green-800);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.063rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-700);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.938rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--green-700);
    text-decoration: underline;
}

.contact-detail address {
    font-style: normal;
}

/* ── Contact Form ── */
.contact-form-wrap {
    background: var(--cream-100);
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form-title {
    font-size: 1.5rem;
    color: var(--green-800);
    margin-bottom: 4px;
}

.contact-form-sub {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.938rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:hover {
    border-color: var(--green-500);
}

.form-input:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}

.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='%236B6B6B' 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 14px center;
    padding-right: 40px;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    color: var(--green-800);
    font-size: 0.938rem;
}

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

/* ── Map ── */
.map-section {
    height: 360px;
    background: var(--cream-200);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: saturate(0.8) contrast(1.05);
}

/* ── Footer ── */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.75);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.063rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 0.938rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.938rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--green-100);
}

.footer-contact address {
    font-style: normal;
    font-size: 0.938rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-contact a {
    display: block;
    font-size: 0.938rem;
    color: var(--gold-light);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.813rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--text-white);
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 100px;
    }

    .hero-subtitle {
        max-width: none;
    }

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

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

    .gallery-item:nth-child(n) {
        grid-column: span 1;
        height: 260px;
    }

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

    .about-images {
        height: 400px;
    }

    .about-content {
        max-width: none;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: clamp(1.875rem, 6vw, 2.5rem);
    }

    .hero-stats {
        gap: 16px;
    }

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

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

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

    .gallery-item {
        height: 240px;
    }

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

    .contact-form-wrap {
        padding: 28px;
    }

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

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

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

    .hero-ctas {
        flex-direction: column;
    }

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

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

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