/* ============================================
   Perfect Eyebrows — Styles
   Palette: Emerald (#064e3b) + Cream (#faf6f0)
   Accent: Amber (#d97706)
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --emerald-950: #042f23;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;
    --cream-50:    #faf6f0;
    --cream-100:   #f5efe6;
    --cream-200:   #ebe0d0;
    --amber-600:   #d97706;
    --amber-500:   #f59e0b;
    --amber-100:   #fef3c7;
    --stone-50:    #fafaf9;
    --stone-100:   #f5f5f4;
    --stone-200:   #e7e5e4;
    --stone-600:   #57534e;
    --stone-700:   #44403c;
    --stone-800:   #292524;
    --stone-900:   #1c1917;
    --white:       #ffffff;
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --font-body:   'DM Sans', system-ui, sans-serif;
    --font-display:'Playfair Display', Georgia, serif;
    --shadow-sm:   0 1px 3px rgba(6,78,59,0.08);
    --shadow-md:   0 4px 16px rgba(6,78,59,0.10);
    --shadow-lg:   0 12px 40px rgba(6,78,59,0.14);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--stone-800);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--emerald-900);
}

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

strong {
    color: var(--stone-900);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn--small {
    padding: 8px 20px;
    font-size: 0.8125rem;
}

.btn--medium {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.0625rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

.btn--accent {
    background: var(--amber-600);
    color: var(--white);
    border-color: var(--amber-600);
}
.btn--accent:hover {
    background: var(--amber-500);
    border-color: var(--amber-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: var(--white);
    color: var(--emerald-900);
    border-color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--emerald-900);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-600);
    margin-bottom: 12px;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--amber-600);
    border-radius: 2px;
}

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

.section-desc {
    font-size: 1.125rem;
    color: var(--stone-600);
    max-width: 600px;
    line-height: 1.7;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,246,240,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6,78,59,0.08);
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(250,246,240,0.96);
    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;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--emerald-900);
}
.logo--light {
    color: var(--white);
}
.logo-icon {
    color: var(--white);
}
.logo--light .logo-icon {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--stone-700);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-600);
    transition: width var(--transition);
    border-radius: 2px;
}
.nav-links a:hover {
    color: var(--emerald-800);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 2px;
    background: var(--emerald-900);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--emerald-900);
    border-radius: 2px;
    left: 0;
    transition: all var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--emerald-900);
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4,47,35,0.92) 0%,
        rgba(6,78,59,0.85) 40%,
        rgba(6,120,87,0.70) 100%
    );
}

.hero-deco {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.deco-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--amber-600);
    top: -200px;
    right: -150px;
}

.deco-circle--2 {
    width: 350px;
    height: 350px;
    background: var(--emerald-600);
    bottom: -100px;
    left: -80px;
}

.deco-dots {
    position: absolute;
    bottom: 80px;
    left: 60px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--amber-500) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 40px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,119,6,0.15);
    border: 1px solid rgba(217,119,6,0.35);
    color: var(--amber-500);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-500);
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    align-self: center;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: var(--emerald-900);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marquee 24s linear infinite;
    width: max-content;
}

.marquee span {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.marquee-dot {
    color: var(--amber-600) !important;
    font-size: 0.625rem !important;
    letter-spacing: 0 !important;
}

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

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--cream-50);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--emerald-100);
    border-radius: 0 0 0 100%;
    opacity: 0.5;
    pointer-events: none;
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--cream-200);
    transition: all var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--emerald-700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

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

.service-card-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: var(--emerald-50);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    border-radius: var(--radius-md);
    color: var(--emerald-700);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--emerald-700);
    color: var(--white);
}

.service-name {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--emerald-900);
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--stone-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--stone-700);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber-600);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(217,119,6,0.06);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--emerald-800);
}

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

.about-float-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber-600);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-deco-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: var(--amber-600);
    border-radius: var(--radius-md);
    opacity: 0.15;
    transform: rotate(15deg);
}

.about-content {
    color: var(--white);
}

.about-content .section-tag {
    color: var(--amber-500);
}
.about-content .section-tag::before {
    background: var(--amber-500);
}

.about-content .section-title {
    color: var(--white);
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-600);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.value-item span {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.about-content .btn--accent {
    margin-top: 8px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 120px 0;
    background: var(--cream-50);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: var(--emerald-100);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}

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

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

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

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

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

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

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 6 / 9; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 1 / 6; grid-row: 3; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--cream-100);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--emerald-50);
    border-radius: 50% 0 0 0;
    opacity: 0.6;
    pointer-events: none;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--cream-200);
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--emerald-100);
    pointer-events: none;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--stone-700);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--emerald-900);
}

.testimonial-location {
    font-size: 0.8125rem;
    color: var(--stone-600);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 120px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(217,119,6,0.08);
    top: -100px;
    left: -100px;
}

.cta-shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.04);
    bottom: -60px;
    right: 10%;
}

.cta-shape--3 {
    width: 150px;
    height: 150px;
    background: rgba(217,119,6,0.1);
    top: 30%;
    right: -30px;
}

.cta-content {
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    color: var(--amber-500) !important;
}
.cta-tag::before {
    background: var(--amber-500) !important;
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.cta-actions .btn--white {
    background: var(--white);
    color: var(--emerald-900);
    border-color: var(--white);
}
.cta-actions .btn--white:hover {
    background: var(--cream-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--cream-50);
    position: relative;
}

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

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

.contact-intro {
    font-size: 1.0625rem;
    color: var(--stone-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact-item dt {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--stone-600);
    margin-bottom: 4px;
}

.contact-item dd {
    font-size: 1rem;
    color: var(--stone-800);
    line-height: 1.6;
}

.contact-item a {
    color: var(--emerald-700);
    transition: color var(--transition);
}
.contact-item a:hover {
    color: var(--amber-600);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Form */
