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

:root {
    --emerald-900: #0a2e1f;
    --emerald-800: #0d3b27;
    --emerald-700: #114d32;
    --emerald-600: #15633f;
    --emerald-500: #1a7a4f;
    --emerald-400: #23a066;
    --emerald-300: #4db882;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --cream-200: #ede5d8;
    --cream-300: #e0d5c4;
    --gold-400: #c9a96e;
    --gold-500: #b8944f;
    --text-dark: #1a1a1a;
    --text-medium: #3d3d3d;
    --text-light: #6b6b6b;
    --text-on-dark: #f5f0e8;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Raleway', 'Helvetica Neue', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: 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;
}

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--emerald-800);
    color: var(--cream-50);
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    font-weight: 500;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--emerald-900);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--cream-200);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 60px;
    height: 100%;
    background: var(--gold-400);
    animation: loaderSlide 1s var(--ease-smooth) infinite;
}

@keyframes loaderSlide {
    to { left: 60px; }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(10, 46, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream-50);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-brand-icon {
    color: var(--gold-400);
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-400);
    transition: width 0.3s var(--ease-out);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--cream-50);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    width: 100%;
}

.nav-cta a {
    background: var(--gold-400);
    color: var(--emerald-900) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all 0.3s var(--ease-out);
}

.nav-cta a::after {
    display: none;
}

.nav-cta a:hover {
    background: var(--cream-50);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 101;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream-50);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 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(4px, -5px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(21, 99, 63, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 46, 31, 0.95) 0%, 
        rgba(13, 59, 39, 0.85) 40%,
        rgba(21, 75, 48, 0.7) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold-400);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream-50);
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    display: block;
    font-style: italic;
    color: var(--gold-400);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 2.5rem;
    max-width: 440px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-400);
    color: var(--emerald-900);
}

.btn-primary:hover {
    background: var(--cream-50);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cream-50);
    border: 1px solid rgba(245, 240, 232, 0.3);
}

.btn-secondary:hover {
    border-color: var(--cream-50);
    background: rgba(245, 240, 232, 0.08);
}

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

/* ===== HERO CARDS ===== */
.hero-cards {
    position: relative;
    height: 580px;
    perspective: 1000px;
}

.hero-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--ease-out);
}

.hero-card:hover {
    transform: translateY(-8px) !important;
}

.hero-card--1 {
    width: 220px;
    height: 300px;
    top: 0;
    right: 0;
    transform: rotate(3deg);
    z-index: 3;
}

.hero-card--2 {
    width: 200px;
    height: 260px;
    top: 60px;
    right: 140px;
    transform: rotate(-2deg);
    z-index: 2;
}

.hero-card--3 {
    width: 180px;
    height: 240px;
    bottom: 40px;
    right: 40px;
    transform: rotate(-4deg);
    z-index: 1;
}

.hero-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 46, 31, 0.5) 0%, transparent 50%);
}

.hero-card-stat {
    position: absolute;
    background: rgba(245, 240, 232, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: transform 0.5s var(--ease-out);
}

.hero-card-stat:hover {
    transform: translateY(-4px);
}

.hero-card-stat--1 {
    bottom: 80px;
    left: -20px;
}

.hero-card-stat--2 {
    top: 20px;
    left: 20px;
}

.hero-card-stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-400);
    line-height: 1;
}

.hero-card-stat-label {
    font-size: 0.6875rem;
    color: rgba(245, 240, 232, 0.7);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald-500);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--emerald-300);
}

.section-tag::before { left: -1rem; }
.section-tag::after { right: -1rem; }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--emerald-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
    background: var(--cream-50);
}

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

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease-out);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(10, 46, 31, 0.1);
    border-color: rgba(26, 122, 79, 0.1);
}

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

.service-card-visual {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--cream-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card-visual {
    background: var(--emerald-900);
    color: var(--gold-400);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--emerald-600);
    letter-spacing: 0.04em;
    transition: gap 0.3s var(--ease-out);
}

.service-card-link:hover {
    gap: 0.75rem;
    color: var(--emerald-800);
}

/* ===== ABOUT ===== */
.about {
    background: var(--cream-100);
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 46, 31, 0.15);
}

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

.about-img-main-accent {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 14px;
    pointer-events: none;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 46, 31, 0.2);
    border: 4px solid var(--cream-100);
}

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

.about-experience-badge {
    position: absolute;
    bottom: 45%;
    right: -10px;
    background: var(--emerald-800);
    color: var(--cream-50);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(10, 46, 31, 0.3);
    z-index: 2;
}

.about-exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold-400);
    line-height: 1;
}

.about-exp-text {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    color: rgba(245, 240, 232, 0.7);
}

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

.about-title {
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-value-icon {
    color: var(--gold-400);
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-value strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--emerald-900);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

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

/* ===== GALLERY ===== */
.gallery {
    background: var(--cream-50);
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 46, 31, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.gallery-item-overlay span {
    color: var(--cream-50);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--emerald-900);
    overflow: hidden;
}

.testimonials .section-tag {
    color: var(--gold-400);
}

.testimonials .section-tag::before,
.testimonials .section-tag::after {
    background: rgba(201, 169, 110, 0.4);
}

.testimonials .section-title {
    color: var(--cream-50);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s var(--ease-out);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 1rem;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: -1rem;
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    color: var(--cream-50);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-author-name {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(245, 240, 232, 0.2);
    color: var(--cream-50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.testimonial-btn:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--emerald-900);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--gold-400);
    width: 24px;
    border-radius: 4px;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--cream-100);
}

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

.contact-title {
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--emerald-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--emerald-900);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.contact-detail a:hover {
    color: var(--emerald-600);
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--emerald-900);
    border-radius: 12px;
    color: var(--cream-50);
}

.contact-hours strong {
    font-size: 0.875rem;
    color: var(--gold-400);
}

.contact-hours span {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.7);
    font-weight: 300;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(10, 46, 31, 0.08);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--emerald-900);
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--cream-300);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 122, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: 10px;
    color: var(--emerald-800);
    font-size: 0.9375rem;
    margin-top: 1rem;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--emerald-900);
    color: var(--cream-50);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand-icon {
    font-size: 1.5rem;
    color: var(--gold-400);
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
}

.footer-brand-owner {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    font-weight: 300;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.footer-contact a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s;
    font-weight: 300;
}

.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-contact span {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    font-weight: 300;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.4);
    font-weight: 300;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-cards {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--emerald-900);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

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

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

    .section {
        padding: 5rem 0;
    }

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

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

    .gallery-item--1,
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4,
    .gallery-item--5 {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        height: 220px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

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

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

    .about-images {
        height: 350px;
    }

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

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-scroll-line {
        animation: none;
    }
}