.contact-form-wrap {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--cream-200);
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--emerald-900);
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--stone-600);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--stone-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--stone-800);
    background: var(--cream-50);
    border: 1.5px solid var(--cream-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(6,120,87,0.1);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin: 0 auto 16px;
    width: 64px;
    height: 64px;
    background: var(--emerald-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h4 {
    font-size: 1.25rem;
    color: var(--emerald-900);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--stone-600);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--stone-900);
    color: rgba(255,255,255,0.6);
}

.footer-top {
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--amber-500);
}

.footer-contact address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 8px;
}
.footer-contact a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--amber-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}
.footer-bottom a:hover {
    color: var(--amber-500);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-up   { opacity: 0; transform: translateY(30px); }
    .reveal-left { opacity: 0; transform: translateX(-30px); }
    .reveal-right{ opacity: 0; transform: translateX(30px); }
    
    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .gallery-item:nth-child(1) { grid-column: 1 / 7; grid-row: auto; }
    .gallery-item:nth-child(2) { grid-column: 7 / 13; grid-row: auto; }
    .gallery-item:nth-child(3) { grid-column: 1 / 7; grid-row: auto; }
    .gallery-item:nth-child(4) { grid-column: 7 / 13; grid-row: auto; }
    .gallery-item:nth-child(5) { grid-column: 1 / 13; grid-row: auto; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,246,240,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--cream-200);
        transform: translateY(-120%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .nav-toggle {
        display: block;
    }
    .nav-links a {
        font-size: 1.0625rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        gap: 24px;
    }
    .stat-divider {
        display: none;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-float {
        right: 0;
        width: 160px;
    }
    .about-img-main img {
        height: 500px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
    .gallery-item:nth-child(5) {
        grid-column: 1 / -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        max-width: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .services,
    .about,
    .gallery,
    .testimonials,
    .cta,
    .contact {
        padding: 80px 0;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 24px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(5) {
        grid-column: auto;
    }
}
